.elementor-2213 .elementor-element.elementor-element-5bc8b01{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-37d643c *//* ============================================
   Childbirth PRODUCT PAGE CSS - PREMIUM DESIGN
   ASTRODEFINED
   
   HOW TO USE:
   Copy ALL of this CSS and paste it in:
   WordPress → Appearance → Customize → Additional CSS
   ============================================ */

/* ============ SECTION BASE ============ */
.childbirth-product-section {
    position: relative;
    background: linear-gradient(180deg,
            #FFE4A8 0%,
            #FFF3D1 20%,
            #FFFEF9 40%,
            #FFFFFF 60%,
            #FFFEF9 100%);
    padding: 12rem 1.5rem 6rem 1.5rem;
    overflow: hidden;
    min-height: 100vh;
    z-index: 1;
}

/* Premium Mesh Gradient Overlay */
.childbirth-product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 100% 80% at 10% 20%, rgba(251, 191, 36, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse 80% 60% at 90% 80%, rgba(249, 115, 22, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(251, 146, 60, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

/* ============ FLOATING ORBS ============ */
.childbirth-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.childbirth-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.18) 0%, transparent 70%);
    top: -15%;
    left: -15%;
    animation: ChildbirthFloatOrb 25s ease-in-out infinite;
}

.childbirth-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.12) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation: ChildbirthFloatOrb 30s ease-in-out infinite reverse;
}

.childbirth-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation: ChildbirthPulseOrb 10s ease-in-out infinite;
}

@keyframes ChildbirthFloatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    25% {
        transform: translate(60px, -40px) scale(1.1);
        opacity: 1;
    }

    50% {
        transform: translate(30px, -60px) scale(1.05);
        opacity: 0.9;
    }

    75% {
        transform: translate(-25px, -30px) scale(1.08);
        opacity: 1;
    }
}

@keyframes ChildbirthPulseOrb {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* ============ FLOATING PARTICLES ============ */
.childbirth-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.childbirth-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.9) 0%, rgba(249, 115, 22, 0.5) 50%, transparent 100%);
    border-radius: 50%;
    animation: ChildbirthParticle 18s ease-in-out infinite;
}

.childbirth-particle:nth-child(1) {
    left: 8%;
    top: 15%;
    animation-delay: 0s;
    animation-duration: 16s;
}

.childbirth-particle:nth-child(2) {
    left: 25%;
    top: 35%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.childbirth-particle:nth-child(3) {
    left: 45%;
    top: 60%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.childbirth-particle:nth-child(4) {
    left: 65%;
    top: 25%;
    animation-delay: 1s;
    animation-duration: 22s;
}

.childbirth-particle:nth-child(5) {
    left: 82%;
    top: 50%;
    animation-delay: 3s;
    animation-duration: 17s;
}

.childbirth-particle:nth-child(6) {
    left: 92%;
    top: 75%;
    animation-delay: 5s;
    animation-duration: 19s;
}

@keyframes ChildbirthParticle {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-40px) translateX(20px) scale(1.3);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-20px) translateX(-15px) scale(0.8);
        opacity: 0.5;
    }

    75% {
        transform: translateY(-55px) translateX(10px) scale(1.1);
        opacity: 0.8;
    }
}

/* ============ SHOOTING STARS ============ */
.childbirth-stars-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

.childbirth-star {
    position: absolute;
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, #FBBF24 0%, #F59E0B 40%, #D97706 100%);
    border-radius: 50%;
    box-shadow:
        0 0 5px 2px rgba(251, 191, 36, 0.9),
        0 0 10px 4px rgba(249, 115, 22, 0.5);
    opacity: 0;
}

.childbirth-star::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(251, 191, 36, 0.9) 0%,
            rgba(249, 115, 22, 0.6) 15%,
            transparent 100%);
    border-radius: 2px;
}

.childbirth-star-1 {
    top: 12%;
    left: 15%;
    animation: ChildbirthShooting 7s ease-in infinite;
}

.childbirth-star-2 {
    top: 35%;
    left: 55%;
    animation: ChildbirthShooting 9s ease-in infinite;
    animation-delay: 3s;
}

@keyframes ChildbirthShooting {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(215deg);
    }

    3% {
        opacity: 1;
    }

    10% {
        opacity: 1;
        transform: translate(250px, 250px) rotate(215deg);
    }

    12% {
        opacity: 0;
        transform: translate(300px, 300px) rotate(215deg);
    }

    100% {
        opacity: 0;
    }
}

/* ============ CONTAINER ============ */
.childbirth-container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
}

/* ============ MOBILE HEADER ============ */
.childbirth-mobile-header {
    display: none;
    margin-bottom: 1.5rem;
}

.childbirth-mobile-header .childbirth-product-title {
    text-align: center;
    justify-content: center;
}

.childbirth-mobile-header .childbirth-breadcrumb {
    justify-content: center;
    margin-bottom: 1rem;
}

.desktop-only {
    display: flex;
}

/* ============ PRODUCT GRID ============ */
.childbirth-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .childbirth-mobile-header {
        display: none;
    }

    .childbirth-product-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
        align-items: start;
    }
}

/* ============ PRODUCT GALLERY ============ */
.childbirth-product-gallery {
    position: relative;
}

.childbirth-main-image-wrapper {
    position: relative;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(254, 243, 199, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 2rem;
    padding: 1.5rem;
    box-shadow:
        0 8px 40px rgba(249, 115, 22, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 450px;
    margin: 0 auto;
}

.childbirth-main-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 50px rgba(249, 115, 22, 0.15),
        0 8px 30px rgba(0, 0, 0, 0.08);
}

.childbirth-main-image {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    display: block;
    transition: transform 0.5s ease;
}

.childbirth-main-image-wrapper:hover .childbirth-main-image {
    transform: scale(1.02);
}

.childbirth-image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-15deg);
    animation: ChildbirthImageShine 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes ChildbirthImageShine {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    20% {
        left: 100%;
        opacity: 0;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.childbirth-image-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

/* Placeholder Image */
.childbirth-placeholder-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, #FEF3C7 0%, #FDE68A 50%, #FBBF24 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.childbirth-placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.childbirth-placeholder-image .placeholder-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.childbirth-placeholder-image .placeholder-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
    animation: ChildbirthIconPulse 2s ease-in-out infinite;
}

@keyframes ChildbirthIconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.childbirth-placeholder-image .placeholder-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #92400E;
    margin: 0 0 0.5rem 0;
}

.childbirth-placeholder-image .placeholder-content p {
    font-size: 1rem;
    color: #B45309;
    margin: 0;
    font-weight: 500;
}

/* Sale Badge */
.childbirth-sale-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: ChildbirthBadgePulse 2s ease-in-out infinite;
}

.childbirth-sale-badge .sale-text {
    color: white;
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes ChildbirthBadgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Trust Badges */
.childbirth-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.childbirth-trust-badges .trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.childbirth-trust-badges .trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.15);
}

.childbirth-trust-badges .trust-icon {
    font-size: 1.5rem;
}

.childbirth-trust-badges .trust-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
}

/* ============ PRODUCT DETAILS ============ */
.childbirth-product-details {
    position: relative;
}

/* Breadcrumb */
.childbirth-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.childbirth-breadcrumb a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.childbirth-breadcrumb a:hover {
    color: #F97316;
}

.childbirth-breadcrumb .breadcrumb-separator {
    color: #D1D5DB;
}

.childbirth-breadcrumb .current {
    color: #F97316;
    font-weight: 600;
}

/* Product Title */
.childbirth-product-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1F2937;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.childbirth-product-title .title-icon {
    font-size: 2rem;
    animation: ChildbirthIconPulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .childbirth-product-title {
        font-size: 3rem;
    }
}

/* Price Section */
.childbirth-price-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 243, 199, 0.5) 100%);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 1.5rem;
}

.childbirth-price-section .price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.childbirth-price-section .original-price {
    font-size: 1.25rem;
    color: #9CA3AF;
    text-decoration: line-through;
    font-weight: 500;
}

.childbirth-price-section .current-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.childbirth-price-section .savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 9999px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.childbirth-price-section .savings-icon {
    font-size: 1rem;
}

/* Description */
.childbirth-description {
    margin-bottom: 2rem;
}

.childbirth-description .main-description {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.childbirth-description .delivery-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #F97316;
    border-radius: 0 1rem 1rem 0;
    color: #374151;
    font-size: 0.9375rem;
}

.childbirth-description .delivery-icon {
    font-size: 1.25rem;
}

/* Sample Report Button */
.childbirth-product-details .sample-report-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(251, 191, 36, 0.5);
    border-radius: 1rem;
    color: #B45309;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.childbirth-product-details .sample-report-btn:hover {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-color: #FBBF24;
    transform: translateX(5px);
}

.childbirth-product-details .sample-icon {
    font-size: 1.25rem;
}

.childbirth-product-details .btn-arrow {
    transition: transform 0.3s ease;
}

.childbirth-product-details .sample-report-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ============ ACTION BUTTONS ============ */
.childbirth-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 576px) {
    .childbirth-action-buttons {
        flex-direction: row;
    }
}

.childbirth-add-to-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(251, 191, 36, 0.5);
    border-radius: 1.25rem;
    color: #B45309;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.childbirth-add-to-cart:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-color: #FBBF24;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
}

.childbirth-add-to-cart .cart-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: ChildbirthCartShine 3s ease-in-out infinite;
}

@keyframes ChildbirthCartShine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.childbirth-buy-now {
    flex: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    border: none;
    border-radius: 1.25rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow:
        0 8px 30px rgba(249, 115, 22, 0.35),
        0 4px 15px rgba(0, 0, 0, 0.1);
}

.childbirth-buy-now:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 40px rgba(249, 115, 22, 0.45),
        0 8px 20px rgba(0, 0, 0, 0.12);
}

.childbirth-buy-now .buy-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: ChildbirthBuyShine 2.5s ease-in-out infinite;
}

@keyframes ChildbirthBuyShine {
    0% {
        left: -100%;
    }

    25% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.childbirth-buy-now .buy-icon,
.childbirth-buy-now .buy-text,
.childbirth-buy-now .buy-price {
    position: relative;
    z-index: 1;
}

.childbirth-buy-now .buy-icon {
    font-size: 1.5rem;
}

.childbirth-buy-now .buy-price {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
}

/* Tags */
.childbirth-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.childbirth-tags .tag-label {
    color: #6B7280;
    font-weight: 500;
    font-size: 0.875rem;
}

.childbirth-tags .product-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 9999px;
    color: #B45309;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.childbirth-tags .product-tag:hover {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-color: #FBBF24;
    transform: translateY(-2px);
}

/* ============ DETAILS SECTION ============ */
.childbirth-details-section {
    position: relative;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(254, 243, 199, 0.35) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 2.5rem;
    padding: 2.5rem;
    box-shadow:
        0 10px 50px rgba(249, 115, 22, 0.1),
        0 5px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Tabs */
.childbirth-details-section .details-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}

.childbirth-details-section .tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid transparent;
    border-radius: 1rem;
    color: #6B7280;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.childbirth-details-section .tab-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #F97316;
}

.childbirth-details-section .tab-btn.active {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.35);
}

.childbirth-details-section .tab-icon {
    font-size: 1.125rem;
}

/* Tab Content */
.childbirth-details-section .tab-content {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

.childbirth-details-section .tab-content.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Title */
.childbirth-details-section .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.childbirth-details-section .title-decoration {
    color: #F97316;
    font-size: 1.5rem;
}

/* Features Grid */
.childbirth-details-section .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .childbirth-details-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .childbirth-details-section .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .childbirth-details-section .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.childbirth-details-section .feature-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 1.5rem;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.childbirth-details-section .feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 35px rgba(249, 115, 22, 0.15),
        0 6px 18px rgba(0, 0, 0, 0.06);
    border-color: rgba(251, 191, 36, 0.5);
}

.childbirth-details-section .feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.childbirth-details-section .feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    transform: scale(1.1) rotate(5deg);
}

.childbirth-details-section .feature-icon {
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.childbirth-details-section .feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.childbirth-details-section .feature-card p {
    font-size: 0.8125rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Includes List */
.childbirth-details-section .includes-card {
    max-width: 700px;
    margin: 0 auto;
}

.childbirth-details-section .includes-list {
    display: grid;
    gap: 1rem;
}

@media (min-width: 576px) {
    .childbirth-details-section .includes-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.childbirth-details-section .includes-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.childbirth-details-section .includes-item:hover {
    transform: translateX(5px);
    border-color: #FBBF24;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.12);
}

.childbirth-details-section .check-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Requirements */
.childbirth-details-section .requirements-card {
    max-width: 600px;
    margin: 0 auto;
}

.childbirth-details-section .requirements-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    text-align: center;
    margin-bottom: 2rem;
}

.childbirth-details-section .requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.childbirth-details-section .requirement-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.childbirth-details-section .requirement-item:hover {
    transform: translateX(8px);
    border-color: #FBBF24;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.12);
}

.childbirth-details-section .requirement-item.special {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.5) 0%, rgba(253, 230, 138, 0.3) 100%);
    border-color: rgba(249, 115, 22, 0.3);
}

.childbirth-details-section .req-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.childbirth-details-section .req-text {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
}

.childbirth-details-section .req-text small {
    display: block;
    color: #9CA3AF;
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    font-weight: 400;
}

/* Suitable For */
.childbirth-details-section .suitable-for {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.3) 0%, rgba(253, 230, 138, 0.2) 100%);
    border-radius: 1rem;
}

.childbirth-details-section .suitable-for h4 {
    font-size: 1.125rem;
    color: #1F2937;
    margin-bottom: 1rem;
}

.childbirth-details-section .suitable-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.childbirth-details-section .suitable-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
}

/* ============ RESPONSIVE ============ */

/* Tablet and below */
@media (max-width: 991px) {
    .childbirth-product-section {
        padding: 6rem 1rem 4rem 1rem;
    }

    .childbirth-mobile-header {
        display: block;
    }

    .desktop-only {
        display: none !important;
    }

    .childbirth-product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .childbirth-product-gallery {
        order: 1;
    }

    .childbirth-product-details {
        order: 2;
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    .childbirth-product-section {
        padding: 5rem 1rem 3rem 1rem;
    }

    .childbirth-container {
        max-width: 100%;
    }

    .childbirth-product-title {
        font-size: 1.75rem;
        flex-wrap: wrap;
    }

    .childbirth-product-title .title-icon {
        font-size: 1.5rem;
    }

    .childbirth-price-section .current-price {
        font-size: 2rem;
    }

    .childbirth-price-section .original-price {
        font-size: 1rem;
    }

    .childbirth-price-section {
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .childbirth-price-section .savings-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .childbirth-sale-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
    }

    .childbirth-sale-badge .sale-text {
        font-size: 0.75rem;
    }

    /* Reorder elements inside product-details on mobile */
    .childbirth-product-details {
        display: flex;
        flex-direction: column;
    }

    .childbirth-price-section {
        order: 1;
    }

    .childbirth-action-buttons {
        order: 2;
        margin-top: 1rem;
    }

    .childbirth-description {
        order: 3;
        margin-top: 1.5rem;
    }

    .childbirth-product-details .sample-report-btn {
        order: 4;
        margin-top: 1rem;
    }

    .childbirth-tags {
        order: 5;
    }

    .childbirth-action-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .childbirth-add-to-cart,
    .childbirth-buy-now {
        width: 100%;
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        min-height: 56px;
    }

    .childbirth-buy-now .buy-price {
        font-size: 0.875rem;
        padding: 0.4rem 0.75rem;
    }

    /* Trust Badges Mobile - Keep Horizontal */
    .childbirth-trust-badges {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .childbirth-trust-badges .trust-badge {
        flex: 1;
        padding: 0.75rem 0.5rem;
        min-width: 0;
    }

    .childbirth-trust-badges .trust-icon {
        font-size: 1.25rem;
    }

    .childbirth-trust-badges .trust-text {
        font-size: 0.625rem;
        line-height: 1.2;
    }

    .childbirth-breadcrumb {
        font-size: 0.75rem;
        gap: 0.35rem;
    }

    .childbirth-description .main-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .childbirth-description .delivery-info {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .childbirth-product-details .sample-report-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

    .childbirth-details-section {
        padding: 1.5rem 1rem;
        border-radius: 1.5rem;
        margin-top: 1.5rem;
    }

    .childbirth-details-section .details-tabs {
        overflow-x: auto;
        overflow-y: hidden;
        flex-wrap: nowrap;
        gap: 0.75rem;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .childbirth-details-section .details-tabs::-webkit-scrollbar {
        display: none;
    }

    .childbirth-details-section .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .childbirth-details-section .tab-icon {
        font-size: 1rem;
    }

    .childbirth-details-section .section-title {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .childbirth-details-section .title-decoration {
        font-size: 1rem;
    }

    .childbirth-details-section .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .childbirth-details-section .feature-card {
        padding: 1.25rem;
        text-align: left;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .childbirth-details-section .feature-icon-wrapper {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        margin: 0;
    }

    .childbirth-details-section .feature-icon {
        font-size: 1.5rem;
    }

    .childbirth-details-section .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .childbirth-details-section .feature-card p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }

    .childbirth-details-section .includes-list {
        grid-template-columns: 1fr;
    }

    .childbirth-details-section .includes-item {
        padding: 1rem 1.25rem;
    }

    .childbirth-details-section .requirements-title {
        font-size: 1.25rem;
    }

    .childbirth-details-section .requirement-item {
        padding: 1rem 1.25rem;
    }

    .childbirth-details-section .req-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .childbirth-details-section .req-text {
        font-size: 0.9375rem;
    }

    .childbirth-tags {
        gap: 0.5rem;
    }

    .childbirth-tags .product-tag {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }

    .childbirth-placeholder-image {
        aspect-ratio: 1 / 1;
    }

    .childbirth-placeholder-image .placeholder-emoji {
        font-size: 4rem;
    }

    .childbirth-placeholder-image .placeholder-content h3 {
        font-size: 1.5rem;
    }

    .childbirth-placeholder-image .placeholder-content p {
        font-size: 0.875rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .childbirth-product-section {
        padding: 4rem 0.75rem 2.5rem 0.75rem;
    }

    .childbirth-product-title {
        font-size: 1.5rem;
    }

    .childbirth-price-section .current-price {
        font-size: 1.75rem;
    }

    .childbirth-details-section {
        padding: 1.25rem 0.875rem;
    }

    .childbirth-details-section .tab-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.75rem;
    }

    .childbirth-details-section .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .childbirth-details-section .feature-icon-wrapper {
        margin: 0 auto;
    }

    .childbirth-trust-badges {
        display: flex;
        flex-direction: row;
        gap: 0.35rem;
    }

    .childbirth-trust-badges .trust-badge {
        flex: 1;
        flex-direction: column;
        justify-content: center;
        gap: 0.35rem;
        padding: 0.625rem 0.25rem;
    }

    .childbirth-trust-badges .trust-icon {
        font-size: 1.125rem;
    }

    .childbirth-trust-badges .trust-text {
        font-size: 0.5625rem;
    }

    .childbirth-breadcrumb {
        display: none;
    }
}

/* Prevent horizontal overflow globally */
.childbirth-product-section,
.childbirth-container,
.childbirth-product-grid,
.childbirth-product-details {
    max-width: 100%;
    overflow-x: hidden;
}

/* ============ REVIEWS SECTION - NEW (Childbirth Theme) ============ */
.childbirth-reviews-section {
    scroll-margin-top: 120px;
    /* Prevent header overlap */
    margin-top: 1.5rem;
    padding: 2.5rem 0 !important;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(224, 242, 254, 0.6) 50%,
            /* Consistently light sky blue tint */
            rgba(254, 243, 199, 0.4) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 2.5rem;
    box-shadow:
        0 10px 50px rgba(56, 189, 248, 0.1),
        0 5px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.childbirth-reviews-section .section-title {
    margin-bottom: 2rem;
    padding: 0 1.5rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #0369A1;
    /* Dark Sky Blue */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.childbirth-reviews-section .title-decoration {
    color: #38BDF8;
    /* Sky Blue */
    font-size: 1.5rem;
}

/* Reviews Container Wrapper */
.reviews-container-wrapper {
    position: relative;
    max-width: 100%;
}

.reviews-scroll-container {
    width: 100%;
    overflow-x: auto;
    padding: 1rem 3rem 2rem 3rem;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    flex-wrap: nowrap;
}

.reviews-scroll-container::-webkit-scrollbar {
    display: none;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    flex-wrap: nowrap;
}

.review-card {
    width: 320px;
    flex-shrink: 0;
    min-width: 320px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(56, 189, 248, 0.2);
    /* Sky Blue border */
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    white-space: normal;
}

.review-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(56, 189, 248, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.05);
    border-color: rgba(56, 189, 248, 0.5);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.review-stars {
    color: #FBBF24;
    /* Gold stars remain */
    font-size: 0.875rem;
    margin-top: 0.15rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    font-style: italic;
}

.review-date {
    font-size: 0.75rem;
    color: #9CA3AF;
    font-weight: 500;
    text-align: right;
}

/* Scroll Buttons (Childbirth Blue Theme) */
.reviews-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #38BDF8;
    color: #38BDF8;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reviews-scroll-btn:hover {
    background: #38BDF8;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.reviews-scroll-btn.btn-left {
    left: 0.5rem;
}

.reviews-scroll-btn.btn-right {
    right: 0.5rem;
}

/* Link Icon on Image (Childbirth Blue Theme) */
.childbirth-reviews-link-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    z-index: 20;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.childbirth-reviews-link-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.25);
    border-color: #38BDF8;
}

.childbirth-reviews-link-icon .icon-stars {
    font-size: 0.75rem;
    letter-spacing: -1px;
}

.childbirth-reviews-link-icon .icon-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #0369A1;
    text-transform: uppercase;
}

/* Mobile Adjustments for Reviews */
@media (max-width: 767px) {
    .childbirth-reviews-section {
        margin-top: 2rem;
        padding: 2rem 0 !important;
        border-radius: 1.5rem;
    }

    .childbirth-reviews-section .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .review-card {
        width: 280px;
        min-width: 280px;
        padding: 1.25rem;
    }

    .reviews-scroll-container {
        padding: 1rem 1rem 2rem 1rem;
    }

    .reviews-track {
        gap: 1rem;
    }

    .reviews-scroll-btn {
        display: none;
    }

    .childbirth-reviews-link-icon {
        padding: 0.35rem 0.5rem;
        top: 0.75rem;
        left: 0.75rem;
    }

    .childbirth-reviews-link-icon .icon-stars {
        font-size: 0.6rem;
    }

    .childbirth-reviews-link-icon .icon-text {
        font-size: 0.6rem;
    }
}/* End custom CSS */