/* KALP — Homepage (front-page.php) styles
   Placeholder styles for the homepage scroll-unwrap layout.
   Full GSAP scroll-unwrap animation styles will be migrated in Phase C.7. */

/* ── Header / Site frame ─────────────────────────────────────────── */
.kalp-announcement {
    background: var(--gold);
    color: var(--deep-brown);
    text-align: center;
    padding: 0.6rem 1rem;
    font-family: var(--font-button);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}
.kalp-announcement__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.kalp-announcement__cta {
    color: var(--deep-brown);
    text-decoration: underline;
    font-weight: 700;
}
.kalp-announcement__close {
    background: none;
    border: none;
    color: var(--deep-brown);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
}

.kalp-header {
    background: var(--deep-brown);
    padding: 1rem var(--container-padding, 1.5rem);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.kalp-header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.kalp-header__logo, .kalp-header__brand-text {
    color: var(--cream);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.kalp-header__logo--image,
.kalp-header__logo--image .custom-logo-link {
    display: inline-block;
    line-height: 0;
}
.kalp-header__logo--image .custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
}
.kalp-footer__logo {
    margin-bottom: 1rem;
    line-height: 0;
}
.kalp-footer__logo .custom-logo {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1); /* white logo on dark footer */
}
.kalp-header__menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.kalp-header__menu a {
    color: var(--cream);
    text-decoration: none;
    font-family: var(--font-button);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.kalp-header__menu a:hover { color: var(--gold); }
.kalp-header__cart {
    color: var(--cream);
    position: relative;
    display: inline-flex;
    align-items: center;
}
.kalp-header__cart-count {
    background: var(--gold);
    color: var(--deep-brown);
    font-size: 0.6rem;
    border-radius: 999px;
    padding: 1px 6px;
    margin-left: 4px;
    font-weight: 700;
}
.kalp-header__hamburger { display: none; background: none; border: none; cursor: pointer; }
@media (max-width: 768px) {
    .kalp-header__nav { display: none; }
    .kalp-header__hamburger { display: flex; flex-direction: column; gap: 4px; }
    .kalp-header__hamburger span { display: block; width: 22px; height: 2px; background: var(--cream); }
}

/* ── Mobile hamburger menu (item E) ──────────────────────────────────
   The button had no JS + no blue-defeat, and the drawer was unstyled.
   Below: defeat Astra's button:hover/:focus blue, animate the 3 bars
   into an X when open, and style the right-side slide-in drawer.
   ──────────────────────────────────────────────────────────────────── */

/* Blue-defeat — Astra's button states bleed blue onto the bare hamburger.
   Neutralise bg/border/shadow on every state; gold focus-visible ring for
   keyboard a11y; bars stay cream. */
.kalp-header__hamburger,
.kalp-header__hamburger:hover,
.kalp-header__hamburger:focus,
.kalp-header__hamburger:active {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: inherit !important;
}
.kalp-header__hamburger:focus-visible {
    outline: 2px solid var(--gold, #C9A84C);
    outline-offset: 3px;
}
.kalp-header__hamburger span {
    background: var(--cream, #FFF8EE) !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
/* bars → X when open */
.kalp-header__hamburger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.kalp-header__hamburger.is-active span:nth-child(2) { opacity: 0; }
.kalp-header__hamburger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Right-side slide-in drawer. z-index 990 sits just below the sticky header
   (999) so the hamburger/X stays clickable above the open drawer, and the
   top padding clears the header bar. */
.kalp-header__mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 320px);
    height: 100vh;
    height: 100dvh;
    background: var(--deep-brown, #1A0A03);
    padding: 5.5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 990;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
}
.kalp-header__mobile-drawer.is-open { transform: translateX(0); }
.kalp-header__mobile-menu { list-style: none; margin: 0; padding: 0; }
.kalp-header__mobile-menu li { margin: 0; }
.kalp-header__mobile-menu a {
    display: block;
    padding: 0.95rem 0.5rem;
    color: var(--cream, #FFF8EE);
    font-family: var(--font-button, 'Cinzel', serif);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.kalp-header__mobile-menu a:hover,
.kalp-header__mobile-menu a:focus {
    color: var(--gold-light, #E8D293) !important;
    padding-left: 1rem;
}
.kalp-header__mobile-menu .current-menu-item > a { color: var(--gold, #C9A84C); }

/* ── Hero ────────────────────────────────────────────────────────── */
.kalp-hero {
    background: var(--deep-brown);
    color: var(--cream);
    padding: clamp(4rem, 12vw, 8rem) var(--container-padding, 1.5rem);
    text-align: center;
}
.kalp-hero__inner {
    max-width: 900px;
    margin: 0 auto;
}
.kalp-hero__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.kalp-hero__line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}
.kalp-hero__diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}
.kalp-hero__subtitle {
    font-family: var(--font-cursive);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--gold);
    margin-bottom: 1rem;
}
.kalp-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.kalp-hero__desc {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.82;
    max-width: 620px;
    margin: 0 auto 2.5rem;
}
.kalp-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.kalp-hero__btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-button);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.kalp-hero__btn--primary {
    background: var(--gold);
    color: var(--deep-brown);
    border: 1px solid var(--gold);
}
.kalp-hero__btn--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}
.kalp-hero__btn--secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--gold);
}
.kalp-hero__btn--secondary:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.kalp-hero__canvas-placeholder {
    margin: 3rem auto 0;
    padding: 4rem 2rem;
    border: 2px dashed rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    max-width: 600px;
    color: rgba(255, 248, 238, 0.5);
}
.kalp-hero__placeholder-note {
    font-family: monospace;
    font-size: 0.9rem;
}
.kalp-hero__placeholder-note code {
    background: rgba(201, 168, 76, 0.15);
    padding: 2px 6px;
    border-radius: 3px;
}

/* ── Sections ────────────────────────────────────────────────────── */
.kalp-section-label {
    font-family: var(--font-button);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}
.kalp-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--deep-brown);
    line-height: 1.2;
    margin-bottom: 2rem;
}
.kalp-section-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--deep-brown);
    opacity: 0.82;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.kalp-brand-story {
    background: var(--cream);
    padding: clamp(4rem, 10vw, 7rem) var(--container-padding, 1.5rem);
    text-align: center;
}
.kalp-brand-story__inner { max-width: 900px; margin: 0 auto; }

.kalp-why {
    background: var(--cream);
    padding: clamp(4rem, 10vw, 7rem) var(--container-padding, 1.5rem);
    text-align: center;
    border-top: 1px solid rgba(26, 10, 3, 0.08);
}
.kalp-why__inner { max-width: var(--container-max); margin: 0 auto; }
.kalp-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}
.kalp-why__card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(26, 10, 3, 0.1);
    padding: 2rem;
    border-radius: 8px;
}
.kalp-why__icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.kalp-why__card-title {
    font-family: var(--font-display);
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.kalp-why__card-desc {
    color: var(--deep-brown);
    opacity: 0.85;
    font-size: 0.95rem;
    line-height: 1.6;
}

.kalp-featured-flavours {
    background: var(--deep-brown);
    padding: clamp(4rem, 10vw, 7rem) var(--container-padding, 1.5rem);
    text-align: center;
}
.kalp-featured-flavours .kalp-section-label { color: var(--gold-light); }
.kalp-featured-flavours .kalp-section-title { color: var(--cream); }
.kalp-featured-flavours__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 1200px;
}
.kalp-featured-flavour {
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 2rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-top: 3px solid var(--accent, var(--gold));
}
.kalp-featured-flavour:hover {
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-4px);
}
.kalp-featured-flavour__city {
    font-family: var(--font-button);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent, var(--gold));
    margin-bottom: 0.5rem;
}
.kalp-featured-flavour__name {
    font-family: var(--font-display);
    color: var(--cream);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.kalp-featured-flavour__tagline {
    color: var(--accent, var(--gold-light));
    font-size: 0.95rem;
    margin: 0;
}
.kalp-featured-flavours__cta {
    margin-top: 2rem;
}

/* ── Products page (placeholder) ─────────────────────────────────── */
.kalp-products-page {
    background: var(--deep-brown);
    color: var(--cream);
    min-height: 80vh;
}
.kalp-products-hero {
    padding: clamp(3rem, 8vw, 6rem) var(--container-padding, 1.5rem);
    text-align: center;
    position: relative;
}
.kalp-products-hero__placeholder {
    border: 2px dashed rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 248, 238, 0.5);
}
.kalp-products-hero__placeholder-note code {
    background: rgba(201, 168, 76, 0.15);
    padding: 2px 6px;
    border-radius: 3px;
}
.kalp-products-grid {
    padding: clamp(3rem, 8vw, 6rem) var(--container-padding, 1.5rem);
}
.kalp-products-grid__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}
.kalp-products-grid__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.kalp-usp {
    background: var(--cream);
    color: var(--deep-brown);
    padding: clamp(3rem, 8vw, 6rem) var(--container-padding, 1.5rem);
}
.kalp-usp__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}
.kalp-usp__title {
    font-family: var(--font-display);
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.kalp-usp__text { color: var(--deep-brown); opacity: 0.85; font-size: 0.95rem; }

/* ── Footer ──────────────────────────────────────────────────────── */
.kalp-footer {
    background: var(--deep-brown);
    color: var(--cream);
    /* Item H follow-up: trimmed top padding so the footer takes less screen. */
    padding: clamp(2rem, 4vw, 3.25rem) var(--container-padding, 1.5rem) 1.5rem;
}
.kalp-footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    /* 5 columns: Brand / Shop / Company / Legal / Contact (Company+Legal split
       apart in site-footer.php so the link lists sit side by side, not stacked). */
    grid-template-columns: 1.4fr 0.85fr 0.95fr 1fr 1.4fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
@media (max-width: 900px) {
    .kalp-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
    /* Compact footer: 2 parallel columns instead of one tall stack.
       Brand block spans the full width across the top so it isn't cramped. */
    .kalp-footer__inner { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.5rem !important; }
    .kalp-footer__col--brand { grid-column: 1 / -1; }
    /* Swap Legal <-> Contact on mobile only (CSS order, desktop DOM order untouched):
       the longer Contact sits left under Shop and fills it; the shorter Legal moves
       right so the empty space falls on the right edge and reads tidier. */
    .kalp-footer__col:nth-child(5) { order: 1; } /* Contact -> before Legal */
    .kalp-footer__col:nth-child(4) { order: 2; } /* Legal   -> after Contact  */
}
.kalp-footer__brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    display: block;
    margin-bottom: 0.75rem;
}
.kalp-footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
    font-style: italic;
}
.kalp-footer__col-title {
    font-family: var(--font-button);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}
.kalp-footer__col-title + .kalp-footer__col-title { margin-top: 1.5rem; }
.kalp-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.kalp-footer__links li { margin-bottom: 0.6rem; }
.kalp-footer__links a {
    color: var(--cream);
    opacity: 0.75;
    text-decoration: none;
    font-size: 0.88rem;
    transition: opacity 0.2s, color 0.2s;
}
.kalp-footer__links a:hover { opacity: 1; color: var(--gold); }
.kalp-footer__address { margin-top: 1.25rem; font-size: 0.82rem; line-height: 1.6; opacity: 0.65; }
.kalp-footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
.kalp-footer__social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    opacity: 0.78;
    text-decoration: none;
    transition: all 0.25s ease;
    line-height: 0;
}
.kalp-footer__social a svg {
    width: 18px;
    height: 18px;
    display: block;
    transition: transform 0.25s ease;
}
.kalp-footer__social a:hover {
    opacity: 1;
    color: #fff !important;
    border-color: transparent;
    transform: translateY(-2px);
}
/* Each icon hovers to its OWN brand colour (Instagram = its gradient) */
.kalp-footer__social a[aria-label="Instagram"]:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.kalp-footer__social a[aria-label="Facebook"]:hover  { background: #1877F2; border-color: #1877F2; }
.kalp-footer__social a[aria-label="WhatsApp"]:hover   { background: #25D366; border-color: #25D366; }
.kalp-footer__social a[aria-label="LinkedIn"]:hover   { background: #0A66C2; border-color: #0A66C2; }
.kalp-footer__social a:hover svg {
    transform: scale(1.05);
}

/* Newsletter — restyle the WPForms output to match brand. Item H: the ONLY
   newsletter on the site. Compact spacing (user: footer was too tall) +
   inline pill form (email + Subscribe on one row, like the old homepage form). */
.kalp-footer__newsletter { max-width: 480px; margin: 1.5rem auto 0; text-align: center; padding-top: 1.5rem; }
.kalp-footer__newsletter .kalp-footer__col-title { margin-bottom: 0.5rem; }
.kalp-footer__newsletter-lede {
    color: var(--cream);
    opacity: 0.72;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.55;
    margin: 0.25rem auto 1.1rem;
    max-width: 440px;
}

/* WPForms output overrides — inline email field + gold submit button */
.kalp-footer__newsletter .wpforms-form {
    display: flex;
    align-items: center;
    max-width: 440px;
    margin: 0 auto;
}
.kalp-footer__newsletter .wpforms-error-noscript { display: none; } /* JS-on: dead flex item */
.kalp-footer__newsletter .wpforms-field-container {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    height: 46px; /* match input/button so the pill is perfectly level */
}
/* Defeat WPForms' "medium" field-size cap so the email input fills the pill. */
.kalp-footer__newsletter .wpforms-field,
.kalp-footer__newsletter .wpforms-field-row,
.kalp-footer__newsletter div[id^="wpforms-"][id$="-field_0-container"] {
    flex: 1;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0;
    padding: 0;
}
.kalp-footer__newsletter .wpforms-field-label,
.kalp-footer__newsletter label.wpforms-field-label {
    /* Hide visible label — placeholder serves as label in the compact footer form */
    position: absolute !important;
    left: -9999px !important;
}
.kalp-footer__newsletter input[type="email"],
.kalp-footer__newsletter .wpforms-field input[type="email"] {
    width: 100%;
    background: rgba(255, 248, 238, 0.08);
    color: var(--cream);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    width: 100% !important;
    max-width: 100% !important;
    height: 46px;
    padding: 0 16px;
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color 0.2s, background 0.2s;
}
.kalp-footer__newsletter input[type="email"]::placeholder {
    color: rgba(255, 248, 238, 0.5);
}
.kalp-footer__newsletter input[type="email"]:focus {
    background: rgba(255, 248, 238, 0.12);
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}
.kalp-footer__newsletter .wpforms-submit-container {
    margin: 0 !important; /* kill WPForms' default margin-top:10px that broke pill level */
    padding: 0;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    height: 46px;
}
.kalp-footer__newsletter button.wpforms-submit,
.kalp-footer__newsletter .wpforms-submit {
    background: var(--gold) !important;
    color: var(--deep-brown) !important;
    border: 1px solid var(--gold) !important;
    font-family: var(--font-button) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    height: 46px !important;
    padding: 0 22px !important;
    box-sizing: border-box !important;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.2s !important;
    white-space: nowrap !important;
}
.kalp-footer__newsletter button.wpforms-submit:hover,
.kalp-footer__newsletter .wpforms-submit:hover {
    background: var(--gold-light) !important;
    color: var(--deep-brown) !important;
    transform: translateY(-1px) !important;
}
.kalp-footer__newsletter .wpforms-confirmation-container-full,
.kalp-footer__newsletter .wpforms-confirmation-container {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--cream);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    text-align: center;
    margin: 0 auto;
    max-width: 420px;
}
/* WPForms' Modern stylesheet (loaded site-wide since the contact dropdown went
   Modern) forces a dark label colour on the confirmation <p>, making it invisible
   on the dark footer. Force cream on the message + its children. */
.kalp-footer__newsletter .wpforms-confirmation-container-full *,
.kalp-footer__newsletter .wpforms-confirmation-container * {
    color: var(--cream) !important;
}
.kalp-footer__newsletter .wpforms-error,
.kalp-footer__newsletter .wpforms-field-required {
    color: var(--gold-light);
    font-size: 0.78rem;
}
.kalp-footer__payment { max-width: 1400px; margin: 2rem auto; text-align: center; }
.kalp-footer__payment-label {
    font-family: var(--font-button);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}
.kalp-footer__payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.kalp-footer__payment-icon {
    padding: 0.35rem 0.8rem;
    background: rgba(245, 239, 214, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0.75;
}
.kalp-footer__bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    text-align: center;
}
.kalp-footer__copyright { font-size: 0.82rem; opacity: 0.65; margin-bottom: 0.5rem; }
.kalp-footer__legal { font-size: 0.76rem; opacity: 0.5; }

/* ── WhatsApp floating button (sitewide) ─────────────────────────── */
.kalp-whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease;
}
.kalp-whatsapp-btn:hover { transform: scale(1.05); }
