/* ============================================
   KALP Homepage — Bright/Warm Sections
   Dark hero → City carousel transition → Packaging gradient sections
   ============================================ */

/* ---- CITY FRAME SECTION ---- */
/* Rainbow packaging gradient bg, city images cycle inside the arch frame */
.kalp-city-carousel {
    position: relative;
    width: 100%;
    padding: 60px 2rem;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        #F8E8D0 0%,
        #FDDEC5 15%,
        #FCD5C8 30%,
        #F5D0D8 50%,
        #E8D0E8 65%,
        #D5D8F0 80%,
        #C8E0F5 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-carousel__slides { display: none; }
.city-carousel__overlay { display: none; }

.city-carousel__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ---- Mughal Arch Frame ---- */
.city-carousel__frame {
    position: relative;
    width: min(380px, 70vw);
    aspect-ratio: 1 / 1.9;
}

/* Flavour name at the top inside the frame — brand maroon, cycles with images */
.city-carousel__flavour-name {
    position: absolute;
    top: 18%;
    left: 0;
    right: 0;
    z-index: 5;
    text-align: center;
    pointer-events: none;
    height: 2.5em;
}

.city-carousel__flavour-label {
    position: absolute;
    width: 100%;
    left: 0;
    font-family: var(--font-button);
    font-size: clamp(1.2rem, 3.5vw, 1.7rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5C1F0B;
    text-shadow: 0 1px 6px rgba(255, 248, 238, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.city-carousel__flavour-label.is-active {
    opacity: 1;
}

/* City images cycling inside — clipped to arch shape via SVG clipPath */
/* Images are inside SVG foreignObject — fill the entire space */
.city-carousel__frame-slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.city-carousel__frame-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.city-carousel__frame-slide.is-active {
    opacity: 1;
}

.city-carousel__frame-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* The SVG arch gold border — on top, same inset as image clip */
.city-carousel__frame-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* ---- Text + CTAs inside the frame, at the bottom ---- */
/* Text sits over the SVG bottom panel — no CSS gradient needed */
.city-carousel__frame-content {
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    z-index: 4;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1.2rem;
}

.city-carousel__tagline {
    font-family: var(--font-cursive);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #5C1F0B;
    text-shadow: 0 1px 6px rgba(255, 248, 238, 0.5),
                 0 0 2px rgba(92, 31, 11, 0.3);
}

.city-carousel__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.03em;
}

.city-carousel__sub {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.3vw, 0.9rem);
    color: rgba(255, 248, 238, 0.8);
    max-width: 320px;
    line-height: 1.6;
}

/* CTA buttons inside the frame */
.city-carousel__ctas {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.city-carousel__btn {
    display: inline-block;
    padding: 10px 22px;
    font-family: var(--font-button);
    font-size: var(--text-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.city-carousel__btn--primary {
    background: var(--gold);
    color: var(--deep-brown);
    border: var(--border-thin) solid var(--gold);
}

.city-carousel__btn--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.city-carousel__btn--secondary {
    background: transparent;
    color: var(--cream);
    border: var(--border-thin) solid rgba(255, 248, 238, 0.4);
}

.city-carousel__btn--secondary:hover {
    background: rgba(255, 248, 238, 0.1);
    border-color: rgba(255, 248, 238, 0.7);
}

/* City name dots */
.city-carousel__city-name {
    margin-top: 24px;
    position: relative;
    z-index: 3;
    display: flex;
    gap: 24px;
    align-items: center;
}

.city-carousel__dot {
    font-family: var(--font-button);
    font-size: var(--text-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(61, 30, 15, 0.3);
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 6px 4px;
    position: relative;
}

.city-carousel__dot::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brown-text);
    transition: width 0.3s ease;
}

.city-carousel__dot.is-active {
    color: var(--brown-text);
}

.city-carousel__dot.is-active::after {
    width: 100%;
}

.city-carousel__dot:hover {
    color: rgba(61, 30, 15, 0.6);
}

/* ---- CAROUSEL PAUSE/PLAY BUTTON ---- */
.city-carousel__pause {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 12px auto 0;
    background: rgba(61, 30, 15, 0.08);
    border: var(--border-thin) solid rgba(61, 30, 15, 0.15);
    border-radius: var(--radius-full);
    color: rgba(61, 30, 15, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.city-carousel__pause:hover {
    background: rgba(61, 30, 15, 0.12);
    color: rgba(61, 30, 15, 0.8);
}

/* ---- RAINBOW-TO-CREAM GRADIENT TRANSITION ---- */
.kalp-transition-gradient {
    height: 100px;
    background: linear-gradient(
        180deg,
        #C8E0F5 0%,
        #D5D8F0 20%,
        #E8D8E0 40%,
        #F5E6C0 70%,
        var(--cream) 100%
    );
}

/* ---- INDIVIDUAL FLAVOUR SECTIONS ---- */
/* Split layout: city background + text on one side + bar visual on the other */
.kalp-flavour {
    position: relative;
    width: 100%;
    /* Cinematic full-screen, but svh (small viewport height) so mobile browser
       bars don't push content past the screen. Paired with the trimmed inner
       padding + viewport-relative image cap (below + in front-page.php) so each
       flavour fits exactly ONE screen — nothing overflows/cuts, on desktop or
       (especially) mobile. Was: min-height: 100vh + image 640px → 800px (cut). */
    min-height: 100svh;
    overflow: hidden;
}

.flavour__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.flavour__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flavour__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(26, 10, 3, 0.85) 0%,
        rgba(26, 10, 3, 0.6) 40%,
        rgba(26, 10, 3, 0.3) 70%,
        rgba(26, 10, 3, 0.15) 100%
    );
}

.flavour__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 100svh;
    max-width: var(--container-wide);
    margin: 0 auto;
    /* vertical padding trimmed + fluid (was 80px) so content fits one screen */
    padding: clamp(1.5rem, 4vh, 3.5rem) 80px;
    gap: 60px;
}

/* Reverse layout — text on right, visual on left */
.flavour__inner--reverse {
    flex-direction: row-reverse;
}

.kalp-flavour--reverse .flavour__bg-overlay {
    background: linear-gradient(
        270deg,
        rgba(26, 10, 3, 0.85) 0%,
        rgba(26, 10, 3, 0.6) 40%,
        rgba(26, 10, 3, 0.3) 70%,
        rgba(26, 10, 3, 0.15) 100%
    );
}

.flavour__text {
    flex: 1;
    max-width: var(--container-xs);
}

.flavour__city {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: var(--opacity-muted);
    margin-bottom: 10px;
}

.flavour__name {
    font-family: var(--font-flavour);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: normal;
    line-height: 0.9;
    color: var(--cream);
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.flavour__accent-line {
    display: block;
    height: var(--border-thick);
    width: 72px;
    margin-bottom: 20px;
}

.flavour__tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    opacity: 0.78;
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 360px;
}

.flavour__notes {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 34px;
}

.flavour__note {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: var(--opacity-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.flavour__note::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1px;
    background: var(--gold);
    opacity: var(--opacity-medium);
}

.flavour__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.flavour__price {
    font-family: var(--font-button);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.flavour__btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 13px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

/* All button rules use !important on color to defeat Astra parent's
   `a:hover { color: <theme-link-blue> }` which otherwise turns the
   button text bright blue on hover. Same playbook as the Chat 02 FAQ
   blue-hover fix — chained ancestor + !important wins on equal/higher
   specificity. Apply to base + :visited + :hover + :focus + :active. */
.flavour__btn--primary,
.flavour__btn--primary:visited,
.flavour__actions a.flavour__btn--primary {
    color: var(--deep-brown) !important;
    background: var(--gold);
}

.flavour__btn--primary:hover,
.flavour__btn--primary:focus,
.flavour__btn--primary:active,
.flavour__actions a.flavour__btn--primary:hover,
.flavour__actions a.flavour__btn--primary:focus {
    color: var(--deep-brown) !important;
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-gold);
}

.flavour__btn--secondary,
.flavour__btn--secondary:visited,
.flavour__actions a.flavour__btn--secondary {
    color: var(--cream) !important;
    background: transparent;
    border: var(--border-thin) solid rgba(255, 248, 238, 0.22);
}

.flavour__btn--secondary:hover,
.flavour__btn--secondary:focus,
.flavour__btn--secondary:active,
.flavour__actions a.flavour__btn--secondary:hover,
.flavour__actions a.flavour__btn--secondary:focus {
    color: var(--cream) !important;
    border-color: rgba(255, 248, 238, 0.55);
    transform: translateY(-2px);
}

/* Visual side — product bar placeholder */
.flavour__visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.flavour__bar-placeholder {
    width: 280px;
    height: 400px;
    background: rgba(255, 248, 238, 0.05);
    border: var(--border-thin) dashed rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.flavour__bar-emoji {
    font-size: 3rem;
    opacity: var(--opacity-subtle);
}

.flavour__bar-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--border-color);
}

/* Divider between flavours */
.kalp-flavour + .kalp-flavour::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
    z-index: 3;
}

/* ---- BRAND STORY STRIP ---- */
.kalp-brand-story {
    background: linear-gradient(135deg, var(--cream) 0%, #F5E6C0 40%, #FFE8D0 70%, #FFF0E5 100%);
    padding: 80px 40px;
    text-align: center;
}

.brand-story__inner {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.brand-story__quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--chocolate-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Brand-story quote ornament removed (punch-list item J).
   Was rendering a stray `"` glyph between the heading and the body
   quote which read as visual noise. */
.brand-story__quote::before {
    content: none;
}

/* Testimonials hidden (punch-list item G) — placeholder reviews
   can't go live before launch. CSS-hide rather than HTML-remove
   so the section is one rule-flip away from being restored when
   real reviews are collected. */
.kalp-testimonials,
.testimonials__inner {
    display: none !important;
}

.brand-story__sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brown-text);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.brand-story__cta {
    display: inline-block;
    font-family: var(--font-button);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--chocolate-dark);
    text-decoration: none;
    border: var(--border-thin) solid var(--chocolate-dark);
    padding: 12px 32px;
    transition: all 0.3s ease;
}

.brand-story__cta:hover {
    background: var(--chocolate-dark);
    color: var(--cream);
}

/* ---- WHY KALP / TRUST SECTION ---- */
.kalp-why {
    background: linear-gradient(180deg, #F5E6C0 0%, #FFECD2 30%, #FFD6BA 70%, #FCCFCF 100%);
    padding: 80px 40px;
}

.why-kalp__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.why-kalp__heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--chocolate-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.why-kalp__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-kalp__card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: var(--border-thin) solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-kalp__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(90, 32, 16, 0.1); /* close to --shadow-lg but uses different color */
    border-color: rgba(201, 168, 76, 0.45);
}

.why-kalp__icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.why-kalp__card-title {
    font-family: var(--font-button);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--chocolate-dark);
    margin-bottom: 0.75rem;
}

.why-kalp__card-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--brown-text);
    line-height: 1.6;
}

/* ---- OFFER COUNTDOWN ---- */
.kalp-countdown {
    background: var(--gold);
    padding: 50px 40px;
    text-align: center;
}

.countdown__inner {
    max-width: var(--container-sm);
    margin: 0 auto;
}

.countdown__heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.countdown__timer {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 2rem;
}

.countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown__number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--deep-brown);
    line-height: 1;
}

.countdown__label {
    font-family: var(--font-button);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(26, 10, 3, 0.6);
    margin-top: 4px;
}

.countdown__divider {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: rgba(26, 10, 3, 0.3);
    align-self: flex-start;
    margin-top: 4px;
}

.countdown__cta {
    display: inline-block;
    font-family: var(--font-button);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--deep-brown);
    color: var(--gold);
    padding: 14px 40px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.countdown__cta:hover {
    background: var(--chocolate-dark);
}

/* ---- TESTIMONIALS ---- */
.kalp-testimonials {
    background: linear-gradient(180deg, var(--cream) 0%, #FFF0E5 100%);
    padding: 80px 40px;
}

.testimonials__inner {
    max-width: var(--container-md);
    margin: 0 auto;
    text-align: center;
}

.testimonials__heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    color: var(--chocolate-dark);
    margin-bottom: 3rem;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial__card {
    background: rgba(255, 255, 255, 0.7);
    border: var(--border-thin) solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: left;
}

.testimonial__stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial__text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--chocolate-dark);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial__author {
    font-family: var(--font-button);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown-text);
}

/* ---- NEWSLETTER ---- */
.kalp-newsletter {
    background: linear-gradient(135deg, #FCCFCF 0%, #FFD6BA 30%, #FFECD2 60%, #E8D5F5 100%);
    padding: 80px 40px;
    text-align: center;
}

.newsletter__inner {
    max-width: 550px;
    margin: 0 auto;
}

.newsletter__heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    color: var(--chocolate-dark);
    margin-bottom: 0.75rem;
}

.newsletter__sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--brown-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter__form {
    display: flex;
    gap: 0;
    max-width: var(--container-text);
    margin: 0 auto;
}

.newsletter__input {
    flex: 1;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border: var(--border-thin) solid rgba(61, 30, 15, 0.2);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: rgba(255, 255, 255, 0.7);
    color: var(--chocolate-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter__input::placeholder {
    color: rgba(61, 30, 15, 0.4);
}

.newsletter__input:focus {
    border-color: var(--gold);
}

.newsletter__btn {
    font-family: var(--font-button);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--chocolate-dark);
    color: var(--cream);
    border: var(--border-thin) solid var(--chocolate-dark);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 14px 24px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter__btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep-brown);
}

/* ---- FOOTER ---- */
.kalp-footer {
    background: var(--deep-brown);
    border-top: var(--border-thin) solid rgba(201, 168, 76, 0.15);
    padding: 40px 40px 24px; /* item H follow-up: trimmed to reduce footer height */
}

.footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer__brand-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer__tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 248, 238, 0.5);
    line-height: 1.6;
    max-width: 280px;
}

.footer__col-title {
    font-family: var(--font-button);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 2px;
}

.footer__links a {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(255, 248, 238, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 10px 0;
    min-height: 44px;
    line-height: 1.5;
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__social {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.footer__social a {
    color: rgba(255, 248, 238, 0.5);
    transition: color 0.3s ease;
    font-size: 0.85rem;
    text-decoration: none;
}

.footer__social a:hover {
    color: var(--gold);
}

/* ---- Footer Newsletter ---- */
.footer__newsletter {
    max-width: var(--container-max);
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: var(--border-thin) solid rgba(201, 168, 76, 0.08);
}

.footer__newsletter .footer__col-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.footer__newsletter-form {
    display: flex;
    gap: 0;
    max-width: 420px;
}

.footer__newsletter-input {
    flex: 1;
    padding: 10px 16px;
    border: var(--border-thin) solid rgba(201, 168, 76, 0.2);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: rgba(255, 248, 238, 0.05);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer__newsletter-input::placeholder {
    color: rgba(255, 248, 238, 0.35);
}

.footer__newsletter-input:focus {
    border-color: var(--gold);
}

.footer__newsletter-btn {
    padding: 10px 20px;
    background: var(--gold);
    color: var(--deep-brown);
    border: var(--border-thin) solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-button);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.footer__newsletter-btn:hover {
    background: transparent;
    color: var(--gold);
}

/* ---- Footer Payment Icons ---- */
.footer__payment {
    max-width: var(--container-max);
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__payment-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(255, 248, 238, 0.45);
    letter-spacing: 0.05em;
}

.footer__payment-icons {
    display: flex;
    gap: 8px;
}

.footer__payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border: var(--border-thin) solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(255, 248, 238, 0.55);
    letter-spacing: 0.04em;
}

.footer__bottom {
    max-width: var(--container-max);
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: var(--border-thin) solid rgba(201, 168, 76, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__copyright {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255, 248, 238, 0.7);
}

.footer__legal {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(255, 248, 238, 0.65);
    max-width: var(--container-xs);
    text-align: right;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .kalp-city-carousel {
        padding: 40px 1rem;
    }

    .city-carousel__city-name {
        gap: 14px;
        margin-top: 16px;
    }

    .city-carousel__dot {
        font-size: 0.5rem;
    }

    .city-carousel__frame {
        width: min(320px, 80vw);
    }

    .city-carousel__frame-content {
        padding: 1rem 0.8rem 1.4rem;
    }

    .city-carousel__ctas {
        flex-direction: column;
        align-items: center;
    }

    .city-carousel__btn {
        width: 100%;
        max-width: 180px;
        text-align: center;
    }

    .city-carousel__flavour-label {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
    }

    .city-carousel__flavour-name {
        top: 16%;
    }

    .kalp-transition-gradient {
        height: 80px;
    }

    /* Flavour sections — stack on mobile: image on top, text below */
    .flavour__inner,
    .flavour__inner--reverse {
        flex-direction: column-reverse;
        padding: 40px 24px;
        gap: 24px;
        min-height: auto;
    }

    .flavour__bg-overlay {
        background: rgba(26, 10, 3, 0.80) !important;
    }

    .flavour__text {
        text-align: center;
        max-width: 100%;
    }

    .flavour__accent-line {
        margin-left: auto;
        margin-right: auto;
    }

    .flavour__tagline {
        max-width: 100%;
    }

    .flavour__notes {
        align-items: center;
    }

    .flavour__visual {
        min-height: 200px;
    }

    .flavour__bar-placeholder {
        width: 180px;
        height: 250px;
    }

    .flavour__name {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .flavour__actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .kalp-brand-story,
    .kalp-why,
    .kalp-testimonials,
    .kalp-newsletter {
        padding: 50px 20px;
    }

    .why-kalp__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .countdown__timer {
        gap: 16px;
    }

    .newsletter__form {
        flex-direction: column;
    }

    .newsletter__input {
        border-right: var(--border-thin) solid rgba(61, 30, 15, 0.2);
        border-radius: var(--radius-sm);
    }

    .newsletter__btn {
        border-radius: var(--radius-sm);
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer__newsletter-form {
        max-width: 100%;
    }

    .footer__payment {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__legal {
        text-align: center;
    }

    .kalp-footer {
        padding: 40px 20px 24px;
    }
}

@media (max-width: 480px) {
    .city-carousel__frame {
        width: 85vw;
    }

    .why-kalp__grid {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer__newsletter-form {
        flex-direction: column;
    }

    .footer__newsletter-input {
        border-right: var(--border-thin) solid rgba(201, 168, 76, 0.2);
        border-radius: var(--radius-sm);
    }

    .footer__newsletter-btn {
        border-radius: var(--radius-sm);
    }

    .back-to-top {
        bottom: 80px;
        right: 16px;
    }

    .footer__payment {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: var(--border-thin) solid var(--border-color);
    background: var(--deep-brown);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--deep-brown);
}

/* ============================================
   SOCIAL ICON IMPROVEMENTS
   ============================================ */
.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: var(--border-thin) solid rgba(201, 168, 76, 0.15);
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.footer__social a:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

/* ============================================
   ULTRA-SMALL SCREENS (320–360px)
   ============================================ */
@media (max-width: 360px) {
    .city-carousel__city-name {
        font-size: 0.65rem;
    }

    .flavour__name {
        font-size: 1.8rem;
    }

    .flavour__btn {
        padding: 12px 20px;
        font-size: 0.6rem;
    }

    .why-kalp__card {
        padding: 20px 14px;
    }

    .countdown__timer {
        gap: 10px;
    }

    .countdown__value {
        font-size: 1.6rem;
    }

    .footer__payment-icons {
        flex-wrap: wrap;
    }
}
