/* ============================================================
   Bou'd'chou Kids — Complete Design System
   Built on top of Bootstrap 4 + Original Template CSS
   ============================================================ */

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
    --color-primary:    #FF6B9D;
    --color-secondary:  #4ECDC4;
    --color-accent:     #FFE66D;
    --color-orange:     #FF8C42;
    --color-bg:         #FFF9F0;
    --color-card-bg:    #FFFFFF;
    --color-text:       #2D2D2D;
    --color-muted:      #6B7280;
    --color-success:    #6BCB77;
    --color-error:      #FF4D4D;

    /* Legacy aliases kept for backward compat */
    --color-pink:       #FF6B9D;
    --color-red:        #E21E26;
    --color-yellow:     #FFE66D;
    --color-green:      #6BCB77;
    --color-dark:       #2D2D2D;
    --color-gray-light: #FFF9F0;
    --color-gray:       #6B7280;

    --font-heading: 'Nunito', sans-serif;
    --font-body:    'Poppins', sans-serif;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Nunito', sans-serif;

    --radius-card:  20px;
    --radius-btn:   50px;
    --radius-input: 14px;

    --shadow-card:  0 10px 40px rgba(255,107,157,.10);
    --shadow-hover: 0 20px 50px rgba(255,107,157,.20);
    --shadow-btn:   0  8px 25px rgba(255,107,157,.35);
}

/* ─── Base ───────────────────────────────────────────────── */
html, body { height: 100%; }

body {
    background-color: var(--color-bg) !important;
    font-family: var(--font-body);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.65;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-text);
}

a { transition: color .2s ease; }
img { max-width: 100%; }

/* ─── Overrides for old template colour references ───────── */
.bg-theme,.btn-theme,
.header-bottom-one.header-sticky.is-sticky .main-menu nav ul li.active > a,
.header-bottom-one.header-sticky.is-sticky .main-menu nav ul li:hover > a,
.header-search .header-search-wrap button,
.header-mini-cart a span,
.footer-widget .mc-form button,
.footer-widget .footer-social a:hover,
.btn-primary,.badge-secondary,
.bg-theme-two { background-color: var(--color-primary) !important; }

.bg-theme-two-light { background-color: #fcebed !important; }

.text-theme,
.main-menu nav ul li.active > a,
.main-menu nav ul li:hover > a { color: var(--color-primary) !important; }

.border-theme { border-color: var(--color-primary) !important; }


/* ════════════════════════════════════════════════════════════
   ANNOUNCEMENT BANNER
════════════════════════════════════════════════════════════ */
.kids-announcement {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-orange) 60%, #FFBD4F 100%);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    position: relative;
    z-index: 1001;
}
.kids-announcement a {
    color: var(--color-accent);
    font-weight: 800;
    text-decoration: underline;
}

/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.kids-header {
    background: #fff;
    box-shadow: 0 4px 24px rgba(255,107,157,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top bar */
.kids-header-top {
    background: var(--color-text) !important;
    color: rgba(255,255,255,.75);
    font-size: 12px;
    padding: 7px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}
.kids-header-top a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all .2s;
}
.kids-header-top a:hover { color: var(--color-accent); }
.kids-header-top .lang-divider { color: rgba(255,255,255,.25); margin: 0 4px; }
.kids-header-top .lang-pill {
    background: rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    cursor: pointer;
    border: none;
    position: relative;
}
.kids-header-top .lang-dropdown {
    position: relative;
    display: inline-block;
}
.kids-header-top .lang-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    padding: 6px;
    min-width: 110px;
    z-index: 9999;
}
.kids-header-top .lang-dropdown:hover .lang-dropdown-menu { display: block; }
.kids-header-top .lang-dropdown-menu a {
    display: block;
    padding: 6px 12px;
    color: var(--color-text);
    border-radius: 8px;
    font-size: 12px;
}
.kids-header-top .lang-dropdown-menu a:hover {
    background: #FFF0F5;
    color: var(--color-primary);
}

/* Main header row */
.kids-header-main {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo */
.kids-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.kids-logo .logo-svg { height: 48px; width: auto; }
.kids-logo .logo-wordmark {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    line-height: 1;
}
.kids-logo .logo-wordmark em { color: var(--color-secondary); font-style: normal; }

/* Search */
.kids-search-wrap {
    flex: 1;
    max-width: 420px;
}
.kids-search-form {
    display: flex;
    align-items: center;
    background: var(--color-bg);
    border: 2px solid #FFE4EF;
    border-radius: 50px;
    padding: 8px 18px;
    transition: all .3s;
}
.kids-search-form:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255,107,157,.10);
    background: #fff;
}
.kids-search-form input {
    border: none; background: transparent; outline: none;
    font-family: var(--font-body); font-size: 14px;
    color: var(--color-text); flex: 1; padding: 0;
}
.kids-search-form input::placeholder { color: var(--color-muted); }
.kids-search-form button {
    background: none; border: none;
    color: var(--color-primary); cursor: pointer;
    font-size: 17px; padding: 0 0 0 8px;
    display: flex; align-items: center;
}

/* Header action icons */
.kids-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.kids-action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 16px;
    border-radius: 50px;
    background: var(--color-bg);
    border: 2px solid #FFE4EF;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all .25s;
    white-space: nowrap;
}
.kids-action-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn);
    text-decoration: none;
}
.kids-action-badge {
    position: absolute;
    top: -7px; right: -7px;
    background: var(--color-orange);
    color: #fff;
    border-radius: 50%;
    width: 20px; height: 20px;
    font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading);
    border: 2px solid #fff;
}

/* Nav pills row */
.kids-nav-pills-bar {
    border-top: 1px solid #FFE4EF;
    background: #fff;
    padding: 8px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.kids-nav-pills-bar::-webkit-scrollbar { display: none; }
.kids-nav-pills-inner {
    display: flex;
    gap: 8px;
    align-items: center;
    min-width: max-content;
    padding: 0 8px;
}
.kids-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 16px;
    border-radius: 50px;
    background: var(--color-bg);
    border: 2px solid transparent;
    color: var(--color-text);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    transition: all .22s;
    white-space: nowrap;
}
.kids-pill:hover { background: #FFE4EF; color: var(--color-primary); text-decoration: none; }
.kids-pill.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ── Pill dropdown ─────────────────────────────────────── */
.kids-pill-dropdown {
    position: relative;
    display: inline-flex;
}
.kpd-caret {
    font-size: 10px;
    transition: transform .25s;
}
.kids-pill-dropdown:hover .kpd-caret {
    transform: rotate(180deg);
}
.kids-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(255,107,157,.18);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    min-width: 180px;
    z-index: 999;
    border: 1px solid #FFE4EF;
}
.kids-pill-dropdown:hover .kids-dropdown-menu {
    display: block;
}
.kids-dropdown-menu li a {
    display: block;
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.kids-dropdown-menu li a:hover,
.kids-dropdown-menu li a.active {
    background: #FFF0F6;
    color: var(--color-primary);
}
/* small arrow pointer */
.kids-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #FFE4EF;
}
.kids-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

/* Mobile toggle */
.kids-mobile-toggle {
    display: none;
    background: none; border: none;
    font-size: 22px; color: var(--color-text);
    cursor: pointer; padding: 4px;
}

@media (max-width: 991px) {
    .kids-search-wrap { display: none; }
    .kids-mobile-toggle { display: flex; }
    .kids-action-btn .btn-label { display: none; }
    .kids-header-main { gap: 10px; }
}
@media (max-width: 575px) {
    .kids-logo .logo-wordmark { font-size: 22px; }
    .kids-logo .logo-svg { height: 38px; }
}

/* Legacy header compat (hide old structure) */
.header-section { display: none !important; }


/* ════════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════ */
.btn-kids {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 28px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading); font-weight: 700; font-size: 15px;
    border: none; cursor: pointer; text-decoration: none;
    transition: all .3s ease;
}
.btn-kids-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
    color: #fff;
    box-shadow: var(--shadow-btn);
}
.btn-kids-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255,107,157,.45);
    color: #fff; text-decoration: none;
}
.btn-kids-secondary {
    background: linear-gradient(135deg, var(--color-secondary), #38b2ac);
    color: #fff;
    box-shadow: 0 8px 25px rgba(78,205,196,.35);
}
.btn-kids-secondary:hover {
    transform: translateY(-3px); color: #fff; text-decoration: none;
    box-shadow: 0 12px 35px rgba(78,205,196,.45);
}
.btn-kids-outline {
    background: transparent; color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-kids-outline:hover { background: var(--color-primary); color: #fff; text-decoration: none; }

/* Cart / Wishlist card buttons */
.btn-cart-full {
    display: block; width: 100%;
    padding: 10px 14px; border-radius: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
    color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 13px;
    border: none; cursor: pointer; text-align: center;
    transition: all .3s; box-shadow: 0 5px 18px rgba(255,107,157,.3);
}
.btn-cart-full:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,157,.4); }

.btn-wishlist-outline {
    display: block; width: 100%;
    padding: 8px 14px; border-radius: 50px;
    background: transparent; color: var(--color-primary);
    font-family: var(--font-heading); font-weight: 600; font-size: 12px;
    border: 2px solid #FFE4EF; cursor: pointer; text-align: center;
    transition: all .3s; text-decoration: none;
}
.btn-wishlist-outline:hover,.btn-wishlist-outline.active {
    background: #FFE4EF; border-color: var(--color-primary);
    color: var(--color-primary); text-decoration: none;
}

/* Override btn-theme (old template) */
.btn-theme {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 12px 30px;
    border-radius: var(--radius-btn);
    background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
    color: #fff !important; font-family: var(--font-heading); font-weight: 700;
    border: none; cursor: pointer; text-decoration: none;
    transition: all .3s; box-shadow: var(--shadow-btn);
}
.btn-theme:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,107,157,.45); color:#fff !important; }


/* ════════════════════════════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════════════════════════════ */
.kids-section-title {
    text-align: center;
    margin-bottom: 48px;
}
.kids-section-title .title-emoji {
    font-size: 30px;
    display: block;
    margin-bottom: 6px;
    line-height: 1;
}
.kids-section-title h2 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
}
.kids-section-title h2::after {
    content: '';
    display: block;
    margin: 8px auto 0;
    height: 5px;
    width: 80%;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}
.kids-section-title p {
    color: var(--color-muted);
    font-size: 15px;
    max-width: 480px;
    margin: 0 auto;
}

/* Compat with old .section-title */
.section-title h1, .section-title h2 {
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
}


/* ════════════════════════════════════════════════════════════
   PRODUCT CARDS
════════════════════════════════════════════════════════════ */
.kids-product-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: var(--shadow-card);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}
.kids-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: #FFE4EF;
}

.kids-product-card .kpc-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF5F8, #FFF9F0);
    padding: 20px;
    flex-shrink: 0;
}
.kids-product-card .kpc-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 14px;
    transition: transform .4s ease;
    display: block;
}
.kids-product-card:hover .kpc-image img { transform: scale(1.06); }

.kids-product-card .kpc-badge {
    position: absolute;
    top: 14px; left: 14px;
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 11px; font-weight: 700;
    font-family: var(--font-heading);
    z-index: 2;
}
.kpc-badge-oos { background: rgba(255,77,77,.88); color:#fff; }
.kpc-badge-sale {
    background: linear-gradient(135deg, var(--color-orange), var(--color-primary));
    color: #fff;
}

.kids-product-card .kpc-wish {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,.10);
    transition: all .3s;
    color: var(--color-muted);
    font-size: 16px;
    z-index: 2;
    text-decoration: none;
}
.kids-product-card .kpc-wish:hover,
.kids-product-card .kpc-wish.active {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.12);
    text-decoration: none;
}

.kids-product-card .kpc-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.kids-product-card .kpc-name {
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    line-height: 1.4;
}
.kids-product-card .kpc-name:hover { color: var(--color-primary); text-decoration: none; }

.kids-product-card .kpc-price-row {
    display: flex; align-items: baseline;
    gap: 8px; margin-top: auto; margin-bottom: 14px;
}
.kpc-price { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: var(--color-primary); }
.kpc-old   { font-size: 13px; color: var(--color-muted); text-decoration: line-through; }

.kids-product-card .kpc-actions { display: flex; flex-direction: column; gap: 8px; }

/* ─ Legacy .product-item keep alive (shop page, sidebar) ─ */
.product-item {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all .35s;
}
.product-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-item .image img { transition: transform .4s; }
.product-item:hover .image img { transform: scale(1.05); }
.product-item .content .price-box .price { color: var(--color-primary) !important; font-weight: 800; font-size: 18px; }

/* ─ Modern card buttons compat ─ */
.btn-modern-cart-full { /* alias */ }


/* ════════════════════════════════════════════════════════════
   CATEGORY CARDS
════════════════════════════════════════════════════════════ */
.kids-cat-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 8px 28px rgba(0,0,0,.06);
    position: relative;
    cursor: pointer;
    background: #fff;
    height: 100%;
}
.kids-cat-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,.12); }

.kids-cat-card .kcc-image-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#FFE4EF,#FFF0F5);
    padding: 16px;
    display: flex; align-items: center; justify-content: center;
}
.kids-cat-card .kcc-image-wrap img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 14px;
    transition: transform .4s;
    display: block;
}
.kids-cat-card:hover .kcc-image-wrap img { transform: scale(1.08); }

/* pastel bg rotation per nth */
.kids-cat-card:nth-child(4n+1) .kcc-image-wrap { background: linear-gradient(135deg,#FFE4EF,#FFF5F8); }
.kids-cat-card:nth-child(4n+2) .kcc-image-wrap { background: linear-gradient(135deg,#CCFAF8,#E0FAF8); }
.kids-cat-card:nth-child(4n+3) .kcc-image-wrap { background: linear-gradient(135deg,#FFFDE0,#FFF7CC); }
.kids-cat-card:nth-child(4n+4) .kcc-image-wrap { background: linear-gradient(135deg,#D0E8FF,#E8F4FF); }

.kids-cat-card .kcc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(45,45,45,.65) 0%, transparent 55%);
    opacity: 0; transition: opacity .3s;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 16px; border-radius: var(--radius-card);
}
.kids-cat-card:hover .kcc-overlay { opacity: 1; }
.kcc-overlay .shop-now-pill {
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading); font-weight: 700; font-size: 13px;
    padding: 7px 20px; border-radius: 50px;
}

.kids-cat-card .kcc-info {
    padding: 12px 14px 16px;
    text-align: center;
}
.kids-cat-card .kcc-name {
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    display: block;
    transition: color .2s;
}
.kids-cat-card .kcc-name:hover { color: var(--color-primary); text-decoration: none; }

/* Legacy category-card */
.category-card { background: #fff; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: all .35s; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.category-item-modern { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: all .35s; }
.category-item-modern:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.category-item-modern .image { position: relative; }
.category-item-modern .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top,rgba(45,45,45,.65) 0%,transparent 50%);
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding: 20px;
    opacity: 0; transition: opacity .3s;
}
.category-item-modern:hover .overlay { opacity: 1; }
.category-item-modern .overlay .name { color:#fff; font-family: var(--font-heading); font-weight:700; font-size:16px; margin-bottom:8px; }
.category-item-modern .overlay .btn-shop { background:var(--color-primary); color:#fff; padding:7px 18px; border-radius:50px; font-size:13px; font-weight:700; font-family:var(--font-heading); }


/* ════════════════════════════════════════════════════════════
   HERO / CAROUSEL
════════════════════════════════════════════════════════════ */
.kids-hero-section { border-radius: 24px; overflow: hidden; margin-bottom: 0; position: relative; }

/* Static gradient fallback hero */
.kids-hero-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-orange) 55%, #FFBD4F 100%);
    min-height: 480px;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    border-radius: 24px;
}
.kids-hero-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 15% 85%, rgba(255,255,255,.12) 0%, transparent 35%),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.08) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.04) 0%, transparent 60%);
    pointer-events: none;
}

.kids-hero-card .hero-text { position: relative; z-index: 2; padding: 60px 50px; }
.kids-hero-card .hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800; color: #fff;
    line-height: 1.1; margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,.10);
}
.kids-hero-card .hero-text p {
    color: rgba(255,255,255,.9);
    font-size: 17px; margin-bottom: 30px;
}
.kids-hero-card .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-white {
    display: inline-block;
    padding: 14px 32px; border-radius: 50px;
    background: #fff; color: var(--color-primary);
    font-family: var(--font-heading); font-weight: 800; font-size: 16px;
    text-decoration: none; border: none; cursor: pointer;
    transition: all .3s; box-shadow: 0 8px 28px rgba(0,0,0,.15);
}
.btn-hero-white:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,.2); color: var(--color-primary); text-decoration: none; }
.btn-hero-outline {
    display: inline-block;
    padding: 14px 32px; border-radius: 50px;
    background: rgba(255,255,255,.15); color: #fff;
    font-family: var(--font-heading); font-weight: 700; font-size: 16px;
    text-decoration: none; border: 2px solid rgba(255,255,255,.7); cursor: pointer;
    transition: all .3s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.25); border-color: #fff; transform: translateY(-3px); color:#fff; text-decoration: none; }

/* Owl carousel hero item: overlay gradient on bg images */
.hero-section { margin: 0; }
.hero-slider .hero-item {
    min-height: 480px;
    display: flex; align-items: center;
    background-size: cover; background-position: center;
    position: relative; border-radius: 24px; overflow: hidden;
}
.hero-slider .hero-item::before {
    content:'';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,107,157,.75) 0%, rgba(255,140,66,.4) 60%, transparent 100%);
}
.hero-slider .hero-content {
    position: relative; z-index: 2;
    padding: 60px 50px;
    max-width: 580px;
}
.hero-slider .hero-content h1 {
    font-family: var(--font-heading) !important;
    font-size: clamp(30px, 4vw, 54px) !important;
    font-weight: 800 !important; color: #fff !important;
    line-height: 1.15; margin-bottom: 14px;
}
.hero-slider .hero-content h2 {
    color: rgba(255,255,255,.9) !important;
    font-family: var(--font-body) !important;
    font-size: 17px !important; font-weight: 400 !important;
    margin-bottom: 28px;
}
.hero-slider .owl-nav button {
    width: 48px !important; height: 48px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.9) !important;
    color: var(--color-primary) !important;
    font-size: 18px !important;
    transition: all .3s !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
}
.hero-slider .owl-nav button:hover { background: var(--color-primary) !important; color: #fff !important; }

@media (max-width: 767px) {
    .hero-slider .hero-item { min-height: 300px; }
    .hero-slider .hero-content { padding: 30px 20px; }
    .kids-hero-card .hero-text { padding: 36px 24px; }
    .kids-hero-card { min-height: 320px; }
}


/* ════════════════════════════════════════════════════════════
   FEATURE / TRUST SECTION
════════════════════════════════════════════════════════════ */
.kids-features-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 60px 40px;
    margin: 60px 0;
    box-shadow: 0 10px 50px rgba(255,107,157,.07);
}
.kids-feature-card {
    background: var(--color-bg);
    border-radius: 20px;
    padding: 36px 20px;
    text-align: center;
    transition: all .35s;
    border: 2px solid transparent;
}
.kids-feature-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 20px 50px rgba(255,107,157,.12);
    border-color: #FFE4EF;
}
.kids-feature-card .feat-emoji { font-size: 48px; display: block; margin-bottom: 18px; line-height: 1; }
.kids-feature-card img.feat-img { max-width: 60px; margin: 0 auto 18px; display: block; }
.kids-feature-card h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin: 0; }
.kids-feature-card p { color: var(--color-muted); font-size: 13px; margin: 8px 0 0; }

/* Legacy feature-section */
.feature-section {
    background: #fff !important;
    border-radius: 24px;
    margin: 60px 0;
    box-shadow: 0 10px 50px rgba(255,107,157,.07);
}
.feature-item {
    background: var(--color-bg) !important;
    border-radius: 20px;
    transition: all .35s;
    border: 2px solid transparent;
}
.feature-item:hover {
    transform: translateY(-8px) !important;
    background: #fff !important;
    box-shadow: 0 20px 50px rgba(255,107,157,.12) !important;
    border-color: #FFE4EF;
}
.feature-item h3 { font-family: var(--font-heading) !important; font-weight: 700 !important; }


/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.kids-footer {
    background: #FFF0F8;
    border-top: 3px solid #FFE4EF;
    padding-top: 64px;
    margin-top: 80px;
    font-family: var(--font-body);
}

/* Hide old footer styling */
.footer-top-section, .footer-bottom-section { display: none !important; }

.kids-footer .kf-brand .wordmark {
    font-family: var(--font-heading);
    font-size: 28px; font-weight: 800; color: var(--color-primary);
}
.kids-footer .kf-brand .wordmark em { color: var(--color-secondary); font-style: normal; }
.kids-footer .kf-brand p { color: var(--color-muted); font-size: 14px; margin-top: 12px; max-width: 200px; line-height: 1.65; }

.kids-footer .kf-col-title {
    font-family: var(--font-heading);
    font-size: 15px; font-weight: 800; color: var(--color-text);
    margin-bottom: 24px; position: relative; padding-bottom: 14px;
}
.kids-footer .kf-col-title::after {
    content: ''; position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-orange));
    border-radius: 50px;
}

.kids-footer ul { list-style: none; padding: 0; margin: 0; }
.kids-footer ul li { margin-bottom: 10px; }
.kids-footer ul li a {
    color: var(--color-muted); font-size: 13px; text-decoration: none;
    transition: color .2s; display: flex; align-items: center; gap: 6px;
}
.kids-footer ul li a:hover { color: var(--color-primary); }

.kids-footer .kf-contact-item {
    display: flex; gap: 10px; align-items: flex-start;
    margin-bottom: 12px; font-size: 13px; color: var(--color-muted);
}
.kids-footer .kf-contact-item a { color: var(--color-muted); text-decoration: none; }
.kids-footer .kf-contact-item a:hover { color: var(--color-primary); }
.kids-footer .kf-contact-icon {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--color-primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}

/* Newsletter form in footer */
.kids-newsletter {
    display: flex;
    border-radius: 50px; overflow: hidden;
    border: 2px solid #FFE4EF;
    background: #fff;
    margin-bottom: 20px;
}
.kids-newsletter input {
    flex: 1; padding: 12px 18px;
    border: none; outline: none;
    font-family: var(--font-body); font-size: 13px;
    background: transparent;
}
.kids-newsletter button {
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
    border: none; color: #fff;
    font-family: var(--font-heading); font-weight: 700; font-size: 13px;
    cursor: pointer; transition: opacity .3s; white-space: nowrap;
}
.kids-newsletter button:hover { opacity: .9; }

/* Social links */
.kids-social { display: flex; gap: 10px; flex-wrap: wrap; }
.kids-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: #fff; border: 2px solid #FFE4EF;
    color: var(--color-primary); font-size: 15px;
    text-decoration: none;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s;
}
.kids-social a:hover {
    background: var(--color-primary); border-color: var(--color-primary);
    color: #fff; transform: translateY(-2px); text-decoration: none;
}

/* Trust badges */
.kids-trust { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 18px; }
.kids-trust-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600; color: var(--color-muted);
}
.kids-trust-item .ti { font-size: 16px; }

/* Footer bottom bar */
.kids-footer-bottom {
    background: var(--color-text);
    color: rgba(255,255,255,.65);
    text-align: center; padding: 18px;
    font-size: 12px; margin-top: 50px;
}
.kids-footer-bottom a { color: var(--color-accent); text-decoration: none; }


/* ════════════════════════════════════════════════════════════
   AUTH PAGES
════════════════════════════════════════════════════════════ */
.kids-auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #FFE4EF 0%, #E0FAF8 50%, #FFF7CC 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 40px 16px;
    font-family: var(--font-body);
}
.kids-auth-box {
    background: #fff;
    border-radius: 28px;
    padding: 48px 40px;
    width: 100%; max-width: 440px;
    box-shadow: 0 30px 80px rgba(255,107,157,.15);
}
.kids-auth-box .auth-emoji { font-size: 52px; display: block; text-align: center; margin-bottom: 10px; }
.kids-auth-box .auth-title {
    font-family: var(--font-heading);
    font-size: 28px; font-weight: 800; color: var(--color-text);
    text-align: center; margin-bottom: 4px;
}
.kids-auth-box .auth-sub { color: var(--color-muted); font-size: 14px; text-align: center; margin-bottom: 32px; }

.kids-auth-box .kf-label {
    display: block; font-weight: 700; font-size: 13px;
    color: var(--color-text); margin-bottom: 6px;
    font-family: var(--font-heading);
}
.kids-auth-box .kf-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-input);
    border: 2px solid #F0E0E8; outline: none;
    font-family: var(--font-body); font-size: 14px;
    color: var(--color-text); background: var(--color-bg);
    transition: all .25s;
    display: block;
}
.kids-auth-box .kf-input:focus {
    border-color: var(--color-primary); background: #fff;
    box-shadow: 0 0 0 4px rgba(255,107,157,.10);
}
.kids-auth-box .kf-input.is-invalid { border-color: var(--color-error); background: #FFF5F5; }
.kids-auth-box .invalid-feedback { display: block; color: var(--color-error); font-size: 12px; margin-top: 5px; }

.kids-auth-box .btn-auth {
    width: 100%; padding: 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
    color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 16px;
    border: none; cursor: pointer; transition: all .3s;
    box-shadow: var(--shadow-btn);
}
.kids-auth-box .btn-auth:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,107,157,.45); }

.kids-auth-box .auth-links { text-align: center; margin-top: 22px; }
.kids-auth-box .auth-links a { color: var(--color-primary); font-weight: 600; font-size: 13px; text-decoration: none; }
.kids-auth-box .auth-links a:hover { text-decoration: underline; }
.kids-auth-box .auth-links p { color: var(--color-muted); font-size: 13px; margin-bottom: 6px; }

.kids-auth-box .parent-notice {
    background: #E0FAF8; border: 1px solid var(--color-secondary);
    border-radius: 12px; padding: 12px 14px;
    font-size: 12px; color: #1a6b67;
    display: flex; gap: 8px; align-items: flex-start;
    margin-bottom: 20px;
}
.kids-auth-box .alert-danger {
    border-radius: 12px; border: none;
    background: #FFE4E4; color: var(--color-error);
    font-size: 13px; margin-bottom: 18px;
}
.kids-auth-box .kids-remember {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--color-muted);
}
.kids-auth-box .kids-remember input { accent-color: var(--color-primary); width:16px; height:16px; }

@media (max-width: 480px) { .kids-auth-box { padding: 36px 24px; } }


/* ════════════════════════════════════════════════════════════
   VUE CHECKOUT
════════════════════════════════════════════════════════════ */

/* Step indicator */
.kids-steps {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 0; margin-bottom: 40px; padding: 0 10px;
}
.kids-step {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; position: relative; flex: 1; max-width: 130px;
}
.kids-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 21px; left: 60%; width: 80%; height: 2px;
    background: #FFE4EF; z-index: 0;
}
.kids-step.is-completed:not(:last-child)::after { background: var(--color-primary); }

.kids-step-circle {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 17px; font-weight: 700;
    border: 3px solid #FFE4EF;
    background: #fff; color: var(--color-muted);
    transition: all .3s; z-index: 1; position: relative;
}
.kids-step.is-active .kids-step-circle {
    background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
    border-color: var(--color-primary); color: #fff;
    box-shadow: 0 4px 18px rgba(255,107,157,.35);
}
.kids-step.is-completed .kids-step-circle {
    background: var(--color-success); border-color: var(--color-success); color: #fff;
}

.kids-step-label {
    font-size: 11px; font-weight: 600;
    font-family: var(--font-heading);
    color: var(--color-muted); text-align: center; white-space: nowrap;
}
.kids-step.is-active .kids-step-label { color: var(--color-primary); font-weight: 800; }
.kids-step.is-completed .kids-step-label { color: var(--color-success); }

/* Checkout fields */
.ck-label {
    display: block; font-family: var(--font-heading); font-weight: 700;
    font-size: 13px; color: var(--color-text); margin-bottom: 6px;
}
.ck-field {
    width: 100%; padding: 12px 16px;
    border-radius: var(--radius-input);
    border: 2px solid #F0E0E8; outline: none;
    font-family: var(--font-body); font-size: 14px;
    color: var(--color-text); background: #fff;
    transition: all .25s;
}
.ck-field:focus { border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(255,107,157,.10); }
.ck-field.is-invalid { border-color: var(--color-error); }
.ck-invalid-msg { color: var(--color-error); font-size: 12px; margin-top: 5px; display: block; }

/* Delivery type cards */
.delivery-card {
    border: 2px solid #F0E0E8; border-radius: 16px;
    padding: 16px 18px; cursor: pointer;
    transition: all .25s; display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 12px;
}
.delivery-card:hover { border-color: var(--color-primary); background: #FFF5F8; }
.delivery-card.selected {
    border-color: var(--color-primary); background: #FFF0F5;
    box-shadow: 0 4px 18px rgba(255,107,157,.15);
}
.delivery-card .dc-emoji { font-size: 28px; flex-shrink: 0; line-height: 1; }
.delivery-card .dc-title { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--color-text); }
.delivery-card .dc-desc { font-size: 12px; color: var(--color-muted); margin: 3px 0 0; }

/* Order summary panel */
.ck-summary {
    background: #fff; border-radius: 20px;
    padding: 28px; box-shadow: var(--shadow-card);
    position: sticky; top: 100px;
    border: 2px solid #FFE4EF;
}
.ck-summary-title {
    font-family: var(--font-heading); font-size: 18px; font-weight: 800;
    color: var(--color-text); margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 2px solid #FFE4EF; display: flex;
    align-items: center; justify-content: space-between;
}
.ck-summary-title .qty-badge {
    background: var(--color-primary); color:#fff;
    border-radius: 50px; padding: 2px 12px; font-size: 13px;
}
.ck-summary-item {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 10px 0; border-bottom: 1px solid #FFE4EF;
}
.ck-summary-item-name { font-size: 13px; color: var(--color-text); font-weight: 500; flex:1; padding-right:10px; }
.ck-summary-item-name small { display:block; color:var(--color-muted); font-size:11px; }
.ck-summary-item-price { font-size: 13px; font-weight: 600; color: var(--color-text); white-space: nowrap; }
.ck-summary-shipping {
    display: flex; justify-content: space-between;
    padding: 12px 0; font-size: 13px; color: var(--color-muted);
    border-bottom: 1px solid #FFE4EF;
}
.ck-summary-total {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 16px; margin-top: 4px;
}
.ck-summary-total .total-label { font-family: var(--font-heading); font-size: 16px; font-weight: 700; }
.ck-summary-total .total-price { font-family: var(--font-heading); font-size: 26px; font-weight: 800; color: var(--color-primary); }

/* Cart review items */
.ck-cart-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px 0; border-bottom: 1px solid #FFE4EF;
}
.ck-cart-item img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink:0; background: var(--color-bg); }
.ck-cart-item .ci-name { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--color-text); }
.ck-cart-item .ci-attr { font-size: 11px; color: var(--color-muted); margin-top: 3px; display:block; }
.ck-cart-item .ci-price { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--color-primary); margin-top: 4px; }

/* Step slide transition */
.step-slide-enter-active, .step-slide-leave-active { transition: all .35s ease; }
.step-slide-enter { opacity: 0; transform: translateX(30px); }
.step-slide-leave-to { opacity: 0; transform: translateX(-30px); }

/* Submit btn in checkout */
.btn-ck-submit {
    width: 100%; padding: 15px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-orange));
    color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 17px;
    border: none; cursor: pointer; transition: all .3s;
    box-shadow: var(--shadow-btn); margin-top: 12px;
}
.btn-ck-submit:hover:not(:disabled) { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(255,107,157,.45); }
.btn-ck-submit:disabled { opacity: .55; cursor: not-allowed; }

.btn-ck-next {
    padding: 13px 32px; border-radius: 50px;
    background: linear-gradient(135deg, var(--color-secondary), #38b2ac);
    color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 15px;
    border: none; cursor: pointer; transition: all .3s;
    box-shadow: 0 8px 24px rgba(78,205,196,.35);
}
.btn-ck-next:hover { transform: translateY(-2px); }

.btn-ck-back {
    padding: 13px 24px; border-radius: 50px;
    background: #fff; color: var(--color-muted);
    font-family: var(--font-heading); font-weight: 600; font-size: 14px;
    border: 2px solid #F0E0E8; cursor: pointer; transition: all .3s;
}
.btn-ck-back:hover { border-color: var(--color-primary); color: var(--color-primary); }

@media (max-width: 767px) {
    .ck-summary { position: static; margin-top: 24px; }
    .kids-steps { gap: 4px; }
    .kids-step-label { font-size: 9px; }
    .kids-step-circle { width: 36px; height: 36px; font-size: 14px; }
    .kids-step:not(:last-child)::after { top: 17px; }
}


/* ════════════════════════════════════════════════════════════
   MISC HELPERS
════════════════════════════════════════════════════════════ */
.section-gap { padding: 80px 0; }
.section-gap-sm { padding: 50px 0; }

.kids-pill-home {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 20px; border-radius: 50px;
    background: var(--color-bg); border: 2px solid #FFE4EF;
    color: var(--color-text); font-size: 14px; font-weight: 600;
    text-decoration: none; transition: all .25s;
    font-family: var(--font-body);
}
.kids-pill-home:hover { background: var(--color-primary); border-color: var(--color-primary); color:#fff; text-decoration:none; }

/* Sidebar (shop page) */
.sidebar { background: #fff; border-radius: 20px; padding: 24px; margin-bottom: 24px; box-shadow: var(--shadow-card); }
.sidebar .sidebar-title {
    font-family: var(--font-heading); font-size: 16px; font-weight: 800;
    color: var(--color-text); padding-bottom: 14px; margin-bottom: 18px;
    border-bottom: 2px solid #FFE4EF; position: relative;
}
.sidebar .sidebar-list { list-style: none; padding:0; }
.sidebar .sidebar-list li { padding: 6px 0; border-bottom: 1px solid #FFE4EF; }
.sidebar .sidebar-list li a { color: var(--color-text); text-decoration:none; font-size:14px; display:flex; justify-content:space-between; }
.sidebar .sidebar-list li a:hover { color: var(--color-primary); }
.sidebar .sidebar-list li a span.num { background: #FFE4EF; color: var(--color-primary); border-radius:50px; padding:1px 8px; font-size:12px; font-weight:700; }
.sidebar .sidebar-list li a span.num.active { background: var(--color-primary); color:#fff; }

/* Page banner */
.page-banner-section { background: linear-gradient(135deg, #FFE4EF, #FFF7CC); padding: 60px 0 30px; margin-bottom: 0; }
.page-banner-content h1 { font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--color-text); }
.page-banner-content .page-breadcrumb { list-style:none; padding:0; display:flex; gap:8px; margin-top:10px; }
.page-banner-content .page-breadcrumb li { font-size:14px; color:var(--color-muted); }
.page-banner-content .page-breadcrumb li a { color: var(--color-primary); text-decoration:none; }

/* On-sale product (latestProducts) */
.on-sale-product { background: #fff; border-radius: 16px; overflow:hidden; box-shadow: var(--shadow-card); transition: all .3s; }
.on-sale-product:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.on-sale-product .content { padding: 12px; text-align:center; }
.on-sale-product .content h4 a { font-family: var(--font-heading); font-size:14px; font-weight:700; color:var(--color-text); text-decoration:none; }
.on-sale-product .content h4 a:hover { color: var(--color-primary); }
.on-sale-product .content .price { color: var(--color-primary) !important; font-weight:700; font-size:15px; }
.on-sale-product .content .old { color: var(--color-muted); text-decoration:line-through; font-size:12px; }

/* Best deal (inspiredProducts) */
.best-deal-product { background:#fff; border-radius:16px; overflow:hidden; box-shadow:var(--shadow-card); }
.best-deal-product .content-top { padding:14px; display:flex; justify-content:space-between; align-items:flex-start; }
.best-deal-product .content-top-left h4.title a { font-family:var(--font-heading); font-size:15px; font-weight:700; color:var(--color-text); text-decoration:none; }
.best-deal-product .content-top-right .price { color: var(--color-primary); font-weight:800; font-size:18px; }
.best-deal-product .content-bottom { padding: 0 14px 16px; }

/* ════════════════════════════════════════════════════════════
   CATEGORY CARDS
════════════════════════════════════════════════════════════ */
.kids-cat-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: pointer;
}
.kids-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Image wrapper */
.kcc-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--color-bg);
}
.kcc-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
    display: block;
}
.kids-cat-card:hover .kcc-image-wrap img {
    transform: scale(1.08);
}


/* Card info strip */
.kcc-info {
    padding: 14px 16px 16px;
    text-align: center;
    background: #fff;
}
.kcc-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    color: var(--color-text);
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .2s;
}
.kcc-name:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Responsive tweaks */
@media (max-width: 479px) {
    .kcc-name { font-size: 13px; }
    .kcc-info { padding: 10px 12px 12px; }
}

/* ── Category slider row ───────────────────────────────── */
.kcc-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.kcc-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 4px 16px;
    flex: 1;
}
.kcc-slider-track::-webkit-scrollbar { display: none; }

.kcc-slide {
    flex: 0 0 220px;
    scroll-snap-align: start;
}
@media (max-width: 767px) {
    .kcc-slide { flex: 0 0 160px; }
}
@media (max-width: 479px) {
    .kcc-slide { flex: 0 0 140px; }
}

/* Arrow buttons */
.kcc-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 18px rgba(255,107,157,.20);
    color: var(--color-primary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s, opacity .2s;
    z-index: 2;
}
.kcc-arrow:hover {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
}
@media (max-width: 479px) {
    .kcc-arrow { width: 34px; height: 34px; font-size: 13px; }
}
.best-deal-product .content-bottom a { color: var(--color-secondary); font-weight:600; text-decoration:none; }
