﻿
/* Hero Banner style started here */
.hero-section {
  display:flex;
  align-items:center;
    height: 100vh;
    position: relative;
    text-align: center;
}

/* Welcome badge */
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #c084fc;
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #3b0764;
    background: transparent;
    margin-bottom: 28px;
    margin-top: 160px;
}

    .welcome-badge .star {
        color: #604696;
        font-size: 1rem;
    }

/* Heading */
.hero-heading {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #0f0a1e;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

    .hero-heading .purple {
        color: #604696;
    }

/* Subtext */
.hero-sub {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #6b7280;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 36px;
    font-weight: 400;
}

/* Buttons */
.btn-explore {
    background: #604696;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
}

    .btn-explore:hover {
        background: #7e22ce;
        color: #fff;
        transform: translateY(-1px);
    }

.btn-learn {
    background: transparent;
    color: #111827;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.2s, background 0.2s;
}

    .btn-learn:hover {
        border-color: #604696;
        color: #604696;
    }

/* Floating images */
.float-img {
    position: absolute;
    pointer-events: none;
}

    .float-img.top-right {
        top: 10px;
        right: 40px;
        width: clamp(90px, 12vw, 150px);
    }

    .float-img.bottom-left {
        bottom: 10px;
        left: 30px;
        width: clamp(90px, 12vw, 150px);
    }

/* Placeholder mortar & pestle using emoji for demo */
.emoji-float {
    position: absolute;
    font-size: clamp(60px, 9vw, 110px);
    line-height: 1;
    pointer-events: none;
    filter: drop-shadow(0 8px 24px rgba(147, 51, 234, 0.15));
}

    .emoji-float.top-right {
        top: 125px;
        right: clamp(110px, 0px, 1px);
        z-index: 99;
    }

    .emoji-float.bottom-left {
        bottom: 50px;
        left: clamp(130px, 0vw, 60px);
        z-index: 99;
    }

@media (max-width: 576px) {
    .emoji-float {
        font-size: 50px;
    }

        .emoji-float.top-right {
            top: 8px;
            right: 8px;
        }

        .emoji-float.bottom-left {
            bottom: 8px;
            left: 8px;
        }

    .hero-section {
        padding: 50px 16px 60px;
    }
}

.hero-section::after {
    content: '';
    background-image: url(/images/New-home/left.png);
    position: absolute;
    width: 450px;
    height: 912px;
    z-index: 9;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    background-image: url(/images/New-home/right.png);
    position: absolute;
    width: 450px;
    height: 912px;
    z-index: 9;
    right: 0;
    top: 0;
    background-repeat: no-repeat;
}

 #HomepageMain.owl-carousel .owl-item img {
    border-radius: 40px !important
}

.HomepageMain {
    margin-bottom: 15px;
    border-radius: 40px;
}

/* Hero Banner style End here */
/* Product section styles started here */
.vls-products-section {
    padding: 30px 0 30px;
    background: #fff;
}

/* ── SECTION HEADER ── */
.vls-section-tag {
    font-size: 0.82rem;
    font-weight: 600;
    color: #604696;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.vls-section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 14px;
}

    .vls-section-title span {
        color: #604696;
    }

.vls-section-desc {
    font-size: 0.97rem;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── PRODUCT CARD ── */
.vls-product-card {
    background: rgba(242, 228, 255, 0.44);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(147, 51, 234, 0.07);
    border: 1px solid #f3e8ff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

    .vls-product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(147, 51, 234, 0.15);
    }

/* ── PRODUCT IMAGE ── */
.vls-product-img-wrap {
    position: relative;
    width: 100%;
    min-height: 220px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

     .vls-product-img-wrap img {
        width: 100%;
        height: 100%;
        display: block;
        transition: transform 0.35s ease;
    }

.vls-product-card:hover .vls-product-img-wrap img {
    transform: scale(1.04);
}

/* Image placeholder gradient */
.vls-product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.vls-img-p1 {
    background: linear-gradient(135deg, #7c2d92 0%, #c084fc 50%, #e9d5ff 100%);
}

.vls-img-p2 {
    background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 50%, #059669 100%);
}

.vls-img-p3 {
    background: linear-gradient(135deg, #ede9fe 0%, #c4b5fd 50%, #8b5cf6 100%);
}

.vls-img-p4 {
    background: linear-gradient(135deg, #7c2d92 0%, #c084fc 50%, #e9d5ff 100%);
}

/* ── PRODUCT BODY ── */
.vls-product-body {
    padding: 16px 16px 18px;
}

.vls-product-name {
    font-size: 1rem;
    font-weight: 700;
    color: #604696;
    margin-bottom: 4px;
}

.vls-product-code {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 6px;
}

.vls-product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
}

    .vls-product-price span {
        font-size: 0.78rem;
        color: #9ca3af;
        font-weight: 400;
        margin-right: 4px;
    }

/* ── BUY NOW ROW ── */
.vls-buy-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

 .vls-btn-buy {
    flex: 1;
    background: #604696;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

    .vls-btn-buy:hover {
        background: #7e22ce;
        color: #fff;
        transform: translateY(-1px);
    }

.vls-btn-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    text-decoration: none;
}

    .vls-btn-arrow:hover {
        border-color: #604696;
        background: #f5f3ff;
        color: #604696;
    }

/* ── VIEW ALL BUTTON ── */
.vls-btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #604696;
    color: #604696;
    background: transparent;
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

    .vls-btn-view-all:hover {
        background: #604696;
        color: #fff;
        transform: translateY(-1px);
    }

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 576px) {
    .vls-product-img-wrap {
        height: auto;
    }
    .vls-product-img-wrap {
        min-height: 185px;
    }
        .vls-products-section {
            padding: 48px 0 56px;
        }
}

/* Product section styles end here */
/* Premium Ingredients – Owl Carousel styles started */
/* ── SECTION ── */
.pi-section {
    padding: 20px 0 20px;
    background: #fff;
}

/* ── HEADER ── */
.pi-tag {
    font-size: 0.82rem;
    font-weight: 600;
    color: #604696;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.pi-title {
    font-size: clamp(1.75rem, 3.5vw, 2.45rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.2;
}

    .pi-title span {
        color: #604696;
    }

.pi-desc {
    font-size: 0.95rem;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── CAROUSEL WRAP ── */
.pi-carousel-wrap {
    margin-top: 52px;
    padding: 0 4px;
}

/* ── CARD ── */
.pi-card {
    background: rgba(242, 228, 255, 0.44);
    border-radius: 20px;
    padding: 30px 18px 28px;
    text-align: center;
    margin: 8px 8px 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    border: 1.5px solid transparent;
}

    .pi-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(147, 51, 234, 0.13);
        border-color: #e9d5ff;
        background: #f5f0ff;
    }

/* ── CIRCLE ── */
.pi-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #ede9fe 0%, #ddd6fe 60%, #c4b5fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pi-card:hover .pi-circle {
    background: radial-gradient(circle at 40% 40%, #ddd6fe 0%, #c4b5fd 60%, #a78bfa 100%);
    transform: scale(1.05);
}

.pi-circle svg {
    width: 52px;
    height: 52px;
    stroke: #7c3aed;
    fill: none;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}

.pi-card:hover .pi-circle svg {
    stroke: #5b21b6;
}

/* ── TEXT ── */
.pi-name {
    font-size: 16px;
    font-weight: 600;
    color: #7c3aed;
    margin-bottom: 6px;
}

.pi-benefit {
    font-size: 0.88rem;
    color: #374151;
    font-weight: 500;
}

/* ── OWL DOTS ── */
.owl-dots {
    margin-top: 32px !important;
    text-align: center;
}

.owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: #e9d5ff !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
    transition: all 0.25s ease !important;
    display: block;
}

.owl-dot.active span {
    background: #604696 !important;
    width: 28px !important;
    border-radius: 10px !important;
}

.owl-nav {
    display: none !important;
}

/* Premium Ingredients – Owl Carousel end styles */

/* ── Six Pillars SECTION ── */
/* ── HEADER ── */
.sp-section {
    padding: 20px 0 20px;
    background: #fff;
}

.sp-tag {
    font-size: 0.82rem;
    font-weight: 600;
    color: #604696;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.sp-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
    line-height: 1.2;
}

    .sp-title span {
        color: #604696;
    }

.sp-desc {
    font-size: 0.96rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── CARD ── */
.sp-card {
    background: #f5f0ff;
    border: 1.5px solid #e9d5ff;
    border-radius: 18px;
    padding: 22px 16px 24px;
    height: 100%;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    /* Hover — white background */
    .sp-card:hover {
        background: #ffffff;
        border-color: #c4b5fd;
        box-shadow: 0 16px 48px rgba(147, 51, 234, 0.13);
        transform: translateY(-5px);
    }

/* ── ICON CIRCLE ── */
.sp-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #604696;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.sp-card:hover .sp-icon-wrap {
    background: #7c3aed;
    transform: scale(1.08);
}

.sp-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── TEXT ── */
.sp-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 10px;
}

.sp-card-text {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.sp-card:hover .sp-card-title {
    color: #6d28d9;
}

.sp-card:hover .sp-card-text {
    color: #4b5563;
}

@media (max-width: 575px) {
    .sp-section {
        padding: 50px 0 60px;
    }
}

/* Testimonials styles added here */
.tm-section {
    padding: 20px 0 20px;
    background: #fff;
}

/* ── HEADER ── */
.tm-tag {
    font-size: 0.82rem;
    font-weight: 600;
    color: #604696;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.tm-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.2;
}

    .tm-title span {
        color: #604696;
    }

.tm-desc {
    font-size: 0.95rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── HEADER BLOCK ── */
.tm-header-block {
    position: relative;
    text-align: center;
    margin-bottom: 44px;
}

/* ── CUSTOM NAV BUTTONS — right aligned, vertically centered with heading ── */
.tm-nav-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
}

.tm-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #c4b5fd;
    background: #fff;
    color: #604696;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

    .tm-nav-btn:hover {
        background: #604696;
        color: #fff;
        border-color: #604696;
    }

/* ── CAROUSEL WRAP ── */
.tm-carousel-wrap {
    position: relative;
}

/* ── TESTIMONIAL CARD ── */
.tm-card {
    background: #f5f0ff;
    border-radius: 18px;
    padding: 28px 24px 26px;
    margin: 6px 10px 10px;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

    .tm-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(147, 51, 234, 0.12);
    }

/* ── STARS ── */
.tm-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

    .tm-stars svg {
        width: 20px;
        height: 20px;
    }

.tm-star-filled {
    fill: #604696;
}

.tm-star-empty {
    fill: none;
    stroke: #604696;
    stroke-width: 1.5;
}

/* ── REVIEW TEXT ── */
.tm-review {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
    height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
}

    .tm-review::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    .tm-review::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        -webkit-border-radius: 10px;
        border-radius: 10px;
    }

    .tm-review::-webkit-scrollbar-thumb {
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.3);
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    }

        .tm-review::-webkit-scrollbar-thumb:window-inactive {
            background: rgba(255, 255, 255, 0.3);
        }

/* ── REVIEWER ── */
.tm-reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tm-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e9d5ff, #c4b5fd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

    .tm-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.tm-reviewer-name {
    font-size: 0.97rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
}

.tm-reviewer-role {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 400;
}

/* ── OWL DOTS ── */
.owl-dots {
    margin-top: 28px !important;
    text-align: center;
}

.owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: #e9d5ff !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
    transition: all 0.25s ease !important;
    display: block;
}

.owl-dot.active span {
    background: #604696 !important;
    width: 30px !important;
    border-radius: 10px !important;
}

.owl-nav {
    display: none !important;
}

@media (max-width: 575px) {
    .tm-section {
        padding: 50px 0 56px;
    }

    .tm-card {
        padding: 22px 18px 20px;
    }
}

/* Testimonials styles ended here */

/* The Journey to Wellness styles started here */
/* ── SECTION ── */
.jw-section {
    padding: 20px 0 20px;
    background: #fff;
}

/* ── LEFT SIDE ── */
.jw-tag {
    font-size: 0.82rem;
    font-weight: 600;
    color: #604696;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    display: block;
}

.jw-title {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #111827;
    line-height: 1.15;
    margin-bottom: 22px;
}

    .jw-title span {
        color: #604696;
    }

.jw-body-text {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 16px;
}

.jw-btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #604696;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px 28px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .jw-btn-learn:hover {
        background: #7c3aed;
        color: #fff;
        transform: translateY(-2px);
    }

/* ── RIGHT SIDE GRID ── */
.jw-badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* ── BADGE CARD ── */
.jw-badge-card {
    background: #f5f0ff;
    border: 1.5px solid #ede9fe;
    border-radius: 18px;
    padding: 26px 22px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: default;
}

    .jw-badge-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(147, 51, 234, 0.12);
        border-color: #c4b5fd;
        background: #fff;
    }

/* ── ICON CIRCLE ── */
.jw-badge-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #604696;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.jw-badge-card:hover .jw-badge-icon {
    background: #7c3aed;
    transform: scale(1.07);
}

.jw-badge-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── BADGE TEXT ── */
.jw-badge-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.jw-badge-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
    .jw-section {
        padding: 52px 0 60px;
    }

    .jw-badges-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .jw-badges-grid {
        grid-template-columns: 1fr;
    }
}

/* The Journey to Wellness styles end here */

/* Join our wellness comuninty */

.wc-section {
    padding: 60px 20px;
}

/* ── CARD WRAP ── */
.wc-card {
    background: radial-gradient(ellipse at 20% 50%, #e9d5ff 0%, #f3e8ff 35%, #faf5ff 65%, #ffffff 100%);
    border-radius: 24px;
    padding: 60px 24px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

    /* subtle right glow */
    .wc-card::after {
        content: '';
        position: absolute;
        right: -60px;
        top: -60px;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(192, 132, 252, 0.18) 0%, transparent 70%);
        pointer-events: none;
    }

/* ── MAIL ICON ── */
.wc-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

    .wc-icon-wrap svg {
        width: 48px;
        height: 48px;
        stroke: #1f2937;
        fill: none;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* ── HEADING ── */
.wc-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 600;
    color: #111827;
    margin-bottom: 14px;
    line-height: 1.2;
}

    .wc-title span {
        color: #604696;
    }

/* ── SUBTEXT ── */
.wc-desc {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ── FORM ROW ── */
.wc-form-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 580px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.wc-input {
    flex: 1;
    min-width: 220px;
    background: #fff;
    border: 1.5px solid #e9d5ff;
    border-radius: 10px;
    padding: 13px 18px;
    font-size: 0.92rem;
    color: #374151;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .wc-input::placeholder {
        color: #9ca3af;
    }

    .wc-input:focus {
        border-color: #a855f7;
        box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.12);
    }

.wc-btn-subscribe {
    background: #604696;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .wc-btn-subscribe:hover {
        background: #7c3aed;
        transform: translateY(-1px);
    }

/* ── PRIVACY NOTE ── */
.wc-privacy {
    font-size: 0.82rem;
    color: #9ca3af;
    position: relative;
    z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
    .wc-card {
        padding: 44px 18px 40px;
    }

    .wc-form-row {
        flex-direction: column;
    }

    .wc-input,
    .wc-btn-subscribe {
        width: 100%;
    }
}
