/* ========================================
   Conceive Life - Enhanced Design
   Color Palette: Soft Pinks & Natural Tones
   ======================================== */

:root {
    /* Theme Colors (as per requirement) */
    --primary-color: #f88ba8;
    --dark-color: #0a2a43;
    --light-bg: #f7dbda;

    /* Primary Pink Palette */
    --primary-pink: #f88ba8;
    --primary-pink-light: #f8bbd0;
    --primary-pink-dark: #e91e63;
    --primary-pink-gradient: linear-gradient(135deg, #f8bbd0 0%, #f88ba8 50%, #e91e63 100%);

    /* Secondary Colors */
    --secondary-peach: #ffccbc;
    --secondary-rose: #fce4ec;
    --secondary-lavender: #f3e5f5;

    /* Accent Colors */
    --accent-gold: #ffd54f;
    --accent-coral: #ff7961;
    --accent-mint: #a5d6a7;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --gray: #9e9e9e;
    --dark-gray: #424242;
    --black: #0a2a43;

    /* Gradients */
    --gradient-pink: linear-gradient(135deg, #ffeef8 0%, #ffd6e7 100%);
    --gradient-peach: linear-gradient(135deg, #fff5f0 0%, #ffe4d6 100%);
    --gradient-rose: linear-gradient(135deg, #fff5f8 0%, #ffeef8 50%, #ffd6e7 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(240, 98, 146, 0.1);
    --shadow-md: 0 4px 16px rgba(240, 98, 146, 0.15);
    --shadow-lg: 0 8px 32px rgba(240, 98, 146, 0.2);
    --shadow-xl: 0 12px 48px rgba(240, 98, 146, 0.25);

    /* Typography */
    --font-heading: 'Cooper Black', system-ui, sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px;
}

/* ========================================
   Global Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    /* width: 40px; */
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    background: var(--primary-pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-gray) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-pink-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-pink) !important;
}

.nav-link:hover::after {
    width: 80%;
}

.btn-primary-custom {
    background: var(--primary-pink-gradient);
    color: var(--white) !important;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white) !important;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    background: var(--gradient-rose);
    padding: 60px 0 80px;
    position: relative;
}

.hero-decoration-1,
.hero-decoration-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-decoration-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-pink);
    top: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-decoration-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-coral);
    bottom: -50px;
    left: -50px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Buy eBook Now button – subtle floating animation (like floating-element) */
@keyframes btn-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(0.5deg);
    }
}

.btn-float-animate {
    animation: btn-float 3s ease-in-out infinite;
}

/* Buy eBook Now – highlighted CTA (gradient + glow + pulse) */
@keyframes btn-glow-pulse {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(233, 30, 99, 0.45), 0 0 0 0 rgba(248, 139, 168, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(233, 30, 99, 0.55), 0 0 0 8px rgba(248, 139, 168, 0);
    }
}

/* Keep original btn-primary look; only add float + glow pulse */
.btn-cta-highlight {
    animation: btn-float 3s ease-in-out infinite, btn-glow-pulse 2.5s ease-in-out infinite;
}

.btn-cta-highlight:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 36px rgba(248, 139, 168, 0.45), 0 0 20px rgba(248, 139, 168, 0.25);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--primary-pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.btn-hero-primary {
    background: var(--primary-pink-gradient);
    border: none;
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-secondary {
    background: var(--white);
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    animation: fadeInUp 1s ease;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    /* box-shadow: var(--shadow-xl); */
    position: relative;
    z-index: 2;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.floating-element i {
    font-size: 1.5rem;
    color: var(--primary-pink);
}

.float-1 {
    top: 10%;
    right: 0px;
    animation: float 3s ease-in-out infinite;
}

.float-2 {
    top: 50%;
    left: 0px;
    animation: float 4s ease-in-out infinite 0.5s;
}

.float-3 {
    bottom: 10%;
    right: 0px;
    animation: float 3.5s ease-in-out infinite 1s;
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 3;
}

.stat-item {
    background: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-pink);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

/* ========================================
   Section Styles
   ======================================== */

.section-padding {
    padding: var(--section-padding) 0;
}

.section-label {
    display: inline-block;
    background: var(--primary-pink-light);
    color: var(--primary-pink-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-description {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.bg-gradient-light {
    background: var(--gradient-peach);
}

/* ========================================
   Home Page - Video Section
   ======================================== */

.home-video-section {
    background: #fff;
}

.home-video-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: #111;
}

.home-video-el {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    vertical-align: top;
    background: #000;
}

@media (max-width: 768px) {
    .home-video-section .container {
        padding-left: 16px;
        padding-right: 16px;
        max-width: 100%;
    }
    .home-video-wrap {
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
    }
    .home-video-el {
        width: 100%;
        max-width: 100%;
        min-height: 200px;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: contain;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
    }
}

/* ========================================
   Feature Cards
   ======================================== */

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    /* height: 100%; */
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-pink);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-pink-dark);
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   eBook Showcase
   ======================================== */

.ebook-showcase {
    position: relative;
}

.ebook-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--primary-pink-light) 0%, transparent 70%);
    opacity: 0.4;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

.ebook-features {
    margin-top: 2rem;
}

.ebook-feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--gradient-rose);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.ebook-feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.feature-icon-small i {
    font-size: 1.3rem;
    color: var(--primary-pink);
}

.feature-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.feature-content p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    background: transparent;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background: var(--primary-pink-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Learning Cards
   ======================================== */

.learning-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.learning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-pink-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.learning-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink-light);
}

.learning-card:hover::before {
    transform: scaleX(1);
}

.learning-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-pink-light);
    opacity: 0.3;
    font-family: var(--font-heading);
}

.learning-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-pink);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.learning-icon i {
    font-size: 1.8rem;
    color: var(--primary-pink-dark);
}

.learning-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.learning-card p {
    color: var(--gray);
    margin: 0;
}

/* ========================================
   Author Section
   ======================================== */

.author-section {
    background: var(--white);
}

.author-image-wrapper {
    position: relative;
}

.author-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-pink);
    border-radius: 20px;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.author-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.author-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    white-space: nowrap;
}

.author-badge i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.author-subtitle {
    font-size: 1.2rem;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.credentials-box {
    background: var(--gradient-rose);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-pink);
}

.credentials-box h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credentials-list li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-gray);
}

.credentials-list i {
    color: var(--primary-pink);
    font-size: 0.9rem;
}

/* ========================================
   Testimonials
   ======================================== */

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink-light);
}

.testimonial-card.featured {
    background: var(--gradient-pink);
    border-color: var(--primary-pink);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-pink-gradient);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--accent-gold);
}

.stars i {
    font-size: 1.1rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-pink-light);
}

.testimonial-author h6 {
    margin: 0;
    font-size: 1rem;
    color: var(--black);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray);
}

/* Testimonials Carousel (3 cards per slide) */
#testimonialsCarousel {
    padding: 0 3rem;
    position: relative;
}
#testimonialsCarousel .carousel-inner {
    min-height: 320px;
}
#testimonialsCarousel .carousel-item {
    padding: 1rem 0;
}
#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--primary-pink, #d63384);
    opacity: 0.9;
    border: none;
}
#testimonialsCarousel .carousel-control-prev { left: 0; }
#testimonialsCarousel .carousel-control-next { right: 0; }
#testimonialsCarousel .carousel-control-prev:hover,
#testimonialsCarousel .carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-pink, #d63384);
}
#testimonialsCarousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(214, 51, 132, 0.4);
    border: none;
}
#testimonialsCarousel .carousel-indicators button.active {
    background-color: var(--primary-pink, #d63384);
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-pink);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-pink-dark);
}

.stat-content h3 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--black);
}

.stat-content p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing-section {
    background: var(--gradient-rose);
}

.pricing-card {
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    border: 3px solid var(--primary-pink-light);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-pink-gradient);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pricing-header {
    background: var(--gradient-pink);
    padding: 2.5rem 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.pricing-header p {
    margin: 0;
    color: var(--gray);
}

.pricing-price {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
}

.pricing-price .currency {
    font-size: 2rem;
    vertical-align: super;
    color: var(--primary-pink);
    font-weight: 700;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--black);
    font-family: var(--font-heading);
}

.pricing-price .decimal {
    font-size: 2.5rem;
    color: var(--gray);
    font-weight: 700;
}

.price-note {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.pricing-includes {
    padding: 2rem;
    background: var(--off-white);
}

.pricing-includes h5 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.includes-list li:last-child {
    border-bottom: none;
}

.includes-list i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-pricing-primary {
    background: var(--primary-pink-gradient);
    border: none;
    color: var(--white);
    padding: 1.2rem 2rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    margin: 2rem;
}

.btn-pricing-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.pricing-security {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem 2rem;
    background: var(--gradient-rose);
    border-radius: 0 0 30px 30px;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.security-item i {
    color: var(--primary-pink);
    font-size: 1.5rem;
}

.security-item span {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* ========================================
   FAQ Section
   ======================================== */

.custom-accordion .accordion-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    border-color: var(--primary-pink-light);
    box-shadow: var(--shadow-sm);
}

.custom-accordion .accordion-button {
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--gradient-pink);
    color: var(--black);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-accordion .accordion-button::after {
    background-image: none;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "\f106";
}

.custom-accordion .accordion-body {
    padding: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: var(--primary-pink-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    10%,
    30% {
        transform: scale(1.1);
    }

    20%,
    40% {
        transform: scale(1);
    }
}

.cta-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: var(--white);
    color: var(--primary-pink);
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--black);
    background: var(--white);
}

.btn-cta:hover i {
    color: var(--black);
}

.cta-guarantee {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand .footer-logo {
    /* width: 32px; */
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-pink);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-pink);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        position: static;
        transform: none;
        margin-top: 2rem;
        justify-content: center;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-features {
        font-size: 0.9rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .pricing-security {
        flex-direction: column;
        gap: 1rem;
    }

    .author-decoration {
        display: none;
    }
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    pointer-events: auto;
}

/* ========================================
   Utility Classes
   ======================================== */

.text-pink,
.text-primary {
    color: var(--primary-pink) !important;
}

.bg-pink {
    background: var(--primary-pink) !important;
}

.bg-gradient-pink {
    background: var(--primary-pink-gradient) !important;
}

/* ========================================
   Policy Pages Styles
   ======================================== */

.policy-header {
    background: var(--gradient-rose);
    padding: 80px 0 80px;
    position: relative;
}

.policy-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.policy-icon i {
    font-size: 3rem;
    color: var(--white);
}

.policy-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black);
}

.policy-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.policy-content {
    background: var(--white);
}

.policy-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.policy-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.policy-card h2 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-pink-light);
}

.policy-card h3 {
    font-size: 1.3rem;
    color: var(--primary-pink-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-card p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-card ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-card ul li {
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.policy-card ul li strong {
    color: var(--black);
}

.policy-card a {
    color: var(--primary-pink);
    font-weight: 600;
    text-decoration: none;
}

.policy-card a:hover {
    color: var(--primary-pink-dark);
    text-decoration: underline;
}

.contact-info {
    background: var(--gradient-pink);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.highlight-card {
    background: var(--gradient-pink);
    border-left-color: var(--primary-pink-dark);
}

.policy-navigation {
    margin-top: 3rem;
}

.policy-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    height: 100%;
}

.policy-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-pink-light);
}

.policy-nav-card i {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.policy-nav-card h5 {
    color: var(--black);
    margin: 0;
    font-size: 1.1rem;
}

.policy-nav-card:hover h5 {
    color: var(--primary-pink);
}

/* Responsive for Policy Pages */
@media (max-width: 767px) {
    .policy-header {
        padding: 120px 0 60px;
    }

    .policy-title {
        font-size: 2rem;
    }

    .policy-card {
        padding: 1.5rem;
    }

    .policy-card h2 {
        font-size: 1.5rem;
    }

    .policy-card h3 {
        font-size: 1.2rem;
    }
}

/* ========================================
   Blog Styles
   ======================================== */

.blog-header {
    background: var(--gradient-rose);
    padding: 60px 0 60px;
    position: relative;
    /* margin-top: 70px; */
}

.blog-header-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.blog-header-icon i {
    font-size: 3rem;
    color: var(--white);
}

.blog-header-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.blog-categories {
    background: var(--white);
    padding: 2rem 0;
    position: sticky;
    top: 70px;
    z-index: 99;
    box-shadow: var(--shadow-sm);
}

.category-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    background: var(--gradient-pink);
    border: 2px solid transparent;
    color: var(--dark-gray);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-pink-gradient);
    color: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.blog-articles {
    background: var(--light-gray);
    padding: 80px 0;
    min-height: 500px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card.featured {
    border: 3px solid var(--primary-pink);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-card.featured .blog-image {
    height: 400px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-pink-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
}

.blog-category {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--white);
    color: var(--primary-pink);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-title a {
    color: var(--black);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.blog-card.featured .blog-title a {
    font-size: 2rem;
}

.blog-title a:hover {
    color: var(--primary-pink);
}

.blog-excerpt {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-pink-light);
}

.blog-author span {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.btn-read-more {
    background: var(--primary-pink-light);
    color: var(--primary-pink-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-read-more:hover {
    background: var(--primary-pink);
    color: var(--white);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.sidebar-widget.cta-widget {
    background: var(--gradient-rose);
    border: 2px solid rgba(248, 139, 168, 0.3);
}

.cta-widget-content {
    text-align: center;
}

.cta-widget-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--primary-pink-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.cta-widget-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.cta-widget-content p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.btn-cta-sidebar {
    background: var(--primary-pink-gradient) !important;
    border: none !important;
    color: #fff !important;
    padding: 0.75rem 1.25rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.btn-cta-sidebar:hover {
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.35) !important;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.search-box {
    position: relative;
}

.search-box .form-control {
    padding: 1rem 3rem 1rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--light-gray);
}

.search-box .form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: none;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-pink-gradient);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.popular-post-item:hover {
    background: var(--gradient-pink);
}

.popular-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.popular-post-content h5 {
    font-size: 0.95rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.post-date {
    font-size: 0.8rem;
    color: var(--gray);
}

.pagination-wrapper {
    margin-top: 3rem;
}

.pagination {
    gap: 0;
}

.pagination .page-link {
    border: 2px solid var(--primary-pink-light);
    color: var(--primary-pink);
    padding: 0.8rem 1.2rem;
    margin: 0 0.3rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination .page-item.active .page-link {
    background: var(--primary-pink-gradient);
    border-color: var(--primary-pink);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(248, 139, 168, 0.3);
}

.pagination .page-link:hover:not(.page-item.active .page-link) {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.pagination .page-item.disabled .page-link {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-item.disabled .page-link:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
    transform: none;
}


/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-rose);
    padding: 80px 0;
}

.newsletter-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.newsletter-box i {
    font-size: 3rem;
    color: var(--primary-pink);
}

.newsletter-box h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.newsletter-box p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding: 1rem 1.5rem;
    border-radius: 50px 0 0 50px;
    border: 2px solid var(--light-gray);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 1rem 2rem;
}

/* ========================================
   Blog Detail Page Styles
   ======================================== */

.blog-detail-header {
    background: var(--gradient-rose);
    padding: 100px 0 50px;
    position: relative;
}

.blog-detail-back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-pink-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.blog-detail-back-link:hover {
    color: var(--primary-pink);
    transform: translateX(-4px);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0.5rem;
}

.breadcrumb-item a {
    color: var(--primary-pink);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--gray);
}

.article-category {
    margin-bottom: 1.5rem;
}

.category-badge {
    background: var(--primary-pink-light);
    color: var(--primary-pink-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.article-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.article-meta-date {
    color: var(--gray);
    font-size: 0.95rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-pink);
}

.author-info div {
    color: var(--gray);
}

.author-info strong {
    color: var(--black);
    display: block;
    margin-bottom: 0.3rem;
}

.meta-separator {
    margin: 0 0.5rem;
}

.share-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-right: 0.5rem;
    align-self: center;
}

.social-share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.social-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-share-btn.facebook {
    background: #3b5998;
}

.social-share-btn.twitter {
    background: #1da1f2;
}

.social-share-btn.linkedin {
    background: #0077b5;
}

.social-share-btn.pinterest {
    background: #bd081c;
}

.social-share-btn.email {
    background: #ea4335;
}

.article-featured-image {
    background: #f8f9fa;
    padding: 2rem 0 3rem;
}

.article-featured-figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.article-featured-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-featured-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.article-content {
    background: var(--white);
}

.article-body {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.article-body-image {
    margin: 0 0 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.article-body-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-prose {
    width: 100%;
}

.article-prose blockquote {
    border-left: 4px solid var(--primary-pink);
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: var(--dark-gray);
    font-style: italic;
}

.article-prose a {
    color: var(--primary-pink-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-prose a:hover {
    color: var(--primary-pink);
}

.article-body h2 {
    font-size: 2rem;
    color: var(--black);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-pink-light);
}

.article-body h3 {
    font-size: 1.5rem;
    color: var(--primary-pink-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-body li {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.article-body .lead {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.9;
}

/* Callout Boxes */
.info-callout,
.warning-callout,
.success-callout {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.info-callout {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.warning-callout {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.success-callout {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.info-callout i,
.warning-callout i,
.success-callout i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-callout i {
    color: #2196f3;
}

.warning-callout i {
    color: #ff9800;
}

.success-callout i {
    color: #4caf50;
}

.info-callout strong,
.warning-callout strong,
.success-callout strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.hormone-card {
    background: var(--gradient-pink);
    padding: 1.5rem;
    border-radius: 15px;
    height: 100%;
}

.hormone-card h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.8rem;
}

.hormone-card p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
}

.article-tags {
    background: #f8f9fa;
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.article-tags-title {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.article-tags .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-tags h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.tag-badge {
    display: inline-block;
    background: var(--primary-pink-light);
    color: var(--primary-pink-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background: var(--primary-pink);
    color: var(--white);
}

.author-bio {
    background: var(--gradient-rose);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-pink);
}

.author-bio-content h4 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.8rem;
}

.author-bio-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 0.8rem;
}

.author-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-social a:hover {
    background: var(--primary-pink-dark);
    transform: translateY(-3px);
}

.share-article {
    background: #f8f9fa;
    padding: 1.75rem 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-align: center;
}

.share-article h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 1.25rem;
}

.share-article-buttons {
    justify-content: center;
}

.share-article .social-share-btn {
    width: auto;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    gap: 0.4rem;
}

.related-articles {
    background: var(--white);
    padding: 2rem 0 0;
    margin-top: 0.5rem;
}

.related-articles-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 0.35rem;
}

.related-articles-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.related-articles h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.related-article-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: var(--white);
}

.related-article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.related-article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-article-content {
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-top: 1px solid #f0f0f0;
}

.related-category {
    display: inline-block;
    background: var(--primary-pink);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.related-article-content h5 {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.related-date {
    font-size: 0.85rem;
    color: var(--gray);
}

.sticky-sidebar {
    position: sticky;
    top: 150px;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.8rem;
}

.toc-list a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.toc-list a:hover {
    background: var(--gradient-pink);
    color: var(--primary-pink-dark);
}

/* Blog Responsive */
@media (max-width: 991px) {
    .blog-header-title {
        font-size: 2.5rem;
    }

    .article-title {
        font-size: 2.5rem;
    }

    .sticky-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .blog-header {
        padding: 120px 0 60px;
    }

    .blog-header-title {
        font-size: 2rem;
    }

    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .blog-card.featured .blog-image {
        height: 250px;
    }

    .blog-card.featured .blog-title a {
        font-size: 1.5rem;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-body {
        padding: 1.5rem 1.25rem;
    }

    .article-featured-img {
        aspect-ratio: 16 / 10;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-social {
        justify-content: center;
    }

    .share-article .social-share-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .share-article .social-share-btn {
        flex: 1 1 auto;
        min-width: 120px;
    }

    .share-article .social-share-btn {
        width: 100%;
    }
}

/* ========================================
   Checkout Page Styles
   ======================================== */

.checkout-header {
    background: var(--gradient-rose);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    /* margin-top: 70px; */
}

.checkout-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.checkout-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-coral) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.12;
    z-index: 0;
}

.checkout-header .container {
    position: relative;
    z-index: 1;
}

.checkout-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.checkout-icon i {
    font-size: 3rem;
    color: var(--white);
}

.checkout-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid var(--light-gray);
}

.step.active .step-circle {
    background: var(--primary-pink-gradient);
    color: var(--white);
    border-color: var(--primary-pink);
}

.step span {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
}

.step.active span {
    color: var(--primary-pink-dark);
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--light-gray);
}

.checkout-content {
    background: var(--light-gray);
    padding: 80px 0;
    min-height: 500px;
}

.checkout-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-section-title i {
    color: var(--primary-pink);
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.8rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(248, 139, 168, 0.25);
}

.form-text {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.payment-methods {
    display: flex;
    /* flex-direction: column; */
    gap: 1rem;
    float: right;
}

.payment-method-option {
    position: relative;
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-option:hover {
    border-color: var(--primary-pink-light);
    background: var(--gradient-pink);
}

.payment-method-option.active {
    border-color: var(--primary-pink);
    background: var(--gradient-pink);
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-method-option label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin: 0;
    width: 100%;
}

.payment-method-option label i {
    font-size: 1.5rem;
    color: var(--primary-pink);
}

.card-icons {
    display: flex;
    gap: 0.5rem;
}

.card-icons i {
    font-size: 1.8rem;
}

.payment-form-content {
    margin-top: 1.5rem;
}

.payment-info-box {
    background: var(--gradient-pink);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-pink);
    display: flex;
    align-items: start;
    gap: 1rem;
}

.payment-info-box i {
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-top: 0.2rem;
}

/* Enhanced Razorpay Payment Section */
.razorpay-payment-wrapper {
    margin-top: 1.5rem;
}

.razorpay-payment-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--primary-pink-light);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.razorpay-payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3395FF 0%, #3395FF 50%, var(--primary-pink) 100%);
}

.razorpay-payment-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--primary-pink);
}

.razorpay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.razorpay-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.razorpay-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3395FF 0%, #2E7CD6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(51, 149, 255, 0.3);
}

.razorpay-logo i {
    font-size: 2rem;
    color: var(--white);
}

.razorpay-title-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.razorpay-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
}

.razorpay-subtitle {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
}

.razorpay-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-rose);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-pink-dark);
}

.razorpay-badge i {
    color: var(--primary-pink);
    font-size: 1rem;
}

.razorpay-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.razorpay-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gradient-rose);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.razorpay-feature-item:hover {
    background: var(--gradient-pink);
    border-color: var(--primary-pink-light);
    transform: translateX(5px);
}

.razorpay-feature-item i {
    font-size: 1.5rem;
    color: var(--primary-pink);
    width: 30px;
    text-align: center;
}

.razorpay-feature-item span {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
}

.razorpay-info-box {
    background: linear-gradient(135deg, #E3F2FD 0%, #F3E5F5 100%);
    border: 2px solid var(--primary-pink-light);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.info-content h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.info-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 1rem;
}

.razorpay-security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--light-gray);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--gradient-rose);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-gray);
    flex: 1;
    min-width: 150px;
    justify-content: center;
}

.security-item i {
    color: var(--primary-pink);
    font-size: 1rem;
}

/* Responsive Design for Razorpay Section */
@media (max-width: 768px) {
    .razorpay-payment-card {
        padding: 1.5rem;
    }

    .razorpay-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .razorpay-logo-wrapper {
        width: 100%;
    }

    .razorpay-badge {
        align-self: flex-start;
    }

    .razorpay-features {
        grid-template-columns: 1fr;
    }

    .razorpay-info-box {
        flex-direction: column;
    }

    .razorpay-security-features {
        flex-direction: column;
    }

    .security-item {
        width: 100%;
    }
}

.btn-checkout-primary {
    background: var(--primary-pink-gradient);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-checkout-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-checkout-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.85rem;
}

.security-badge i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

/* Order Summary */
.order-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.order-summary-title {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.order-summary-title i {
    color: var(--primary-pink);
}

.product-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gradient-pink);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.product-item img {
    width: 100px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.product-details h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.product-details p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-badge {
    background: var(--primary-pink);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.feature-badge i {
    font-size: 0.6rem;
}

.currency-selector {
    margin-bottom: 1.5rem;
}

.currency-selector label {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.8rem;
    display: block;
}

.price-breakdown {
    background: var(--gradient-rose);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    color: var(--dark-gray);
}

.price-row:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.total-row {
    font-size: 1.3rem;
    color: var(--black);
    padding-top: 1rem;
}

.discount-row {
    color: #28a745;
}

.discount-code {
    font-size: 0.85rem;
    color: var(--gray);
}

.promo-code {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.promo-code .form-control {
    flex: 1;
}

.btn-apply-promo {
    background: var(--primary-pink);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-apply-promo:hover {
    background: var(--primary-pink-dark);
}

.whats-included {
    background: var(--gradient-pink);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.whats-included h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.whats-included h4 i {
    color: var(--primary-pink);
}

.whats-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.whats-included li {
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    align-items: start;
    gap: 0.8rem;
}

.whats-included li i {
    color: var(--primary-pink);
    margin-top: 0.2rem;
}

.guarantee-box {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guarantee-icon i {
    font-size: 2.5rem;
    color: #4caf50;
}

.guarantee-content h5 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.trust-badge i {
    font-size: 2rem;
    color: var(--primary-pink);
}

.trust-badge span {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.checkout-faq {
    padding: 60px 0;
}

.checkout-faq .accordion-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    margin-bottom: 1rem;
}

.checkout-faq .accordion-button {
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    padding: 1.2rem;
}

.checkout-faq .accordion-button:not(.collapsed) {
    background: var(--gradient-pink);
}

/* Checkout Responsive */
@media (max-width: 991px) {
    .checkout-title {
        font-size: 2.5rem;
    }

    .order-summary {
        position: static;
    }
}

@media (max-width: 767px) {
    .checkout-header {
        padding: 100px 0 40px;
    }

    .checkout-title {
        font-size: 2rem;
    }

    .checkout-steps {
        gap: 0.5rem;
    }

    .step span {
        font-size: 0.75rem;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-line {
        width: 30px;
    }

    .checkout-form {
        padding: 1.5rem;
    }

    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .form-section-title {
        font-size: 1.2rem;
    }

    .payment-method-option label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .card-icons {
        margin-top: 0.5rem;
    }

    .security-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .product-item {
        flex-direction: column;
        text-align: center;
    }

    .product-item img {
        margin: 0 auto;
    }

    .product-features {
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
    }
}

/* ========================================
   CONSULTATION BOOKING PAGE STYLES
======================================== */

/* Consultation Hero Section */
.consultation-hero {
    padding: 80px 0 80px;
    background: var(--gradient-rose);
    position: relative;
    overflow: hidden;
    /* margin-top: 70px; */
}

.consultation-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.consultation-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-coral) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.12;
    z-index: 0;
}

.consultation-hero .container {
    position: relative;
    z-index: 1;
}

.consultation-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.consultation-hero-highlight {
    color: var(--primary-pink);
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consultation-hero-description {
    font-size: 1.25rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Consultation features list – card wrapper and list */
.consultation-hero .consultation-features-wrapper {
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 250, 0.95) 100%);
    border-radius: 20px;
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(248, 113, 113, 0.08);
    border-left: 4px solid var(--primary-pink);
}

.consultation-hero .consultation-features-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.15rem;
    letter-spacing: -0.02em;
}

.consultation-hero .consultation-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.consultation-hero .consultation-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-gray);
    padding: 0.75rem 0.85rem;
    margin: 0 -0.85rem;
    transition: background 0.2s ease, color 0.2s ease;
    border-radius: 10px;
}

.consultation-hero .consultation-feature-item:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
}

.consultation-hero .consultation-feature-icon {
    color: var(--primary-pink);
    font-size: 1.15rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pink);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(248, 113, 113, 0.25);
    transition: color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.consultation-hero .consultation-feature-item:hover .consultation-feature-icon {
    color: var(--primary-pink-dark);
    transform: scale(1.06);
    box-shadow: 0 3px 12px rgba(248, 113, 113, 0.35);
}

/* Doctor Card */
.doctor-card {
    animation: fadeInUp 0.8s ease-in-out;
}

.doctor-card-wrapper {
    background: var(--white);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-pink-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.doctor-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-pink-gradient);
}

.doctor-card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-pink);
}

.doctor-card-body {
    text-align: center;
}

.doctor-image {
    position: relative;
    display: inline-block;
}

.doctor-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-pink);
    box-shadow: 0 8px 25px rgba(248, 139, 168, 0.3);
    transition: all 0.3s ease;
}

.doctor-card-wrapper:hover .doctor-img {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(248, 139, 168, 0.4);
}

.doctor-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.doctor-title {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.credential-badge {
    background: var(--gradient-pink);
    color: var(--primary-pink-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--primary-pink-light);
}

.doctor-quote {
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--gradient-rose);
    border-radius: 15px;
    border-left: 4px solid var(--primary-pink);
}

.quote-icon {
    color: var(--primary-pink);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Booking Section */
.booking-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.booking-card {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-pink-light);
}

.booking-card .card-header {
    background: var(--primary-pink-gradient);
    color: var(--white);
    border: none;
    padding: 2rem;
    text-align: center;
}

.booking-card .card-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.booking-card .card-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Consultation Type Selector */
.consultation-type-selector .btn-check:checked+label {
    background: var(--primary-pink-gradient);
    color: var(--white);
    border-color: var(--primary-pink);
    box-shadow: 0 6px 20px rgba(248, 139, 168, 0.3);
}

.consultation-type-selector label {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    border: 2px solid var(--light-gray);
    background: var(--white);
}

.consultation-type-selector label:hover {
    border-color: var(--primary-pink-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(248, 139, 168, 0.2);
    background: var(--gradient-rose);
}

.consultation-type-selector .price-badge {
    font-size: 1.3rem;
    color: var(--primary-pink);
    font-weight: 700;
}

.consultation-type-selector .btn-check:checked+label .price-badge {
    color: var(--white);
}

/* Form Styles */
.booking-card .section-title {
    border-bottom: 3px solid var(--primary-pink-light);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.booking-card .section-title h5 {
    color: var(--black);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.booking-card .form-label {
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.booking-card .form-control,
.booking-card .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(248, 139, 168, 0.25);
    outline: none;
}

.booking-card .form-control.is-valid,
.booking-card .form-select.is-valid {
    border-color: #28a745;
}

.booking-card .form-control.is-invalid,
.booking-card .form-select.is-invalid {
    border-color: #dc3545;
}

.booking-card .invalid-feedback,
.booking-card .valid-feedback {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.booking-card textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Alert Styles */
.booking-card .alert {
    border-radius: 10px;
    border: none;
    margin-bottom: 2rem;
}

.booking-card .alert-success {
    background-color: #d4edda;
    color: #155724;
}

.booking-card .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.booking-card .alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* Submit Button */
.btn-submit-consultation {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    background: var(--primary-pink-gradient);
    color: var(--white);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(248, 139, 168, 0.4);
    width: 100%;
}

.btn-submit-consultation:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(248, 139, 168, 0.5);
    color: var(--white);
}

.btn-submit-consultation:active {
    transform: translateY(-2px);
}

.booking-card .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Why Book Section */
.why-book-section {
    background: var(--white);
    padding: 80px 0;
}

.why-book-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.why-book-subtitle {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid var(--primary-pink-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-pink-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--primary-pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(248, 139, 168, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(248, 139, 168, 0.4);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--white);
}

.benefit-title {
    font-family: var(--font-heading);
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Trust Section (below Why Book boxes) */
.trust-section {
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0 1rem;
}

.trust-section-inner {
    background: linear-gradient(145deg, #fff8fa 0%, #fff0f5 50%, #ffe8f0 100%);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(248, 187, 208, 0.5);
    box-shadow: 0 4px 24px rgba(248, 139, 168, 0.08);
}

/* Stats-style trust section (red icon squares + bold metrics) */
.trust-section-stats .trust-section-inner {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.trust-stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    height: 100%;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.trust-section-stats .trust-stat-col.animate-in .trust-stat-block {
    opacity: 1;
    transform: translateY(0);
}

.trust-section-stats .trust-stat-col:nth-child(1) .trust-stat-block { transition-delay: 0.1s; }
.trust-section-stats .trust-stat-col:nth-child(2) .trust-stat-block { transition-delay: 0.2s; }
.trust-section-stats .trust-stat-col:nth-child(3) .trust-stat-block { transition-delay: 0.3s; }
.trust-section-stats .trust-stat-col:nth-child(4) .trust-stat-block { transition-delay: 0.4s; }

.trust-stat-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-pink-dark);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.trust-stat-block:hover .trust-stat-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(233, 30, 99, 0.4);
}

.trust-stat-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.trust-stat-metric {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a365d;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.trust-stat-metric .trust-star {
    color: var(--primary-pink-dark);
    font-size: 2rem;
    margin-left: 2px;
}

.trust-stat-metric .trust-unit,
.trust-stat-metric .trust-star {
    font-weight: 700;
}

.trust-stat-metric-text {
    font-size: 2rem;
}

.trust-stat-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .trust-stat-metric {
        font-size: 2rem;
    }
    .trust-section-stats .trust-stat-col.animate-in .trust-stat-block {
        transition-delay: 0s;
    }
}

/* FAQ Section */
.faq-section .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-section .accordion-button {
    background-color: white;
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--gradient-rose);
    color: var(--primary-pink-dark);
    box-shadow: none;
    font-weight: 700;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f88ba8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 1.25rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

/* Consultation CTA Section */
.consultation-cta-section {
    background: var(--primary-pink-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.consultation-cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.consultation-cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.consultation-cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cta-buttons-wrapper {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-pink-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--black);
    background: var(--white);
}

.btn-cta-primary:hover i {
    color: var(--black);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-cta-secondary:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--black);
    border-color: var(--white);
}

.btn-cta-secondary:hover i {
    color: var(--black);
}

/* Responsive Design for Consultation Page */
@media (max-width: 992px) {
    .consultation-hero-title {
        font-size: 2.8rem;
    }

    .why-book-title {
        font-size: 2.3rem;
    }

    .cta-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .consultation-hero {
        padding: 100px 0 60px;
    }

    .consultation-hero-title {
        font-size: 2.2rem;
    }

    .consultation-hero-description {
        font-size: 1.1rem;
    }

    .doctor-img {
        width: 150px;
        height: 150px;
    }

    .doctor-name {
        font-size: 1.5rem;
    }

    .booking-card .card-header h2 {
        font-size: 1.6rem;
    }

    .why-book-title {
        font-size: 2rem;
    }

    .why-book-subtitle {
        font-size: 1.1rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .benefit-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .benefit-title {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .btn-submit-consultation {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* ========================================
   ADDONS PAGE STYLES
   ======================================== */

/* Addons Header */
.addons-header {
    background: var(--gradient-rose);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    /* margin-top: 70px; */
}

.addons-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.addons-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-coral) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.12;
    z-index: 0;
}

.addons-header .container {
    position: relative;
    z-index: 1;
}

.addons-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.addons-icon i {
    font-size: 3rem;
    color: var(--white);
}

.addons-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.addons-subtitle {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.addons-info {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-top: 1.5rem;
}

.addons-info i {
    color: var(--primary-pink);
}

/* Addon Detail Section */
.addon-detail-section {
    background: var(--white);
    padding: 80px 0;
}

.addon-detail-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-pink-light);
    position: relative;
    overflow: hidden;
}

.addon-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-pink-gradient);
}

.addon-badge {
    position: absolute;
    top: 1rem;
    right: 2rem;
    background: var(--primary-pink-gradient);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.addon-badge.bestseller {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffb347 100%);
    color: var(--black);
}

.addon-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.addon-featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.addon-image-wrapper:hover .addon-featured-image {
    transform: scale(1.05);
}

.addon-image-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.overlay-badge {
    background: var(--primary-pink-gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.addon-detail-content {
    padding-left: 2rem;
}

.addon-detail-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.addon-detail-description {
    font-size: 1.15rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.addon-price-section {
    background: var(--gradient-rose);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-pink-dark);
    font-family: var(--font-heading);
}

.decimal {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink-dark);
}

.price-note {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

.addon-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-purchase-addon {
    flex: 1;
    min-width: 200px;
    background: var(--primary-pink-gradient);
    color: var(--white);
    padding: 1.25rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(248, 139, 168, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-purchase-addon:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(248, 139, 168, 0.5);
    color: var(--white);
}

.btn-view-details {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4ec 50%, #ffd6e3 100%);
    color: #c2185b;
    padding: 1.25rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 2px solid var(--primary-pink);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.35s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-view-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-view-details:hover {
    background: linear-gradient(135deg, #f8bbd0 0%, #f48fb1 50%, #e91e63 100%);
    color: var(--white);
    border-color: #d81b60;
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(233, 30, 99, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-view-details:hover::before {
    left: 100%;
}

.btn-view-details:active {
    transform: translateY(-2px);
}

.addon-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.addon-guarantee i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

/* Features Section */
.addon-features-section {
    background: #fff5f8;
    padding: 80px 0;
}

/* Feature cards - icon with no background (icon only on white card) */
.addon-features-section .feature-icon-wrapper {
    width: auto;
    height: auto;
    min-width: unset;
    min-height: unset;
    background: none !important;
    border: none !important;
    border-radius: 0;
    box-shadow: none !important;
    display: block;
    margin-bottom: 1rem;
    transition: none;
}

.addon-features-section .feature-icon-wrapper::before {
    display: none;
}

.addon-features-section .feature-card:hover .feature-icon-wrapper {
    transform: none;
}

.addon-features-section .feature-icon-wrapper .feature-icon,
.addon-features-section .feature-icon-wrapper i {
    font-size: 2.5rem !important;
    color: var(--primary-pink-dark) !important;
    width: auto !important;
    height: auto !important;
    min-width: unset !important;
    min-height: unset !important;
    display: inline-block;
    filter: none;
    transition: color 0.3s ease;
}

.addon-features-section .feature-card:hover .feature-icon-wrapper .feature-icon,
.addon-features-section .feature-card:hover .feature-icon-wrapper i {
    transform: none;
    color: var(--primary-pink) !important;
}

.addon-features-section .feature-card {
    text-align: left;
    border: 2px solid var(--primary-pink-light);
    border-radius: 16px;
    padding: 2rem;
}

.addon-features-section .feature-title {
    color: #1a365d;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.addon-features-section .feature-description {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.section-header {
    margin-bottom: 3rem;
}

.features-title,
.benefits-title,
.how-it-works-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.features-subtitle,
.benefits-subtitle,
.how-it-works-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary-pink-light);
    transition: all 0.3s ease;
    /* height: 100%; */
    /* text-align: center; */
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto 1.5rem; */
    box-shadow: 0 6px 20px rgba(248, 139, 168, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(248, 139, 168, 0.4);
}

.feature-icon {
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Benefits Section */
.addon-benefits-section {
    background: var(--white);
    padding: 80px 0;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: var(--gradient-rose);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-pink-light);
    box-shadow: var(--shadow-md);
}

.benefit-icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-pink-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.benefit-icon-box i {
    font-size: 1.8rem;
    color: var(--white);
}

.benefit-content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.benefit-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-pink);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-width: 8px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.addon-cta-section {
    background: var(--primary-pink-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.addon-cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.addon-cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.addon-cta-section .container {
    position: relative;
    z-index: 1;
}

.addon-cta-section .cta-buttons a {
    display: inline-flex !important;
    visibility: visible !important;
}

.cta-content-wrapper {
    text-align: center;
}

.cta-icon {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    flex-shrink: 0;
    min-width: 200px;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--primary-pink-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--black);
    background: var(--white);
}

.btn-cta-primary:hover i {
    color: var(--black);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-pink-dark);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary:hover {
    transform: translateY(-5px);
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary:hover i {
    color: var(--black);
}

.cta-guarantee {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.cta-guarantee i {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 992px) {
    .addons-title {
        font-size: 2.8rem;
    }

    .addon-detail-content {
        padding-left: 0;
        padding-top: 2rem;
    }

    .addon-detail-title {
        font-size: 2rem;
    }

    .features-title,
    .benefits-title,
    .how-it-works-title {
        font-size: 2.3rem;
    }

    .cta-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .addons-header {
        padding: 100px 0 60px;
    }

    .addons-icon {
        width: 80px;
        height: 80px;
    }

    .addons-icon i {
        font-size: 2.5rem;
    }

    .addons-title {
        font-size: 2.2rem;
    }

    .addons-subtitle {
        font-size: 1.1rem;
    }

    .addon-detail-card {
        padding: 2rem 1.5rem;
    }

    .addon-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .addon-detail-title {
        font-size: 1.8rem;
    }

    .addon-detail-description {
        font-size: 1rem;
    }

    .amount {
        font-size: 2.8rem;
    }

    .addon-actions {
        flex-direction: column;
    }

    .btn-purchase-addon,
    .btn-view-details {
        width: 100%;
    }

    .features-title,
    .benefits-title,
    .how-it-works-title {
        font-size: 2rem;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-number {
        margin-bottom: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

.consultation-hero .lead {
    font-size: 1rem;
}

.doctor-image img {
    width: 120px;
    height: 120px;
}

.booking-card .card-body {
    padding: 1.5rem !important;
}

.why-book-section .benefit-card {
    margin-bottom: 1.5rem;
}

.cta-section .d-flex {
    flex-direction: column;
}

.cta-section .btn {
    width: 100%;
    max-width: 300px;
}

@media (max-width: 576px) {
    .consultation-hero h1 {
        font-size: 1.75rem;
    }

    .booking-card .card-header h2 {
        font-size: 1.5rem;
    }

    .consultation-type-selector label {
        padding: 1rem !important;
    }

    .consultation-type-selector h5 {
        font-size: 1rem;
    }

    .faq-section .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-section .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   ASSESSMENT BANNER SECTION (Enhanced Design)
======================================== */

.assessment-banner {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.assessment-decoration-1,
.assessment-decoration-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.assessment-decoration-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-pink);
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.assessment-decoration-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-coral);
    bottom: -30px;
    left: -30px;
    animation: float 8s ease-in-out infinite reverse;
}

.assessment-banner .container {
    position: relative;
    z-index: 1;
}

.assessment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
}

.assessment-badge i {
    font-size: 0.85rem;
}

.assessment-title {
    color: var(--black);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.assessment-title i {
    color: var(--primary-pink);
    margin-right: 12px;
    font-size: 2.5rem;
}

.assessment-description {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 90%;
}

.assessment-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.assessment-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-rose);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    width: 90%;
}

.assessment-feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-pink-light) 0%, var(--primary-pink) 100%);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-content strong {
    color: var(--black);
    font-size: 1.05rem;
    font-weight: 700;
}

.feature-content span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Assessment CTA Card */
.assessment-cta-card {
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.assessment-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-pink-gradient);
}

.assessment-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.cta-card-header {
    background: linear-gradient(135deg, var(--primary-pink-light) 0%, var(--primary-pink) 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.cta-card-header i {
    font-size: 0.9rem;
}

.cta-card-body {
    padding: 2rem 1.5rem;
    text-align: center;
}

.cta-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-pink-light) 0%, var(--primary-pink) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
}

.cta-card-body h3 {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.cta-description {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-assessment {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-pink-dark) 100%);
    color: var(--white);
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(248, 139, 168, 0.4);
    border: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-assessment:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(248, 139, 168, 0.5);
    color: var(--white);
}

.assessment-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
    gap: 0.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.stat-item i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.stat-item span {
    color: var(--dark-gray);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 992px) {
    .assessment-cta-card {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .assessment-banner {
        padding: 60px 0;
    }

    .assessment-title {
        font-size: 2rem;
    }

    .assessment-title i {
        font-size: 1.8rem;
    }

    .assessment-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .assessment-feature-item {
        padding: 0.875rem 1.25rem;
    }

    .feature-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .cta-card-body {
        padding: 1.5rem 1.25rem;
    }

    .cta-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .cta-card-body h3 {
        font-size: 1.3rem;
    }

    .btn-assessment {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .assessment-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        flex-direction: row;
        justify-content: center;
    }
}

/* ========================================
   CONSULTATION PROMO SECTION (Homepage)
   Enhanced with Theme Colors Only
======================================== */

.consultation-promo-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 80px 0;
}

.consultation-promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(248, 139, 168, 0.08) 100%);
    z-index: 0;
}

.consultation-promo-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.consultation-promo-section .container {
    position: relative;
    z-index: 1;
}

.consultation-promo-image {
    position: relative;
}

.consultation-promo-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-bg) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
}

.consultation-promo-image img {
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(10, 42, 67, 0.15);
    border: 3px solid var(--white);
}

.consultation-promo-image:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(10, 42, 67, 0.25);
}

.consultation-promo-content {
    padding-left: 2rem;
}

.consultation-promo-content .badge {
    background: var(--primary-color) !important;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(248, 139, 168, 0.3);
}

.consultation-promo-content h2 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.consultation-promo-content .lead {
    color: var(--dark-color);
    opacity: 0.85;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.nav-link::after{
    display: none !important
}

.consultation-promo-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.consultation-promo-content ul li {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.consultation-promo-content ul li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.consultation-promo-content ul li strong {
    font-weight: 700;
    color: var(--dark-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(248, 139, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(248, 139, 168, 0.4);
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(248, 139, 168, 0.3);
    border-color: var(--primary-color);
}

.consultation-promo-content .promo-note {
    color: var(--dark-color);
    opacity: 0.7;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consultation-promo-content .promo-note i {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .consultation-promo-content {
        padding-left: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .consultation-promo-section {
        padding: 60px 0;
    }

    .consultation-promo-content h2 {
        font-size: 2.2rem;
    }

    .consultation-promo-content .lead {
        font-size: 1.05rem;
    }

    .consultation-promo-section::before,
    .consultation-promo-section::after {
        display: none;
    }

    .consultation-promo-content .d-flex {
        flex-direction: column;
    }

    .consultation-promo-content .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .consultation-promo-content ul li {
        font-size: 1rem;
    }
}

/* ========================================
   FERTILITY ASSESSMENT PAGE STYLES
   ======================================== */

/* Assessment Header */
.assessment-header {
    background: var(--gradient-rose);
    padding: 120px 0 80px;
    position: relative;
    /* margin-top: 70px; */
    overflow: hidden;
}

.assessment-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-pink) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.assessment-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-coral) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.12;
    z-index: 0;
}

.assessment-header .container {
    position: relative;
    z-index: 1;
}

.assessment-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.assessment-icon i {
    font-size: 3rem;
    color: var(--white);
}

.assessment-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.assessment-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-item i {
    color: var(--primary-pink);
    font-size: 1.5rem;
}

.info-item span {
    color: var(--dark-gray);
    font-weight: 600;
}

/* Assessment Content */
.assessment-content {
    background: var(--light-gray);
    padding: 80px 0;
}

.progress-container {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.progress {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
}

.progress-bar {
    background: var(--primary-pink-gradient);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.5s ease;
    box-shadow: 0 2px 10px rgba(248, 139, 168, 0.3);
}

/* Question Cards */
.question-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.question-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--primary-pink-light);
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.question-number {
    color: var(--primary-pink);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-points {
    background: var(--gradient-pink);
    color: var(--primary-pink-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.question-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-family: var(--font-heading);
}

/* Options */
.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-label {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--gradient-rose);
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-pink);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.option-label:hover {
    background: var(--gradient-pink);
    border-color: var(--primary-pink-light);
    transform: translateX(5px);
}

.option-label:hover::before {
    transform: scaleY(1);
}

.option-label input[type="radio"] {
    width: 22px;
    height: 22px;
    margin-right: 1rem;
    cursor: pointer;
    accent-color: var(--primary-pink);
    flex-shrink: 0;
}

.option-label input[type="radio"]:checked+.option-text {
    color: var(--primary-pink-dark);
    font-weight: 700;
}

.option-label:has(input[type="radio"]:checked) {
    background: var(--gradient-pink);
    border-color: var(--primary-pink);
    box-shadow: 0 4px 15px rgba(248, 139, 168, 0.2);
}

.option-label:has(input[type="radio"]:checked)::before {
    transform: scaleY(1);
}

.option-text {
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
}

/* Submit Button */
.btn-submit-assessment {
    background: var(--primary-pink-gradient);
    color: var(--white);
    padding: 1.25rem 3rem;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(248, 139, 168, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-assessment:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(248, 139, 168, 0.5);
    color: var(--white);
}

.btn-submit-assessment:active {
    transform: translateY(-2px);
}

/* Email Modal */
#emailModal .modal-content {
    border: none;
    box-shadow: var(--shadow-xl);
}

#emailModal .modal-header {
    background: var(--gradient-rose);
    border-radius: 20px 20px 0 0;
}

#emailModal .form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 0.2rem rgba(248, 139, 168, 0.25);
}

/* Results Section */
.results-section {
    margin-top: 3rem;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-pink-light);
}

.score-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: var(--primary-pink-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(248, 139, 168, 0.3);
    position: relative;
    animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.score-circle::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 3px solid var(--white);
    border-radius: 50%;
}

.score-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
    line-height: 1;
    z-index: 1;
}

.score-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    margin-top: 0.5rem;
    z-index: 1;
}

#resultTitle {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    font-family: var(--font-heading);
}

#resultInterpretation {
    font-size: 1.3rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.result-details {
    background: var(--gradient-rose);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.result-details h4 {
    color: var(--black);
    font-weight: 700;
    margin-bottom: 1rem;
}

.result-details ul {
    list-style: none;
    padding: 0;
}

.result-details li {
    padding: 0.75rem 0;
    color: var(--dark-gray);
    border-bottom: 1px solid rgba(248, 139, 168, 0.2);
}

.result-details li:last-child {
    border-bottom: none;
}

.result-details li::before {
    content: '✓';
    color: var(--primary-pink);
    font-weight: 700;
    margin-right: 0.75rem;
}

/* CTA Buttons */
.cta-buttons h3 {
    color: var(--black);
    font-weight: 700;
    font-family: var(--font-heading);
}

.btn-result-primary,
.btn-result-secondary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: left;
}

.btn-result-primary {
    background: var(--primary-pink-gradient);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(248, 139, 168, 0.3);
}

.btn-result-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(248, 139, 168, 0.4);
    color: var(--white);
}

.btn-result-secondary {
    background: var(--white);
    color: var(--black);
    border-color: var(--primary-pink-light);
    box-shadow: var(--shadow-sm);
}

.btn-result-secondary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-pink);
    color: var(--black);
}

.btn-result-primary i,
.btn-result-secondary i {
    font-size: 2rem;
    flex-shrink: 0;
}

.btn-result-primary strong,
.btn-result-secondary strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.email-sent-notice {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .assessment-title {
        font-size: 2.5rem;
    }

    .assessment-info {
        gap: 1rem;
    }

    .info-item {
        padding: 0.875rem 1.25rem;
    }

    .question-card {
        padding: 2rem;
    }

    .question-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .assessment-header {
        padding: 100px 0 60px;
    }

    .assessment-icon {
        width: 80px;
        height: 80px;
    }

    .assessment-icon i {
        font-size: 2.5rem;
    }

    .assessment-title {
        font-size: 2rem;
    }

    .assessment-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .info-item {
        width: 100%;
        justify-content: center;
    }

    .question-card {
        padding: 1.5rem;
    }

    .question-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .question-text {
        font-size: 1.2rem;
    }

    .option-label {
        padding: 1rem 1.25rem;
    }

    .option-text {
        font-size: 1rem;
    }

    .btn-submit-assessment {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .score-circle {
        width: 150px;
        height: 150px;
    }

    .score-circle::before {
        width: 135px;
        height: 135px;
    }

    .score-number {
        font-size: 3rem;
    }

    .results-card {
        padding: 2rem 1.5rem;
    }

    #resultTitle {
        font-size: 2rem;
    }

    #resultInterpretation {
        font-size: 1.1rem;
    }

    .btn-result-primary,
    .btn-result-secondary {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .btn-result-primary i,
    .btn-result-secondary i {
        font-size: 1.5rem;
    }
}

/* ========================================
   Flipkart-Style User Dropdown
   ======================================== */

.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 8px 16px !important;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    background: white;
    color: #212121 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.user-dropdown-toggle:hover {
    background: #f5f5f5;
    border-color: var(--primary-pink);
    color: var(--primary-pink) !important;
}

.user-dropdown-toggle[aria-expanded="true"] {
    background: var(--gradient-rose);
    border-color: var(--primary-pink);
    color: var(--primary-pink) !important;
}

.user-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-pink-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.user-name-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.user-dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

/* Flipkart-Style Dropdown Menu */
.flipkart-style-dropdown {
    min-width: 280px;
    padding: 0 !important;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 12px !important;
    overflow: hidden;
}

/* User Info Header */
.dropdown-user-header {
    padding: 20px;
    background: var(--gradient-rose);
    border-bottom: 1px solid #e0e0e0;
}

.user-info-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-pink-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(248, 139, 168, 0.3);
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 16px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    font-size: 13px;
    color: #757575;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Dropdown Items */
.flipkart-style-dropdown .dropdown-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    color: #212121;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.flipkart-style-dropdown .dropdown-item:hover {
    background: #f5f5f5;
    color: var(--primary-pink);
    padding-left: 24px;
}

.flipkart-style-dropdown .dropdown-item i {
    width: 20px;
    text-align: center;
    color: #757575;
    transition: color 0.2s ease;
}

.flipkart-style-dropdown .dropdown-item:hover i {
    color: var(--primary-pink);
}

.flipkart-style-dropdown .dropdown-item span {
    flex: 1;
}

/* Section Titles */
.dropdown-section-title {
    padding: 8px 20px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9e9e9e;
    margin-top: 4px;
}

/* Dividers */
.flipkart-style-dropdown .dropdown-divider {
    margin: 8px 0;
    border-color: #e0e0e0;
}

/* Logout Item */
.logout-item {
    color: #d32f2f !important;
}

.logout-item:hover {
    background: #ffebee !important;
    color: #c62828 !important;
}

.logout-item i {
    color: #d32f2f !important;
}

.logout-item:hover i {
    color: #c62828 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .flipkart-style-dropdown {
        min-width: 280px;
        position: fixed !important;
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 20px 20px 0 0 !important;
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15) !important;
        max-height: 70vh;
        overflow-y: auto;
        transform: none !important;
    }
    
    .user-name-text {
        display: inline !important;
        font-size: 13px;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .user-dropdown-toggle {
        padding: 10px 16px !important;
        background: linear-gradient(135deg, #fdf2f8, #fce7f3) !important;
        border: 1px solid #f9a8d4 !important;
        border-radius: 25px !important;
    }
    
    .user-avatar-small {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .dropdown-arrow {
        display: none;
    }
    
    /* Backdrop for mobile dropdown */
    .user-dropdown.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1050;
    }
    
    .flipkart-style-dropdown.show {
        z-index: 1060;
    }
}

/* ========================================
   Products Section
   ======================================== */

.product-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink-light);
}

.product-card.featured-product {
    border: 2px solid var(--primary-pink);
    background: linear-gradient(135deg, #fff 0%, #fff5f8 100%);
}

.featured-badge-product {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-pink);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.featured-badge-product i {
    margin-right: 0.25rem;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-pink);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.product-icon i {
    font-size: 2rem;
    color: var(--primary-pink-dark);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.product-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Highlighted feature list container for product cards */
.product-features-highlight {
    background: linear-gradient(135deg, rgba(233, 76, 108, 0.06) 0%, rgba(255, 245, 248, 0.9) 100%);
    border-left: 4px solid var(--primary-pink);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(233, 76, 108, 0.08);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features-highlight .product-features {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.product-features li i {
    color: var(--primary-pink);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.product-features-highlight .product-features li {
    color: var(--gray-800, #333);
    font-weight: 500;
}

.product-features-highlight .product-features li i {
    font-size: 1rem;
}

.product-price {
    margin: 1.5rem 0;
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.product-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.product-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-pink);
    line-height: 1;
}

.product-price .decimal {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.product-card .btn {
    margin-top: auto;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.product-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .product-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-price .amount {
        font-size: 2rem;
    }
}

/* Tracker & Consultation Showcase Sections */
.tracker-showcase,
.consultation-showcase {
    padding: 2rem;
}

.tracker-mockup,
.consultation-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.tracker-features,
.consultation-features {
    margin: 1.5rem 0;
}

.tracker-feature-item,
.consultation-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.tracker-feature-item .feature-icon-small,
.consultation-feature-item .feature-icon-small {
    width: 50px;
    height: 50px;
    background: var(--gradient-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.tracker-feature-item .feature-icon-small i,
.consultation-feature-item .feature-icon-small i {
    font-size: 1.3rem;
    color: var(--primary-pink-dark);
}

.tracker-feature-item .feature-content h5,
.consultation-feature-item .feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.tracker-feature-item .feature-content p,
.consultation-feature-item .feature-content p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}

/* ========================================
   Global Button Styles (all pages)
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    outline: none;
    box-shadow: none;
}

.btn:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.btn-primary {
    background-color: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--black);
    color: var(--white);
    opacity: 0.9;
}

.btn-outline-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    opacity: 0.9;
}

.btn-outline-secondary {
    background-color: #495057;
    color: var(--white);
}

.btn-outline-secondary:hover {
    background-color: #495057;
    color: var(--white);
    opacity: 0.9;
}

/* ========================================
   Tracker App UI – Enhanced design (glass, gradient, Plus Jakarta)
   ======================================== */
.tracker-app {
    --tracker-rose: #f88ba8;
    --tracker-rose-dk: #e8527a;
    --tracker-lavender: #b89ff8;
    --tracker-teal: #4ecdc4;
    --tracker-amber: #ffb347;
    --tracker-dark: #1a1a2e;
    --tracker-card-bg: rgba(255,255,255,0.72);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    background: radial-gradient(ellipse at top left, #fde8ee 0%, #f3eeff 45%, #e8f8f7 100%);
    padding: 0 0 2rem;
    margin: 0;
}
.tracker-days-strip-wrap {
    background: var(--white);
    padding: 0.6rem 0;
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    border-radius: 0.75rem;
    overflow: hidden;
}
.tracker-days-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    overflow-x: auto;
    padding: 0 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.tracker-days-strip::-webkit-scrollbar {
    display: none;
}
.tracker-day-dot {
    flex: 0 0 auto;
    min-width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray);
    background: var(--light-gray);
    transition: background 0.2s, color 0.2s;
}
.tracker-day-dot.tracker-day-today {
    background: var(--primary-pink);
    color: var(--white);
    font-weight: 700;
}
.tracker-app-header {
    background: var(--white);
    padding: 1rem 1rem 1.25rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.tracker-app-header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 0.15rem 0;
    line-height: 1.2;
}
.tracker-app-header .tracker-cycle-day {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 400;
}
.tracker-search {
    width: 100%;
    max-width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    font-size: 0.9375rem;
    color: var(--dark-gray);
    background: var(--light-gray) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%239e9e9e' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") no-repeat 1rem center;
    margin-top: 0.75rem;
}
.tracker-search::placeholder {
    color: var(--gray);
}

/* ========================================
   Tracker – Enhanced glass card + hero
   ======================================== */
.tracker-mobile-hero {
    background: var(--tracker-card-bg, rgba(255,255,255,0.72));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 1rem 1.5rem;
    margin: 0 1rem 0.75rem;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.04), 0 20px 48px rgba(0,0,0,0.09);
    border: 1px solid rgba(255,255,255,0.6);
}
.tracker-mobile-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.tracker-mobile-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tracker-rose, #f88ba8), var(--tracker-lavender, #b89ff8));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.tracker-mobile-date-wrap {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.tracker-mobile-date {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--tracker-dark, #1a1a2e);
    margin: 0;
    line-height: 1.2;
}
.tracker-mobile-phase-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--tracker-rose), var(--tracker-rose-dk));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.tracker-mobile-calendar-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    background: transparent;
    font-size: 1.1rem;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    color: rgba(10, 42, 67, 0.75);
}

/* Era-style segmented cycle ring (mobile hero) – compact */
.tracker-mobile-cycle-ring-section {
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 0.25rem 0 0.5rem;
}
.tracker-mobile-cycle-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.tracker-mobile-cycle-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px;
    border-radius: 50%;
    background: var(--tracker-dark, #1a1a2e);
    box-shadow: 0 0 0 0 rgba(26,26,46,0.45);
    transform: rotate(var(--marker-deg, -90deg)) translate(0, -87px);
    transform-origin: center;
    animation: tracker-ring-pulse 2s infinite;
}
@keyframes tracker-ring-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(26,26,46,0.45); }
    70%  { box-shadow: 0 0 0 10px rgba(26,26,46,0); }
    100% { box-shadow: 0 0 0 0 rgba(26,26,46,0); }
}
.tracker-mobile-cycle-ring-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}
.tracker-mobile-cycle-ring-inner {
    font-family: inherit;
}
.tracker-mobile-ring-weekday {
    display: none;
}
.tracker-mobile-ring-date {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--tracker-dark);
    margin: 0;
}
.tracker-mobile-ring-year {
    font-size: 0.78rem;
    color: #aaa;
    margin: 1px 0 6px;
    font-weight: 500;
}
.tracker-mobile-ring-phase {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1.35;
}
.tracker-mobile-ring-phase-main {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--tracker-rose-dk);
}
.tracker-mobile-ring-phase-rest {
    font-size: 0.75rem;
    font-weight: 500;
    color: #999;
}
.tracker-mobile-ring-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.tracker-mobile-legend-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--tracker-dark);
    font-size: 0.8rem;
    font-weight: 600;
}
.tracker-mobile-legend-chip i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.tracker-mobile-log-period-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #e85d9c, #d63384);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 26px rgba(214, 51, 132, 0.28);
    text-decoration: none;
}
.tracker-mobile-log-period-cta:hover {
    color: #fff;
    opacity: 0.95;
    transform: translateY(-1px);
}
/* Week strip: enhanced day pills – active = gradient rose + shadow */
.tracker-mobile-week-strip {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1.25rem;
    padding: 0;
    flex-wrap: wrap;
}
.tracker-mobile-week-dot {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #888;
    background: transparent;
    border: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.25s ease;
}
.tracker-mobile-week-dot .tracker-week-dayname {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
    color: inherit;
}
.tracker-mobile-week-dot .tracker-week-dayname + * {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 2px;
}
a.tracker-mobile-week-dot:hover {
    background: rgba(248, 139, 168, 0.12);
    color: var(--tracker-rose-dk);
}
.tracker-mobile-week-dot.tracker-mobile-week-today {
    background: linear-gradient(135deg, var(--tracker-rose), var(--tracker-rose-dk));
    color: #fff;
    box-shadow: 0 6px 20px rgba(248, 139, 168, 0.45);
}
.tracker-mobile-week-dot.tracker-mobile-week-today .tracker-week-dayname {
    opacity: 1;
    color: inherit;
}
.tracker-mobile-week-dot.tracker-week-dot-disabled {
    cursor: default;
    opacity: 0.5;
    pointer-events: none;
}
.tracker-mobile-prediction {
    text-align: center;
    padding: 1.25rem 1rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    margin: 0.75rem 0.25rem 0;
}
.tracker-mobile-prediction-char {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
    color: #059669;
}
.tracker-mobile-prediction-char i {
    font-size: inherit;
}
.tracker-mobile-prediction-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0 0 0.25rem 0;
}
.tracker-mobile-prediction-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 0.35rem 0;
}
.tracker-mobile-prediction-hint {
    font-size: 0.8125rem;
    color: var(--dark-gray);
    margin: 0;
}
.tracker-mobile-prediction-hint i {
    margin-left: 2px;
    opacity: 0.8;
}
.tracker-mobile-log-period {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #a5d6a7;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.tracker-mobile-log-period:hover {
    background: #81c784;
    color: var(--white);
}
.tracker-mobile-insights {
    display: block;
    padding: 1rem 0 0.75rem;
}
.tracker-mobile-insights-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 0.75rem 0;
}
.tracker-mobile-insights-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.25rem 0 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.tracker-mobile-insights-scroll::-webkit-scrollbar {
    display: none;
}
.tracker-mobile-insight-card {
    flex: 0 0 9rem;
    min-height: 6rem;
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.tracker-mobile-insight-card span:first-of-type {
    margin-bottom: 0.25rem;
}
.tracker-insight-log {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.65));
    border-color: rgba(0,0,0,0.06);
}
.tracker-insight-icon-plus {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--primary-pink-light);
    color: var(--primary-pink-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.tracker-insight-icon-plus i {
    font-size: inherit;
}
.tracker-insight-pregnancy {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    border-color: rgba(232, 93, 156, 0.25);
}
.tracker-insight-pregnancy .tracker-insight-updating {
    font-size: 0.75rem;
    color: var(--gray);
}
.tracker-insight-symptoms {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    border-color: rgba(139, 92, 246, 0.25);
}
.tracker-insight-lock {
    font-size: 1rem;
    margin-top: 0.25rem;
    color: rgba(10, 42, 67, 0.5);
}
.tracker-insight-cycle {
    background: #e0f7fa;
    border-color: #80deea;
}
.tracker-insight-cycle-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-top: 0.25rem;
}
.tracker-form-mobile-header {
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}
.tracker-mobile-form-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 0.25rem 0;
    padding: 0;
}
.tracker-mobile-phase-line {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
}
.tracker-phase-name {
    font-weight: 700;
    color: var(--dark-color);
}
#trackerForm {
    scroll-margin-top: 1rem;
}

.tracker-app .tracker-card {
    background: var(--tracker-card-bg, rgba(255,255,255,0.72));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 1.25rem 1rem;
    margin-bottom: 0.75rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0,0,0,0.04), 0 20px 48px rgba(0,0,0,0.09);
    border: 1px solid rgba(255,255,255,0.6);
}
.tracker-app .tracker-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--tracker-dark);
    margin: 0 0 0.75rem 0;
    display: block;
}
.tracker-app .small.fw-bold.text-dark {
    font-size: 0.8rem;
    font-weight: 700;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.tracker-card-header-with-hint + .tracker-bbt-row {
    margin-top: 0;
}
.tracker-out-of-range {
    text-align: center;
    padding: 1.5rem 1rem !important;
}
.tracker-out-of-range .btn {
    margin-top: 0.5rem;
}

/* Enhanced: Save button (dark gradient, pill) */
.tracker-app .btn-save-today,
.tracker-app .tracker-sidebar-btn.tracker-sidebar-btn-save {
    background: linear-gradient(135deg, #1a1a2e, #2d2d55);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 24px rgba(26,26,46,0.3);
    transition: all 0.25s ease;
}
.tracker-app .btn-save-today:hover,
.tracker-app .tracker-sidebar-btn.tracker-sidebar-btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26,26,46,0.4);
    color: #fff;
}

/* Enhanced: Prediction card (Next Period) */
.tracker-app .tracker-sidebar-prediction,
.tracker-app .tracker-sidebar-card.tracker-sidebar-prediction {
    background: linear-gradient(135deg, #fff0f5, #f8f0ff) !important;
    border: 1px solid rgba(248,139,168,0.25) !important;
    border-radius: 20px !important;
    padding: 1.25rem !important;
    text-align: left;
}
.tracker-app .tracker-sidebar-prediction-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--tracker-dark);
    line-height: 1.2;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-wrap: wrap;
}
.tracker-app .tracker-sidebar-prediction-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--tracker-dark);
}
.tracker-app .tracker-sidebar-prediction-unit {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(10, 42, 67, 0.7);
}
.tracker-app .tracker-sidebar-prediction-date {
    font-size: 0.8rem;
    color: rgba(10, 42, 67, 0.65);
    margin: 0.25rem 0 0.75rem 0;
}
.tracker-app .tracker-sidebar-cycle-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.tracker-app .tracker-sidebar-cycle-bar-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(10, 42, 67, 0.6);
    flex-shrink: 0;
}
.tracker-app .tracker-sidebar-cycle-bar-track {
    flex: 1;
    height: 6px;
    background: rgba(248, 139, 168, 0.2);
    border-radius: 100px;
    overflow: hidden;
}
.tracker-app .tracker-sidebar-cycle-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--tracker-rose), var(--tracker-rose-dk));
    border-radius: 100px;
    transition: width 0.25s ease;
}
.tracker-app .tracker-sidebar-prediction-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--tracker-rose-dk);
}

/* Enhanced: Info cards (left accent + icon) */
.tracker-app .tracker-sidebar-insight,
.tracker-app .tracker-sidebar-card.tracker-sidebar-insight {
    border-radius: 18px !important;
    padding: 1rem 1.125rem !important;
    background: rgba(255,255,255,0.65) !important;
    border: 1px solid rgba(255,255,255,0.7) !important;
    border-left: 4px solid var(--tracker-rose) !important;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.tracker-app .tracker-sidebar-insight-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--tracker-rose-dk);
    background: rgba(248, 139, 168, 0.15);
}
.tracker-app .tracker-sidebar-insight-focus .tracker-sidebar-insight-icon {
    color: #059669;
    background: rgba(5, 150, 105, 0.12);
}
.tracker-app .tracker-sidebar-insight-eat .tracker-sidebar-insight-icon {
    color: #6b7280;
    background: rgba(107, 114, 128, 0.12);
}
.tracker-app .tracker-sidebar-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--tracker-dark);
    margin-bottom: 4px;
}
.tracker-app .tracker-sidebar-card-text {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.6;
}

/* Enhanced: Sidebar action (bleeding/period) – glass */
.tracker-app .tracker-sidebar-action {
    background: var(--tracker-card-bg, rgba(255,255,255,0.72));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 8px rgba(0,0,0,0.04);
}
.tracker-app .tracker-sidebar-period-cb:checked,
.tracker-app .form-check-input:checked {
    background-color: var(--tracker-rose-dk) !important;
    border-color: var(--tracker-rose-dk) !important;
}
/* Toggle in sidebar: pink TRACK when checked, white THUMB – do not paint thumb pink */
.tracker-app .checkbox-wrapper-5 .check input[type="checkbox"]:checked {
    background: linear-gradient(90deg, #f19af3, #f099b5);
    border-color: transparent !important;
}

/* Enhanced: Reset button */
.tracker-app .tracker-sidebar-btn-reset,
.tracker-app .btn-reset,
.tracker-app .tracker-reset-wrap .btn-outline-secondary {
    background: rgba(255,255,255,0.5);
    border: 1.5px solid #e0e0e0;
    border-radius: 100px;
    padding: 10px 1rem;
    font-size: 0.83rem;
    font-weight: 600;
    color: #888;
    transition: all 0.2s ease;
}
.tracker-app .tracker-sidebar-btn-reset:hover,
.tracker-app .btn-reset:hover,
.tracker-app .tracker-reset-wrap .btn-outline-secondary:hover {
    background: #fff;
    border-color: #ccc;
    color: #555;
}

/* Enhanced: Form select in tracker */
.tracker-app .form-select {
    border-radius: 12px;
    border: 1.5px solid #e8e8e8;
    background: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--tracker-dark);
}
.tracker-app .form-select:focus {
    border-color: var(--tracker-rose);
    box-shadow: 0 0 0 0.2rem rgba(248,139,168,0.25);
}

.tracker-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tracker-pills-break {
    flex-basis: 0;
    flex-grow: 1;
    width: 0;
    min-width: 0;
    height: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.tracker-app .tracker-pill,
.tracker-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 100px;
    border: 1.5px solid #e0e0e0;
    background: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.tracker-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.tracker-app .tracker-pill:has(input:checked),
.tracker-app .tracker-pill.active,
.tracker-pill:has(input:checked),
.tracker-pill.active {
    background: linear-gradient(135deg, var(--tracker-rose, #f88ba8), var(--tracker-rose-dk, #e8527a));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 18px rgba(248, 139, 168, 0.4);
}
.tracker-app .tracker-pill:hover,
.tracker-pill:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
    border-color: var(--tracker-rose, #f88ba8);
    color: var(--tracker-rose-dk, #e8527a);
}
.tracker-pill + .tracker-pill { margin-left: 0; }

/* Checkbox pills – enhanced design (all tracker checkboxes) */
.tracker-pill-checkbox {
    user-select: none;
    min-height: 2.75rem;
    padding: 0.6rem 1rem;
    position: relative;
    border-width: 2px;
}
.tracker-pill-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.tracker-app .tracker-pill-checkbox:has(input:checked),
.tracker-app .tracker-pill-checkbox.active,
.tracker-pill-checkbox:has(input:checked),
.tracker-pill-checkbox.active {
    background: linear-gradient(135deg, var(--tracker-rose, #f88ba8), var(--tracker-rose-dk, #e8527a));
    border-color: transparent;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(248, 139, 168, 0.4);
}
.tracker-pill-checkbox:has(input:checked)::before,
.tracker-pill-checkbox.active::before {
    content: "✓";
    display: inline-block;
    margin-right: 0.35rem;
    font-size: 0.9em;
    font-weight: 700;
    color: var(--primary-pink-dark);
}
.tracker-pill-checkbox:hover {
    border-color: var(--primary-pink-light);
    background: #fef5f8;
}
.tracker-pill-checkbox:has(input:checked):hover,
.tracker-pill-checkbox.active:hover {
    background: var(--secondary-rose);
    border-color: var(--primary-pink-dark);
}
.tracker-pill-checkbox:active {
    transform: scale(0.98);
}
.tracker-pill-checkbox:focus-within {
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.25);
}
.tracker-pills .tracker-pill-checkbox + .tracker-pill-checkbox {
    margin-left: 0;
}

/* Highlight "Period started today (restart)" option in form */
.tracker-pill-period-restart {
    border-width: 2px;
    border-color: rgba(214, 51, 132, 0.5);
    background: #fef5f8;
    font-weight: 600;
}
.tracker-pill-period-restart.active,
.tracker-pill-period-restart:has(input:checked) {
    border-color: var(--primary-pink, #d63384);
    background: var(--secondary-rose, #fff5f8);
}

/* Right sidebar: Period restart / Bleeding card (toggle on right, icon + text left) */
.tracker-sidebar-period-restart {
    background: linear-gradient(145deg, #fff5f8 0%, #fce4ec 50%, #fbd5e4 100%) !important;
    border: 2px solid rgba(214, 51, 132, 0.5) !important;
    box-shadow: 0 4px 14px rgba(214, 51, 132, 0.15);
    border-radius: 0.75rem !important;
}
.tracker-sidebar-period-restart .tracker-sidebar-card-body {
    padding: 0.875rem 1rem !important;
}
.tracker-sidebar-period-restart .card-body {
    padding: 0.875rem 1rem !important;
}
.tracker-sidebar-period-restart .fw-bold {
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}
.tracker-sidebar-period-restart .text-muted {
    font-size: 0.8125rem;
    line-height: 1.4;
}
.tracker-sidebar-period-content {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    flex: 1;
    min-width: 0;
}
.tracker-sidebar-period-icon {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--tracker-rose-dk);
    background: rgba(248, 139, 168, 0.2);
}
.tracker-sidebar-period-icon-droplet {
    color: #c53030;
    background: rgba(197, 48, 48, 0.12);
}
.tracker-sidebar-period-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0a2a43;
    letter-spacing: 0.01em;
}
.tracker-sidebar-toggle.form-switch {
    flex-shrink: 0;
}
.tracker-sidebar-toggle .form-check-input {
    width: 2.5rem;
    height: 1.25rem;
    cursor: pointer;
}
.tracker-sidebar-period-label {
    cursor: pointer;
}
.tracker-sidebar-action {
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    margin-bottom: 0.75rem;
}
.tracker-sidebar-action-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
}
.tracker-sidebar-action-hint {
    font-size: 0.8125rem;
    color: #6b7280;
    margin: 0.35rem 0 0 0;
    padding-left: 1.7rem;
}
.tracker-sidebar-period-cb {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.1rem;
    accent-color: var(--primary-pink, #d63384);
    cursor: pointer;
    flex-shrink: 0;
}

.tracker-input-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}
.tracker-input-row:last-child { margin-bottom: 0; }
.tracker-input-row .form-control,
.tracker-input-row .form-select {
    flex: 1;
    min-height: 2.75rem;
    border-radius: 0.75rem;
    border: 1px solid #e0e0e0;
    font-size: 0.9375rem;
}
.tracker-card .form-check {
    padding: 0.6rem 0;
    margin-bottom: 0.25rem;
}
.tracker-card .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
}
.tracker-card .form-check-label {
    font-size: 0.9375rem;
    margin-left: 0.5rem;
}
/* Form intro – one line so users know what to do */
.tracker-form-intro {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 1rem 0;
    padding: 0;
}

/* Card title + optional hint on one line */
.tracker-card-header-with-hint {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.tracker-card-header-with-hint .tracker-card-title {
    margin-bottom: 0;
}
.tracker-card-hint {
    font-size: 0.8rem;
    font-weight: 400;
    color: #6b7280;
}

/* BBT: one clear row – input + unit switch */
.tracker-card-bbt .tracker-bbt-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.tracker-bbt-input {
    width: 5.5rem;
    min-height: 2.75rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    text-align: center;
    background: #fff;
    -moz-appearance: textfield;
}
.tracker-bbt-input::-webkit-outer-spin-button,
.tracker-bbt-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.tracker-bbt-unit-switch {
    display: inline-flex;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #f9fafb;
}
.tracker-bbt-unit-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 0;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s, color 0.2s;
}
.tracker-bbt-unit-btn:hover {
    background: #f3f4f6;
    color: #111827;
}
.tracker-bbt-unit-btn.active {
    background: #fff;
    color: var(--primary-pink, #e91e63);
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.tracker-bbt-unit-btn + .tracker-bbt-unit-btn {
    border-left: 1px solid #e5e7eb;
}
.tracker-save-status {
    min-height: 1.25rem;
    font-size: 0.8125rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}
.tracker-save-wrap {
    padding: 0.5rem 0 0;
    margin-top: 0;
}
.tracker-save-wrap .btn-save-today {
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
    display: block;
    min-height: 3rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    background: var(--primary-pink);
    border: 0;
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.tracker-save-wrap .btn-save-today:hover {
    background: var(--primary-pink-dark);
    color: var(--white);
}
.tracker-reset-wrap {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    text-align: center;
}
.tracker-reset-wrap .btn-outline-secondary {
    border-radius: 999px;
    font-size: 0.875rem;
}
.tracker-daily { padding: 0; }
.tracker-daily .tracker-daily-card { max-width: 100%; }

/* Consistent horizontal spacing so all tracker cards align */
.tracker-daily .text-muted.small.px-2 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.tracker-daily-form {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Same flow on mobile and desktop: show mobile UI, hide desktop-only blocks */
.tracker-desktop-only { display: none !important; }
.tracker-desktop-only.tracker-desktop-header-row,
.tracker-desktop-only.tracker-day-nav-wrap,
.tracker-desktop-only.tracker-sidebar { display: none !important; }
@media (min-width: 768px) {
    .tracker-mobile-only { display: block !important; }
    /* Hide main-content duplicate of layout sidebar (cards, save, reset) on desktop */
    .tracker-sidebar-content-mobile-only { display: none !important; }
}

/* Right sidebar (layout): enhanced design */
@media (min-width: 768px) {
    .tracker-layout-sidebar .tracker-sidebar-card {
    background: var(--tracker-card-bg, rgba(255,255,255,0.72));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 8px rgba(0,0,0,0.04), 0 20px 48px rgba(0,0,0,0.09);
}
.tracker-sidebar-column {
        background: transparent;
    }
    .tracker-layout-sidebar-wrap {
        background: linear-gradient(180deg, #fce4ec 0%, #faf5f6 25%, #fff 50%, #fafafa 100%);
        padding: 1.5rem 0.75rem 2rem;
        border-radius: 0 0 0 0.75rem;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.04);
    }
    .tracker-layout-sidebar {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        /* padding: 1rem; */
        background: none;
        border-radius: 1.25rem;
    }

    /* Sidebar cards: unified base */
    .tracker-layout-sidebar .tracker-sidebar-card {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 0.75rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: box-shadow 0.2s ease;
    }
    .tracker-layout-sidebar .tracker-sidebar-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    }

    /* Prediction card (Next Period: number, estimated date, cycle bar) */
    .tracker-sidebar-prediction {
        text-align: left;
        padding: 1.25rem 1rem !important;
        background: linear-gradient(160deg, #fff5f8 0%, #fce4ec 100%) !important;
        border-color: rgba(214, 51, 132, 0.2) !important;
    }
    .tracker-sidebar-prediction-icon {
        font-size: 1.25rem;
        color: #7c3aed;
        margin-bottom: 0.35rem;
    }
    .tracker-sidebar-prediction-icon i { font-size: inherit; }
    .tracker-sidebar-prediction-label {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        color: rgba(10, 42, 67, 0.7);
        margin: 0 0 0.2rem 0;
    }
    .tracker-sidebar-prediction-value {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0a2a43;
        margin: 0 0 0.15rem 0;
    }
    .tracker-sidebar-prediction-number {
        font-size: 2rem;
        font-weight: 800;
    }
    .tracker-sidebar-prediction-unit {
        font-size: 1rem;
        font-weight: 500;
        color: rgba(10, 42, 67, 0.7);
    }
    .tracker-sidebar-prediction-date {
        font-size: 0.8rem;
        color: rgba(10, 42, 67, 0.65);
        margin: 0.2rem 0 0.5rem 0;
    }
    .tracker-sidebar-cycle-bar {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    .tracker-sidebar-cycle-bar-label {
        font-size: 0.7rem;
        font-weight: 600;
        color: rgba(10, 42, 67, 0.6);
    }
    .tracker-sidebar-cycle-bar-track {
        flex: 1;
        height: 6px;
        background: rgba(248, 139, 168, 0.2);
        border-radius: 100px;
        overflow: hidden;
    }
    .tracker-sidebar-cycle-bar-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--tracker-rose), var(--tracker-rose-dk));
        border-radius: 100px;
    }
    .tracker-sidebar-prediction-hint {
        font-size: 0.8rem;
        color: rgba(10, 42, 67, 0.65);
        margin: 0.5rem 0 0 0;
    }
    .tracker-sidebar-prediction-hint i { margin-left: 2px; opacity: 0.85; }

    /* Period restart card (highlighted) */
    .tracker-layout-sidebar .tracker-sidebar-period-restart {
        background: linear-gradient(145deg, #fff5f8 0%, #fce4ec 45%, #fbd5e4 100%) !important;
        border: 2px solid rgba(214, 51, 132, 0.45) !important;
        box-shadow: 0 4px 14px rgba(214, 51, 132, 0.12) !important;
        border-radius: 0.75rem !important;
    }
    .tracker-layout-sidebar .tracker-sidebar-period-restart .tracker-sidebar-card-body,
    .tracker-layout-sidebar .tracker-sidebar-period-restart .card-body {
        padding: 0.875rem 1rem !important;
    }
    .tracker-sidebar-period-text {
        font-size: 0.9375rem;
        font-weight: 700;
        color: #0a2a43;
        letter-spacing: 0.01em;
    }
    .tracker-sidebar-period-title {
        font-size: 0.9375rem;
        font-weight: 700;
        color: #0a2a43;
    }
    .tracker-layout-sidebar .tracker-sidebar-period-restart .tracker-sidebar-hint {
        font-size: 0.8125rem;
        line-height: 1.4;
        color: rgba(10, 42, 67, 0.65);
    }
    .tracker-layout-sidebar .tracker-sidebar-toggle .form-check-input {
        width: 2.5rem;
        height: 1.25rem;
    }

    /* Save block */
    .tracker-sidebar-save-block {
        padding: 0.5rem 0;
    }
    .tracker-sidebar-hint {
        font-size: 0.8125rem;
        color: rgba(10, 42, 67, 0.6);
    }
    .tracker-sidebar-btn {
        width: 100%;
        padding: 0.65rem 1.25rem;
        font-size: 0.9375rem;
        font-weight: 600;
        border-radius: 999px;
        border: none;
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.2s ease;
    }
    .tracker-sidebar-btn:active { transform: scale(0.98); }
    .tracker-sidebar-btn-save {
        background: #0a2a43;
        color: #fff;
        box-shadow: 0 4px 12px rgba(10, 42, 67, 0.3);
    }
    .tracker-sidebar-btn-save:hover {
        background: #0d3a5c;
        color: #fff;
        box-shadow: 0 6px 16px rgba(10, 42, 67, 0.35);
    }

    /* Insight cards */
    .tracker-sidebar-insight {
        padding: 1rem 1rem !important;
        background: linear-gradient(160deg, #fff9fb 0%, #fff5f8 100%) !important;
        border-color: rgba(248, 187, 208, 0.5) !important;
    }
    .tracker-sidebar-card-title {
        font-size: 0.875rem;
        font-weight: 700;
        color: #0a2a43;
        margin: 0 0 0.4rem 0;
    }
    .tracker-sidebar-card-text {
        font-size: 0.8125rem;
        color: rgba(10, 42, 67, 0.7);
        line-height: 1.45;
    }

    /* Reset block */
    .tracker-sidebar-reset-block {
        margin-top: 0.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    .tracker-sidebar-btn-reset {
        background: rgba(255, 255, 255, 0.6);
        color: #6b7280;
        border: 1.5px solid #e0e0e0;
    }
    .tracker-sidebar-btn-reset:hover {
        background: #fff;
        color: #555;
        border-color: #ccc;
    }
    .tracker-sidebar-reset-block .tracker-sidebar-hint {
        font-size: 0.75rem;
        color: rgba(10, 42, 67, 0.55);
    }
}

/* ========================================
   Tracker – DESKTOP (image-style layout)
   ======================================== */
@media (min-width: 768px) {
    .tracker-app {
        max-width: 64rem;
        margin-left: auto;
        margin-right: auto;
        padding: 1.5rem 1.5rem 2rem;
        background: #fafafa;
        border-radius: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        transition: background 0.4s ease;
    }
    /* Phase-wise theme (tablet/desktop) – subtle tint, mostly white */
    .tracker-app.tracker-phase-menstrual {
        background: linear-gradient(180deg, #fce4ec 0%, #faf5f6 30%, #fafafa 60%, var(--white) 100%);
    }
    .tracker-app.tracker-phase-early_follicular {
        background: linear-gradient(180deg, #e3f2fd 0%, #f5fafc 30%, #fafafa 60%, var(--white) 100%);
    }
    .tracker-app.tracker-phase-fertile_follicular {
        background: linear-gradient(180deg, #fff3e0 0%, #faf8f5 30%, #fafafa 60%, var(--white) 100%);
    }
    .tracker-app.tracker-phase-ovulation_confirmation {
        background: linear-gradient(180deg, #fce4ec 0%, #faf5f7 30%, #fafafa 60%, var(--white) 100%);
    }
    .tracker-app.tracker-phase-luteal {
        background: linear-gradient(180deg, #f3e5f5 0%, #faf5fa 30%, #fafafa 60%, var(--white) 100%);
    }
    .tracker-app .px-2 { padding-left: 0; padding-right: 0; }
    .tracker-app .mx-2 { margin-left: 0; margin-right: 0; }
    .tracker-app .tracker-daily-form {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Same flow as mobile: single column, no sidebar */
    .tracker-main-wrap {
        display: block;
        /* max-width: 28rem; */
        margin-left: auto;
        margin-right: auto;
    }
    .tracker-daily-form {
        max-width: none;
    }
    .tracker-mobile-hero {
        /* max-width: 28rem; */
        /* margin-left: auto;
        margin-right: auto; */
        border-radius:  1.5rem;
    }
    .tracker-save-wrap {
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .tracker-mobile-form-title {
        /* max-width: 28rem; */
        margin-left: auto;
        margin-right: auto;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .tracker-reset-wrap {
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
    }

    /* Desktop: header row – two cards (hidden when using mobile flow) */
    .tracker-desktop-header-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    .tracker-header-card {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.25rem;
        background: var(--white);
        border-radius: 1rem;
        border: 1px solid #e8e8e8;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .tracker-header-left {
        background: linear-gradient(to right, rgba(248, 187, 208, 0.35) 0%, rgba(248, 187, 208, 0.15) 22%, var(--white) 22%);
    }
    .tracker-header-icon {
        font-size: 1.75rem;
    }
    .tracker-header-days {
        font-size: 1.25rem;
        color: var(--dark-color);
        display: block;
        margin-bottom: 0.2rem;
    }
    .tracker-header-current {
        font-size: 0.9375rem;
        color: var(--dark-gray);
    }
    .tracker-header-right {
        flex: 0 0 auto;
        min-width: 10rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .tracker-day-badge {
        display: inline-block;
        padding: 0.35rem 0.85rem;
        background: var(--primary-pink);
        color: var(--white);
        font-size: 0.9375rem;
        font-weight: 700;
        border-radius: 999px;
    }
    .tracker-header-phase {
        font-size: 0.875rem;
        font-weight: 700;
        color: var(--dark-color);
        margin: 0;
    }
    .tracker-header-date {
        font-size: 0.875rem;
        color: var(--dark-gray);
    }

    /* Desktop: day nav bar – Prev | 6 7 8 9 10 11 12 | Next */
    .tracker-day-nav-wrap {
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        background: var(--white);
        border-radius: 1rem;
        border: 1px solid #e8e8e8;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .tracker-day-nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        color: var(--dark-gray);
        background: var(--light-gray);
        border: 1px solid #ddd;
        border-radius: 0.5rem;
        cursor: pointer;
    }
    .tracker-day-nav-btn:disabled,
    .tracker-day-nav-btn-disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
    a.tracker-day-nav-btn {
        text-decoration: none;
        color: inherit;
    }
    a.tracker-day-nav-btn:hover {
        background: #e0e0e0;
        color: var(--dark-color);
    }
    a.tracker-day-nav-dot {
        text-decoration: none;
        color: inherit;
        cursor: pointer;
    }
    a.tracker-day-nav-dot:hover {
        background: #e8e8e8;
        border-color: var(--dark-color);
        color: var(--dark-color);
    }
    .tracker-day-nav-days {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        justify-content: center;
    }
    .tracker-day-nav-dot {
        min-width: 2.25rem;
        height: 2.25rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--dark-gray);
        background: var(--white);
        border: 1px solid #ddd;
        border-radius: 0.5rem;
    }
    .tracker-day-nav-dot.tracker-day-nav-today {
        background: var(--dark-color);
        color: var(--white);
        border-color: var(--dark-color);
    }

    /* Single column (same flow as mobile) – no sidebar */
    .tracker-daily-form {
        display: block;
        max-width: none;
        margin: 0;
    }
    .tracker-form-title-block {
        margin-bottom: 1rem;
    }
    .tracker-form-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--dark-color);
        margin: 0 0 0.25rem 0;
    }
    .tracker-form-subtitle {
        font-size: 0.9375rem;
        color: var(--dark-gray);
        margin: 0 0 0.75rem 0;
    }
    .tracker-form-hr {
        border: 0;
        border-top: 1px solid #ddd;
        margin: 0 0 1rem 0;
    }
    .tracker-daily-form .tracker-card {
        margin-bottom: 1rem;
        padding: 1.25rem 1.25rem;
        border-radius: 1rem;
        border: 1px solid #e8e8e8;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        width: 100%;
        background: var(--white);
    }
    .tracker-daily-form .tracker-card-title {
        font-size: 1.0625rem;
        margin-bottom: 0.75rem;
    }
    .tracker-daily-form .tracker-pills {
        gap: 0.5rem 0.65rem;
    }
    .tracker-daily-form .tracker-pill {
        padding: 0.5rem 1rem;
        font-size: 0.9375rem;
    }
    .tracker-daily-form .tracker-pill:hover {
        background: #faf5f7;
        border-color: var(--primary-pink-light);
    }

    /* Sidebar: Day Range Info + Save Progress */
    .tracker-sidebar {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .tracker-sidebar-card {
        padding: 1.25rem;
        background: var(--white);
        border-radius: 1rem;
        border: 1px solid #e8e8e8;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .tracker-info-icon {
        font-size: 1.5rem;
        display: block;
        margin-bottom: 0.5rem;
    }
    .tracker-sidebar-title {
        font-size: 1.0625rem;
        font-weight: 700;
        color: var(--dark-color);
        margin: 0 0 0.5rem 0;
    }
    .tracker-sidebar-text {
        font-size: 0.9375rem;
        color: var(--dark-gray);
        line-height: 1.5;
    }
    .tracker-save-btn-desktop {
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
        font-weight: 600;
        color: var(--white);
        background: var(--dark-color);
        border: 0;
        border-radius: 0.75rem;
        cursor: pointer;
        margin-bottom: 0.75rem;
        box-shadow: 0 2px 6px rgba(10, 42, 67, 0.25);
    }
    .tracker-save-btn-desktop:hover {
        background: #0d3555;
        color: var(--white);
    }
    .tracker-save-btn-desktop:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }
    .tracker-save-icon {
        font-size: 1.125rem;
    }
    .tracker-save-hint {
        font-size: 0.8125rem;
        color: var(--gray);
    }

    .tracker-reset-wrap {
        grid-column: 1 / -1;
        margin-top: 1rem;
        padding-top: 1rem;
    }
}

/* Large desktop: same single-column, slightly more padding */
@media (min-width: 992px) {
    .tracker-app {
        /* max-width: 36rem; */
        padding: 2rem 1.5rem 2.5rem;
    }
    .tracker-daily-form .tracker-card {
        padding: 1.35rem 1.35rem;
    }
}