@charset "utf-8";
/* style.css — Fast Group Engineering | markal.com.vn */

:root {
    /* Color Palette — Terracotta */
    --terracotta: #1E4AA8;
    --cream: #F4F1DE;
    --navy: #3D405B;
    --sage: #1E4AA8;

    /* Extended shades */
    --terracotta-light: #f0a58e;
    --terracotta-dark: #c4603f;
    --cream-dark: #e8e3c8;
    --navy-light: #575a78;
    --sage-light: #a8cfba;
    --sage-dark: #5f8e73;

    /* Typography */
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Manrope', 'Segoe UI', sans-serif;

    /* Spacing */
    --sidebar-width: 260px;
    --section-pad: clamp(3rem, 6vw, 6rem);
    --gap: clamp(1rem, 2.5vw, 2rem);

    /* Borders & Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(61, 64, 91, 0.08);
    --shadow-hover: 0 8px 40px rgba(61, 64, 91, 0.14);

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --duration: 0.5s;
}

/* ============================================
       Reset & Base
       ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    color: var(--navy);
    background-color: white;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
       Sidebar Navigation
       ============================================ */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--navy);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.4s var(--ease-out);
}

.sidebar__brand {
    padding: 2rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(244, 241, 222, 0.1);
}

.sidebar__logo {
    font-size: 2rem;
    letter-spacing: -0.02em;
    color: var(--cream-dark);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: skewX(-10deg);
}

.logo {
    filter: brightness(0) invert(1);
}

.sidebar__logo span {
    color: var(--terracotta);
}

.sidebar__tagline {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-top: 0.35rem;
}

.sidebar__nav {
    flex: 1;
    padding: 1.5rem 0;
}

.hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.hero__content {
    flex: 1;
}

/* RIGHT */
.hero__image {
    flex: 1;
    text-align: right;
}

.hero__image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .hero__container {
        flex-direction: column;
        text-align: center;
    }

    .hero__image {
        text-align: center;
    }
}

.sidebar__nav ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar__nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(244, 241, 222, 0.65);
    transition: all 0.3s var(--ease-out);
    position: relative;
    text-decoration: none;
}

.sidebar__nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 70%;
    background: var(--terracotta);
    border-radius: 0 3px 3px 0;
    transition: transform 0.3s var(--ease-out);
}

.sidebar__nav a:hover,
.sidebar__nav a.active {
    color: var(--cream);
    background: rgba(244, 241, 222, 0.06);
}

.sidebar__nav a:hover::before,
.sidebar__nav a.active::before {
    transform: translateY(-50%) scaleY(1);
}

.sidebar__nav .nav-icon {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sidebar__footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(244, 241, 222, 0.1);
}

.sidebar__hours {
    font-size: 0.78rem;
    color: rgba(244, 241, 222, 0.5);
    line-height: 1.6;
}

.sidebar__hours strong {
    color: var(--sage-light);
    font-weight: 600;
}

/* ============================================
       Mobile Hamburger Toggle
       ============================================ */
.hamburger {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1100;
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.hamburger__lines {
    width: 22px;
    height: 16px;
    position: relative;
}

.hamburger__lines span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.hamburger__lines span:nth-child(1) {
    top: 0;
}

.hamburger__lines span:nth-child(2) {
    top: 7px;
}

.hamburger__lines span:nth-child(3) {
    top: 14px;
}

.hamburger.is-active .hamburger__lines span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.hamburger.is-active .hamburger__lines span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger__lines span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

/* Mobile overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61, 64, 91, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.is-visible {
    opacity: 1;
}

/* ============================================
       Main Content Area
       ============================================ */
.main {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
}

/* ============================================
       Scroll-triggered Animation Classes
       ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
       Section: Hero
       ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--section-pad);
    background: rgb(208, 205, 205);
    overflow: hidden;
}

/* Sections below the fold — browser skip render until near viewport */
.section,
.section--alt,
footer.footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
}

.hero__content {
    max-width: 640px;
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--sage);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.hero__title em {
    color: var(--terracotta);
    font-style: italic;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--navy-light);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Decorative scoops */
.hero__deco {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(280px, 35vw, 500px);
    height: clamp(280px, 35vw, 500px);
    z-index: 1;
}

.scoop {
    position: absolute;
    border-radius: 50%;
    box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.08), 0 6px 20px rgba(0, 0, 0, 0.06);
}

.scoop--strawberry {
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at 35% 35%, #f4a4b8, var(--terracotta));
    top: 0;
    right: 10%;
}

.scoop--mint {
    width: 50%;
    height: 50%;
    background: radial-gradient(circle at 35% 35%, var(--sage-light), var(--sage-dark));
    bottom: 8%;
    right: 0;
}

.scoop--vanilla {
    width: 45%;
    height: 45%;
    background: radial-gradient(circle at 35% 35%, #fff5e0, var(--cream-dark));
    bottom: 15%;
    left: 5%;
}

.scoop--highlight {
    position: absolute;
    width: 25%;
    height: 25%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    top: 15%;
    left: 20%;
    filter: blur(6px);
}

/* ============================================
       Buttons
       ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
}

.btn--primary {
    background: var(--terracotta);
    color: #fff;
}

.btn--primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(224, 122, 95, 0.35);
}

.btn--outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
}

.btn--outline:hover {
    background: var(--navy);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn--sage {
    background: var(--sage);
    color: #fff;
}

.btn--sage:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(129, 178, 154, 0.35);
}

/* ============================================
       Section Headers (shared)
       ============================================ */
.section {
    padding: var(--section-pad);
}

.section--alt {
    background: #fff;
}

.section__header {
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
}

.card-img-top {
    object-fit: contain;
}

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.section__desc {
    margin-top: 0.75rem;
    font-size: 1.3rem;
    color: var(--navy);
    max-width: 560px;
}

.section__desc_content {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: var(--navy);
    max-width: 560px;
}

/* ============================================
       Section: Flavor Wheel — Ticker Marquee
       ============================================ */
.flavors-section {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
}

.flavors-section .section__header {
    padding-left: var(--section-pad);
    padding-right: var(--section-pad);
}

/* Marquee wrapper */
.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0 2rem;
}

/* Subtle edge fades */
.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* Two rows scrolling in opposite directions */
.marquee__track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
    animation: marquee-scroll 35s linear infinite;
}

.marquee__track--reverse {
    animation-name: marquee-scroll-reverse;
    animation-duration: 40s;
    margin-top: 1.25rem;
}

/* Pause on hover */
.marquee:hover .marquee__track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* HERO BRAND */
.hero-brand {
    background-image: url('/assets/images/timberstik-_pro_grade_0.webp');
    background-size: cover;
    /* phủ full */
    background-position: center;
    /* căn giữa */
    padding: 100px 0;
    color: var(--sage);
    text-align: center;
    position: relative;
}

.hero-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    /* trắng mờ */
}

/* giữ text nổi lên */
.hero-brand>* {
    position: relative;
    z-index: 1;
}

/* TITLE */
.brand-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* BREADCRUMB */
.breadcrumb-custom {
    font-size: 18px;
}

.breadcrumb-custom a {
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    text-decoration: underline;
}

.breadcrumb-custom span {
    margin: 0 8px;
}

.breadcrumb-custom .active {
    font-weight: 600;
}

/* Flavor card — horizontal compact style */
.flavor-card {
    flex-shrink: 0;
    width: 340px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 1.15rem;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.flavor-card:hover {
    box-shadow: var(--shadow-hover);
    transform: scale(1.03);
}

.flavor-card__swatch {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: inset 0 -4px 10px rgba(0, 0, 0, 0.08);
}

.flavor-card__swatch::after {
    content: '';
    position: absolute;
    width: 35%;
    height: 35%;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    top: 12%;
    left: 18%;
    filter: blur(3px);
}

.flavor-card__info {
    min-width: 0;
}

.flavor-card__name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flavor-card__type {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sage);
    margin-bottom: 0.3rem;
}

.flavor-card__desc {
    font-size: 0.82rem;
    color: var(--navy-light);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.flavor-card__tag {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 50px;
    background: var(--terracotta);
    color: #fff;
}

/* ============================================
       Section: Topping Builder
       ============================================ */
.builder {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(224, 122, 95, 0.06) 0%, transparent 50%),
        #fff;
}

.builder__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.builder__steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.builder-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out);
}

.builder-step:hover {
    box-shadow: var(--shadow-card);
}

.builder-step__num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--terracotta);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
}

.builder-step__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.builder-step__text {
    font-size: 0.88rem;
    color: var(--navy-light);
}

.builder__preview {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.builder__preview-bowl {
    width: 200px;
    height: 110px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    position: relative;
    margin: 0 auto 1.5rem;
}

.builder__preview-bowl::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -10px;
    right: -10px;
    height: 20px;
    background: var(--navy);
    border-radius: 50%;
}

.builder__preview-scoop1 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fce4b8, #e6c68a);
    position: absolute;
    top: -55px;
    left: 20px;
    box-shadow: inset 0 -6px 15px rgba(0, 0, 0, 0.08);
}

.builder__preview-scoop2 {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #f4a4b8, #e07a8a);
    position: absolute;
    top: -55px;
    right: 20px;
    box-shadow: inset 0 -6px 15px rgba(0, 0, 0, 0.08);
}

.builder__preview-scoop3 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--sage-light), var(--sage));
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 -6px 15px rgba(0, 0, 0, 0.08);
}

.builder__preview-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 500;
}

.builder__preview-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--terracotta);
    margin-top: 0.5rem;
}

.builder__preview-note {
    font-size: 0.8rem;
    color: var(--navy-light);
    margin-top: 0.25rem;
}

/* ============================================
       Section: Catering Cart
       ============================================ */
.catering__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--gap);
}

.cart-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
}

.cart-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.cart-card__image {
    background: #f8fafc;
    padding: 20px;
    height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.3s;
}


.cart-card__visual {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.cart-card__visual img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}


/* BOX TABLE */
.product-table-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
    /* scroll dính */
}

/* FEATURE LIST */
.feature-list {
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 8px;
    font-size: large;
}

/* TABLE */
.table {
    font-size: 14px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    transition: 0.5s;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: 0.4s;
}

.product-card:hover img {
    transform: scale(1.8);
}

.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;

    width: 42px;
    height: 42px;
    background: #1E4AA8;
    color: white;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    transition: 0.3s;
}

.card-arrow:hover {
    transform: scale(1.1);
    background: #163a82;
}

/* arrow animation */
.card-arrow i {
    transition: 0.3s;
}

.cart-card:hover .card-arrow i {
    transform: translateX(4px);
}

.cart-card:hover .cart-card__visual img {
    transform: scale(1.8);
}

.cart-card__visual-label {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 50px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-card__body {
    padding: 1.5rem;
}

.cart-card__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.35rem;
}

.cart-card__desc {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cart-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.cart-card__detail {
    padding: 0.3rem 0.7rem;
    background: rgba(61, 64, 91, 0.06);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--navy);
}

.cart-card__price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
}

.cart-card__price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--navy-light);
}

/* ============================================
       Section: Seasonal Limited Editions
       ============================================ */
/* ============================================
       Section: Seasonal — Interactive Tabs
       ============================================ */
.seasonal-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.seasonal-tab {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(61, 64, 91, 0.05);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy-light);
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    text-align: center;
    position: relative;
}

.seasonal-tab__icon {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.seasonal-tab:hover {
    background: rgba(61, 64, 91, 0.09);
    color: var(--navy);
}

.seasonal-tab.is-active {
    color: #fff;
    border-color: transparent;
}

.seasonal-tab.is-active[data-season="spring"] {
    background: var(--terracotta);
}

.seasonal-tab.is-active[data-season="summer"] {
    background: var(--navy);
}

.seasonal-tab.is-active[data-season="autumn"] {
    background: var(--terracotta);
}

.seasonal-tab.is-active[data-season="winter"] {
    background: var(--navy);
}

/* Tab panels container */
.seasonal-panels {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.seasonal-panel {
    display: none;
    animation: seasonFadeIn 0.5s var(--ease-out);
}

.seasonal-panel.is-active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

@keyframes seasonFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left: image visual with overlay */
.seasonal-panel__visual {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    overflow: hidden;
}

.seasonal-panel__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seasonal-panel__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.seasonal-panel__badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
}

/* Right: details panel */
.seasonal-panel__details {
    padding: clamp(2rem, 4vw, 3rem);
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seasonal-panel__season-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

.seasonal-panel__name {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.seasonal-panel__desc {
    font-size: 1rem;
    color: var(--navy-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 440px;
}

.seasonal-panel__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.seasonal-panel__meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: var(--cream);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
}

.seasonal-panel__meta-tag span {
    font-size: 1rem;
}

.seasonal-panel__cta {
    align-self: flex-start;
}

/* Responsive: Tablet & Mobile */
@media (max-width: 1024px) {
    .seasonal-panel.is-active {
        grid-template-columns: 1fr;
    }

    .seasonal-panel__visual {
        min-height: 220px;
    }
}

@media (max-width: 640px) {
    .seasonal-tabs {
        gap: 3px;
    }

    .seasonal-tab {
        padding: 0.75rem 0.5rem;
        font-size: 0.72rem;
    }

    .seasonal-tab__icon {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }

    .seasonal-panel__visual {
        min-height: 180px;
    }
}


.footer {
    background: var(--navy);
    color: #cbd5e1;
    padding: 50px 30px 20px;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer__col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer__col ul {
    list-style: none;
    padding: 0;
}

.footer__col ul li {
    margin-bottom: 8px;
}

.footer__col a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer__col a:hover {
    color: white;
}

.footer__desc {
    margin-bottom: 15px;
}

.footer__contact {
    font-size: 14px;
}

/* HERO */
.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E4AA8, #1e40af);
    color: white;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

/* INFO */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

/* SECTION */
.contact-section {
    padding: 60px 0;
}

.footer__bottom {
    margin-top: 30px;
    border-top: 1px solid #1e293b;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
}

/* ============================================
       Responsive: Tablet (< 1024px)
       ============================================ */
@media (max-width: 1024px) {
    :root {
        --sidebar-width: 0px;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 280px;
    }

    .sidebar.is-open {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .main {
        margin-left: 0;
    }

    .builder__layout,
    .loyalty__layout {
        grid-template-columns: 1fr;
    }

    .hero__deco {
        opacity: 0.3;
        right: -10%;
    }
}

/* ============================================
       Responsive: Mobile (< 640px)
       ============================================ */
@media (max-width: 640px) {
    .hero {
        padding-top: 5rem;
        min-height: auto;
    }

    .hero__deco {
        opacity: 0.2;
        right: -15%;
        width: 220px;
        height: 220px;
    }

    .catering__grid {
        grid-template-columns: 1fr;
    }

    .stamp-card__grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__links {
        gap: 2rem;
    }

    .section {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.related-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
    height: 100%;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.related-card__img {
    height: 220px;
    overflow: hidden;
}

.related-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.related-card__body {
    padding: 15px;
}

.related-card__body h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-card__body p {
    font-size: 14px;
    color: #666;
    height: 40px;
    overflow: hidden;
}

.related-card .btn {
    margin-top: 10px;
}