/* ===================================
   TOP INFO BAR
   =================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background-color: var(--white);
}

.top-bar {
    background-color: var(--white);
    border-bottom: 2px solid var(--primary-red);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.35px;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

.top-bar-link {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.top-bar-link:hover {
    color: var(--primary-red);
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: relative;
    background-color: var(--white);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    display: block;
    width: min(248px, 44vw);
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.btn-order-now {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
}

.btn-order-now:hover {
    background-color: var(--dark-red);
    box-shadow: var(--shadow-md);
}

.sticky-actions-shell {
    --sticky-viewport-shift: 0px;
    --sticky-hide-shift: 0px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-sticky);
    display: flex;
    justify-content: center;
    pointer-events: none;
    transform: translate3d(0, calc(var(--sticky-viewport-shift) + var(--sticky-hide-shift)), 0);
    transition: opacity 0.2s ease;
}

.sticky-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 2vw, 16px);
    width: min(92vw, 420px);
    margin-bottom: calc(clamp(12px, 3vw, 28px) + env(safe-area-inset-bottom, 0px));
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    pointer-events: auto;
}

.sticky-actions-shell.is-hidden {
    opacity: 0;
    pointer-events: none;
    --sticky-hide-shift: 12px;
}

.sticky-order,
.call-us {
    width: 100%;
    min-width: 0;
}

.sticky-order,
.call-us-btn,
.call-us-link-mobile {
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: var(--white);
    width: auto;
    min-width: 0;
    height: clamp(44px, 8vw, 54px);
    padding: 0 clamp(18px, 4vw, 28px);
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(12px, 2.7vw, 14px);
    letter-spacing: clamp(0.6px, 0.16vw, 1px);
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.sticky-order:hover,
.call-us-btn:hover,
.call-us-link-mobile:hover {
    background-color: var(--dark-red);
}

.call-us {
    position: relative;
    display: flex;
}

.call-us-btn,
.call-us-link-mobile {
    width: 100%;
}

.call-us-link-mobile {
    display: none;
}

.label-short {
    display: none;
}

.call-us-pop {
    position: absolute;
    left: 50%;
    bottom: calc(100% + clamp(8px, 2vw, 12px));
    transform: translateX(-50%) translateY(6px);
    background-color: var(--text-dark);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.call-us-pop a {
    color: inherit;
    text-decoration: none;
}

.call-us.is-open .call-us-pop {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    border: 0;
    padding: 0;
    background: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    transform-origin: center;
}
