/* ============================================================
   KKDecoration — Stylesheet v1.0
   Theme: Pink primary + Purple accent
   Mobile-first responsive
   ============================================================ */

:root {
    --pink: #FF4081;
    --pink-dark: #E91E63;
    --pink-light: #FCE4EC;
    --pink-bg: #FFF5F8;
    --purple: #7C3AED;
    --purple-dark: #6D28D9;
    --purple-light: #EDE9FE;
    --dark: #1A1A2E;
    --dark-soft: #2D2D44;
    --gray-1: #F8F9FB;
    --gray-2: #E5E7EB;
    --gray-3: #D1D5DB;
    --gray-text: #6B7280;
    --text: #1A1A2E;
    --text-light: #4B5563;
    --green: #10B981;
    --whatsapp: #25D366;
    --gold: #F59E0B;
    --white: #FFFFFF;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow: 0 4px 14px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
    --shadow-pink: 0 6px 20px rgba(255,64,129,.25);

    --transition: 0.2s ease;
    --container: 1200px;
    --header-h: 130px;
}

/* ── Reset ──────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    padding-bottom: 64px; /* mobile bottom-nav space */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }

p { color: var(--text-light); margin-bottom: 0.5rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 18px; }
.section { padding: 50px 0; }
.section--gray { background: var(--gray-1); }
.section--pink { background: var(--pink-bg); }
.text-center { text-align: center; }

.section-label {
    display: inline-block; padding: 5px 14px;
    background: var(--pink-light); color: var(--pink-dark);
    border-radius: var(--radius-pill);
    font-size: 0.74rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 10px;
}
.section-head { text-align: center; margin-bottom: 28px; }
.section-head h2 { margin-bottom: 6px; }
.section-head p { font-size: 0.92rem; max-width: 600px; margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600; font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap; cursor: pointer; border: none;
    text-decoration: none; line-height: 1;
    font-family: var(--font-body);
}
.btn-primary { background: var(--pink); color: #fff; box-shadow: var(--shadow-pink); }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); }
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-dark); }
.btn-outline { border: 2px solid var(--pink); color: var(--pink); background: transparent; }
.btn-outline:hover { background: var(--pink); color: #fff; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { filter: brightness(1.05); }
.btn-call { background: #fff; color: var(--pink); border: 1.5px solid var(--pink); }
.btn-sm { padding: 7px 14px; font-size: 0.78rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HEADER (Doc page 22 — exact design)
   Top: Logo+Tagline | City | Search | Call+Cart+Signup+Get Quote
   Nav: Home, Decorations(▾), City(▾), Ideas, Pricing, Blog, FAQ, About, Contact, Reviews
============================================================ */
.kk-header {
    position: sticky; top: 0; z-index: 100;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    border-bottom: 1px solid var(--gray-2);
}
.kk-top {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 0;
}

/* Logo */
.kk-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.kk-logo__img {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
}
.kk-logo__text { line-height: 1.1; }
.kk-logo__name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 800;
    color: var(--pink);
    letter-spacing: -0.01em;
}
.kk-logo__tag { display: block; font-size: 0.66rem; color: var(--gray-text); }

/* City selector */
.kk-city { position: relative; flex-shrink: 0; }
.kk-city__btn {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    background: #fff; border: 1.5px solid var(--gray-3);
    border-radius: var(--radius-pill);
    font-size: 0.85rem; font-weight: 600; color: var(--text);
    cursor: pointer;
}
.kk-city__btn:hover { border-color: var(--pink); color: var(--pink); }
.kk-city__btn svg { color: var(--pink); }
.kk-city__dropdown {
    position: absolute; top: calc(100% + 6px); left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 6px;
    opacity: 0; visibility: hidden; transform: translateY(4px);
    transition: var(--transition);
    z-index: 200;
}
.kk-city:hover .kk-city__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.kk-city__dropdown a {
    display: block; padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.86rem; color: var(--text-light);
}
.kk-city__dropdown a:hover { background: var(--pink-light); color: var(--pink-dark); }

/* Search */
.kk-search { flex: 1; max-width: 460px; }
.kk-search__form {
    display: flex; align-items: center;
    background: var(--gray-1);
    border: 1.5px solid var(--gray-2);
    border-radius: var(--radius-pill);
    overflow: hidden;
    transition: var(--transition);
}
.kk-search__form:focus-within { border-color: var(--pink); background: #fff; }
.kk-search__icon { padding: 0 14px; color: var(--gray-text); display: flex; }
.kk-search__input {
    flex: 1; padding: 10px 6px 10px 0;
    border: none; outline: none; background: transparent;
    font-size: 0.88rem;
}
.kk-search__btn {
    padding: 10px 22px;
    background: var(--pink); color: #fff;
    font-weight: 600; font-size: 0.85rem;
    border: none;
}
.kk-search__btn:hover { background: var(--pink-dark); }

/* Action icons (Call, Cart, Signup, Get Quote) */
.kk-actions { display: flex; align-items: center; gap: 16px; }
.kk-action {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    color: var(--text-light);
    font-size: 0.72rem; font-weight: 500;
}
.kk-action:hover { color: var(--pink); }
.kk-action svg { width: 20px; height: 20px; stroke-width: 1.6; }
.kk-action__label { font-size: 0.7rem; }
.kk-quote-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff; font-weight: 700; font-size: 0.84rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-pink);
    text-decoration: none;
    transition: var(--transition);
}
.kk-quote-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,64,129,.35); }

/* Hamburger (mobile) */
.kk-hamburger {
    display: none;
    flex-direction: column; gap: 4px;
    padding: 8px; background: none; border: none;
    cursor: pointer;
}
.kk-hamburger span {
    width: 22px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.kk-hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.kk-hamburger.is-active span:nth-child(2) { opacity: 0; }
.kk-hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile tagline (centered between logo & hamburger) */
.kk-mobile-tagline { display: none; flex: 1; text-align: center; font-size: 0.7rem; color: var(--gray-text); }

/* ── Main Nav ───────────────────────────────────────────── */
.kk-nav { background: #fff; border-top: 1px solid var(--gray-2); }
.kk-nav__list {
    display: flex; align-items: center; gap: 4px;
}
.kk-nav__item { position: relative; }
.kk-nav__link {
    display: flex; align-items: center; gap: 4px;
    padding: 13px 16px;
    font-size: 0.88rem; font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}
.kk-nav__link:hover, .kk-nav__link.is-active { color: var(--pink); }
.kk-nav__link svg { width: 12px; height: 12px; }
.kk-nav__item.has-dropdown:hover .kk-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.kk-dropdown {
    position: absolute; top: 100%; left: 0;
    min-width: 220px;
    max-width: 280px;
    max-height: 380px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 6px;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: var(--transition);
    z-index: 200;
}
.kk-dropdown a {
    display: block; padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem; color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kk-dropdown a:hover { background: var(--pink-light); color: var(--pink-dark); text-decoration: none; }

/* Mega dropdown (Decorations) — compact 2-col */
.kk-dropdown--mega {
    width: 440px;
    max-width: 90vw;
    max-height: 420px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    padding: 14px;
}
.kk-dropdown--mega h4 {
    font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--gray-text);
    margin-bottom: 6px; padding: 0 4px;
}
.kk-dropdown--mega a {
    font-size: 0.8rem; padding: 6px 8px;
}

/* ============================================================
   MOBILE DRAWER (Doc page 24 — exact design with categories list)
============================================================ */
.kk-drawer {
    position: fixed; top: 0; left: -340px;
    width: 320px; max-width: 88%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,.1);
}
.kk-drawer.is-open { left: 0; }
.kk-drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 999;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.kk-drawer-overlay.is-open { opacity: 1; visibility: visible; }

.kk-drawer__header {
    display: flex; align-items: center; gap: 12px;
    padding: 18px;
    border-bottom: 1px solid var(--gray-2);
}
.kk-drawer__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gray-1);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; color: var(--gray-text);
}
.kk-drawer__greeting { flex: 1; }
.kk-drawer__greeting strong { display: block; font-size: 0.95rem; }
.kk-drawer__greeting small { font-size: 0.75rem; color: var(--gray-text); }
.kk-drawer__close {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--gray-1);
    color: var(--text);
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
}

.kk-drawer__nav { padding: 8px 0; }
.kk-drawer__link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px;
    font-size: 0.92rem; font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--gray-2);
}
.kk-drawer__link.is-highlight { background: var(--purple-light); color: var(--purple-dark); font-weight: 600; }
.kk-drawer__link svg { color: var(--gray-3); }

.kk-drawer__contact-section {
    padding: 12px 18px 4px;
    background: var(--gray-1);
    margin-top: 8px;
}
.kk-drawer__contact-label {
    font-size: 0.72rem; font-weight: 700;
    color: var(--gray-text);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 8px;
}
.kk-drawer__contact-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 8px;
    border: 1px solid var(--gray-2);
}
.kk-drawer__contact-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.kk-drawer__contact-icon--whatsapp { background: rgba(37,211,102,.1); color: var(--whatsapp); }
.kk-drawer__contact-icon--call     { background: rgba(124,58,237,.1); color: var(--purple); }
.kk-drawer__contact-icon--email    { background: var(--pink-light); color: var(--pink-dark); }
.kk-drawer__contact-text strong {
    display: block; font-size: 0.88rem; color: var(--whatsapp);
}
.kk-drawer__contact-item--call .kk-drawer__contact-text strong { color: var(--purple); }
.kk-drawer__contact-text small { font-size: 0.74rem; color: var(--gray-text); }

.kk-drawer__login {
    margin: 16px 18px;
    padding: 14px;
    background: var(--purple);
    color: #fff;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}
.kk-drawer__login:hover { background: var(--purple-dark); }

/* ============================================================
   HERO (Section 1: Auto-scrolling banner with USPs)
============================================================ */
.kk-hero { position: relative; overflow: hidden; }
.kk-hero__slider {
    position: relative;
    height: 460px;
    background: var(--dark);
}
.kk-hero__slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    cursor: pointer;
}
.kk-hero__slide.is-active { opacity: 1; z-index: 2; }
.kk-hero__slide::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.2) 100%);
}
.kk-hero__content {
    position: relative; z-index: 3;
    height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    color: #fff;
    max-width: 640px;
    padding: 0 18px;
}
.kk-hero__badge {
    display: inline-block; align-self: flex-start;
    padding: 5px 14px;
    background: rgba(255,64,129,.25);
    color: #fff;
    border: 1px solid rgba(255,64,129,.5);
    border-radius: var(--radius-pill);
    font-size: 0.74rem; font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.kk-hero__title {
    color: #fff; margin-bottom: 12px;
    font-size: clamp(1.7rem, 4.2vw, 3rem);
}
.kk-hero__subtitle {
    color: rgba(255,255,255,.92);
    font-size: 1rem;
    margin-bottom: 22px;
}
.kk-hero__cta { display: inline-flex; gap: 10px; flex-wrap: wrap; }

.kk-hero__dots {
    position: absolute; bottom: 16px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 5;
}
.kk-hero__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none; cursor: pointer; padding: 0;
    transition: var(--transition);
}
.kk-hero__dot.is-active { width: 24px; border-radius: 4px; background: var(--pink); }

.kk-hero__arrow {
    position: absolute; top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
    z-index: 5;
}
.kk-hero__arrow:hover { background: rgba(255,64,129,.7); border-color: var(--pink); }
.kk-hero__arrow--prev { left: 14px; }
.kk-hero__arrow--next { right: 14px; }

/* USP strip (auto-scroll) below hero */
.kk-usp-strip {
    background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
    color: #fff;
    padding: 11px 0;
    overflow: hidden;
}
.kk-usp-strip__track {
    display: flex; gap: 32px;
    width: max-content;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.kk-usp-strip__item {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 0.82rem; font-weight: 600; color: #fff;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.kk-usp-strip:hover .kk-usp-strip__track { animation-play-state: paused; }

/* ============================================================
   SECTION 2: Decoration Design Category Section
   (Doc page 27 — circle icons, names below, scrollable RTL)
============================================================ */
.kk-categories-strip { padding: 32px 0; background: #fff; }
.kk-categories-strip__row {
    display: flex; gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    padding: 8px 4px 12px;
}
.kk-categories-strip__row::-webkit-scrollbar { height: 4px; }
.kk-categories-strip__row::-webkit-scrollbar-thumb { background: var(--pink-light); border-radius: 4px; }
.kk-cat-pill {
    flex: 0 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    text-align: center;
    width: 86px;
}
.kk-cat-pill__circle {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(255,64,129,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    transition: var(--transition);
    overflow: hidden;
}
.kk-cat-pill__circle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.kk-cat-pill:hover .kk-cat-pill__circle {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(255,64,129,.3);
    border-color: var(--pink);
}
.kk-cat-pill__name {
    font-size: 0.74rem; font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

/* ============================================================
   SECTION 4: Multiple Categories with 4 Products Each
   Premium Decorations / Birthday / Kids Birthday / Baby Welcome (doc page 28)
============================================================ */
.kk-cat-section { padding: 30px 0; }
.kk-cat-section__header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--pink-light);
}
.kk-cat-section__header h2 {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    position: relative;
    padding-left: 14px;
}
.kk-cat-section__header h2::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 4px; height: 70%;
    transform: translateY(-50%);
    background: var(--pink);
    border-radius: 2px;
}
.kk-view-all {
    padding: 7px 16px;
    border: 1.5px solid var(--gray-3);
    border-radius: var(--radius-pill);
    color: var(--text);
    font-size: 0.8rem; font-weight: 600;
}
.kk-view-all:hover { border-color: var(--pink); color: var(--pink); }

.kk-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Product Card */
.kk-product {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-2);
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.kk-product:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--pink-light);
}
.kk-product__image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: var(--gray-1);
}
.kk-product__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.kk-product:hover .kk-product__image img { transform: scale(1.06); }
.kk-product__label {
    position: absolute; top: 8px; left: 8px;
    padding: 3px 10px;
    background: var(--pink);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
}
.kk-product__rating {
    position: absolute; bottom: 8px; right: 8px;
    padding: 3px 8px;
    background: rgba(255,255,255,.95);
    border-radius: var(--radius-pill);
    font-size: 0.7rem; font-weight: 700;
    display: flex; align-items: center; gap: 3px;
}
.kk-product__rating-star { color: var(--gold); }
.kk-product__body {
    padding: 12px 14px;
    flex: 1;
    display: flex; flex-direction: column;
}
.kk-product__name {
    font-family: var(--font-body);
    font-size: 0.88rem; font-weight: 600;
    color: var(--dark);
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
}
.kk-product__prices {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.kk-product__price {
    font-size: 1rem; font-weight: 800;
    color: var(--dark);
}
.kk-product__price-orig {
    font-size: 0.78rem;
    color: var(--gray-text);
    text-decoration: line-through;
}
.kk-product__off {
    font-size: 0.7rem; font-weight: 700;
    color: var(--green);
}
.kk-product__reviews {
    font-size: 0.72rem;
    color: var(--gray-text);
    margin-top: auto;
}

/* ============================================================
   SECTION 5: Service Areas (4 city image cards - doc page 29)
============================================================ */
.kk-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.kk-city-card {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--purple-light), var(--pink-light));
}
.kk-city-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
}
.kk-city-card:hover img { transform: scale(1.05); }
.kk-city-card__name {
    position: absolute; bottom: 12px; left: 12px;
    color: #fff;
    font-weight: 700; font-size: 0.95rem;
    display: flex; align-items: center; gap: 5px;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.kk-city-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.6) 100%);
    pointer-events: none;
}

/* ============================================================
   SECTION 6: Happy Customers (Purple "Loved by 10L+" card + reviews)
   Doc page 29
============================================================ */
.kk-customers {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 18px;
    align-items: stretch;
}
.kk-customers__highlight {
    background: var(--purple);
    color: #fff;
    padding: 28px 22px;
    border-radius: var(--radius-lg);
    display: flex; flex-direction: column; justify-content: center;
}
.kk-customers__highlight h3 { color: #fff; font-size: 1.6rem; line-height: 1.2; margin-bottom: 10px; }
.kk-customers__rating {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 800;
    line-height: 1;
}
.kk-customers__rating sub { font-size: 0.9rem; color: rgba(255,255,255,.7); margin-left: 4px; vertical-align: middle; }
.kk-customers__rating-stars { color: var(--gold); margin-bottom: 4px; }
.kk-customers__rating-count { font-size: 0.78rem; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.kk-customers__badge {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px;
    background: rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    margin-bottom: 6px;
}
.kk-customers__reviews {
    display: flex; gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.kk-customers__reviews::-webkit-scrollbar { height: 4px; }
.kk-customers__reviews::-webkit-scrollbar-thumb { background: var(--pink-light); }
.kk-review {
    flex: 0 0 280px;
    background: #fff;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-lg);
    padding: 18px;
}
.kk-review__head {
    display: flex; justify-content: space-between; align-items: start;
    margin-bottom: 10px;
}
.kk-review__stars { color: var(--gold); font-size: 0.88rem; }
.kk-review__verified {
    font-size: 0.7rem;
    color: var(--green);
    background: #ECFDF5;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.kk-review__text {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 14px;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.kk-review__author {
    display: flex; align-items: center; gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-2);
}
.kk-review__avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.82rem;
}
.kk-review__name { font-weight: 600; font-size: 0.85rem; }
.kk-review__city { font-size: 0.72rem; color: var(--gray-text); }

/* ============================================================
   SECTION 7: Why Choose Us (8 USP cards in 2 rows of 4)
   Doc page 29 — exact: Custom Designs, Same Day Setup, Best Prices,
   All Materials, Expert Team, 5 Cities, 5000+ Events, 24/7 Support
============================================================ */
.kk-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.kk-why-card {
    background: #fff;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-lg);
    padding: 22px 16px;
    text-align: center;
    transition: var(--transition);
}
.kk-why-card:hover { border-color: var(--pink); box-shadow: var(--shadow); transform: translateY(-3px); }
.kk-why-card__icon {
    width: 50px; height: 50px;
    margin: 0 auto 10px;
    border-radius: var(--radius);
    background: var(--pink-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.kk-why-card__title {
    font-family: var(--font-display);
    font-size: 0.96rem; font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}
.kk-why-card__desc {
    font-size: 0.78rem;
    color: var(--gray-text);
    line-height: 1.5;
}

/* ============================================================
   SECTION 8: Content with Read More (doc page 30)
============================================================ */
.kk-content-block {
    max-width: 880px;
    margin: 0 auto;
}
.kk-content-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 18px 0 10px;
}
.kk-content-block p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}
.kk-content-block__more { display: none; }
.kk-content-block.is-expanded .kk-content-block__more { display: block; }
.kk-content-block__btn {
    display: inline-block;
    padding: 9px 22px;
    background: #fff;
    border: 1.5px solid var(--purple);
    border-radius: var(--radius-sm);
    color: var(--purple);
    font-weight: 700; font-size: 0.78rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-top: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.kk-content-block__btn:hover { background: var(--purple); color: #fff; }

/* ── Generic Content Section with Read More (Auto-injected) ─── */
.kk-content-section {
    max-width: 920px;
    margin: 36px auto;
    padding: 0 16px;
}
.kk-content-section__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark);
    text-align: center;
}
@media (min-width: 768px) {
    .kk-content-section__title { font-size: 2rem; }
}
.kk-content-section__body { color: var(--text-light); line-height: 1.75; font-size: 0.95rem; }
.kk-content-section--collapsible .kk-content-section__body.kk-prose--clamped {
    max-height: 280px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
}
.kk-content-section--collapsible .kk-content-section__body.kk-prose--clamped::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 80px;
    background: linear-gradient(to bottom, transparent, #fff 90%);
    pointer-events: none;
}
.kk-content-section.is-expanded .kk-content-section__body {
    max-height: none !important;
}
.kk-content-section.is-expanded .kk-content-section__body::after {
    display: none;
}
.kk-content-section__toggle {
    display: block;
    margin: 18px auto 0;
    padding: 11px 28px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    border: none;
    border-radius: 999px;
    color: #fff;
    font-weight: 700; font-size: 0.84rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(255,64,129,.25);
}
.kk-content-section__toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255,64,129,.4);
}
.kk-content-section__toggle .arrow { display: inline-block; transition: transform 0.3s; }
.kk-content-section.is-expanded .kk-content-section__toggle .arrow { transform: rotate(180deg); }

/* ── kk-prose: rich text content styling ──────────────── */
.kk-prose h1, .kk-prose h2, .kk-prose h3, .kk-prose h4, .kk-prose h5, .kk-prose h6 {
    color: var(--dark);
    font-weight: 700;
    margin: 1.4em 0 0.6em;
    line-height: 1.3;
}
.kk-prose h1 { font-size: 1.8rem; }
.kk-prose h2 { font-size: 1.5rem; }
.kk-prose h3 { font-size: 1.25rem; }
.kk-prose h4 { font-size: 1.1rem; }
.kk-prose p { margin-bottom: 14px; }
.kk-prose ul, .kk-prose ol { padding-left: 24px; margin-bottom: 14px; }
.kk-prose li { margin-bottom: 6px; }
.kk-prose a { color: var(--pink-dark); text-decoration: underline; }
.kk-prose blockquote {
    border-left: 3px solid var(--pink);
    padding: 4px 14px;
    margin: 14px 0;
    background: var(--pink-light);
    color: var(--text-light);
    font-style: italic;
}
.kk-prose img { max-width: 100%; height: auto; border-radius: 6px; margin: 10px 0; }
.kk-prose table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.kk-prose table td, .kk-prose table th { border: 1px solid #e5e7eb; padding: 8px 12px; }
.kk-prose .kk-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 16px 0;
    border-radius: 8px;
    overflow: hidden;
}
.kk-prose .kk-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
   SECTION 9: Videos (scrolling YouTube/Instagram embeds)
============================================================ */
.kk-videos-row {
    display: flex; gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
}
.kk-videos-row::-webkit-scrollbar { height: 5px; }
.kk-videos-row::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 4px; }
.kk-video {
    flex: 0 0 320px;
    aspect-ratio: 9/16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark);
    scroll-snap-align: start;
    box-shadow: var(--shadow);
}
.kk-video iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   SECTION 10: FAQ (doc page 30)
============================================================ */
.kk-faqs { max-width: 820px; margin: 0 auto; }
.kk-faq {
    background: #fff;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.kk-faq__q {
    width: 100%;
    padding: 16px 18px;
    text-align: left;
    background: #fff;
    font-size: 0.94rem; font-weight: 600;
    color: var(--dark);
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    cursor: pointer;
}
.kk-faq__q:hover { background: var(--gray-1); }
.kk-faq__icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--pink-light);
    color: var(--pink);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition);
}
.kk-faq.is-open .kk-faq__icon { transform: rotate(45deg); background: var(--pink); color: #fff; }
.kk-faq__a {
    display: none;
    padding: 0 18px 16px;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}
.kk-faq.is-open .kk-faq__a { display: block; }

/* ============================================================
   FOOTER (doc page 22 — dark navy 4-col layout)
============================================================ */
.kk-footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    padding-top: 50px;
}
.kk-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}
.kk-footer__brand h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 4px;
}
.kk-footer__tag {
    font-size: 0.7rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}
.kk-footer__brand p { color: rgba(255,255,255,.55); font-size: 0.85rem; line-height: 1.7; margin-bottom: 14px; }
.kk-footer__contact a {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.6);
    font-size: 0.84rem;
    margin-bottom: 6px;
}
.kk-footer__contact a:hover { color: var(--pink); }
.kk-footer__socials { display: flex; gap: 8px; margin-top: 14px; }
.kk-footer__social {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
    transition: var(--transition);
}
.kk-footer__social:hover { background: var(--pink); color: #fff; }

.kk-footer__col h4 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.98rem;
    margin-bottom: 14px;
}
.kk-footer__col ul li { margin-bottom: 8px; }
.kk-footer__col ul a {
    color: rgba(255,255,255,.5);
    font-size: 0.84rem;
}
.kk-footer__col ul a:hover { color: var(--pink); }

.kk-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px;
}
.kk-footer__copy { font-size: 0.78rem; color: rgba(255,255,255,.5); }
.kk-footer__legal { display: flex; gap: 18px; }
.kk-footer__legal a { font-size: 0.78rem; color: rgba(255,255,255,.4); }
.kk-footer__legal a:hover { color: var(--pink); }

/* Sticky Desktop CTAs (right-side floating - Call + WhatsApp) */
.kk-sticky-desk {
    position: fixed; right: 18px; bottom: 24px;
    display: flex; flex-direction: column; gap: 10px;
    z-index: 90;
}
.kk-sticky-desk__btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    transition: var(--transition);
}
.kk-sticky-desk__btn:hover { transform: scale(1.08); }
.kk-sticky-desk__btn--whatsapp { background: var(--whatsapp); }
.kk-sticky-desk__btn--call { background: var(--pink); }

/* ============================================================
   MOBILE BOTTOM NAV (doc page 25 — 5 buttons)
============================================================ */
.kk-bottom-nav {
    position: fixed; left: 0; right: 0; bottom: 0;
    background: #fff;
    border-top: 1px solid var(--gray-2);
    box-shadow: 0 -2px 12px rgba(0,0,0,.06);
    z-index: 95;
    display: none;
}
.kk-bottom-nav__inner {
    display: flex;
    align-items: stretch;
}
.kk-bottom-nav__btn {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 9px 4px;
    font-size: 0.65rem; font-weight: 600;
    color: var(--gray-text);
    text-align: center;
}
.kk-bottom-nav__btn svg { width: 19px; height: 19px; }
.kk-bottom-nav__btn--call { color: var(--green); }
.kk-bottom-nav__btn--whatsapp { color: var(--whatsapp); }
.kk-bottom-nav__btn--quote {
    background: var(--pink);
    color: #fff !important;
    margin: 4px;
    border-radius: var(--radius);
}
.kk-bottom-nav__btn--quote svg { color: #fff; }

/* ============================================================
   PAGE BANNER (Category, City, City+Cat, Product hero bar)
============================================================ */
.kk-page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--purple-dark) 100%);
    color: #fff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.kk-page-banner__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.25;
}
.kk-page-banner__inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: center;
}
.kk-page-banner__badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--pink);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.74rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 14px;
}
.kk-page-banner h1 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: 10px; }
.kk-page-banner p { color: rgba(255,255,255,.85); font-size: 0.95rem; margin-bottom: 16px; }
.kk-page-banner__cta {
    display: flex; gap: 10px; flex-wrap: wrap;
}

/* Lead form card on page banner */
.kk-leadform {
    background: #fff;
    color: var(--text);
    padding: 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.kk-leadform h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
    display: flex; align-items: center; gap: 6px;
}
.kk-leadform__desc {
    font-size: 0.78rem;
    color: var(--gray-text);
    margin-bottom: 14px;
}
.kk-leadform .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.kk-leadform label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.kk-leadform input,
.kk-leadform select,
.kk-leadform textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--gray-3);
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    background: #fff;
    margin-bottom: 10px;
}
.kk-leadform input:focus,
.kk-leadform select:focus,
.kk-leadform textarea:focus {
    outline: none;
    border-color: var(--pink);
}

/* ============================================================
   PRODUCT DETAIL PAGE
============================================================ */
.kk-product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px 0;
}
.kk-product-gallery__main {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-1);
    margin-bottom: 10px;
    position: relative;
}
.kk-product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.kk-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.kk-product-gallery__thumb {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--gray-1);
    cursor: pointer;
    border: 2px solid transparent;
}
.kk-product-gallery__thumb.is-active { border-color: var(--pink); }
.kk-product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.kk-product-info__name {
    font-size: 1.5rem; font-weight: 800;
    margin-bottom: 8px;
}
.kk-product-info__rating {
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 14px;
}
.kk-product-info__price-row {
    display: flex; align-items: baseline; gap: 8px;
    margin-bottom: 14px;
}
.kk-product-info__price {
    font-size: 1.7rem; font-weight: 800;
    color: var(--dark);
}
.kk-product-info__price-orig {
    font-size: 1rem;
    color: var(--gray-text);
    text-decoration: line-through;
}
.kk-product-info__off {
    background: var(--green);
    color: #fff;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem; font-weight: 700;
}
.kk-product-info__cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 0 18px;
}
.kk-product-info__cta .btn { padding: 14px; font-size: 0.92rem; }

.kk-product-features {
    background: var(--gray-1);
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 18px;
}
.kk-product-features__row {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-light);
}
.kk-product-features__row svg { color: var(--green); flex-shrink: 0; }

.kk-product-tabs {
    border-top: 1px solid var(--gray-2);
}
.kk-product-tab__btn {
    width: 100%;
    padding: 14px 0;
    text-align: left;
    background: #fff;
    border-bottom: 1px solid var(--gray-2);
    font-weight: 600; font-size: 0.95rem;
    display: flex; justify-content: space-between; align-items: center;
}
.kk-product-tab__btn::after {
    content: '›'; font-size: 1.4rem; color: var(--gray-text);
    transition: var(--transition);
}
.kk-product-tab.is-open .kk-product-tab__btn::after { transform: rotate(90deg); }
.kk-product-tab__panel {
    display: none;
    padding: 14px 0;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}
.kk-product-tab.is-open .kk-product-tab__panel { display: block; }

/* ============================================================
   QUOTE MODAL
============================================================ */
.kk-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    padding: 14px;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.kk-modal-overlay.is-open { opacity: 1; visibility: visible; }
.kk-modal {
    background: #fff;
    border-radius: 14px;
    width: 100%; max-width: 540px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 0;
    transform: scale(0.95);
    transition: var(--transition);
    position: relative;
}
.kk-modal .kk-inquiry-form { box-shadow: none; border: none; border-radius: 14px; }
.kk-modal-overlay.is-open .kk-modal { transform: scale(1); }
.kk-modal__close {
    position: absolute; top: 12px; right: 14px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--gray-1);
    color: var(--text);
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
}
.kk-modal__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 4px;
}
.kk-modal__sub {
    font-size: 0.84rem;
    color: var(--gray-text);
    margin-bottom: 18px;
}

/* ============================================================
   BREADCRUMB
============================================================ */
.kk-breadcrumb {
    background: var(--gray-1);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-2);
}
.kk-breadcrumb__list {
    display: flex; flex-wrap: wrap; gap: 6px;
    font-size: 0.78rem;
    color: var(--gray-text);
}
.kk-breadcrumb__list a { color: var(--pink); }
.kk-breadcrumb__list a:hover { text-decoration: underline; }
.kk-breadcrumb__sep { color: var(--gray-3); }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
============================================================ */
@media (max-width: 1024px) {
    .kk-products-grid { grid-template-columns: repeat(3, 1fr); }
    .kk-why-grid { grid-template-columns: repeat(2, 1fr); }
    .kk-page-banner__inner { grid-template-columns: 1fr; gap: 22px; }
    .kk-product-detail { grid-template-columns: 1fr; }
    .kk-customers { grid-template-columns: 1fr; }
    .kk-customers__highlight { padding: 22px 18px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
============================================================ */
@media (max-width: 768px) {
    body { padding-bottom: 64px; }

    /* Header collapses */
    .kk-city, .kk-search, .kk-actions { display: none; }
    .kk-mobile-tagline { display: block; }
    .kk-hamburger { display: flex; }
    .kk-nav { display: none; } /* Mobile uses drawer instead */
    .kk-top { gap: 8px; padding: 10px 0; }
    .kk-logo__img { width: 38px; height: 38px; font-size: 18px; }
    .kk-logo__name { font-size: 1.1rem; }
    .kk-logo__tag { display: none; }

    .kk-sticky-desk { display: none; }
    .kk-bottom-nav { display: block; }

    /* Hero */
    .kk-hero__slider { height: 360px; }
    .kk-hero__title { font-size: 1.5rem; }
    .kk-hero__subtitle { font-size: 0.86rem; }
    .kk-hero__arrow { display: none; }

    /* Sections */
    .section { padding: 32px 0; }
    .section-head { margin-bottom: 20px; }

    /* Categories strip */
    .kk-cat-pill { width: 76px; }
    .kk-cat-pill__circle { width: 60px; height: 60px; font-size: 1.4rem; }

    /* Product grid - 2 cols on mobile */
    .kk-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .kk-product__body { padding: 10px 12px; }
    .kk-product__name { font-size: 0.82rem; }
    .kk-product__price { font-size: 0.92rem; }

    /* Cities */
    .kk-cities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    /* Customers */
    .kk-customers__highlight { padding: 22px; }
    .kk-customers__rating { font-size: 2.4rem; }
    .kk-review { flex-basis: 260px; padding: 14px; }

    /* Why */
    .kk-why-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .kk-why-card { padding: 18px 12px; }
    .kk-why-card__title { font-size: 0.86rem; }
    .kk-why-card__desc { font-size: 0.72rem; }

    /* Footer */
    .kk-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .kk-footer__bottom { flex-direction: column; text-align: center; }

    /* Page banner */
    .kk-page-banner { padding: 28px 0; }
    .kk-page-banner h1 { font-size: 1.4rem; }

    /* Lead form */
    .kk-leadform { padding: 18px; }
    .kk-leadform .form-row { grid-template-columns: 1fr; gap: 0; }

    /* Product detail */
    .kk-product-info__cta { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
============================================================ */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .kk-hero__slider { height: 320px; }
    .kk-cities-grid { grid-template-columns: 1fr 1fr; }
    .kk-product__name { font-size: 0.78rem; }
    .kk-cat-section__header h2 { font-size: 1rem; }
    .kk-view-all { padding: 5px 12px; font-size: 0.74rem; }
}

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.fw-700 { font-weight: 700; }
.text-pink { color: var(--pink); }
.text-purple { color: var(--purple); }
.text-muted { color: var(--gray-text); }

/* ============================================================
   PRODUCT PAGE V2 — Haplun.in style with sticky CTA card
============================================================ */
.kk-product-hero {
    padding: 24px 0 40px;
    background: linear-gradient(180deg, var(--gray-1) 0%, #fff 100%);
}
.kk-product-hero__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 36px;
    align-items: start;
}

/* Gallery */
.kk-product-gallery__main {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-1);
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.kk-product-gallery__label {
    position: absolute; top: 14px; left: 14px;
    background: var(--pink);
    color: #fff;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.kk-product-gallery__discount {
    position: absolute; top: 14px; right: 14px;
    background: var(--green);
    color: #fff;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    z-index: 2;
}
.kk-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

/* Sticky info card */
.kk-product-info {
    position: sticky; top: 100px;
    background: #fff;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.kk-product-info__category {
    display: flex; gap: 6px; flex-wrap: wrap;
    margin-bottom: 8px;
}
.kk-product-info__category a {
    background: var(--pink-light);
    color: var(--pink-dark);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.kk-product-info__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 10px;
}
.kk-product-info__rating {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.86rem;
    margin-bottom: 14px;
}
.kk-stars { display: inline-flex; gap: 2px; color: var(--gray-3); font-size: 1rem; }
.kk-stars .is-filled { color: var(--gold); }
.kk-product-info__short {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--gray-2);
}
.kk-product-info__price {
    display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
    margin-bottom: 4px;
}
.kk-product-info__price .now {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-display);
}
.kk-product-info__price .was {
    font-size: 1rem;
    color: var(--gray-text);
    text-decoration: line-through;
}
.kk-product-info__price .off {
    background: var(--green);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.74rem;
    font-weight: 700;
}
.kk-product-info__price-note {
    font-size: 0.72rem;
    color: var(--gray-text);
    margin-bottom: 16px;
}
.kk-product-info__ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

/* Big CTA buttons */
.kk-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    border: none;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    text-align: left;
    transition: transform 0.15s, box-shadow 0.15s;
    width: 100%;
}
.kk-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.12); text-decoration: none; }
.kk-cta .ico { font-size: 1.4rem; flex-shrink: 0; }
.kk-cta .lbl { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; }
.kk-cta .lbl strong { font-size: 0.92rem; font-weight: 700; }
.kk-cta .lbl small { font-size: 0.66rem; opacity: 0.85; font-weight: 500; }
.kk-cta--call { background: blue; color: #fff; }
.kk-cta--inquiry { background: var(--green); color: #fff; }
.kk-cta--whatsapp {
    background: #25D366;
    color: #fff;
    justify-content: center;
    padding: 11px 14px;
    margin-bottom: 14px;
}
.kk-cta--whatsapp .ico { font-size: 1.2rem; }

.kk-product-info__trust {
    list-style: none;
    margin: 0; padding: 14px 0 0;
    border-top: 1px dashed var(--gray-2);
}
.kk-product-info__trust li {
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 4px 0;
}

/* Trust badges row */
.kk-product-trust {
    background: var(--gray-1);
    padding: 24px 0;
    border-top: 1px solid var(--gray-2);
    border-bottom: 1px solid var(--gray-2);
}
.kk-product-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.kk-product-trust__item {
    display: flex; align-items: center; gap: 12px;
    background: #fff;
    padding: 14px 16px;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.kk-product-trust__item .ico { font-size: 1.6rem; }
.kk-product-trust__item strong { display: block; font-size: 0.88rem; color: var(--dark); }
.kk-product-trust__item small { font-size: 0.72rem; color: var(--gray-text); display: block; margin-top: 2px; }

/* Tabs (NEW horizontal style) */
.kk-product-tabs {
    background: #fff;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.kk-product-tabs__nav {
    display: flex;
    overflow-x: auto;
    background: var(--gray-1);
    border-bottom: 1px solid var(--gray-2);
    scrollbar-width: thin;
}
.kk-product-tabs__nav .kk-product-tab__btn {
    flex: 0 0 auto;
    padding: 14px 22px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-light);
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}
.kk-product-tabs__nav .kk-product-tab__btn:hover { color: var(--pink); }
.kk-product-tabs__nav .kk-product-tab__btn.is-active {
    color: var(--pink-dark);
    border-bottom-color: var(--pink);
    background: #fff;
}
.kk-product-tabs__panels { padding: 24px 28px; }
.kk-product-tabs__panels .kk-product-tab__panel { display: none; }
.kk-product-tabs__panels .kk-product-tab__panel.is-active { display: block; }
.kk-product-tab__panel h3 { font-size: 1.1rem; font-weight: 700; margin: 12px 0 8px; }
.kk-product-tab__panel ul, .kk-product-tab__panel ol { padding-left: 18px; line-height: 1.8; }

.kk-incl-list { list-style: none; padding: 0; }
.kk-incl-list li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--gray-2);
    color: var(--text-light);
    font-size: 0.92rem;
}
.kk-incl-list li:last-child { border-bottom: none; }

.kk-book-steps { padding-left: 20px; }
.kk-book-steps li {
    padding: 6px 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Reviews grid */
.kk-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.kk-review {
    background: #fff;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-2);
}
.kk-review__head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 8px;
}
.kk-review__avatar, .kk-review__avatar-fallback {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
}
.kk-review__avatar-fallback {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.kk-review__head strong { display: block; font-size: 0.9rem; }
.kk-review__head small { font-size: 0.72rem; color: var(--gray-text); }
.kk-review__stars { color: var(--gold); font-size: 0.92rem; margin-bottom: 6px; }
.kk-review__text { font-size: 0.86rem; color: var(--text-light); line-height: 1.6; margin-bottom: 8px; }
.kk-review__verified { font-size: 0.7rem; color: var(--green); font-weight: 600; }

.kk-section-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
    color: var(--dark);
}
.kk-section-sub {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 24px;
    font-size: 0.92rem;
}

/* Mobile responsive product page */
@media (max-width: 1024px) {
    .kk-product-hero__grid { grid-template-columns: 1fr; }
    .kk-product-info { position: static; }
    .kk-product-trust__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .kk-product-info__ctas { grid-template-columns: 1fr; }
    .kk-product-info__title { font-size: 1.25rem; }
    .kk-product-info__price .now { font-size: 1.5rem; }
    .kk-product-trust__grid { grid-template-columns: 1fr 1fr; }
    .kk-product-trust__item { padding: 10px 12px; }
    .kk-product-tabs__panels { padding: 18px; }
}

/* ============================================================
   DESIGN TEMPLATES — Visual Variations
   Body class controls overall page look:
   .tpl-default   = standard pink-accent layout
   .tpl-alternate = purple-accent, swapped sections
   .tpl-compact   = minimal spacing, content-first
============================================================ */

/* ── ALTERNATE TEMPLATE (purple accent, swapped sections) ── */
body.tpl-alternate .kk-page-banner {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
}
body.tpl-alternate .kk-page-banner__inner h1 {
    font-family: var(--font-display);
}
body.tpl-alternate .kk-section-title,
body.tpl-alternate .kk-cat-section__header h2 {
    color: var(--purple);
    border-bottom: 3px solid var(--purple);
    padding-bottom: 8px;
    display: inline-block;
}
body.tpl-alternate .kk-product:hover {
    box-shadow: 0 8px 20px rgba(124, 58, 237, .2);
}
body.tpl-alternate .kk-content-section__toggle {
    background: linear-gradient(135deg, var(--purple), var(--pink));
}
body.tpl-alternate .kk-product-info__category a,
body.tpl-alternate .kk-faq__item summary {
    background: var(--purple-light);
    color: var(--purple);
}
body.tpl-alternate .kk-product-info {
    border-top: 4px solid var(--purple);
}

/* Alt: reverse hero + form layout in city/category */
body.tpl-alternate.page-city .kk-page-banner__inner,
body.tpl-alternate.page-category .kk-page-banner__inner,
body.tpl-alternate.page-city-category .kk-page-banner__inner {
    direction: rtl;
}
body.tpl-alternate.page-city .kk-page-banner__inner > *,
body.tpl-alternate.page-category .kk-page-banner__inner > *,
body.tpl-alternate.page-city-category .kk-page-banner__inner > * {
    direction: ltr;
}

/* ── COMPACT TEMPLATE ── */
body.tpl-compact .section { padding: 24px 0; }
body.tpl-compact .kk-page-banner { padding: 30px 0; }
body.tpl-compact .kk-page-banner__inner h1 { font-size: 1.6rem; }
body.tpl-compact .kk-cat-section__header h2 { font-size: 1.1rem; }
body.tpl-compact .kk-content-section { margin: 20px auto; }
body.tpl-compact .kk-products-grid { gap: 10px; }

/* ── CONTACT TEMPLATE (for /contact-us page) ── */
body.tpl-contact .kk-page-banner { background: linear-gradient(135deg, var(--pink), var(--purple)); }
body.tpl-contact .container::after {
    content: '';
    display: block;
    background: url('https://maps.google.com/maps?q=Delhi&z=10&output=embed') no-repeat center;
    background-size: cover;
    height: 300px;
    margin: 30px 0;
    border-radius: var(--radius-lg);
    opacity: 0.85;
}

/* ── ABOUT TEMPLATE (for /about-us) ── */
body.tpl-about .kk-page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--purple) 100%);
}
body.tpl-about .kk-content-section__title {
    font-size: 2.4rem;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product page templates */
body.tpl-alternate.page-product .kk-product-hero__grid {
    grid-template-columns: 420px 1fr;
}
body.tpl-alternate.page-product .kk-product-info {
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--purple);
}
body.tpl-compact.page-product .kk-product-hero__grid { grid-template-columns: 1fr; gap: 16px; }
body.tpl-compact.page-product .kk-product-trust { display: none; }
body.tpl-compact.page-product .kk-product-info { padding: 16px; }

@media (max-width: 1024px) {
    body.tpl-alternate.page-product .kk-product-hero__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UNIVERSAL LEAD FORM (Phase 1 — 7 fields, 2 per row)
============================================================ */
.kk-leadform--inline {
    background: #fff;
    padding: 22px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    border: 1px solid var(--gray-2);
}
.kk-leadform--inline.kk-leadform--on-banner {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
}
.kk-leadform__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    text-align: center;
}
.kk-leadform__desc {
    font-size: 0.84rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 16px;
}

.kk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.kk-form-field { display: flex; flex-direction: column; gap: 4px; }
.kk-form-field--full { grid-column: 1 / -1; }
.kk-form-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
}
.kk-form-field .req { color: var(--red); }
.kk-form-field input,
.kk-form-field select {
    padding: 10px 12px;
    border: 1.5px solid var(--gray-3);
    border-radius: 7px;
    font-size: 0.88rem;
    font-family: inherit;
    background: #fff;
    width: 100%;
    transition: border-color 0.15s;
}
.kk-form-field input:focus,
.kk-form-field select:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255,64,129,.1);
}

.kk-form-submit {
    width: 100%;
    margin-top: 4px;
    padding: 13px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(255,64,129,.3);
    transition: var(--transition);
}
.kk-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,64,129,.4);
}
.kk-form-submit:disabled { opacity: 0.6; cursor: wait; }
.kk-form-status { font-size: 0.82rem; min-height: 1.2em; }
.kk-form-note {
    font-size: 0.7rem;
    color: var(--gray-text);
    text-align: center;
    margin-top: 8px;
}

/* Mobile: 2-col stays 2-col (smaller padding), only last full row */
@media (max-width: 480px) {
    .kk-leadform--inline { padding: 16px; }
    .kk-leadform__title { font-size: 1.2rem; }
    .kk-leadform__desc { font-size: 0.78rem; margin-bottom: 12px; }
    .kk-form-row { gap: 8px; }
    .kk-form-field input,
    .kk-form-field select { padding: 9px 10px; font-size: 0.85rem; }
    .kk-form-field label { font-size: 0.74rem; }
}

/* ============================================================
   PHASE 1 — Other Categories in Same City (city-category page)
============================================================ */
.kk-cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
.kk-cat-card {
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius);
    padding: 18px 14px;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}
.kk-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,64,129,.15);
    border-color: var(--pink);
}
.kk-cat-card__icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--pink-light);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}
.kk-cat-card__icon img { width: 100%; height: 100%; object-fit: cover; }
.kk-cat-card__name { font-weight: 600; font-size: 0.86rem; color: var(--dark); }
.kk-cat-card__sub { font-size: 0.72rem; color: var(--gray-text); margin-top: 4px; }

@media (max-width: 480px) {
    .kk-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .kk-cat-card { padding: 14px 8px; }
    .kk-cat-card__icon { width: 52px; height: 52px; }
    .kk-cat-card__name { font-size: 0.78rem; }
}

/* ============================================================
   PHASE 1 GLOBAL FIXES
============================================================ */

/* Fix #2 — Horizontal scroll prevention (no left-right scroll on mobile/desktop) */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
img, video, iframe { max-width: 100%; height: auto; }
.container { max-width: 100%; box-sizing: border-box; }
section, div { max-width: 100%; }

/* Fix #3 — Footer: social icons + remove white space at bottom */
.kk-footer {
    background: var(--dark);
    color: #fff;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.kk-footer__copyright,
.kk-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 14px 0;
    margin: 0;
}
.kk-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.kk-footer__social {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
}
.kk-footer__social:hover {
    background: var(--pink);
    transform: translateY(-2px);
}
body, html { margin: 0; padding: 0; }

/* Fix #4 — Video section card smaller + responsive */
.kk-videos-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.kk-video {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.kk-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 768px) {
    .kk-videos-row { grid-template-columns: 1fr 1fr; gap: 8px; }
}
@media (max-width: 480px) {
    .kk-videos-row { grid-template-columns: 1fr; }
}

/* Fix #8 — Mobile hero responsive */
@media (max-width: 768px) {
    .kk-hero__slider {
        height: 380px !important;
        min-height: 380px;
    }
    .kk-hero__title {
        font-size: 1.4rem !important;
        line-height: 1.25;
    }
    .kk-hero__subtitle {
        font-size: 0.86rem !important;
        margin-bottom: 12px;
    }
    .kk-hero__badge {
        font-size: 0.7rem !important;
        padding: 4px 10px;
    }
    .kk-hero__cta { gap: 6px; flex-wrap: wrap; }
    .kk-hero__cta .btn { padding: 10px 16px; font-size: 0.78rem; }
    .kk-hero__content {
        padding: 14px;
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .kk-hero__slider { height: 320px !important; min-height: 320px; }
    .kk-hero__title { font-size: 1.15rem !important; }
    .kk-hero__subtitle { font-size: 0.78rem !important; }
}

/* Fix #9 — Mobile menu drawer responsive */
.kk-drawer {
    width: min(85vw, 360px);
    overflow-y: auto;
    overflow-x: hidden;
}
.kk-drawer__list {
    padding: 12px 0;
}
.kk-drawer__item {
    display: block;
    padding: 14px 20px;
    color: var(--dark);
    font-size: 0.94rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-2);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}
.kk-drawer__item:hover {
    background: var(--pink-light);
    color: var(--pink-dark);
    text-decoration: none;
}
.kk-drawer__item.has-submenu::after {
    content: '▾';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--gray-text);
    transition: transform 0.2s;
}
.kk-drawer__item.has-submenu.is-open::after {
    transform: translateY(-50%) rotate(180deg);
}
.kk-drawer__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--gray-1);
}
.kk-drawer__item.has-submenu.is-open + .kk-drawer__submenu {
    max-height: 400px;
}
.kk-drawer__submenu a {
    display: block;
    padding: 10px 32px;
    font-size: 0.86rem;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.kk-drawer__submenu a:hover {
    background: var(--pink-light);
    color: var(--pink-dark);
}

/* ============================================================
   PHASE 2 — GMB Locations + Videos Section
============================================================ */
.kk-gmb-section { padding: 40px 0; }
.kk-gmb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.kk-gmb-card {
    background: #fff;
    border: 1px solid var(--gray-2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    transition: var(--transition);
}
.kk-gmb-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
}
.kk-gmb-card__map {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--gray-1);
}
.kk-gmb-card__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.kk-gmb-card__body {
    padding: 14px 16px;
}
.kk-gmb-card__body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}
.kk-gmb-card__body p {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 480px) {
    .kk-gmb-grid { grid-template-columns: 1fr; gap: 14px; }
    .kk-gmb-card__body { padding: 12px; }
}

/* Settings repeater item styles */
.gmb-repeater__item, .videos-repeater__item {
    background: var(--gray-1);
    padding: 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    border: 1px solid var(--gray-2);
    position: relative;
    border-left: 3px solid var(--green);
}
.videos-repeater__item { border-left-color: var(--red); }
.gmb-repeater__remove, .videos-repeater__remove {
    position: absolute; top: 8px; right: 8px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    border: none;
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

/* ============================================================
   V6 — Product Inquiry Form (EXACT SS Design)
============================================================ */
.kk-inquiry-form {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,.1);
    border: 1px solid var(--gray-2);
    max-width: 100%;
    box-sizing: border-box;
}
.kk-inquiry-form__head {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-2);
}
.kk-inquiry-form__icon {
    font-size: 1.4rem;
    line-height: 1;
}
.kk-inquiry-form__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    font-family: var(--font-display);
}
.kk-inquiry-form__sub {
    font-size: 0.78rem;
    color: var(--gray-text);
    margin: 2px 0 0;
}

.kk-if-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.kk-if-field { display: flex; flex-direction: column; gap: 4px; }
.kk-if-field--full { grid-column: 1 / -1; }
.kk-if-field label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}
.kk-if-field input,
.kk-if-field select,
.kk-if-field textarea {
    padding: 10px 12px;
    border: 1.5px solid var(--gray-3);
    border-radius: 7px;
    font-size: 0.85rem;
    font-family: inherit;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.15s;
    color: var(--dark);
}
.kk-if-field textarea {
    resize: vertical;
    min-height: 70px;
    max-height: 200px;
}
.kk-if-field input::placeholder,
.kk-if-field textarea::placeholder { color: #bbb; }
.kk-if-field input:focus,
.kk-if-field select:focus,
.kk-if-field textarea:focus {
    outline: none;
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255,64,129,.1);
}

.kk-if-submit {
    width: 100%;
    margin-top: 6px;
    padding: 13px;
    background: #10B981;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}
.kk-if-submit:hover {
    background: #0e9e6e;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(16,185,129,.3);
}
.kk-if-submit:disabled { opacity: 0.6; cursor: wait; }

/* Mobile responsiveness — stays 2-col but shrinks padding */
@media (max-width: 480px) {
    .kk-inquiry-form { padding: 16px 14px; border-radius: 12px; }
    .kk-inquiry-form__title { font-size: 1rem; }
    .kk-inquiry-form__sub { font-size: 0.72rem; }
    .kk-if-row { gap: 8px; margin-bottom: 8px; }
    .kk-if-field input,
    .kk-if-field select,
    .kk-if-field textarea {
        padding: 8px 10px;
        font-size: 0.82rem;
    }
    .kk-if-field label { font-size: 0.6rem; }
    .kk-if-submit { padding: 11px; font-size: 0.88rem; }
}

/* ============================================================
   V6 — Definitive Horizontal Scroll Fix
============================================================ */
html { overflow-x: hidden !important; }
body { overflow-x: hidden !important; width: 100% !important; max-width: 100vw !important; }
* { box-sizing: border-box; }
.container,
.kk-hero, .kk-hero__slider,
section, header, footer, nav, main,
.kk-product-hero, .kk-product-hero__grid,
.kk-page-banner, .kk-page-banner__inner {
    max-width: 100% !important;
}
img, video, iframe, table, pre, blockquote {
    max-width: 100%;
    box-sizing: border-box;
}
.row, [class*="grid"] {
    max-width: 100%;
}

/* Floating elements & sticky CTAs — ensure no horizontal overflow */
.kk-sticky-desk {
    right: 18px !important;
}
@media (max-width: 768px) {
    .kk-sticky-desk { right: 12px !important; }
}

/* ============================================================
   V6 — Mobile Drawer (Improved per SS)
============================================================ */
.kk-drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9998;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.kk-drawer-overlay.is-open { opacity: 1; visibility: visible; }

.kk-drawer {
    position: fixed; top: 0; right: -100%;
    height: 100vh; height: 100dvh;
    width: 86vw; max-width: 340px;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0,0,0,.1);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    transition: right 0.3s ease;
    display: flex; flex-direction: column;
}
.kk-drawer.is-open { right: 0; }

.kk-drawer__header {
    display: flex; align-items: center; gap: 12px;
    padding: 18px 18px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: #fff;
    position: relative;
}
.kk-drawer__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.1rem;
}
.kk-drawer__greeting strong { display: block; font-size: 0.94rem; }
.kk-drawer__greeting small { font-size: 0.74rem; opacity: 0.9; }
.kk-drawer__close {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    color: #fff; border: none;
    font-size: 1.3rem; line-height: 1;
    cursor: pointer;
}

.kk-drawer__list {
    flex: 1;
    padding: 4px 0;
}
.kk-drawer__item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 18px;
    color: var(--dark);
    font-size: 0.92rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-2);
    text-decoration: none;
    transition: var(--transition);
}
.kk-drawer__item:hover {
    background: var(--pink-light);
    color: var(--pink-dark);
    text-decoration: none;
}
.kk-drawer__item.has-submenu::after {
    content: '▾';
    font-size: 0.85rem;
    color: var(--gray-text);
    transition: transform 0.2s;
}
.kk-drawer__item.has-submenu.is-open::after {
    transform: rotate(180deg);
}
.kk-drawer__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--gray-1);
}
.kk-drawer__item.has-submenu.is-open + .kk-drawer__submenu {
    max-height: 500px;
    overflow-y: auto;
}
.kk-drawer__submenu a {
    display: block;
    padding: 10px 18px 10px 38px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.04);
}
.kk-drawer__submenu a:hover {
    background: #fff;
    color: var(--pink-dark);
}

.kk-drawer__contact-section {
    padding: 14px 18px;
    background: var(--gray-1);
    border-top: 1px solid var(--gray-2);
}
.kk-drawer__contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-text);
    margin-bottom: 8px;
    font-weight: 700;
}
.kk-drawer__contact-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0;
    color: var(--dark);
    text-decoration: none;
}
.kk-drawer__contact-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
}
.kk-drawer__contact-icon--whatsapp { background: #25D366; color: #fff; }
.kk-drawer__contact-icon--call     { background: var(--pink); color: #fff; }
.kk-drawer__contact-icon--email    { background: var(--purple); color: #fff; }
.kk-drawer__contact-text strong { display: block; font-size: 0.86rem; }
.kk-drawer__contact-text small  { font-size: 0.72rem; color: var(--gray-text); }

.kk-drawer__login {
    display: block;
    margin: 0 18px 14px;
    padding: 12px;
    text-align: center;
    background: var(--pink);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
}
.kk-drawer__login:hover {
    background: var(--pink-dark);
    color: #fff;
    text-decoration: none;
}

/* ============================================================
   V7 — Hero Banner Form per Template (Issue #18)
============================================================ */

/* DEFAULT template — already has 2-col (info | form) layout */
.kk-page-banner__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
}

@media (max-width: 900px) {
    .kk-page-banner__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ALTERNATE template — form goes LEFT, info RIGHT */
body.tpl-alternate .kk-page-banner__inner {
    grid-template-columns: 0.8fr 1.2fr;
}
body.tpl-alternate .kk-page-banner__inner > .kk-inquiry-form {
    order: -1; /* form first */
}
body.tpl-alternate .kk-page-banner {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
}

/* COMPACT template — form stacked below info, narrower banner */
body.tpl-compact .kk-page-banner__inner {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
body.tpl-compact .kk-page-banner {
    padding: 30px 0;
}
body.tpl-compact .kk-page-banner__inner h1 {
    font-size: 1.6rem;
}
body.tpl-compact .kk-page-banner__cta {
    justify-content: center;
}
body.tpl-compact .kk-inquiry-form {
    max-width: 480px;
    margin: 20px auto 0;
}

/* CONTACT template — form prominent, center */
body.tpl-contact .kk-page-banner__inner {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* ABOUT template — no form by default in banner (story-focused) */
body.tpl-about .kk-page-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
body.tpl-about .kk-page-banner__inner .kk-inquiry-form {
    display: none;
}

/* Product page templates */
body.tpl-alternate.page-product .kk-product-hero__grid {
    grid-template-columns: 420px 1fr;
}
body.tpl-compact.page-product .kk-product-hero__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    body.tpl-alternate.page-product .kk-product-hero__grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure form is responsive in all templates */
@media (max-width: 600px) {
    .kk-page-banner__inner {
        grid-template-columns: 1fr !important;
        text-align: left;
    }
    body.tpl-alternate .kk-page-banner__inner > .kk-inquiry-form,
    body.tpl-compact  .kk-inquiry-form {
        order: initial;
        margin: 16px 0 0;
    }
}

/* ============================================================
   V8 — Header/Footer Improvements (User Feedback)
============================================================ */

/* Issue 1: Center desktop header (top + nav) */
.kk-header .container,
.kk-top, .kk-nav, .kk-nav__list {
    margin-left: auto;
    margin-right: auto;
}
.kk-header .container { max-width: 1280px; }

/* Issue 2 + 3: Desktop tagline visible, attractive font/color */
@media (min-width: 768px) {
    .kk-logo__tag {
        display: block !important;
        font-size: 0.72rem;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        font-weight: 500;
        color: var(--purple);
        margin-top: -2px;
        letter-spacing: 0.02em;
        background: linear-gradient(90deg, var(--pink) 0%, var(--purple) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Issue 8: Hero CTA — center align, smaller, responsive */
.kk-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    padding-bottom: 30px;
}
.kk-hero__cta {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
}
.kk-hero__cta .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}
@media (max-width: 768px) {
    .kk-hero__content {
        padding: 0 16px 24px;
        max-width: 100%;
    }
    .kk-hero__cta .btn {
        padding: 8px 14px;
        font-size: 0.78rem;
    }
    .kk-hero__cta {
        gap: 6px;
    }
}

/* Issue 9: Banner badge "Same Day Setup" + Category Name responsive */
.kk-hero__badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.76rem;
    background: rgba(255,255,255,.18);
    color: #fff;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.25);
    margin: 0 auto 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.kk-hero__title {
    font-size: 2.4rem;
    margin: 0 auto 10px;
    text-align: center;
    line-height: 1.15;
    max-width: 700px;
}
.kk-hero__subtitle {
    font-size: 1rem;
    text-align: center;
    margin: 0 auto 16px;
    max-width: 600px;
    opacity: 0.92;
}
@media (max-width: 768px) {
    .kk-hero__badge { font-size: 0.66rem; padding: 3px 10px; margin-bottom: 8px; }
    .kk-hero__title { font-size: 1.4rem; line-height: 1.2; max-width: 90%; }
    .kk-hero__subtitle { font-size: 0.82rem; max-width: 90%; margin-bottom: 12px; }
}
@media (max-width: 480px) {
    .kk-hero__title { font-size: 1.1rem; }
    .kk-hero__subtitle { font-size: 0.74rem; }
}

/* Issue 4: Footer mobile responsive — 2x2 grid */
@media (max-width: 768px) {
    .kk-footer__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px 14px !important;
    }
    .kk-footer__col { font-size: 0.78rem; }
    .kk-footer__col h3 { font-size: 0.86rem; margin-bottom: 8px; }
    .kk-footer__col h4 { font-size: 0.78rem; margin-bottom: 6px; }
    .kk-footer__col ul li { padding: 2px 0; }
    .kk-footer__col a { font-size: 0.74rem; }
}
@media (max-width: 480px) {
    .kk-footer { padding-top: 24px; }
    .kk-footer__grid { grid-template-columns: 1fr 1fr !important; }
    .kk-footer__col h3 { font-size: 0.82rem; }
    .kk-footer__col p,
    .kk-footer__col a { font-size: 0.72rem; line-height: 1.4; }
}

/* Issue 5: Copyright visible on mobile (don't hide behind bottom nav) */
.kk-footer__copyright {
    padding-bottom: 80px !important; /* bottom nav clearance on mobile */
    text-align: center;
}
@media (min-width: 768px) {
    .kk-footer__copyright { padding-bottom: 14px !important; }
}
.kk-footer__copyright .kk-developer {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
}
.kk-footer__copyright .kk-developer a {
    color: var(--pink);
    text-decoration: none;
}

/* Issue 6: More social icons + correct ones */
.kk-footer__socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.kk-footer__social {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}
.kk-footer__social:hover {
    background: var(--pink);
    transform: translateY(-2px);
}
.kk-footer__social svg { width: 16px; height: 16px; fill: currentColor; }

/* Issue 7: GMB section responsive like video section */
.kk-gmb-section .kk-gmb-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 14px;
}
.kk-gmb-card__map {
    aspect-ratio: 16/10;
}
@media (max-width: 768px) {
    .kk-gmb-section .kk-gmb-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px;
    }
    .kk-gmb-card__body { padding: 10px; }
    .kk-gmb-card__body h3 { font-size: 0.86rem; }
    .kk-gmb-card__body p { font-size: 0.72rem; }
}
@media (max-width: 480px) {
    .kk-gmb-section .kk-gmb-grid { grid-template-columns: 1fr !important; }
}
