.elementor-2586 .elementor-element.elementor-element-8092140{--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-0498d35 */@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ============ RESET & BASICS ============ */
:root {
    --primary-color: #F97316;
    /* Orange-500 */
    --secondary-color: #FBBF24;
    /* Amber-400 */
    --accent-color: #10B981;
    /* Emerald-500 (kept for health context) */
    --text-color: #1F2937;
    --bg-color: #FFFBEB;
    --card-bg: rgba(255, 255, 255, 0.9);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ============ BACKGROUND ANIMATION ============ */
.health-product-section {
    position: relative;
    background: linear-gradient(180deg,
            #FFE4A8 0%,
            #FFF3D1 20%,
            #FFFEF9 40%,
            #FFFFFF 60%,
            #FFFEF9 100%);
    padding: 10rem 1.5rem 6rem 1.5rem;
    overflow: hidden;
    min-height: 100vh;
    z-index: 1;
}

/* Premium Mesh Gradient Overlay */
.health-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 */
.health-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: healthFloat 20s infinite ease-in-out;
}

.health-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(251, 191, 36, 0.2);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.health-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.15);
    bottom: 20%;
    left: -5%;
    animation-delay: -5s;
}

.health-orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(16, 185, 129, 0.1);
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes healthFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -50px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

/* Particles */
.health-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.health-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: healthParticle 18s ease-in-out infinite;
}

.health-particle:nth-child(1) {
    left: 8%;
    top: 15%;
    animation-delay: 0s;
    animation-duration: 16s;
}

.health-particle:nth-child(2) {
    left: 25%;
    top: 35%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.health-particle:nth-child(3) {
    left: 45%;
    top: 60%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.health-particle:nth-child(4) {
    left: 65%;
    top: 25%;
    animation-delay: 1s;
    animation-duration: 22s;
}

.health-particle:nth-child(5) {
    left: 82%;
    top: 50%;
    animation-delay: 3s;
    animation-duration: 17s;
}

.health-particle:nth-child(6) {
    left: 92%;
    top: 75%;
    animation-delay: 5s;
    animation-duration: 19s;
}

@keyframes healthParticle {

    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 ============ */
.health-stars-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

.health-star {
    position: absolute;
    width: 5px;
    height: 5px;
    background: radial-gradient(circle, #FFFFFF 0%, #E8E8E8 40%, #C0C0C0 100%);
    border-radius: 50%;
    box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.9), 0 0 10px 4px rgba(192, 192, 192, 0.5);
    opacity: 0;
}

.health-star::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(192, 192, 192, 0.6) 15%, transparent 100%);
    border-radius: 2px;
}

.health-star-1 {
    top: 12%;
    left: 15%;
    animation: healthShooting 7s ease-in infinite;
}

.health-star-2 {
    top: 35%;
    left: 55%;
    animation: healthShooting 9s ease-in infinite;
    animation-delay: 3s;
}

@keyframes healthShooting {
    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 ============ */
.health-container {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
}

/* ============ MOBILE HEADER ============ */
.health-mobile-header {
    display: none;
    margin-bottom: 1.5rem;
}

.health-mobile-header .health-product-title {
    text-align: center;
    justify-content: center;
}

.health-mobile-header .health-breadcrumb {
    justify-content: center;
    margin-bottom: 1rem;
}

.desktop-only {
    display: flex;
}

/* ============ PRODUCT GRID ============ */
.health-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .health-product-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
        align-items: start;
    }
}

/* ============ PRODUCT GALLERY ============ */
.health-product-gallery {
    position: relative;
}

.health-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;
}

.health-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);
}

.health-main-image {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    display: block;
    transition: transform 0.5s ease;
}

.health-main-image-wrapper:hover .health-main-image {
    transform: scale(1.02);
}

.health-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: healthImageShine 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes healthImageShine {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    20% {
        left: 100%;
        opacity: 0;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.health-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;
}

/* Sale Badge */
.health-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: healthBadgePulse 2s ease-in-out infinite;
}

.sale-text {
    color: white;
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes healthBadgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Trust Badges */
.health-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.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.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.15);
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    text-align: center;
}

/* ============ PRODUCT DETAILS ============ */
.health-product-details {
    position: relative;
}

/* Breadcrumb */
.health-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.health-breadcrumb a {
    color: #6B7280;
    text-decoration: none;
    transition: behavior 0.3s ease;
}

.health-breadcrumb a:hover {
    color: #F97316;
}

.breadcrumb-separator {
    color: #D1D5DB;
}

.health-breadcrumb .current {
    color: #F97316;
    font-weight: 600;
}

/* Product Title */
.health-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;
}

.title-icon {
    font-size: 2rem;
    animation: healthPulse 1.5s ease-in-out infinite;
}

@keyframes healthPulse {

    0%,
    100% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.1);
    }
}

@media (min-width: 768px) {
    .health-product-title {
        font-size: 3rem;
    }
}

/* Price Section */
.health-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.3);
    border-radius: 1.5rem;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.original-price {
    font-size: 1.25rem;
    color: #9CA3AF;
    text-decoration: line-through;
    font-weight: 500;
}

.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;
}

.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);
}

.savings-icon {
    font-size: 1rem;
}

/* Description */
.health-description {
    margin-bottom: 2rem;
}

.main-description {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(249, 115, 22, 0.08);
    border-left: 4px solid #F97316;
    border-radius: 0 1rem 1rem 0;
    color: #374151;
    font-size: 0.9375rem;
}

.delivery-icon {
    font-size: 1.25rem;
}

/* Action Buttons */
.health-action-buttons {
    display: flex;
    flexDirection: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 576px) {
    .health-action-buttons {
        flex-direction: row;
    }
}

/* Add to Cart */
.health-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);
}

.health-add-to-cart:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-color: #F97316;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
}

/* Buy Now */
.health-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);
}

.health-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);
}

/* Tags */
.health-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tag-label {
    color: #6B7280;
    font-weight: 500;
    font-size: 0.875rem;
}

.product-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 9999px;
    color: #B45309;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-tag:hover {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-color: #F97316;
    transform: translateY(-2px);
}

/* ============ DETAILS SECTION ============ */
.health-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 */
.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.2);
}

.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;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #F97316;
}

.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);
}

.tab-content {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Title */
.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;
}

.title-decoration {
    color: #F97316;
    font-size: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 1.5rem;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.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(249, 115, 22, 0.4);
}

.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;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    transform: scale(1.1) rotate(5deg);
}

/* Includes & Requirements */
.includes-item,
.requirement-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.includes-item:hover,
.requirement-item:hover {
    transform: translateX(5px);
    border-color: #F97316;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.12);
}

.check-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.req-number {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* ============ REVIEWS SECTION ============ */
.health-reviews-section {
    scroll-margin-top: 120px;
    margin-top: 1.5rem;
    padding: 2.5rem 0 !important;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 240, 245, 0.5) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 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);
}

/* Reviews Container Wrapper */
.reviews-container-wrapper {
    position: relative;
    max-width: 100%;
}

.reviews-scroll-container {
    width: 100%;
    overflow-x: auto;
    padding: 1rem 3rem 2rem 3rem;
    /* extra padding left/right for buttons */
    -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.9);
    border: 1px solid rgba(249, 115, 22, 0.2);
    /* Orange 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(249, 115, 22, 0.15), 0 4px 10px rgba(0, 0, 0, 0.05);
    border-color: rgba(249, 115, 22, 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;
    background: #F97316;
    /* Orange */
    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: #F59E0B;
    font-size: 0.875rem;
    margin-top: 0.15rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.9375rem;
    color: #4B5563;
    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 */
.reviews-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #F97316;
    color: #F97316;
    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: #F97316;
    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 */
.health-reviews-link-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 0.5rem 0.75rem;
    border-radius: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    z-index: 20;
}

.health-reviews-link-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
    border-color: #F97316;
}

.health-reviews-link-icon .icon-stars {
    font-size: 0.75rem;
    letter-spacing: -1px;
}

.health-reviews-link-icon .icon-text {
    font-size: 0.7rem;
    font-weight: 700;
    color: #1F2937;
    text-transform: uppercase;
}

/* Responsive Overrides (Mobile) */
@media (max-width: 991px) {
    .health-product-section {
        padding: 6rem 1rem 4rem 1rem;
    }

    .health-mobile-header {
        display: block;
    }

    .desktop-only {
        display: none !important;
    }

    .health-product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .health-product-gallery {
        order: 1;
    }

    .health-product-details {
        order: 2;
    }
}

@media (max-width: 767px) {
    .health-product-section {
        padding: 5rem 1rem 3rem 1rem;
    }

    .health-product-title {
        font-size: 1.75rem;
        flex-wrap: wrap;
    }

    .current-price {
        font-size: 2rem;
    }

    .health-price-section {
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .health-price-section {
        order: 1;
    }

    .health-action-buttons {
        order: 2;
        margin-top: 1rem;
        flex-direction: column;
    }

    .health-description {
        order: 3;
        margin-top: 1.5rem;
    }

    .health-tags {
        order: 5;
    }

    .health-add-to-cart,
    .health-buy-now {
        width: 100%;
    }

    .health-trust-badges {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .trust-badge {
        flex: 1;
        padding: 0.75rem 0.5rem;
        min-width: 0;
    }

    .details-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 0.75rem;
    }

    .tab-btn {
        flex-shrink: 0;
    }

    .health-reviews-section {
        margin-top: 2rem;
        padding: 2rem 0 !important;
    }

    /* Mobile Reviews */
    .review-card {
        width: 280px;
        min-width: 280px;
        padding: 1.25rem;
    }

    .reviews-scroll-container {
        padding: 1rem 1rem 2rem 1rem;
        /* remove side padding on mobile */
    }

    .reviews-track {
        gap: 1rem;
    }

    /* Hide scroll buttons on mobile as touch is intuitive */
    .reviews-scroll-btn {
        display: none;
    }
}/* End custom CSS */