@charset "utf-8";
/* 

Develop By Hemat Ullah Hemat
WhatsApp Numbber: +93773482491

*/

:root {
    /* Color Palette — Terracotta */
    --terracotta: #E07A5F;
    --cream: #F4F1DE;
    --navy: #3D405B;
    --sage: #81B29A;

    /* 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;
}

body {
    font-family: var(--font-body);
    color: var(--navy);
    background-color: var(--cream);
    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-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--cream);
}

.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;
}

.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;
}

.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;
}

.footer__developer p {
    text-align: justify !important;
    text-justify: inter-word;
    line-height: 2;
}

.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);
}

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

.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:
        radial-gradient(ellipse at 20% 80%, rgba(129, 178, 154, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(224, 122, 95, 0.12) 0%, transparent 50%),
        var(--cream);
    overflow: hidden;
}

.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.8rem, 6vw, 4.5rem);
    font-weight: 700;
    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;
}

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

.section__desc {
    margin-top: 0.75rem;
    font-size: 1.05rem;
    color: var(--navy-light);
    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);
    }
}

/* 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 {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.cart-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.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: var(--navy);
    margin-bottom: 0.35rem;
}

.cart-card__desc {
    font-size: 0.9rem;
    color: var(--navy-light);
    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: #d4627a;
}

.seasonal-tab.is-active[data-season="summer"] {
    background: #e09030;
}

.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;
    }
}

/* ============================================
       Section: Loyalty Stamp Card
       ============================================ */
.loyalty {
    background:
        radial-gradient(ellipse at 30% 70%, rgba(129, 178, 154, 0.1) 0%, transparent 50%),
        var(--cream);
}

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

.loyalty__info {
    max-width: 480px;
}

.loyalty__perks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.perk {
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.perk__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--sage);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.perk__text {
    font-size: 0.92rem;
    color: var(--navy-light);
}

.perk__text strong {
    color: var(--navy);
}

/* Stamp Card Visual */
.stamp-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.stamp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--terracotta), var(--sage), var(--terracotta));
}

.stamp-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.stamp-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
}

.stamp-card__count {
    font-size: 0.8rem;
    color: var(--terracotta);
    font-weight: 700;
}

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

.stamp {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    border: 2px dashed rgba(61, 64, 91, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: rgba(61, 64, 91, 0.2);
    transition: all 0.3s var(--ease-out);
}

.stamp--filled {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: #fff;
    box-shadow: 0 2px 8px rgba(224, 122, 95, 0.3);
}

.stamp--reward {
    border-color: var(--sage);
    color: var(--sage);
    font-size: 1rem;
    font-weight: 700;
}

.stamp--reward.stamp--filled {
    background: var(--sage);
    border-color: var(--sage);
    color: #fff;
    box-shadow: 0 2px 8px rgba(129, 178, 154, 0.3);
}

.stamp-card__footer {
    margin-top: 1.25rem;
    font-size: 0.78rem;
    color: var(--navy-light);
    text-align: center;
}

/* ============================================
       Footer
       ============================================ */
.footer {
    padding: 3rem var(--section-pad) 2rem;
    background: var(--navy);
    color: rgba(244, 241, 222, 0.6);
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(244, 241, 222, 0.1);
}

.footer__brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

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

.footer__copy {
    font-size: 0.85rem;
    max-width: 300px;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 4rem;
}

.footer__col {
    min-width: 140px;
}

.footer__col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 0.75rem;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer__col a {
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer__col a:hover {
    color: var(--cream);
}

.footer__bottom {
    padding-top: 1.5rem;
    font-size: 0.78rem;
    text-align: center;
}

.footer__bottom a {
    color: var(--terracotta-light);
}

.footer__bottom a:hover {
    color: var(--terracotta);
}

/* ============================================
       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;
    }
}

/* ============================================
   RTL — Arabic Version
   ============================================ */

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

/* Sidebar */
html[dir="rtl"] .sidebar {
    left: auto;
    right: 0;
}

html[dir="rtl"] .sidebar__nav a::before {
    left: auto;
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Main content */
html[dir="rtl"] .main {
    margin-left: 0;
    margin-right: var(--sidebar-width);
}

/* Hero */
html[dir="rtl"] .hero__deco {
    right: auto;
    left: -2%;
}

/* Buttons */
html[dir="rtl"] .btn {
    flex-direction: row;
}

/* Mobile hamburger */
html[dir="rtl"] .hamburger {
    left: auto;
    right: 1rem;
}

/* Cards / general text */
html[dir="rtl"] .section__desc,
html[dir="rtl"] .hero__subtitle {
    text-align: right;
}

/* Decorative positions */
html[dir="rtl"] .flavor-card__tag {
    right: auto;
    left: 0.85rem;
}

html[dir="rtl"] .cart-card__visual-label {
    left: auto;
    right: 1.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
    html[dir="rtl"] .sidebar {
        transform: translateX(100%);
    }

    html[dir="rtl"] .sidebar.is-open {
        transform: translateX(0);
    }

    html[dir="rtl"] .main {
        margin-right: 0;
    }

    html[dir="rtl"] .hero__deco {
        right: auto;
        left: -10%;
    }
}

@media (max-width: 640px) {
    html[dir="rtl"] .hero__deco {
        right: auto;
        left: -15%;
    }
}

/* =========================================================
   CUSTOM ARABIC FONT — Font 1.ttf
   ========================================================= */

@font-face {
    font-family: 'Font1';
    src: url('fonts/Font%201.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   APPLY FONT TO THE ENTIRE WEBSITE
   ========================================================= */

html,
body,
body *,
button,
input,
textarea,
select,
option,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
li,
ul,
ol,
label,
strong,
em,
small {
    font-family: 'Font1', sans-serif;
}


/* =========================================================
   FORM ELEMENTS
   ========================================================= */

input,
textarea,
select,
button {
    font-family: 'Font1', sans-serif;
}


/* =========================================================
   LINKS AND BUTTONS
   ========================================================= */

a,
button {
    font-family: 'Font1', sans-serif;
}


/* =========================================================
   HEADINGS
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Font1', sans-serif;
}


/* =========================================================
   ARABIC RTL TEXT
   ========================================================= */

html[dir="rtl"],
body {
    font-family: 'Font1', sans-serif;
}


/* =========================================================
   PLACEHOLDER TEXT
   ========================================================= */

::placeholder {
    font-family: 'Font1', sans-serif;
}


/* =========================================================
   ENSURE INHERITANCE THROUGH ALL COMPONENTS
   ========================================================= */

.sidebar,
.sidebar *,
.main,
.main *,
.section,
.section *,
.hero,
.hero *,
.builder,
.builder *,
.catering__grid,
.catering__grid *,
.seasonal-tabs,
.seasonal-tabs *,
.seasonal-panels,
.seasonal-panels *,
.loyalty,
.loyalty *,
.footer,
.footer * {
    font-family: 'Font1', sans-serif;
}


/* =========================================================
   FLOATING PHONE + WHATSAPP BUTTONS
   ========================================================= */

.floating-contact {
    position: fixed;

    /* Default: RIGHT side */
    right: 24px;
    left: auto;

    bottom: 95px;

    z-index: 9998;

    display: flex;
    flex-direction: column;
    gap: 14px;

    direction: ltr;

    transition:
        left 0.35s ease,
        right 0.35s ease,
        bottom 0.35s ease;
}


/* =========================================================
   BASE BUTTON
   ========================================================= */

.floating-contact__btn {
    width: 58px;
    height: 58px;

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

    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18),
        0 3px 8px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    position: relative;
}


/* =========================================================
   ICON
   ========================================================= */

.floating-contact__btn svg {
    width: 27px;
    height: 27px;

    fill: #ffffff;

    display: block;

    transition: transform 0.3s ease;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.floating-contact__whatsapp {
    background: #25D366;
}


.floating-contact__whatsapp:hover {
    transform: translateY(-4px) scale(1.06);

    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.38),
        0 4px 10px rgba(0, 0, 0, 0.14);
}


.floating-contact__whatsapp:hover svg {
    transform: rotate(-8deg) scale(1.08);
}


/* =========================================================
   PHONE
   ========================================================= */

.floating-contact__phone {
    background: #111827;
}


.floating-contact__phone:hover {
    transform: translateY(-4px) scale(1.06);

    box-shadow:
        0 12px 30px rgba(17, 24, 39, 0.35),
        0 4px 10px rgba(0, 0, 0, 0.14);
}


.floating-contact__phone:hover svg {
    transform: rotate(-10deg) scale(1.08);
}


/* =========================================================
   TOOLTIP
   ========================================================= */

.floating-contact__btn::after {
    content: attr(title);

    position: absolute;

    right: 70px;
    top: 50%;

    transform:
        translateY(-50%) translateX(6px);

    background: #111827;
    color: #ffffff;

    padding: 8px 13px;

    border-radius: 8px;

    font-family: 'Font1', sans-serif;
    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.floating-contact__btn:hover::after {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(-50%) translateX(0);
}


/* =========================================================
   WHATSAPP PULSE
   ========================================================= */

.floating-contact__whatsapp::before {
    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border: 2px solid rgba(37, 211, 102, 0.35);

    animation: whatsappPulse 2.2s infinite;
}


@keyframes whatsappPulse {

    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.18);
        opacity: 0;
    }

    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}


/* =========================================================
   DESKTOP
   1025px AND ABOVE = LEFT SIDE
   ========================================================= */

@media (min-width: 1025px) {

    .floating-contact {
        left: 24px;
        right: auto;
    }


    /* Tooltip opens toward the RIGHT */

    .floating-contact__btn::after {
        left: 70px;
        right: auto;

        transform:
            translateY(-50%) translateX(-6px);
    }


    .floating-contact__btn:hover::after {
        transform:
            translateY(-50%) translateX(0);
    }

}


/* =========================================================
   TABLET / MOBILE
   DRAWER CLOSED = RIGHT SIDE
   ========================================================= */

@media (max-width: 1024px) {

    .floating-contact {
        right: 24px;
        left: auto;
    }

}



/* Move close button upward */
.sidebar-close,
.sidebar__close,
#sidebarClose {
    top: 18px !important;
}

/* Give the brand clear space below it */
.sidebar__brand {
    margin-top: 35px !important;
}


/* =========================================================
   DRAWER OPEN
   Move buttons to LEFT side
   ========================================================= */

/*
   Supports the common sidebar state classes used
   by the template.
*/

body:has(.sidebar.is-open) .floating-contact,
body:has(.sidebar.open) .floating-contact,
body:has(.sidebar.active) .floating-contact,
body.sidebar-open .floating-contact {

    left: 24px;
    right: auto;
}


/* =========================================================
   DRAWER OPEN TOOLTIP
   Tooltip opens toward the RIGHT
   ========================================================= */

body:has(.sidebar.is-open) .floating-contact__btn::after,
body:has(.sidebar.open) .floating-contact__btn::after,
body:has(.sidebar.active) .floating-contact__btn::after,
body.sidebar-open .floating-contact__btn::after {

    left: 70px;
    right: auto;

    transform:
        translateY(-50%) translateX(-6px);
}


body:has(.sidebar.is-open) .floating-contact__btn:hover::after,
body:has(.sidebar.open) .floating-contact__btn:hover::after,
body:has(.sidebar.active) .floating-contact__btn:hover::after,
body.sidebar-open .floating-contact__btn:hover::after {

    transform:
        translateY(-50%) translateX(0);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .floating-contact {
        right: 16px;
        left: auto;

        bottom: 82px;

        gap: 11px;
    }


    .floating-contact__btn {
        width: 52px;
        height: 52px;
    }


    .floating-contact__btn svg {
        width: 24px;
        height: 24px;
    }


    /* Hide tooltips on mobile */

    .floating-contact__btn::after {
        display: none;
    }


    /* Drawer open = LEFT */

    body:has(.sidebar.is-open) .floating-contact,
    body:has(.sidebar.open) .floating-contact,
    body:has(.sidebar.active) .floating-contact,
    body.sidebar-open .floating-contact {

        left: 16px;
        right: auto;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .floating-contact {
        right: 12px;
        left: auto;

        bottom: 76px;
    }


    .floating-contact__btn {
        width: 49px;
        height: 49px;
    }


    .floating-contact__btn svg {
        width: 22px;
        height: 22px;
    }


    /* Drawer open = LEFT */

    body:has(.sidebar.is-open) .floating-contact,
    body:has(.sidebar.open) .floating-contact,
    body:has(.sidebar.active) .floating-contact,
    body.sidebar-open .floating-contact {

        left: 12px;
        right: auto;
    }

}

/*  
/* =========================================================
   SERVICE INFORMATION CARD
   Compact + Centered + Balanced
   ========================================================= */

.stamp-card {
    width: 100%;
    max-width: 420px;

    margin-left: auto !important;
    margin-right: auto !important;

    padding: 24px !important;

    box-sizing: border-box;

    overflow: hidden;
}


/* Header */

.stamp-card__header {
    width: 100%;

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

    gap: 15px;

    box-sizing: border-box;
}


/* Title */

.stamp-card__title {
    font-size: 18px !important;
    line-height: 1.5;

    text-align: right !important;
}


/* Location */

.stamp-card__count {
    font-size: 15px !important;
    white-space: nowrap;
}


/* =========================================================
   ICON GRID
   ========================================================= */

.stamp-card__grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 10px;

    margin: 20px auto;

    box-sizing: border-box;
}


/* Individual stamp */

.stamp {
    width: 100%;
    aspect-ratio: 1 / 1;

    min-width: 0;

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

    box-sizing: border-box;

    font-size: 21px !important;

    text-align: center !important;

    overflow: hidden;
}


/* Call button */

.stamp--reward {
    font-size: 12px !important;

    line-height: 1.4;

    padding: 5px;
}


/* Footer text */

.stamp-card__footer {
    width: 100%;
    max-width: 320px;

    margin: 14px auto 0;

    font-size: 14px !important;
    line-height: 1.8;

    text-align: center !important;

    box-sizing: border-box;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 768px) {

    .stamp-card {
        max-width: 370px;
        padding: 20px !important;
    }

    .stamp-card__grid {
        gap: 8px;
    }

    .stamp {
        font-size: 18px !important;
    }

    .stamp--reward {
        font-size: 11px !important;
    }

    .stamp-card__footer {
        font-size: 13px !important;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .stamp-card {
        max-width: 330px;
        padding: 16px !important;
    }

    .stamp-card__header {
        gap: 8px;
    }

    .stamp-card__title {
        font-size: 16px !important;
    }

    .stamp-card__count {
        font-size: 13px !important;
    }

    .stamp-card__grid {
        gap: 6px;

        margin-top: 16px;
        margin-bottom: 16px;
    }

    .stamp {
        font-size: 16px !important;
    }

    .stamp--reward {
        font-size: 10px !important;
    }

    .stamp-card__footer {
        font-size: 12px !important;
        max-width: 270px;
    }
}




/* ==========================================
   Sidebar Footer - Compact Developer Info
   ========================================== */

.sidebar {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    box-sizing: border-box;
    overflow: hidden;
}

.sidebar__nav {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.sidebar__footer {
    flex-shrink: 0;
    padding: 8px 10px 14px !important;
    margin-top: auto;
}

.sidebar__developer {
    text-align: center;
    direction: ltr;
    padding: 5px 8px !important;
    line-height: 1.35;
}

.sidebar__copyright {
    font-size: 10px !important;
    margin-bottom: 1px !important;
    opacity: 0.65;
}

.sidebar__role {
    font-size: 11px !important;
    font-weight: 600;
    margin-bottom: 1px !important;
}

.sidebar__founder {
    font-size: 10px !important;
    margin-bottom: 1px !important;
    opacity: 0.75;
}

.sidebar__name {
    font-size: 11px !important;
    font-weight: 700;
}

.sidebar__divider {
    width: 32px !important;
    height: 1px;
    margin: 5px auto !important;
    opacity: 0.2;
}

.sidebar__datetime {
    font-size: 9px !important;
    line-height: 1.4 !important;
    opacity: 0.6;
}



.builder__preview-image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 18px;
}

.builder__preview-image img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}