/* =============================================
   LaCraft â€” Header & Footer â€” Kids Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&display=swap');

/* â”€â”€ Global kids colour tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
    /* â”€â”€ Palette from reference image â”€â”€ */
    --lc-pink:    #F8677A;   /* coral pink   */
    --lc-orange:  #F8834D;   /* warm orange  */
    --lc-yellow:  #F5B82E;   /* golden yellow */
    --lc-green:   #8EC63F;   /* lime green   */
    --lc-blue:    #4EB8DF;   /* sky blue     */
    --lc-purple:  #7B65C0;   /* medium purple */
    /* â”€â”€ Supporting tokens â”€â”€ */
    --lc-mint:    #8EC63F;   /* alias green  */
    --lc-dark:    #2B1F3A;
    --lc-text:    #3D2E52;
    --lc-light:   #FFF9FF;
    --lc-font:    'Figtree', sans-serif;
}

/* â”€â”€ Bounce & wiggle animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes lc-bounce-in {
    0%   { transform: translateY(30px); opacity: 0; }
    60%  { transform: translateY(-6px); opacity: 1; }
    100% { transform: translateY(0);    opacity: 1; }
}
@keyframes lc-wiggle {
    0%, 100% { transform: rotate(0deg); }
    25%       { transform: rotate(-8deg); }
    75%       { transform: rotate(8deg); }
}
@keyframes lc-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* â”€â”€ Shared container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lc-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .lc-container:not(.lc-header__main-inner) {
        padding: 0 1.25rem;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lc-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: background 0.35s ease, box-shadow 0.35s ease;
    background: #FFFFFF;
}

/* Scrolled state â€” glass effect */
.lc-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 2px 24px rgba(26, 20, 16, 0.10);
}

/* â”€â”€ Announcement / Marquee Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lc-announce-bar {
    background: #222222;
    color: #fff;
    font-family: var(--lc-font);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.lc-announce-bar__arrow {
    flex-shrink: 0;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
    padding: 0;
    border-radius: 0;
}
.lc-announce-bar__arrow:hover { background: rgba(255,255,255,0.35); }

.lc-announce-bar__track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.lc-announce-bar__marquee {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: lc-marquee 30s linear infinite;
    gap: 0;
}
.lc-announce-bar__marquee:hover { animation-play-state: paused; }

.lc-announce-bar__item {
    display: inline-block;
    padding: 0 3rem;
    color: #fff;
    white-space: nowrap;
    position: relative;
}
.lc-announce-bar__item::after {
    content: '✦';
    position: absolute;
    right: 0.75rem;
    opacity: 0.9;
}
.lc-announce-bar__item:last-child::after { display: none; }
.lc-announce-bar__item strong { color: #F5B82E; font-weight: 900; }

@keyframes lc-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}



/* â”€â”€ Main bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lc-header__main {
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--lc-pink), var(--lc-blue), var(--lc-yellow), var(--lc-mint)) 1;
    background: #FFFFFF !important;
    padding: 0 !important;
    margin: 0 !important;
}

.lc-header__main-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 72px !important;
    max-height: 72px !important;
    gap: 2rem;
    box-sizing: border-box;
}

.lc-logo,
.custom-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.lc-logo img,
.lc-logo .custom-logo,
.custom-logo-link img,
.custom-logo-link .custom-logo {
    max-height: 45px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

.lc-logo__text {
    font-family: var(--lc-font);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--lc-dark);
    letter-spacing: -0.5px;
}

.lc-logo__text em {
    font-style: italic;
    color: var(--lc-pink);
}

.lc-logo__text--light { color: #FFFFFF; }
.lc-logo__text--light em { color: #C8955A; }

/* â”€â”€ Desktop nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lc-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lc-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.lc-nav__list li { position: relative; }

.lc-nav__list a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
    font-family: var(--lc-font);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--lc-text);
    text-decoration: none;
    background: none;
    border-radius: 0;
    transition: color 0.2s ease;
    white-space: nowrap;
    position: relative;
}

/* Underline â€” hidden by default */
.lc-nav__list a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--lc-pink);
    border-radius: 3px;
    transition: width 0.25s ease;
}

/* Cycle colours per nav item */
.lc-nav__list li:nth-child(1) a::after { background: var(--lc-pink); }
.lc-nav__list li:nth-child(2) a::after { background: var(--lc-blue); }
.lc-nav__list li:nth-child(3) a::after { background: var(--lc-yellow); }
.lc-nav__list li:nth-child(4) a::after { background: var(--lc-green); }
.lc-nav__list li:nth-child(5) a::after { background: var(--lc-purple); }
.lc-nav__list li:nth-child(6) a::after { background: var(--lc-orange); }

.lc-nav__list li:nth-child(1) a:hover { color: var(--lc-pink); }
.lc-nav__list li:nth-child(2) a:hover { color: var(--lc-blue); }
.lc-nav__list li:nth-child(3) a:hover { color: var(--lc-yellow); }
.lc-nav__list li:nth-child(4) a:hover { color: var(--lc-green); }
.lc-nav__list li:nth-child(5) a:hover { color: var(--lc-purple); }
.lc-nav__list li:nth-child(6) a:hover { color: var(--lc-orange); }

.lc-nav__list a:hover::after { width: 65%; }

/* Active */
.lc-nav__list .current-menu-item > a,
.lc-nav__list .current-page-ancestor > a {
    background: none;
    font-weight: 800;
}
.lc-nav__list .current-menu-item > a::after,
.lc-nav__list .current-page-ancestor > a::after { width: 70%; }


/* Sub-menus */
.lc-nav__list ul {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 210px;
    background: #FFFFFF;
    border: 1px solid #F0EAE0;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(26,20,16,0.12);
    padding: 0.5rem;
    list-style: none;
    z-index: 100;
    animation: lc-dropdown 0.2s ease;
}

.lc-nav__list li:hover > ul { display: block; }

.lc-nav__list ul a {
    border-radius: 8px;
    font-size: 0.85rem;
    padding: 0.5rem 0.85rem;
}

@keyframes lc-dropdown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* â”€â”€ Header actions â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lc-header__actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.lc-header__action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    color: #1A1410;
    transition: all 0.2s ease;
    text-decoration: none;
}

.lc-header__action-btn:hover {
    background: rgba(200,149,90,0.1);
    color: #C8955A;
}

/* Cart count bubble */
.lc-cart-count {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    background: #C8955A;
    color: #FFFFFF;
    font-family: 'Figtree', sans-serif;
    font-size: 9px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}

.lc-cart-count:empty { display: none; }

/* Hamburger */
.lc-hamburger { display: none; flex-direction: column; gap: 5px; }

.lc-hamburger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #1A1410;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.lc-hamburger.is-open .lc-hamburger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lc-hamburger.is-open .lc-hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lc-hamburger.is-open .lc-hamburger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* â”€â”€ Search bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lc-search-bar {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    border-top: 1px solid transparent;
}

.lc-search-bar.is-open {
    max-height: 80px;
    opacity: 1;
    border-top-color: #F0EAE0;
}

.lc-search-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    color: #8A7A6A;
}

.lc-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    color: #1A1410;
}

.lc-search-input::placeholder { color: #B0A090; }

.lc-search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #8A7A6A;
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 6px;
    transition: color 0.2s;
}

.lc-search-close:hover { color: #C8955A; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE DRAWER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lc-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 16, 0.55);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.lc-drawer-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lc-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100dvh;
    background: #FFFFFF;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: none;
}

.lc-mobile-drawer.is-open {
    transform: translateX(0);
    box-shadow: -24px 0 64px rgba(26,20,16,0.18);
}

.lc-mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #F0EAE0;
}

.lc-mobile-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    color: #1A1410;
    display: flex;
    align-items: center;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
}

.lc-mobile-drawer__close:hover { background: #FAF7F3; }

.lc-mobile-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.lc-mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lc-mobile-nav__list li { border-bottom: 1px solid #FAF7F3; }

.lc-mobile-nav__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.5rem;
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1A1410;
    text-decoration: none;
    transition: all 0.2s;
}

.lc-mobile-nav__list a:hover {
    color: #C8955A;
    padding-left: 2rem;
    background: rgba(200,149,90,0.04);
}

.lc-mobile-nav__list .current-menu-item > a { color: #C8955A; }

.lc-mobile-drawer__footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #F0EAE0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.lc-footer {
    background: #0F0C09;
    color: rgba(255,255,255,0.7);
    font-family: 'Figtree', sans-serif;
}

/* â”€â”€ Newsletter band â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lc-footer__newsletter {
    background: #F8677A; /* Brand pink */
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.lc-footer__newsletter::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 45%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200,149,90,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.lc-footer__nl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lc-section-header__tag--light {
    color: #FFFFFF; /* Changed to white for visibility */
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lc-section-header__tag--light::before,
.lc-section-header__tag--light::after {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: #FFFFFF; /* Changed to white */
}

.lc-footer__nl-heading {
    font-family: 'Figtree', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.lc-footer__nl-sub {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.9); /* Higher contrast on pink */
    line-height: 1.6;
    margin: 0;
}

/* Newsletter form */
.lc-nl-form__group {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    border: 1.5px solid #FFFFFF; /* Solid white border */
    background: transparent; /* Transparent to match the image */
    transition: border-color 0.25s;
}

.lc-nl-form__group:focus-within {
    border-color: #C8955A;
    background: rgba(255,255,255,0.08);
}

.lc-nl-form__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.95rem 1.5rem;
    font-family: 'Figtree', sans-serif;
    font-size: 0.9rem;
    color: #FFFFFF;
    min-width: 0;
}

.lc-nl-form__input::placeholder { color: rgba(255,255,255,0.7); }

.lc-nl-form__btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 0.95rem 1.75rem !important;
    background: #FFFFFF !important; /* Solid white background */
    color: #F8677A !important; /* Pink text */
    border: none !important;
    cursor: pointer !important;
    font-family: 'Figtree', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    transition: all 0.25s !important;
}

.lc-nl-form__btn:hover { 
    background: #FFF0F2 !important; /* Soft pink on hover */
    color: #F8677A !important;
}

.lc-nl-form__note {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    margin: 0.75rem 0 0;
}

/* â”€â”€ Main grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lc-footer__main {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.lc-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 3rem;
}

/* â”€â”€ Brand column â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lc-footer__logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 1.1rem;
}

.lc-footer__tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin: 0 0 1.5rem;
    max-width: 280px;
}

/* Social buttons */
.lc-footer__social {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.lc-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: all 0.25s ease;
}

.lc-social-btn:hover {
    background: #C8955A;
    border-color: #C8955A;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Trust badges */
.lc-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.3rem 0.75rem;
    border: 1px solid rgba(200,149,90,0.3);
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
}

/* â”€â”€ Link columns â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lc-footer__col-title {
    font-family: 'Figtree', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 1.35rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(200,149,90,0.2);
}

.lc-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lc-footer__links li { margin-bottom: 0.55rem; }

.lc-footer__links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.lc-footer__links a::before {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #C8955A;
    transition: width 0.25s;
}

.lc-footer__links a:hover {
    color: #C8955A;
    padding-left: 4px;
}

.lc-footer__links a:hover::before { width: 10px; }

/* â”€â”€ Contact column â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lc-footer__contact-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.lc-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.5;
}

.lc-footer__contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #C8955A;
}

.lc-footer__contact-list a {
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    transition: color 0.2s;
}

.lc-footer__contact-list a:hover { color: #C8955A; }

/* Payment badges */
.lc-footer__payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.lc-pay-badge {
    padding: 0.28rem 0.65rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.04);
}

/* â”€â”€ Bottom bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lc-footer__bottom {
    padding: 1.25rem 0;
}

.lc-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.lc-footer__copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.lc-footer__bottom-links {
    display: flex;
    gap: 1.25rem;
}

.lc-footer__bottom-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.lc-footer__bottom-links a:hover { color: #C8955A; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER/FOOTER RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
    .lc-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .lc-footer__col--brand {
        grid-column: span 2;
    }
    .lc-footer__nl-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Top bar — hide offer on mobile */
    .lc-topbar-offer { display: none; }
    .lc-header__topbar-left { display: none; }
    .lc-header__topbar-inner { justify-content: center; }

    /* Nav hides — hamburger shows */
    .lc-nav { display: none; }
    .lc-hamburger { display: flex; }

    .lc-header__main-inner {
        height: 62px !important;
        padding: 0 1rem !important;
        gap: 1rem !important;
    }
    
    .lc-header__actions {
        gap: 0.2rem !important;
    }
    
    .lc-header__action-btn {
        width: 38px !important;
        height: 38px !important;
    }

    /* Footer */
    .lc-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .lc-footer__col--brand { grid-column: span 1; }
    .lc-footer__main { padding: 3rem 0 2rem; }
    .lc-footer__newsletter { padding: 2.5rem 0; }

    .lc-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lc-nl-form__group {
        flex-direction: row !important;
        border-radius: 50px !important;
    }
    .lc-nl-form__input {
        width: 70% !important;
        flex: 0 0 70% !important;
        padding: 0.85rem 1rem 0.85rem 1.25rem !important;
    }
    .lc-nl-form__btn {
        width: 30% !important;
        flex: 0 0 30% !important;
        border-radius: 0 50px 50px 0 !important;
        justify-content: center !important;
        padding: 0.85rem 0.25rem !important;
        font-size: 0.8rem !important;
    }
    .lc-nl-form__btn svg {
        display: none !important;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KIDS THEME GLOBAL OVERRIDES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Fix horizontal scrollbar globally */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}
#lc-wrapper {
    overflow: hidden !important;
    width: 100% !important;
    position: relative !important;
}

/* Universal Nunito font */
body, button, input, select, textarea,
h1, h2, h3, h4, h5, h6, p, a, span, li, label {
    font-family: var(--lc-font, 'Figtree', sans-serif) !important;
}

/* Scroll-reveal revealed state */
.lc-revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Cart icon â€” bounce on hover */
.lc-cart-btn:hover svg {
    animation: lc-wiggle 0.4s ease;
}

/* Header action icons â€” colourful hover */
.lc-header__action-btn:hover {
    color: var(--lc-pink);
    transform: scale(1.15);
    transition: color 0.2s, transform 0.2s;
}

/* Cart count badge â€” pink */
.lc-cart-count {
    background: var(--lc-pink) !important;
    color: #fff !important;
    font-family: var(--lc-font) !important;
    font-weight: 900 !important;
}

/* Mobile drawer header â€” kids gradient */
.lc-mobile-drawer__header {
    background: linear-gradient(135deg, var(--lc-pink) 0%, var(--lc-purple) 100%) !important;
}
.lc-mobile-drawer__header .lc-logo__text,
.lc-mobile-drawer__header .lc-logo__text em,
.lc-mobile-drawer__close {
    color: #fff !important;
}

/* Mobile nav items */
.lc-mobile-nav__list a {
    font-family: var(--lc-font) !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    color: var(--lc-text) !important;
}
.lc-mobile-nav__list a:hover { color: var(--lc-pink) !important; }

/* Mobile drawer CTA button */
.lc-mobile-drawer__footer .lc-btn-primary {
    background: linear-gradient(90deg, var(--lc-pink), var(--lc-purple)) !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
}

/* Hero slide buttons â€” bright kids style */
.lc-slide__btn {
    font-family: var(--lc-font) !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
}
.lc-slide__btn:not(.lc-slide__btn--ghost) {
    background: var(--lc-yellow) !important;
    color: #fff !important;
    border-color: var(--lc-yellow) !important;
}
.lc-slide__btn:not(.lc-slide__btn--ghost):hover {
    background: var(--lc-pink) !important;
    border-color: var(--lc-pink) !important;
    color: #fff !important;
}
.lc-slide__btn--ghost {
    border-color: #fff !important;
    color: #fff !important;
}
.lc-slide__btn--ghost:hover {
    background: rgba(255,255,255,0.22) !important;
}

/* Footer newsletter CTA */
.lc-nl-form__btn {
    background: var(--lc-yellow) !important;
    color: #FFFFFF !important;
    font-family: var(--lc-font) !important;
    font-weight: 800 !important;
    border-radius: 0 14px 14px 0 !important;
    transition: all 0.3s ease !important;
}

.lc-nl-form__btn:hover {
    background: var(--lc-orange) !important;
    color: #FFFFFF !important;
}

/* Hero slide title â€” make it pop */
.lc-slide__title {
    font-family: var(--lc-font) !important;
    font-weight: 900 !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
}
.lc-slide__sub {
    font-family: var(--lc-font) !important;
    font-weight: 600 !important;
}

/* "Why" stats value */
.lc-why-card__value { font-family: var(--lc-font) !important; font-weight: 900 !important; }

/* Generic primary button */
.lc-btn-primary {
    background: linear-gradient(90deg, var(--lc-pink), var(--lc-purple)) !important;
    border-radius: 50px !important;
    font-family: var(--lc-font) !important;
    font-weight: 800 !important;
}
.lc-btn-primary:hover {
    background: linear-gradient(90deg, var(--lc-purple), var(--lc-pink)) !important;
}
