:root {
    --purple-dark: #3d1a6e;
    --purple-main: #6a35b8;
    --purple-mid: #8952cc;
    --purple-light: #c4a5f0;
    --purple-pale: #f3eeff;
    --pink-accent: #e040a0;
    --white: #ffffff;
    --text-dark: #2b1060;
    --text-body: #4a4a6a;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-body);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

/* ── NAVBAR ──────────────────────────────────── */
.navbar-brand span.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--purple-dark);
    font-weight: 700;
}

.navbar-brand small {
    display: block;
    font-size: 0.65rem;
    color: var(--purple-mid);
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
    font-style: italic;
}

.navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding-inline: 0.85rem !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--purple-main) !important;
}

.btn-shop-nav {
    background: var(--purple-dark);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    padding: 0.4rem 1.3rem;
    font-size: 0.9rem;
}

.btn-shop-nav:hover {
    background: var(--purple-main);
}

.custom-navbar {
    background: transparent;
    transition: all 0.3s ease;
}

/* When scrolled */
.custom-navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Mobile menu open — white background */
@media (max-width: 991.98px) {
    .custom-navbar .navbar-collapse.show,
    .custom-navbar .navbar-collapse.collapsing {
        background: #ffffff;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
        padding: 1rem 1.25rem;
        margin-top: 0.5rem;
    }
}

/* ── HERO ─────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, #f8f0ff 0%, #faf3fa 50%, #ddd0ff 100%);
    min-height: 560px;
    position: relative;
    overflow: hidden;
    padding-top: 200px !important;
}

/* Corner gradient */
/* Bottom Right Glow */
.hero-section::before {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #b723c8 0%, transparent 65%);
    bottom: -180px;
    right: -180px;
    opacity: 0.35;
    /* reduced for better blending */
    filter: blur(60px);
    z-index: 1;
    animation: floatBottomRight 20s ease-in-out infinite alternate;
}

/* Top Left Glow */
.hero-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #c43dea 0%, transparent 65%);
    top: -180px;
    left: -180px;
    opacity: 0.25;
    /* reduced for better blending */
    filter: blur(60px);
    z-index: 0;
    animation: floatTopLeft 26s ease-in-out infinite alternate;
}

@keyframes floatTopLeft {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-80px, 80px) scale(1.05);
    }

    50% {
        transform: translate(-120px, 0px) scale(1.1);
    }

    75% {
        transform: translate(-20px, 0px) scale(.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes floatBottomRight {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-40px, -60px) scale(1.03);
    }

    50% {
        transform: translate(-90px, -30px) scale(0.95);
    }

    75% {
        transform: translate(-50px, -80px) scale(1.02);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-section::before,
.hero-section::after {
    will-change: transform;
}

/* .hero-section::before {
    animation: floatGlow 8s ease-in-out infinite;
} */

/* .hero-section::after {
  animation: floatGlow 10s ease-in-out infinite reverse;
} */

.nav-logo {
    max-height: 110px;
    transition: all 0.3s ease;
    z-index: 9;
}

/* On scroll */
.custom-navbar.scrolled .nav-logo {
    max-height: 80px;
}

/*
    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='320' cy='80' r='180' fill='%23c4a5f0' opacity='.18'/%3E%3Ccircle cx='60' cy='340' r='120' fill='%238952cc' opacity='.10'/%3E%3C/svg%3E") no-repeat right top;
      background-size: cover;
      pointer-events: none;
  } */
.hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--purple-dark);
    line-height: 1.15;
}

.hero-title em {
    font-style: italic;
    color: var(--pink-accent);
}

.hero-badge-row {
    gap: 1rem;
}

@media (max-width: 991.98px) {
    .hero-badge-row {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr);
        justify-items: center;
    }

    .hero-badge-row .hero-badge:nth-child(1) { grid-column: 1 / 3; }
    .hero-badge-row .hero-badge:nth-child(2) { grid-column: 3 / 5; }
    .hero-badge-row .hero-badge:nth-child(3) { grid-column: 5 / 7; }
    .hero-badge-row .hero-badge:nth-child(4) { grid-column: 2 / 4; }
    .hero-badge-row .hero-badge:nth-child(5) { grid-column: 4 / 6; }
}

.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--purple-dark);
    text-align: center;
}

.hero-badge .badge-icon {
    width: 46px;
    height: 46px;
    background: var(--purple-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
}

.btn-primary-custom {
    background: var(--purple-dark);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    padding: 0.6rem 1.6rem;
    border: none;
    transition: background 0.2s;
}

.btn-primary-custom:hover {
    background: var(--purple-main);
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid var(--purple-dark);
    color: var(--purple-dark);
    border-radius: 50px;
    font-weight: 700;
    padding: 0.55rem 1.5rem;
    background: transparent;
    transition: all 0.2s;
}

.btn-outline-custom:hover {
    background: var(--purple-dark);
    color: #fff;
}

/* Banner image */
.banner-img {
    display: block;
}

@media (min-width: 992px) {
    .banner-img {
        position: absolute;
        bottom: 0;
        right: 0;
        height: 100%;
        width: auto;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 120px !important;
        padding-bottom: 75vw !important;
    }
.banner-img {
    position: absolute;
    bottom: 0;
    right: -15px;              /* anchor to right */
    transform: scale(1.3); /* no translateX */
    transform-origin: right bottom; /* important */
    width: 100%;
    height: auto;
}
}

/* Product box placeholder */
.hero-product-box {
    background: linear-gradient(145deg, #c8a4f5, #9b5fdd);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(105, 53, 184, 0.35);
}

.hero-product-box .product-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
}

.hero-product-box h5 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0.4rem 0;
}

.product-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 0.8rem;
}

.product-tech-tags span {
    background: rgba(255, 255, 255, 0.25);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 3px 10px;
    letter-spacing: 0.5px;
}

.product-pad-visual {
    width: 100px;
    height: 50px;
    background: linear-gradient(to bottom, #e8f8f0, #c5f0dc);
    border-radius: 50px;
    margin: 1rem auto 0.5rem;
    position: relative;
}

.product-pad-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 20px;
    background: #5ad4a0;
    border-radius: 50px;
}

/* ── SECTION TITLE ────────────────────────────── */
.section-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--purple-dark);
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
}

.title-underline {
    width: 50px;
    height: 3px;
    background: var(--purple-main);
    margin: 0.4rem auto 0;
    border-radius: 3px;
}

/* ── WHY CHOOSE ───────────────────────────────── */
.why-section {
    background: #fff;
}

/* ── VIDEO / REEL SECTION ─────────────────────────── */
.video-section {
    background: linear-gradient(135deg, #f8f0ff 0%, #fdf6ff 100%);
}

/* Main reel player – portrait 9:16 */
.reel-main-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.reel-main-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(137, 82, 204, 0.25);
}

.reel-main-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Thumbnails row */
.reel-thumbs-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 0.75rem;
    justify-content: center;
    scrollbar-width: none;
}

.reel-thumbs-scroll::-webkit-scrollbar {
    display: none;
}

.reel-thumb {
    flex: 0 0 auto;
    width: 80px;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2.5px solid transparent;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.reel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-thumb-play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.reel-thumb:hover .reel-thumb-play {
    opacity: 1;
}

.reel-thumb.active {
    border-color: var(--purple-main);
    box-shadow: 0 4px 16px rgba(137, 82, 204, 0.35);
    transform: scale(1.06);
}

.reel-thumb.active .reel-thumb-play {
    opacity: 1;
    background: rgba(137, 82, 204, 0.28);
}

@media (max-width: 575.98px) {
    .reel-main-wrapper {
        max-width: 260px;
    }

    .reel-thumb {
        width: 64px;
    }
}

.feature-card {
    border: none;
    background: var(--purple-pale);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(106, 53, 184, 0.18);
}

.feature-card .feat-icon {
    font-size: 2rem;
    color: var(--purple-main);
    margin-bottom: 0.6rem;
}

.feature-card h6 {
    font-weight: 800;
    font-size: 0.82rem;
    color: var(--purple-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 0.78rem;
    margin: 0;
    color: var(--text-body);
}

/* ── 8-LAYER ──────────────────────────────────── */
.layers-section {
    background: var(--purple-pale);
}

.layer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.layer-list li {
    display: flex;
    gap: 0.8rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #e0d4f7;
    font-size: 0.88rem;
}

.layer-list li:last-child {
    border-bottom: none;
}

.layer-num {
    min-width: 26px;
    height: 26px;
    background: var(--purple-main);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
}

.layer-info strong {
    font-weight: 800;
    color: var(--purple-dark);
    display: block;
    font-size: 0.85rem;
}

.layer-info span {
    font-size: 0.75rem;
    color: var(--text-body);
}

/* Pad visual stack */
.pad-stack {
    position: relative;
    height: 220px;
}

.pad-layer {
    position: absolute;
    left: 0;
    right: 0;
    height: 24px;
    border-radius: 60px;
    opacity: 0.9;
}

/* Flow cards */
.flow-card {
    border: 2px solid var(--purple-light);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    background: #fff;
    height: 100%;
}

.flow-card .flow-size {
    display: inline-block;
    background: var(--purple-dark);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50px;
    padding: 3px 16px;
    margin: 0.5rem 0;
}

.flow-card p {
    font-size: 0.82rem;
}

.flow-pad-icon {
    font-size: 3.5rem;
    color: var(--purple-light);
}

/* ── DESIGNED FOR COMFORT ─────────────────────── */
.comfort-section {
    background: #fff;
}

.comfort-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.comfort-icon {
    width: 56px;
    height: 56px;
    background: var(--purple-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--purple-main);
}

.comfort-item p {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* ── VISION / MISSION ─────────────────────────── */
.vm-section {
    /* background: var(--purple-pale); */
        background: #e6ddfd;
}

.vm-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(106, 53, 184, 0.09);
}

.vm-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--purple-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 1rem;
}

/* ── STORY ────────────────────────────────────── */
.story-section {
    background: #fff;
}

.story-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--pink-accent);
    font-size: 1.3rem;
}

/* ── TRUSTED ──────────────────────────────────── */
.trusted-section {
    background: var(--purple-pale);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.trust-icon {
    font-size: 2rem;
    color: #a16feb;
}

.trust-item p {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.trust-item i {
    font-size: 3em;
}

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonials-section {
    background: #fff;
}

.review-card {
    background: var(--purple-pale);
    border-radius: 20px;
    padding: 1.6rem;
    height: 100%;
}

.review-card .stars {
    color: #f5c518;
    font-size: 1rem;
}

.review-card blockquote {
    font-size: 0.88rem;
    font-style: italic;
    margin: 0.6rem 0;
}

.reviewer-name {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--purple-dark);
}

.reviewer-city {
    font-size: 0.75rem;
    color: var(--text-body);
}

.avatar {
    width: 38px;
    height: 38px;
    background: var(--purple-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-dark);
    font-weight: 800;
    font-size: 0.9rem;
}

/* ── CTA BANNER ───────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--purple-dark) 0%, #8952cc 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='200'%3E%3Ccircle cx='550' cy='100' r='120' fill='white' opacity='.05'/%3E%3Ccircle cx='50' cy='50' r='80' fill='white' opacity='.04'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.btn-cta-white {
    background: #fff;
    color: var(--purple-dark);
    border-radius: 50px;
    font-weight: 800;
    padding: 0.65rem 2rem;
    border: none;
    transition: all 0.2s;
}

.btn-cta-white:hover {
    background: var(--purple-pale);
    color: var(--purple-dark);
}

/* ── FOOTER ───────────────────────────────────── */
footer {
    background: var(--purple-dark);
    color: rgba(255, 255, 255, 0.75);
}

footer h6 {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.78rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.82rem;
}

footer a:hover {
    color: var(--purple-light);
}

footer .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
}

footer .footer-tagline {
    font-size: 0.72rem;
    font-style: italic;
    opacity: 0.7;
}

.footer-newsletter {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 0;
}

.footer-newsletter input {
    flex: 1 1 0;
    min-width: 0;
    width: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 8px 0 0 8px;
    padding: 0.5rem 0.8rem;
    font-size: 0.82rem;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter input:focus {
    outline: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.18);
}

.footer-newsletter .btn-subscribe {
    flex-shrink: 0;
    background: var(--purple-mid);
    border: none;
    color: #fff;
    border-radius: 0 8px 8px 0;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    cursor: pointer;
}

@media (max-width: 400px) {
    .footer-newsletter {
        flex-direction: column;
        gap: 0.5rem;
    }
    .footer-newsletter input {
        border-radius: 8px;
        width: 100%;
    }
    .footer-newsletter .btn-subscribe {
        border-radius: 8px;
        width: 100%;
        padding: 0.5rem;
    }
}

/* ── PRODUCTS SECTION ─────────────────────────────── */
.products-section {
    background: #f8f4ff;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(106, 53, 184, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.25s;
}

.product-card:hover {
    box-shadow: 0 8px 36px rgba(106, 53, 184, 0.16);
}

.product-card-img {
    background: #ffffff;
    padding: 2.8rem 1.5rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.product-card-img img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.product-card-body {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--purple-dark);
    margin-bottom: 0.2rem;
}

.product-card-subtitle {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

.product-card-divider {
    border-color: #e8e0f5;
    margin: 0.75rem 0;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: #333;
    line-height: 1.4;
}

.product-features li i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--purple-pale);
    color: var(--purple-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.product-card-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-buy-now {
    flex: 1;
    background: var(--purple-dark);
    color: #fff !important;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
    text-align: center;
    transition: background 0.2s;
}

.btn-buy-now:hover {
    background: var(--purple-main);
}

.btn-wishlist {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    color: #888;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s;
    padding: 0;
}

.btn-wishlist:hover {
    border-color: var(--purple-main);
    color: var(--purple-main);
}

/* ────────────────────────────────────────────────── */

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.social-icons a:hover {
    background: var(--purple-mid);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
}

.footer-copy {
    font-size: 0.75rem;
    opacity: 0.6;
}