/* ============================================
   Alex & Alice
   ============================================ */

:root {
    /* Brand palette */
    --tf-pink: #FFB6C1;
    --tf-pink-d: #FF8FA3;
    --tf-mint: #A0E7E5;
    --tf-mint-d: #6BD0CE;
    --tf-butter: #FFD580;
    --tf-butter-d: #FFB347;
    --tf-lavender: #C7B8EA;
    --tf-sky: #B8E0FF;
    --tf-cream: #FFF8F0;

    --tf-text: #3D2C5C;
    --tf-text-soft: #6B5B8A;
    --tf-muted: #9C8FB3;

    --tf-success: #4CD7B0;
    --tf-warning: #FFC857;
    --tf-danger: #FF6B7A;

    /* Effects */
    --tf-radius: 20px;
    --tf-radius-sm: 12px;
    --tf-radius-lg: 32px;
    --tf-shadow-sm: 0 4px 14px rgba(124, 92, 188, 0.10);
    --tf-shadow: 0 10px 30px rgba(124, 92, 188, 0.12);
    --tf-shadow-lg: 0 20px 50px rgba(124, 92, 188, 0.18);

    /* Type */
    --tf-font: 'Nunito', 'Poppins', system-ui, -apple-system, Segoe UI, sans-serif;
    --tf-font-h: 'Fredoka', 'Baloo 2', 'Nunito', sans-serif;
}

/* Reset / base */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: var(--tf-font);
    color: var(--tf-text);
    background: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-family: var(--tf-font-h);
    font-weight: 700;
    color: #000;
    letter-spacing: -0.01em;
}

h1,
.display-3 {
    font-size: clamp(2rem, 4.5vw, 2.4rem);
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

a {
    color: var(--tf-pink-d);
    text-decoration: none;
}

a:hover {
    color: var(--tf-text);
}

/* Buttons */
.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 12px 26px;
    transition: transform .15s ease, box-shadow .2s ease, background .2s;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary,
.btn-pink {
    background: linear-gradient(135deg, #6c3ff7 0%, #6c3ff7 100%);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(255, 143, 163, 0.45);
}

.btn-primary:hover,
.btn-pink:hover {
    background: linear-gradient(135deg, #6c3ff7 0%, #6c3ff7 100%);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(255, 143, 163, 0.55);
}

.btn-secondary,
.btn-mint {
    background: linear-gradient(135deg, #448d8b 0%, #34afac 100%);
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(107, 208, 206, 0.4);
}

.btn-butter {
    background: linear-gradient(135deg, var(--tf-butter) 0%, var(--tf-butter-d) 100%);
    color: var(--tf-text) !important;
    box-shadow: 0 6px 18px rgba(255, 179, 71, 0.4);
}

.btn-outline-pink {
    background: #6c3ff7;
    color: #fff !important;
    border: 2px solid #6c3ff7;
}

.btn-outline-pink:hover {
    background: #6c3ff7;
    color: #fff !important;
    border-color: #6c3ff7;
    box-shadow: 0 6px 18px rgba(108, 63, 247, 0.45);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: .9rem;
}

/* Cards */
.card,
.tf-card {
    border: none;
    border-radius: var(--tf-radius);
    box-shadow: var(--tf-shadow-sm);
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
    overflow: hidden;
}

.tf-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tf-shadow);
}

.product-card {
    border-radius: var(--tf-radius);
    background: #fff;
    box-shadow: var(--tf-shadow-sm);
    overflow: hidden;
    transition: all .25s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--tf-shadow-lg);
}

.product-card .product-img {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--tf-cream) 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.product-card .product-img img,
.product-card .product-img svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card .badge-discount {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fa438f;
    color: #fff;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: .75rem;
    font-weight: 700;
}

/* Large badge for product detail page */
.badge-discount-lg {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fa438f;
    color: #fff;
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(250, 67, 143, 0.4);
    z-index: 2;
}

.product-card .body {
    padding: 18px;
}

.product-card h5 {
    font-size: 1.05rem;
    margin: 0 0 6px;
    /*min-height: 2.5em;*/
}

.product-card .price {
    color: #fa438f;
    font-weight: 800;
    font-size: 1.15rem;
}

.product-card .mrp {
    color: #000;
    text-decoration: line-through;
    margin-left: 8px;
    font-size: .9rem;
    font-weight: 800;
}

/* Hero */
.tf-hero {
    position: relative;
    padding: clamp(60px, 10vw, 50px) 0;
    background: 
        radial-gradient(circle at 5% 15%, rgba(255, 182, 193, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 95% 85%, rgba(160, 231, 229, 0.4) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(199, 184, 234, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, #FFF5F7 0%, #F0F5FF 50%, #FFFDF0 100%);
    overflow: hidden;
    border-bottom: 3px solid rgba(255, 182, 193, 0.15);
}

.tf-hero::before,
.tf-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 213, 128, .2);
    pointer-events: none;
}

.tf-hero::before {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -60px;
}

.tf-hero::after {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -40px;
    background: rgba(199, 184, 234, .2);
}

.tf-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(250, 67, 143, 0.25);
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fa438f;
    box-shadow: 0 4px 15px rgba(250, 67, 143, 0.06);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.tf-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--tf-text);
}

.tf-hero h1 strong {
    background: linear-gradient(135deg, #fa438f 0%, #ff6b8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tf-hero .lead {
    color: var(--tf-text-soft);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 30px;
}

.tf-hero-image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.tf-hero-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.5) 0%, rgba(160, 231, 229, 0.4) 50%, rgba(199, 184, 234, 0.3) 100%);
    filter: blur(45px);
    border-radius: 50%;
    z-index: 1;
    animation: rotateBlob 20s linear infinite;
}

.tf-hero-img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(61, 44, 92, 0.12));
}

@keyframes rotateBlob {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.08); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

/* Class card */
.class-card {
    border-radius: var(--tf-radius-lg);
    padding: 32px 24px;
    color: var(--tf-text);
    box-shadow: 0 12px 30px rgba(61, 44, 92, 0.04);
    border: 2px solid #ffffff;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background: #ffffff;
}

/* Specific class card gradients & dynamic colors */
.class-pre-nursery {
    background: linear-gradient(135deg, #FFF0F3 0%, #FFE3E8 100%) !important;
    border-color: rgba(255, 112, 138, 0.2) !important;
}
.class-pre-nursery:hover {
    box-shadow: 0 20px 40px rgba(255, 112, 138, 0.22) !important;
    border-color: rgba(255, 112, 138, 0.6) !important;
}
.class-pre-nursery .class-pill {
    background: #FF6B8B !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(255, 107, 139, 0.25) !important;
}
.class-pre-nursery .class-icon {
    background: #ffffff !important;
    border: 2px solid rgba(255, 112, 138, 0.4);
}

.class-nursery {
    background: linear-gradient(135deg, #E6F9F8 0%, #C4F2F0 100%) !important;
    border-color: rgba(52, 175, 172, 0.2) !important;
}
.class-nursery:hover {
    box-shadow: 0 20px 40px rgba(52, 175, 172, 0.22) !important;
    border-color: rgba(52, 175, 172, 0.6) !important;
}
.class-nursery .class-pill {
    background: #34AFAC !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(52, 175, 172, 0.25) !important;
}
.class-nursery .class-icon {
    background: #ffffff !important;
    border: 2px solid rgba(52, 175, 172, 0.4);
}

.class-lkg {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE8B3 100%) !important;
    border-color: rgba(255, 159, 28, 0.2) !important;
}
.class-lkg:hover {
    box-shadow: 0 20px 40px rgba(255, 159, 28, 0.22) !important;
    border-color: rgba(255, 159, 28, 0.6) !important;
}
.class-lkg .class-pill {
    background: #FF9F1C !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(255, 159, 28, 0.25) !important;
}
.class-lkg .class-icon {
    background: #ffffff !important;
    border: 2px solid rgba(255, 159, 28, 0.4);
}

.class-ukg {
    background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%) !important;
    border-color: rgba(139, 92, 246, 0.2) !important;
}
.class-ukg:hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.22) !important;
    border-color: rgba(139, 92, 246, 0.6) !important;
}
.class-ukg .class-pill {
    background: #8B5CF6 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.25) !important;
}
.class-ukg .class-icon {
    background: #ffffff !important;
    border: 2px solid rgba(139, 92, 246, 0.4);
}

.class-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.class-card .class-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s, background 0.4s;
    padding: 8px;
}

.class-card:hover .class-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
}

.class-card .class-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    margin-top: 14px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}

.class-card:hover .class-pill {
    transform: scale(1.05);
}

.class-card h3 {
    margin: 18px 0 8px;
    font-weight: 800;
    color: #112641;
    font-size: 1.4rem;
}

.class-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a3e66 !important;
    font-weight: 600;
}

/* Sections */
.tf-section {
    padding: 60px 0;
    background: var(--tf-gradient-soft);
    background-image: linear-gradient(135deg, rgb(237 213 221) 0%, rgb(255, 224, 236) 100%);
    overflow: hidden;
}

/* Special Class Section with premium vibrant background */
.tf-class-section {
    position: relative;
    padding: 50px 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 182, 193, 0.45) 0%, transparent 35%),
        radial-gradient(circle at 90% 15%, rgba(199, 184, 234, 0.45) 0%, transparent 35%),
        radial-gradient(circle at 50% 85%, rgba(160, 231, 229, 0.5) 0%, transparent 40%),
        linear-gradient(180deg, #FFFFFF 0%, #FFF3F6 40%, #F4F7FF 100%);
    overflow: hidden;
    border-bottom: 3.5px dashed rgba(255, 182, 193, 0.35);
}

.tf-section .section-title,
.tf-class-section .section-title,
.tf-class-section-v2 .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.tf-section .section-title small,
.tf-class-section .section-title small {
    display: inline-block;
    background: linear-gradient(135deg, #fa438f 0%, #ff6b8b 100%);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    box-shadow: 0 4px 10px rgba(250, 67, 143, 0.18);
}

/* WhatsApp float button */
.tf-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
    z-index: 9999;
    transition: transform .2s;
    animation: tfPulse 2.5s infinite;
}

.tf-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

.tf-whatsapp svg {
    width: 32px;
    height: 32px;
}

@keyframes tfPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
    }

    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

/* Navbar */
.tf-navbar {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    box-shadow: var(--tf-shadow-sm);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.tf-navbar .navbar-brand {
    font-family: var(--tf-font-h);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--tf-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tf-navbar .navbar-brand .brand-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--tf-pink) 0%, var(--tf-lavender) 100%);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px;
}

.tf-navbar .nav-link {
    color: var(--tf-text) !important;
    font-weight: 700;
    padding: 8px 14px !important;
    border-radius: 999px;
    transition: all .2s;
}

.tf-navbar .nav-link:hover,
.tf-navbar .nav-link.active {
    background: var(--tf-cream);
    color: var(--tf-pink-d) !important;
}

.tf-navbar .cart-link {
    position: relative;
    background: var(--tf-pink);
    color: #fff !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.tf-navbar .cart-link .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e5366d;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
}

/* Forms */
.form-control,
.form-select {
    border-radius: var(--tf-radius-sm);
    border: 2px solid #EEE6F2;
    padding: 12px 16px;
    font-family: var(--tf-font);
    transition: all .2s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--tf-pink);
    box-shadow: 0 0 0 4px rgba(255, 182, 193, .25);
}

.form-label {
    font-weight: 700;
    color: var(--tf-text);
}

/* Footer */
.tf-footer {
    background: linear-gradient(180deg, #112641 0%, #112641 100%);
    color: #E5DCF5;
    padding: 60px 0 20px;
    margin-top: 0px;
}

.tf-footer h5 {
    color: #fff;
    font-family: var(--tf-font-h);
    margin-bottom: 18px;
}

.tf-footer a {
    color: #E5DCF5;
}

.tf-footer a:hover {
    color: var(--tf-pink);
}

.tf-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: .9rem;
    color: #fff;
}
/* Banners (CTA) */
.tf-cta-banner {
    border-radius: var(--tf-radius-lg);
    padding: 50px;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 143, 163, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(160, 231, 229, 0.35) 0%, transparent 40%),
        linear-gradient(135deg, #2C1F47 0%, #1F1535 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(31, 15, 60, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tf-cta-banner::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 213, 128, 0.15) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(20px);
}

.tf-cta-banner h2 {
    color: #fff;
    font-weight: 800;
}

.tf-cta-banner .lead {
    color: rgba(255, 255, 255, 0.88);
}

/* Premium Newsletter Form layout */
#newsletter-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    width: 100%;
}

#newsletter-form:focus-within {
    border-color: rgba(255, 182, 193, 0.5);
    box-shadow: 0 8px 30px rgba(255, 182, 193, 0.15);
}

#newsletter-form .form-control {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    padding: 10px 18px !important;
    font-size: 0.95rem;
    box-shadow: none !important;
    height: auto !important;
}

#newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

#newsletter-form .btn {
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#newsletter-form .btn:hover {
    transform: scale(1.04);
}

@media (max-width: 576px) {
    #newsletter-form {
        flex-direction: column;
        border-radius: var(--tf-radius);
        padding: 16px;
        background: rgba(255, 255, 255, 0.06);
    }
    #newsletter-form .form-control {
        text-align: center;
        width: 100%;
        margin-bottom: 8px;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 50px !important;
    }
    #newsletter-form .btn {
        width: 100%;
    }
}

/* Testimonials premium card layout */
.tf-testimonial-card {
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(61, 44, 92, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
}

.tf-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(250, 67, 143, 0.08);
    border-color: rgba(250, 67, 143, 0.15);
}

.tf-testimonial-card .quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(124, 92, 188, 0.06);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s;
}

.tf-testimonial-card:hover .quote-icon {
    color: rgba(250, 67, 143, 0.1);
}

.tf-testimonial-card .testimonial-text {
    font-size: 0.98rem;
    color: var(--tf-text-soft);
    line-height: 1.6;
    font-weight: 600;
}

.tf-testimonial-card .avatar-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--tf-text);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
/* Badges */
.tf-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    background: var(--tf-cream);
    color: #ffffff;
}

/* Page hero (smaller hero for inner pages) */
.tf-page-hero {
    /*background: linear-gradient(135deg, #e3dcd4 0%, #e3dcd4 100%);*/
    background: linear-gradient(135deg, #1faaf5 0%, #1faaf5 100%);
    padding: 50px 0;
    text-align: center;
    margin-bottom: 40px;
}

.tf-page-hero .breadcrumb {
    justify-content: center;
    background: transparent;
}

/* Floating shapes (decorative) */
.tf-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .5;
    pointer-events: none;
}

/* Utility */
.tf-text-gradient {
    background: linear-gradient(135deg, #fa438f 0%, #ff527b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-pink {
    color: #fa438f !important;
}

.text-mint {
    color: var(--tf-mint-d) !important;
}

.text-soft {
    color: #000 !important;
    font-weight: 600;
}

.bg-pink {
    background: var(--tf-pink) !important;
}

.bg-mint {
    background: var(--tf-mint) !important;
}

.bg-butter {
    background: var(--tf-butter) !important;
}

.bg-lavender {
    background: var(--tf-lavender) !important;
}

.bg-sky {
    background: var(--tf-sky) !important;
}

.bg-cream {
background: #f5911fe0 !important;
}

.rounded-tf {
    border-radius: var(--tf-radius) !important;
}

/* Character animation */
@keyframes tfBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.tf-bob {
    animation: tfBob 3.5s ease-in-out infinite;
}

@keyframes tfWiggle {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

.tf-wiggle {
    animation: tfWiggle 2.4s ease-in-out infinite;
    transform-origin: bottom center;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .tf-section {
        padding: 50px 0;
    }

    .tf-hero {
        padding: 30px 0 50px;
        text-align: center;
    }

    .tf-hero .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .tf-whatsapp {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }

    .tf-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* Print */
@media print {

    .tf-navbar,
    .tf-footer,
    .tf-whatsapp {
        display: none !important;
    }
}

.btn-lg {
    font-size: 1.05rem;
    padding: 12px 26px;
}

/* Hero buttons side-by-side on all screen sizes */
.btn-hero {
    font-size: 1.05rem;
    padding: 13px 28px;
    white-space: nowrap;
    flex: 1 1 0;
    text-align: center;
    max-width: 200px;
}

.hero-btn-row {
    width: 100%;
    max-width: 440px;
}

@media (max-width: 480px) {
    .btn-hero {
        font-size: 0.9rem;
        padding: 11px 16px;
    }
}

.tf-navbar .cart-link {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    color: rgb(255, 255, 255) !important;
    background: #6c3ff7;;
    border-radius: 50%;
    place-items: center;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #000;
}
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* ============================================
   Unified Sidebar Filter Styles
   ============================================ */
.tf-sidebar-filter {
    background: radial-gradient(circle at 0% 0%, rgba(255, 182, 193, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(160, 231, 229, 0.12) 0%, transparent 50%),
                #FFFDFE;
    border-radius: 28px;
    padding: 28px 24px;
    border: 2.5px solid #FDF0F3;
    box-shadow: 0 10px 30px rgba(124, 92, 188, 0.04);
    position: sticky;
    top: 100px;
}

.tf-sidebar-filter .sidebar-title {
    font-family: var(--tf-font-h);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--tf-text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.01em;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 14px;
    color: var(--tf-text-soft) !important;
    font-weight: 700;
    font-size: 0.93rem;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    background: transparent;
    text-decoration: none;
}

.menu-link:hover {
    color: var(--tf-pink-d) !important;
    background: rgba(250, 67, 143, 0.05);
    transform: translateX(4px);
}

.menu-link.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, #fa438f 0%, #ff6b8b 100%);
    box-shadow: 0 4px 12px rgba(250, 67, 143, 0.2);
}

.menu-icon {
    font-size: 1.1rem;
    margin-right: 12px;
    transition: transform 0.25s;
    color: var(--tf-pink-d);
}

.menu-link.active .menu-icon {
    color: #ffffff;
}

.menu-link:hover .menu-icon {
    transform: scale(1.15) rotate(3deg);
}

.menu-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--tf-pink-d);
    margin-right: 12px;
    display: inline-block;
    transition: transform 0.25s, background-color 0.25s;
}

.menu-link.active .menu-bullet {
    background-color: #ffffff;
    transform: scale(1.5);
}

.badge-size {
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 8px;
    background: rgba(124, 92, 188, 0.06);
    color: var(--tf-text-soft);
    margin-left: auto;
    font-weight: 700;
}

.menu-link.active .badge-size {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* ============================================
   Hero Orange Theme Text Visibility Styles
   ============================================ */
.tf-hero.bg-cream {
    /*background: #d1aa7e !important;*/
    background: rgba(245, 145, 31, 0.88) !important;
    border-bottom: 3.5px dashed rgba(255, 255, 255, 0.25);
}

.tf-hero.bg-cream h1 {
    color: #112641 !important;
}

.tf-hero.bg-cream h1 strong {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.tf-hero.bg-cream h1 .text-pink {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.tf-hero.bg-cream h1 span[style*="color:"] {
    color: #112641 !important; /* override inline purple on Alice */
}

.tf-hero.bg-cream .lead {
    color: #FFFFFF !important;
    font-weight: 600;
}

.tf-hero.bg-cream .hero-meta-row {
    color: #FFFFFF !important;
}

.tf-hero.bg-cream .hero-meta-row span {
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
}

.tf-hero.bg-cream .hero-meta-row span i {
    color: #FFFFFF !important;
}

/* ── Video section / Gradient page section styles ── */
.tf-video-section {
  position: relative;
  background: linear-gradient(135deg, #f1f5ff 0%, #eefbf9 100%);
  overflow: hidden;
  z-index: 1;
  padding: 50px 0;
}

.video-bg-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.decor-top-left-wave {
  top: 0;
  left: 0;
  z-index: 1;
}

.decor-top-right-wave {
  top: 0;
  right: 0;
  z-index: 1;
}

.decor-bottom-left-cloud {
  bottom: -5px;
  left: -40px;
  z-index: 2;
  filter: drop-shadow(0 -5px 12px rgba(61, 44, 92, 0.05));
}

.decor-bottom-right-cloud {
  bottom: -5px;
  right: -40px;
  z-index: 2;
  filter: drop-shadow(0 -5px 12px rgba(61, 44, 92, 0.05));
}

.decor-music-left {
  top: 45%;
  left: 5%;
  transform: rotate(-15deg);
  opacity: 0.65;
  animation: floatNote 6s infinite ease-in-out;
}

.decor-music-left svg,
.decor-music-right svg {
  width: 40px;
  height: 50px;
}

.decor-music-right {
  top: 30%;
  right: 6%;
  transform: rotate(15deg);
  opacity: 0.65;
  animation: floatNote 6s infinite ease-in-out 3s;
}

.decor-star-right {
  top: 55%;
  right: 12%;
  opacity: 0.5;
  animation: floatNote 8s infinite ease-in-out 1.5s;
}

@keyframes floatNote {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-15px) rotate(10deg);
  }
}

.vid-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #6C3FF7;
    color: #ffffff;
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(108, 63, 247, 0.2);
}

.title-sparkle {
    position: relative;
    top: -2px;
    opacity: 0.85;
}

.sparkle-left {
    margin-right: 10px;
}

.sparkle-right {
    margin-left: 10px;
}

.vid-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
  padding: 0 8px;
  position: relative;
  z-index: 3;
}
.vid-tabs {
  list-style: none;
  margin: 0; padding: 8px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  background: #FFFFFF !important;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(61,44,92,0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  max-width: 100%;
}

.vid-tab-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: .88rem;
  color: #6C7A9C;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.vid-tab-btn:hover { color: #6C3FF7; }

.vid-tab-btn .tab-play-icon {
  display: none;
  margin-right: 6px;
  position: relative;
  top: -1px;
}

.vid-tab-btn.active {
    background: #6C3FF7 !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(108, 63, 247, .25) !important;
}

.vid-tab-btn.active .tab-play-icon {
  display: inline-block;
}

.vid-panel { 
    display: none; 
    position: relative; 
    z-index: 3;
}
.vid-panel.active { display: block; }

.vid-card {
  border-radius: 24px;
  border: none !important;
  box-shadow: 0 10px 25px rgba(61,44,92,0.05);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  background: #fff;
}
.vid-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 20px 40px rgba(61,44,92,0.12) !important;
  border: none !important;
}

.vid-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
}
.vid-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .95;
  transition: opacity .2s, transform .3s;
}
.vid-card:hover .vid-thumb img { opacity: 1; transform: scale(1.02); }

.vid-play-btn {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,.1);
  transition: background .2s;
}
.vid-card:hover .vid-play-btn { background: rgba(0,0,0,.15); }
.vid-play-btn svg {
  width: 54px;
  height: 54px;
  transition: transform .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 12px rgba(108, 63, 247, 0.25));
}
.vid-play-btn svg circle {
  transition: fill 0.2s ease;
}
.vid-play-btn svg polygon {
  transition: fill 0.2s ease;
}
.vid-card:hover .vid-play-btn svg {
  transform: scale(1.12);
}
.vid-card:hover .vid-play-btn svg polygon {
  fill: #5527db;
}

.vid-title {
  font-size: .95rem;
  color: #0A1C3C !important;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tf-badge-rhyme,
.tf-badge-learning,
.tf-badge-cartoon,
.tf-badge-story {
    background: #6C3FF7 !important;
    color: #ffffff !important;
    border-radius: 50px;
    padding: 6px 14px;
    font-weight: 800;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
}

/* Custom button class */
.btn-vid-section-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6C3FF7;
    color: #FFFFFF !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(108, 63, 247, 0.35);
    border: none;
    position: relative;
    z-index: 3;
}
.btn-vid-section-all:hover {
    background: #5527db;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(108, 63, 247, 0.45);
}

/* Prevent double dashed border when tf-video-section follows tf-page-hero */
.tf-page-hero + .tf-video-section {
    border-top: none !important;
}

/* ============================================
   Shop By Class Section V2 Styles
   ============================================ */
.tf-class-section-v2 {
    position: relative;
    padding: 50px 0;
    background: #FFFFFF;
    overflow: hidden;
    z-index: 1;
}

/* Background elements */
.tf-v2-decor {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.decor-wave-top-left {
    top: 0;
    left: 0;
    width: 320px;
    height: auto;
    opacity: 0.9;
}

.decor-wave-top-right {
    top: 0;
    right: 0;
    width: 240px;
    height: auto;
    opacity: 0.9;
}

.decor-wave-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 1;
}

.decor-airplane {
    top: 12%;
    left: 6%;
    width: 110px;
    animation: floatAirplane 8s ease-in-out infinite;
}

.decor-books {
    bottom: 5px;
    left: 1.5%;
    width: 120px;
    z-index: 2;
    animation: floatBooks 6s ease-in-out infinite;
    display: none;
}

.decor-pencils {
    bottom: 0px;
    right: 1.5%;
    width: 130px;
    z-index: 2;
    animation: floatPencils 7s ease-in-out infinite;
    display: none;
}

@media (min-width: 992px) {
    .decor-books, .decor-pencils {
        display: block;
    }
}

.decor-star-pink {
    top: 32%;
    left: 6%;
    width: 22px;
    animation: pulseStar 3s ease-in-out infinite alternate;
}

.decor-star-yellow {
    top: 34%;
    right: 7%;
    width: 24px;
    animation: pulseStar 4s ease-in-out infinite alternate-reverse;
}

.decor-dot-grid-left {
    top: 28%;
    left: 1.5%;
    width: 70px;
    opacity: 0.2;
}

.decor-dot-grid-right {
    top: 22%;
    right: 2.5%;
    width: 70px;
    opacity: 0.2;
}

/* Animations */
@keyframes floatAirplane {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-4deg); }
}
@keyframes floatBooks {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes floatPencils {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-6px) rotate(-1deg); }
}
@keyframes pulseStar {
    0% { transform: scale(0.8); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* Section Header Badge V2 */
.section-title .badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6C3FF7;
    color: #FFFFFF;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(108, 63, 247, 0.22);
}

.section-title h2 .highlight-class {
    position: relative;
    color: #6C3FF7;
    display: inline-block;
}

.section-title h2 .highlight-class::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0,5 Q25,0 50,5 T100,5' fill='none' stroke='%23FFB6C1' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}

.section-title h2 .sparkle-container {
    position: relative;
    display: inline-block;
}

.section-title h2 .sparkles-icon {
    position: absolute;
    top: -12px;
    right: -24px;
    width: 20px;
    height: 20px;
}

/* V2 Class Cards */
.class-card-v2 {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(108, 63, 247, 0.04);
    border: 2.5px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.class-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(108, 63, 247, 0.12);
}

/* Themes colors matching screenshot */
.card-theme-pre-nursery {
    --card-primary: #E52E71;
    --card-primary-hover: #C21A5B;
    --card-bg-light: #FFE6EE;
    border-color: var(--card-primary);
}
.card-theme-pre-nursery:hover {
    border-color: var(--card-primary-hover);
}

.card-theme-nursery {
    --card-primary: #00A78E;
    --card-primary-hover: #00826E;
    --card-bg-light: #E6F9F8;
    border-color: var(--card-primary);
}
.card-theme-nursery:hover {
    border-color: var(--card-primary-hover);
}

.card-theme-lkg {
    --card-primary: #FBA100;
    --card-primary-hover: #D88200;
    --card-bg-light: #FFF9E6;
    border-color: var(--card-primary);
}
.card-theme-lkg:hover {
    border-color: var(--card-primary-hover);
}

.card-theme-ukg {
    --card-primary: #8338EC;
    --card-primary-hover: #6418CE;
    --card-bg-light: #F5F3FF;
    border-color: var(--card-primary);
}
.card-theme-ukg:hover {
    border-color: var(--card-primary-hover);
}

/* Card Header Part */
.class-card-v2-header {
    background: var(--card-primary);
    height: 110px;
    position: relative;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.class-card-v2-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--card-primary-hover);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-bottom-right-radius: 12px;
    letter-spacing: 0.5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

/* Card Icon Container (White Overlapping Circle) */
.class-card-v2-icon-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 96px;
    height: 96px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.class-card-v2:hover .class-card-v2-icon-wrap {
    transform: translate(-50%, 45%) scale(1.08);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.class-card-v2-icon-wrap svg {
    width: 54px;
    height: 54px;
    transition: transform 0.4s;
}

.class-card-v2:hover .class-card-v2-icon-wrap svg {
    transform: rotate(5deg) scale(1.05);
}

/* Card Body Part */
.class-card-v2-body {
    padding: 60px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    text-align: center;
    background: #FFFFFF;
}

.class-card-v2-body h3 {
    margin: 0 0 10px;
    font-weight: 800;
    color: var(--card-primary) !important;
    font-size: 1.4rem;
}

.class-card-v2-body p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #4a3e66 !important;
    font-weight: 600;
    margin-bottom: 20px;
    flex-grow: 1;
}

.class-card-v2-divider {
    height: 2px;
    background: #F3EEF6;
    width: 40px;
    margin: 0 auto 20px;
}

.class-card-v2-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--card-primary);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: background 0.3s, transform 0.3s;
}

.class-card-v2:hover .class-card-v2-pill {
    background: var(--card-primary-hover);
    transform: translateY(-1px);
}

/* ============================================
   Two Main Zones Redesign V2 Styles
   ============================================ */
.tf-zones-section-v2 {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #eef6ff 100%);
    overflow: hidden;
}

.zone-card-v2 {
    background: #FFFFFF;
    border-radius: 24px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 40px rgba(61, 44, 92, 0.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.zone-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(61, 44, 92, 0.12);
}

/* Themes colors */
.zone-theme-b2c {
    --zone-primary: #FF6B57;
    --zone-primary-d: #E04E38;
    --zone-bg-light: #FFF6EE;
    border-top: 8px solid var(--zone-primary);
    background: var(--zone-bg-light);
}

.zone-theme-b2b {
    --zone-primary: #3A9EA5;
    --zone-primary-d: #287789;
    --zone-bg-light: #EAF7F9;
    border-top: 8px solid var(--zone-primary);
    background: var(--zone-bg-light);
}

/* Header layout */
.zone-card-v2-header {
    padding: 36px 32px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.zone-card-v2-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #FFFFFF;
    box-shadow: 0 8px 20px rgba(61, 44, 92, 0.06);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zone-card-v2:hover .zone-card-v2-icon-wrap {
    transform: scale(1.08);
}

.zone-theme-b2c .zone-card-v2-icon-wrap {
    background: #FFEAE3;
    color: var(--zone-primary);
}

.zone-theme-b2b .zone-card-v2-icon-wrap {
    background: #E0F2F5;
    color: var(--zone-primary);
}

.zone-card-v2-header-text h3 {
    margin: 0;
    font-weight: 800;
    font-size: 1.45rem;
    color: #0A1C3C !important;
}

.zone-card-v2-header-text .badge-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    margin-top: 4px;
}

.zone-theme-b2c .zone-card-v2-header-text .badge-tag {
    color: var(--zone-primary-d);
}

.zone-theme-b2b .zone-card-v2-header-text .badge-tag {
    color: var(--zone-primary-d);
}

/* Body layout */
.zone-card-v2-body {
    padding: 0 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.zone-card-v2-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4A5872 !important;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Check list */
.zone-card-v2-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zone-card-v2-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1A1D20;
}

.zone-card-v2-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.zone-theme-b2c .zone-card-v2-list li svg {
    color: var(--zone-primary);
}

.zone-theme-b2b .zone-card-v2-list li svg {
    color: var(--zone-primary);
}

/* Bottom Wave & Buttons */
.zone-card-v2-bottom {
    position: relative;
    height: 150px;
    margin-top: auto;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.zone-card-v2-bottom svg.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.zone-card-v2-bottom-decor {
    position: absolute;
    bottom: 15px;
    width: 42px;
    height: auto;
    opacity: 0.22;
    z-index: 2;
    color: #FFFFFF;
    transition: transform 0.5s ease;
}

.zone-card-v2:hover .zone-card-v2-bottom-decor {
    transform: translateY(-4px) scale(1.05);
}

.decor-left {
    left: 20px;
}

.decor-right {
    right: 20px;
}

.zone-card-v2-btn-wrap {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.zone-card-v2-btn-wrap .btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.92rem;
    color: #FFFFFF !important;
    border: none;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease;
    white-space: nowrap;
}

.zone-card-v2-btn-wrap .btn-v2:hover {
    transform: translateY(-2px);
}

.zone-theme-b2c .btn-v2 {
    background: #FF5A3F;
    box-shadow: 0 6px 20px rgba(255, 90, 63, 0.35);
}

.zone-theme-b2c .btn-v2:hover {
    background: #FF4626;
    box-shadow: 0 8px 25px rgba(255, 90, 63, 0.5);
}

.zone-theme-b2b .btn-v2 {
    background: #3A9EA5;
    box-shadow: 0 6px 20px rgba(58, 158, 165, 0.35);
}

.zone-theme-b2b .btn-v2:hover {
    background: #2D8B92;
    box-shadow: 0 8px 25px rgba(58, 158, 165, 0.5);
}

/* ============================================
   Learning Ecosystem Section Redesign Styles
   ============================================ */
.tf-ecosystem-section {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #f3ebfc 0%, #e3f2fd 100%);
    overflow: hidden;
}

.ecosystem-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.decor-top-left {
    top: 40px;
    left: 4%;
}

.decor-top-right {
    top: 50px;
    right: 4%;
}

.ecosystem-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7c4dff 0%, #6c3ff7 100%);
    color: #ffffff;
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(108, 63, 247, 0.18);
}

.text-purple-grad {
    color: #6c3ff7;
}

.ecosystem-card {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(61, 44, 92, 0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(61, 44, 92, 0.12);
}

.ecosystem-card-wave-wrap {
    width: 100%;
    height: 70px;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.ecosystem-card-wave {
    width: 100%;
    height: 100%;
}

.ecosystem-card-icon-wrap {
    width: 68px;
    height: 68px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(61, 44, 92, 0.06);
    margin: -34px auto 20px;
    position: relative;
    z-index: 2;
    border: 2px solid #FFFFFF;
}

.ecosystem-card-icon-inner {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ecosystem-card:hover .ecosystem-card-icon-inner {
    transform: scale(1.08);
}

.ecosystem-card-body {
    padding: 0 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ecosystem-card-body h5 {
    font-size: 1.22rem;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Fredoka', sans-serif;
}

.ecosystem-card-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4A5872 !important;
    font-weight: 600;
    margin-bottom: 24px;
}

.ecosystem-card-divider {
    width: 20px;
    height: 4px;
    border-radius: 2px;
    margin-top: auto;
}

/* ============================================
   Newsletter Redesign Styles
   ============================================ */
.ecosystem-newsletter-banner {
    border-radius: 28px;
    background: #F7F9F2;
    color: #1a1d20;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(61, 44, 92, 0.05);
    display: flex;
    flex-direction: row;
    width: 100%;
}

.newsletter-panel-left {
    width: 50%;
    background: linear-gradient(135deg, #1fa581 0%, #149a74 100%);
    padding: 60px 40px 60px 50px;
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

.newsletter-panel-left h2 {
    color: #FFFFFF !important;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.3;
}

.newsletter-panel-left p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 1.05rem;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFECC8;
    color: #107d5e;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 200, 59, 0.15);
}

.newsletter-panel-right {
    width: 50%;
    padding: 60px 50px 60px 60px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wave Dividers */
.newsletter-wave-desktop {
    display: block;
    position: absolute;
    left: calc(50% - 1px);
    top: 0;
    bottom: 0;
    width: 100px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.newsletter-wave-mobile {
    display: none;
    width: 100%;
    height: 40px;
    z-index: 1;
    pointer-events: none;
}

/* Floating Decors */
.newsletter-decor {
    position: absolute;
    pointer-events: none;
    z-index: 3;
}

.decor-paperplane {
    top: 25px;
    right: 50px;
}

.decor-lightbulb {
    bottom: 20px;
    left: 20px;
}

.decor-star-1 {
    top: 25px;
    left: 25px;
}

.decor-star-2 {
    bottom: 70px;
    right: 120px;
}

.newsletter-decor-right {
    position: absolute;
    pointer-events: none;
}

.decor-books {
    bottom: 0;
    right: 20px;
    z-index: 2;
}

.decor-sunburst {
    top: 30px;
    right: 80px;
    z-index: 1;
}

/* Form Styling */
#newsletter-form {
    background: #FFFFFF;
    padding: 6px;
    border-radius: 50px;
    border: 2px solid #149a74;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(20, 154, 116, 0.06);
    transition: all 0.3s;
    width: 100%;
    position: relative;
    z-index: 3;
}

#newsletter-form:focus-within {
    border-color: #107d5e;
    box-shadow: 0 8px 30px rgba(20, 154, 116, 0.15);
}

#newsletter-form .form-control {
    background: transparent !important;
    border: none !important;
    color: #1a1d20 !important;
    padding: 10px 18px 10px 8px !important;
    font-size: 0.95rem;
    box-shadow: none !important;
    height: auto !important;
    font-weight: 600;
}

#newsletter-form .form-control::placeholder {
    color: #8C98A9 !important;
}

.btn-ecosystem-submit {
    background: #149a74;
    color: #FFFFFF !important;
    border-radius: 50px;
    padding: 11px 26px;
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
}

.btn-ecosystem-submit:hover {
    background: #107d5e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 154, 116, 0.35);
}

/* Responsive */
@media (max-width: 991.98px) {
    .newsletter-panel-left h2 {
        font-size: 1.75rem;
    }
    .decor-star-2 {
        right: 40px;
    }
    .decor-paperplane {
        right: 20px;
    }
}

@media (max-width: 767.98px) {
    .ecosystem-newsletter-banner {
        flex-direction: column;
    }
    .newsletter-panel-left {
        width: 100%;
        padding: 50px 30px 40px;
    }
    .newsletter-panel-right {
        width: 100%;
        padding: 40px 30px 110px;
    }
    .newsletter-wave-desktop {
        display: none;
    }
    .newsletter-wave-mobile {
        display: block;
        margin-top: -1px;
    }
    #newsletter-form {
        flex-direction: column;
        border-radius: 24px;
        padding: 16px;
        gap: 12px;
    }
    #newsletter-form .form-control {
        width: 100%;
        padding: 10px 16px !important;
        text-align: center;
    }
    #newsletter-form .bi-envelope {
        display: none;
    }
    .btn-ecosystem-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Bestsellers Section V2 Styles (Mockup Design)
   ============================================ */
.tf-bestsellers-section {
  position: relative;
  background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 50%, #fff5f6 100%);
  overflow: hidden;
  z-index: 1;
  padding: 50px 0;
}

.bestsellers-bg-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.tf-bestsellers-section .decor-top-left-wave {
  top: 0;
  left: 0;
}

.tf-bestsellers-section .decor-top-right-wave {
  top: 0;
  right: 0;
}

.tf-bestsellers-section .decor-bottom-left-wave {
  bottom: 0;
  left: 0;
}

.tf-bestsellers-section .decor-bottom-right-wave {
  bottom: 0;
  right: 0;
}

.bestsellers-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #6C3FF7;
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(108, 63, 247, 0.22);
}

.bestsellers-section-subtitle {
  font-size: 1.05rem;
  color: #6B5B8A;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Floating Title Items */
.title-decor-plane {
  position: absolute;
  top: -15px;
  left: -45px;
  transform: rotate(-10deg);
  opacity: 0.85;
}

.title-decor-heart {
  position: absolute;
  top: -15px;
  right: -35px;
  opacity: 0.8;
}

/* Premium Product Cards V2 */
.prod-card-v2 {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(108, 63, 247, 0.04);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s;
  padding: 12px;
  border: 2px solid transparent;
}

.prod-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(108, 63, 247, 0.12);
}

/* Dynamic Themes matching Mockup */
.prod-theme-purple {
  --prod-color: #8C62FF;
  --prod-bg-light: #F5F3FF;
  border-color: var(--prod-color);
}
.prod-theme-blue {
  --prod-color: #3B82F6;
  --prod-bg-light: #EFF6FF;
  border-color: var(--prod-color);
}
.prod-theme-green {
  --prod-color: #10B981;
  --prod-bg-light: #ECFDF5;
  border-color: var(--prod-color);
}
.prod-theme-orange {
  --prod-color: #F59E0B;
  --prod-bg-light: #FEF3C7;
  border-color: var(--prod-color);
}
.prod-theme-pink {
  --prod-color: #EF4444;
  --prod-bg-light: #FEF2F2;
  border-color: var(--prod-color);
}

.prod-card-v2 .product-img {
  border-radius: 18px;
  background: var(--prod-bg-light);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.prod-card-v2:hover .product-img {
  transform: scale(1.01);
}

.prod-card-v2 .product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.prod-card-v2 .badge-discount {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--prod-color);
  color: #FFFFFF;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: .8rem;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.prod-card-v2 .body {
  padding: 16px 8px 8px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.prod-card-v2 .product-cat-name {
  color: var(--prod-color);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: capitalize;
  margin-bottom: 6px;
  display: block;
}

.prod-card-v2 h5 {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #0A1C3C;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}

.prod-card-v2 h5 a {
  color: #0A1C3C !important;
  transition: color 0.2s;
}

.prod-card-v2 h5 a:hover {
  color: var(--prod-color) !important;
}

.prod-card-v2 .price {
  color: var(--prod-color);
  font-weight: 850;
  font-size: 1.2rem;
}

.prod-card-v2 .mrp {
  color: #8C98A9;
  text-decoration: line-through;
  margin-left: 8px;
  font-size: .92rem;
  font-weight: 700;
}

.prod-card-v2 .btn-add-to-cart {
  background: var(--prod-color);
  color: #FFFFFF !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.prod-card-v2 .btn-add-to-cart:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Benefits Bar V2 */
.bestsellers-benefits-bar {
  background: #6C3FF7;
  border-radius: 28px;
  padding: 30px 40px;
  margin-top: 75px;
  position: relative;
  box-shadow: 0 16px 45px rgba(108, 63, 247, 0.25);
  z-index: 3;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #FFFFFF;
}

.benefit-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.benefit-text h6 {
  margin: 0;
  font-weight: 800;
  color: #FFFFFF;
  font-size: 0.95rem;
}

.benefit-text p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* Floating Bar Decors */
.bar-decor-gift {
  position: absolute;
  bottom: -5px;
  left: -50px;
  width: 140px;
  height: auto;
  z-index: 4;
  pointer-events: none;
  animation: floatNote 6s infinite ease-in-out;
}

.bar-decor-books {
  position: absolute;
  bottom: -15px;
  right: -50px;
  width: 140px;
  height: auto;
  z-index: 4;
  pointer-events: none;
  animation: floatNote 6s infinite ease-in-out 3s;
}

@media (max-width: 991.98px) {
  .bestsellers-benefits-bar {
    padding: 24px 20px;
  }
  .bar-decor-gift,
  .bar-decor-books {
    display: none;
  }
}

