/* ============================================================
   Prakriti Carousel — Home Page Section
   Ayurvedic Plus
   ============================================================ */

/* ── Section wrapper ── */
.pk-carousel-section {
    padding: 90px 0 80px;
    background: linear-gradient(180deg, #faf7f0 0%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}
.pk-carousel-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,106,79,.06), transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
}

/* ── Carousel wrapper ── */
.pkc-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 36px;
}

/* ── Carousel track ── */
#prakritiCarousel {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.13);
}

/* ── Slide base ── */
.pkc-slide {
    display: none;
    align-items: stretch;
    min-height: 460px;
}
.pkc-slide.active { display: flex; }

/* Slide themes */
.vata-slide  { background: linear-gradient(135deg, #2d1b69 0%, #4c3ab8 60%, #7c6af7 100%); }
.pitta-slide { background: linear-gradient(135deg, #7c1d0a 0%, #c2410c 60%, #f97316 100%); }
.kapha-slide { background: linear-gradient(135deg, #052e16 0%, #166534 60%, #22c55e 100%); }

/* ── Content side ── */
.pkc-content {
    flex: 1.1;
    padding: 48px 44px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pkc-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 18px;
    width: fit-content;
}

.pkc-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 6px;
}
.pkc-subtitle {
    font-size: 1rem;
    opacity: .8;
    margin-bottom: 16px;
    font-style: italic;
}
.pkc-desc {
    font-size: .9rem;
    opacity: .85;
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 420px;
}

.pkc-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.pkc-benefits li {
    font-size: .875rem;
    opacity: .9;
    padding: 7px 12px;
    background: rgba(255,255,255,.1);
    border-radius: 8px;
    border-left: 3px solid rgba(255,255,255,.4);
}

.pkc-free-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .6px;
    opacity: .7;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.pkc-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: .3px;
    transition: transform .2s, box-shadow .2s;
    width: fit-content;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.pkc-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.3); }
.vata-btn  { background: #fff; color: #4c3ab8; }
.pitta-btn { background: #fff; color: #c2410c; }
.kapha-btn { background: #fff; color: #166534; }

/* ── Visual side ── */
.pkc-visual {
    flex: .9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 36px;
    gap: 24px;
    background: rgba(0,0,0,.12);
}

/* Dosha orb */
.pkc-dosha-orb {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,.3);
    box-shadow: 0 0 0 12px rgba(255,255,255,.06), 0 12px 40px rgba(0,0,0,.25);
    text-align: center;
    gap: 4px;
    animation: pkcPulse 3s ease-in-out infinite;
}
@keyframes pkcPulse {
    0%,100% { box-shadow: 0 0 0 12px rgba(255,255,255,.06), 0 12px 40px rgba(0,0,0,.25); }
    50%      { box-shadow: 0 0 0 22px rgba(255,255,255,.03), 0 12px 40px rgba(0,0,0,.25); }
}
.vata-orb  { background: radial-gradient(circle at 35% 35%, #a78bfa, #4c3ab8); }
.pitta-orb { background: radial-gradient(circle at 35% 35%, #fb923c, #c2410c); }
.kapha-orb { background: radial-gradient(circle at 35% 35%, #4ade80, #166534); }

.pkc-orb-icon { font-size: 2.8rem; line-height: 1; }
.pkc-orb-name { font-size: 1.1rem; font-weight: 900; color: #fff; line-height: 1; }
.pkc-orb-elem { font-size: .68rem; color: rgba(255,255,255,.7); letter-spacing: .5px; }

/* Trait pills */
.pkc-trait-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 260px;
}
.pkc-pill {
    padding: 6px 13px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
    white-space: nowrap;
}

/* Stats row */
.pkc-stat-row {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 12px 20px;
    gap: 0;
    width: 100%;
    max-width: 260px;
    justify-content: center;
}
.pkc-stat { text-align: center; padding: 0 14px; }
.pkc-stat strong { display: block; font-size: 1.15rem; font-weight: 900; color: #fff; line-height: 1; }
.pkc-stat span   { font-size: .65rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; display: block; }
.pkc-stat-sep    { width: 1px; height: 28px; background: rgba(255,255,255,.2); }

/* ── Nav arrows ── */
.pkc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    font-size: 20px;
    color: #1e293b;
    z-index: 10;
    transition: transform .25s, box-shadow .25s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pkc-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.pkc-prev { left: -62px; }
.pkc-next { right: -62px; }

/* ── Dots ── */
.pkc-dots {
    text-align: center;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.pkc-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background .3s, transform .3s;
}
.pkc-dot.active {
    background: #2d6a4f;
    transform: scale(1.3);
}

/* ── Bottom CTA bar ── */
.pkc-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #1b4332, #2d6a4f);
    border-radius: 16px;
    padding: 22px 32px;
    flex-wrap: wrap;
    box-shadow: 0 8px 28px rgba(45,106,79,.25);
    max-width: 1000px;
    margin: 0 auto;
}
.pkc-bottom-text {
    color: rgba(255,255,255,.9);
    font-size: .9rem;
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
}
.pkc-bottom-text strong {
    color: #86efac;
    font-size: 1rem;
}
.pkc-bottom-btn {
    display: inline-block;
    padding: 13px 28px;
    background: #fff;
    color: #1b4332;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    flex-shrink: 0;
}
.pkc-bottom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    color: #1b4332;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pkc-prev { left: -18px; }
    .pkc-next { right: -18px; }
    .pkc-nav  { width: 40px; height: 40px; font-size: 16px; }
}

@media (max-width: 768px) {
    .pk-carousel-section { padding: 60px 0 50px; }

    .pkc-slide.active {
        flex-direction: column;
        min-height: unset;
    }

    .pkc-visual {
        padding: 28px 24px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        background: rgba(0,0,0,.15);
        gap: 16px;
    }

    .pkc-dosha-orb { width: 110px; height: 110px; }
    .pkc-orb-icon  { font-size: 2rem; }

    .pkc-content { padding: 32px 24px 20px; }
    .pkc-title   { font-size: 1.5rem; }
    .pkc-desc    { font-size: .85rem; }

    .pkc-prev { left: 8px; }
    .pkc-next { right: 8px; }
    .pkc-nav  {
        top: 180px;
        width: 36px; height: 36px;
        font-size: 14px;
    }

    .pkc-bottom-bar { padding: 18px 20px; text-align: center; }
    .pkc-bottom-text { text-align: center; }
    .pkc-bottom-btn  { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .pkc-title { font-size: 1.3rem; }
    .pkc-trait-pills { display: none; }
    .pkc-stat-row    { max-width: 100%; }
}
