/* Hero Section */
.bio-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    padding: 20px 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-title .highlight {
    color: #27ae60;
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

/* Video Testimonials Grid */
.instagram-testimonials {
    margin: 40px 0;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 15px;
    padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    width: 100%;
    aspect-ratio: 9/16;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pain Point Selector */
.pain-point-selector {
    margin: 60px 0;
}

.pain-point-selector h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.selector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.pain-point-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pain-point-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #27ae60;
    color: white;
}

.pain-point-btn .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.pain-point-btn .label {
    font-weight: 600;
    margin-bottom: 5px;
}

.pain-point-btn .count {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* AI Search */
.ai-search-container {
    max-width: 700px;
    margin: 40px auto;
    position: relative;
}

.search-form {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-btn {
    padding: 0 30px;
    background: #27ae60;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #229954;
}

/* Search Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
}

.suggestion-item {
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    color: #2c3e50;
    border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f8f9fa;
    color: #27ae60;
}

.suggestion-item:first-child {
    border-radius: 15px 15px 0 0;
}

.suggestion-item:last-child {
    border-radius: 0 0 15px 15px;
}

/* Trust Info Section */
.trust-info-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.trust-info-text {
    margin: 20px 0;
}

.trust-info-text h6 {
    font-size: 1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
}

.payment-methods-logos,
.shipping-methods-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.payment-methods-logos img,
.shipping-methods-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.payment-methods-logos img:hover,
.shipping-methods-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Trust Authority Section */
.trust-authority {
    padding: 80px 20px;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.stat-label {
    color: #5a6c7d;
}

/* Pain Point Sections */
.pain-point-section {
    padding: 20px 0px;
    background: white;
}

.pain-point-section:nth-child(even) {
    background: #f8f9fa;
}

.problem-section {
    text-align: center;
    margin-bottom: 60px;
}

/* Clickable Section Title Wrapper */
.section-title-wrapper {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.section-title-wrapper:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.section-title-wrapper:hover .section-title {
    color: #27ae60;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.problem-description {
    font-size: 1.25rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 40px;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.symptoms-grid .symptom:nth-child(5),
.symptoms-grid .symptom:nth-child(6) {
    grid-column: span 2;
}

.symptom {
    padding: 15px;
    background: #e8f5e9;
    border-radius: 10px;
    color: #2e7d32;
    font-weight: 500;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.product-image-link {
    display: block;
    text-decoration: none;
}

.product-image {
    position: relative;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    transition: background 0.2s;
}

.product-image-link:hover .product-image {
    background: #e9ecef;
}

.product-image img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #27ae60;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.product-badge.sale-badge {
    background: #e74c3c;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title-link {
    text-decoration: none;
    display: block;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 50px;
    transition: color 0.2s;
}

.product-title-link:hover .product-title {
    color: #27ae60;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-rating .stars {
    color: #f39c12;
    font-size: 1rem;
}

.product-rating .review-count {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.product-price {
    margin: 15px 0;
}

.price-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
}

.price-old {
    font-size: 1.1rem;
    color: #95a5a6;
    text-decoration: line-through;
    margin-left: 8px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.product-cta {
    width: 100%;
    padding: 14px 24px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.product-cta:hover {
    background: #229954;
}

.product-details-link {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    color: #27ae60;
    border: 2px solid #27ae60;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.product-details-link:hover {
    background: #27ae60;
    color: white;
    text-decoration: none;
}

.product-benefits {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 15px 0;
}

.benefit {
    font-size: 0.875rem;
    color: #5a6c7d;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: #27ae60;
    color: #27ae60;
    background: transparent;
}

.btn-outline:hover {
    background: #27ae60;
    color: white;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 20px 50px;
    font-size: 1.25rem;
}

/* FAQ Accordion */
.faq-section .subsection-title {
    text-align: center;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: white;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
    text-align: left;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #2c3e50;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Hero Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 100px;
    height: 100px;
    background: url('/wp-content/themes/sbomart/assets/img/leaf.svg') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.leaf-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Live Activity Pulse */
.live-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    font-size: 1.125rem;
}

.pulse {
    width: 10px;
    height: 10px;
    background: #27ae60;
    border-radius: 50%;
    position: relative;
}

.pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #27ae60;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Loading States - Only for buttons */
button.loading {
    position: relative;
    pointer-events: none;
}

button.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Success Notification */
.cart-success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 16px 24px;
    transform: translateX(400px);
    transition: transform 0.3s ease-out;
}

.cart-success-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 24px;
}

.notification-text {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Add to Cart Button States */
.add-to-cart-btn.loading {
    background: #95a5a6;
    cursor: not-allowed;
}

.add-to-cart-btn.added {
    background: #27ae60;
}

/* Section Quick Link */
.section-quick-link {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05) 0%, rgba(34, 153, 84, 0.05) 100%);
    border-radius: 15px;
}

.section-quick-link .btn {
    font-size: 1.15rem;
    padding: 16px 35px;
}

/* Section Title Link */
.section-title-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 1.1rem;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.section-title-link:hover {
    color: #229954;
    transform: translateX(5px);
}

/* View All Section */
.view-all-section {
    text-align: center;
    margin: 50px 0;
    padding: 30px 0;
}

.view-all-btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    border: none;
    cursor: pointer;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
    color: white;
}

@media (max-width: 768px) {
    .view-all-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Brand Section */
.brand-section {
    margin: 60px 0;
    padding: 0 20px;
}

.brand-section .subsection-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.brand-section .subsection-description {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Brand Carousel Container */
.brand-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-showcase-wrapper {
    overflow: hidden;
    padding: 0 60px;
}

.brand-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60 0%, #229954 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(39, 174, 96, 0.15);
    border-color: #27ae60;
}

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

.brand-logo-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    background: #f8f9fa;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-logo-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: scale(1.05);
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0);
    transition: filter 0.3s ease;
}

.brand-card:hover .brand-logo-img {
    filter: grayscale(0) contrast(1.1);
}

.brand-info {
    margin-bottom: 20px;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.brand-products {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 500;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.brand-link:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
}

.brand-link svg {
    transition: transform 0.3s ease;
}

.brand-link:hover svg {
    transform: translateX(4px);
}

/* Brand Carousel Controls */
.brand-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
}

.brand-prev,
.brand-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #27ae60;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    pointer-events: auto;
    transition: all 0.3s ease;
    font-weight: 300;
}

.brand-prev:hover,
.brand-next:hover {
    background: #27ae60;
    color: white;
    transform: scale(1.1);
}

/* Brand Progress Bar */
.brand-progress {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    position: relative;
    margin-top: 30px;
}

.brand-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #27ae60;
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .brand-showcase-wrapper {
        padding: 0 50px;
    }
    
    .brand-card {
        padding: 24px 16px;
    }
    
    .brand-logo-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .brand-section .subsection-title {
        font-size: 1.75rem;
    }
    
    .brand-prev,
    .brand-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-showcase-wrapper {
        padding: 0 40px;
    }
    
    .brand-prev,
    .brand-next {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
}

/* Category Filters */
.category-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #27ae60;
    border-radius: 25px;
    color: #27ae60;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #27ae60;
    color: white;
}

/* Product Groups */
.product-group {
    margin-bottom: 60px;
}

.product-group.hidden {
    display: none;
}

.group-title {
    font-size: 1.75rem;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #27ae60;
    text-align: left;
}

/* Digestive Categories Grid */
.digestive-categories-grid {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
}

.categories-section-title {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

.category-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.category-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.category-card-title {
    font-size: 1.25rem;
    color: #27ae60;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e9;
}

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

.category-links-list li {
    margin-bottom: 10px;
}

.category-links-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.category-links-list a:hover {
    background: #e8f5e9;
    color: #27ae60;
    padding-left: 16px;
}

.category-links-list a .count {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* Testimonial Cards */
.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-card {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 20px 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verified {
    color: #27ae60;
    font-size: 0.875rem;
}

/* Section CTA */
.section-cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 20px;
    margin-top: 60px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Detox Challenge */
.detox-challenge {
    padding: 40px;
    background: white;
    border-radius: 20px;
    margin: 40px 0;
}

.challenge-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.day-card {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s;
}

.day-card:hover {
    transform: translateY(-5px);
    background: #e8f5e9;
}

.day-number {
    font-weight: 700;
    color: #27ae60;
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.day-task {
    font-size: 0.875rem;
    color: #5a6c7d;
}

/* Protein Calculator */
.protein-calculator {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
}

#protein-result {
    margin-top: 20px;
    padding: 20px;
    background: #e8f5e9;
    border-radius: 10px;
    text-align: center;
}

.protein-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 10px 0;
}

/* Reviews Slider Styles */
.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 50px;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.reviews-slider::-webkit-scrollbar {
    height: 8px;
}

.reviews-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews-slider::-webkit-scrollbar-thumb {
    background: #27ae60;
    border-radius: 10px;
}

.review-slide {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
}

.review-product {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #27ae60;
    font-style: italic;
}

/* Slider Navigation */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #27ae60;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    color: #27ae60;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background: #27ae60;
    color: white;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active {
    background: #27ae60;
}

/* Reviews Carousel Section */
.reviews-carousel-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 20px;
    margin-bottom: 60px;
}

.bio-reviews-widget {
    max-width: 1200px;
    margin: 0 auto;
}

.bio-widget-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Header Styles */
.bio-reviews-header {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 40px;
}

.bio-rating-text {
    margin-bottom: 12px;
}

.bio-rating-large {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    letter-spacing: 2px;
}

.bio-stars-large {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.bio-stars-large img {
    width: 28px;
    height: 28px;
}

.bio-rating-text-sub {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.bio-rating-text-sub strong {
    color: #2c3e50;
    font-weight: 600;
}

.bio-logo-wrapper {
    display: flex;
    justify-content: center;
}

.bio-logo-wrapper img {
    width: 110px;
    height: auto;
}

/* Reviews Container */
.bio-reviews-container {
    position: relative;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.bio-reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0 30px 0;
    cursor: grab;
}

.bio-reviews-wrapper:active {
    cursor: grabbing;
}

.bio-review-item {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease, transform 0.1s ease;
    border: 1px solid #eee;
    will-change: transform;
}

.bio-review-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.1);
    transform: translateY(-2px);
    border-color: #27ae60;
}

.bio-review-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Review Header */
.bio-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
}

.bio-platform-icon {
    position: absolute;
    top: -5px;
    right: 0;
}

.bio-platform-icon img {
    width: 20px;
    height: 20px;
}

.bio-profile-img {
    flex-shrink: 0;
}

.bio-profile-img img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.bio-profile-details {
    flex: 1;
    min-width: 0;
}

.bio-reviewer-name {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bio-review-date {
    font-size: 0.85rem;
    color: #95a5a6;
}

/* Stars */
.bio-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 12px;
    position: relative;
}

.bio-stars img {
    width: 16px;
    height: 16px;
}

.bio-verified-badge {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #4285f4;
    border-radius: 50%;
    margin-left: 6px;
    position: relative;
    cursor: help;
}

.bio-verified-badge::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.bio-verified-tooltip {
    display: none;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

.bio-verified-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #2c3e50;
}

.bio-verified-badge:hover .bio-verified-tooltip {
    display: block;
}

/* Review Content */
.bio-review-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5a6c7d;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    flex: 1;
    margin-bottom: 8px;
}

/* Review Product Name */
.bio-review-product {
    font-size: 0.75rem;
    font-style: italic;
    color: #95a5a6;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

/* Navigation Controls */
.bio-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
}

.bio-prev,
.bio-next {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #27ae60;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    pointer-events: auto;
    transition: all 0.3s ease;
    font-weight: 300;
}

.bio-prev {
    margin-left: -25px;
}

.bio-next {
    margin-right: -25px;
}

.bio-prev:hover,
.bio-next:hover {
    background: #27ae60;
    color: white;
    transform: scale(1.1);
}

/* Progress Line */
.bio-controls-line {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    position: relative;
    margin-top: 20px;
}

.bio-progress-dot {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 60px;
    height: 4px;
    background: #27ae60;
    border-radius: 2px;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .symptoms-grid .symptom:nth-child(5),
    .symptoms-grid .symptom:nth-child(6) {
        grid-column: span 1;
    }

    .digestive-categories-grid {
        padding: 20px;
    }

    .categories-section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .category-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-card {
        padding: 20px;
    }

    .category-card-title {
        font-size: 1.1rem;
    }

    /* Reviews Carousel Responsive */
    .reviews-carousel-section {
        padding: 40px 15px;
    }

    .bio-widget-container {
        padding: 25px;
    }

    .bio-reviews-header {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .bio-rating-large {
        font-size: 1.5rem;
    }

    .bio-stars-large img {
        width: 22px;
        height: 22px;
    }

    .bio-rating-text-sub {
        font-size: 1rem;
    }

    .bio-reviews-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bio-review-item {
        padding: 15px;
        min-height: 180px;
    }

    .bio-prev,
    .bio-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .bio-prev {
        margin-left: -20px;
    }

    .bio-next {
        margin-right: -20px;
    }

    .selector-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto auto;
        gap: 15px;
        max-width: 100%;
    }

    .pain-point-btn {
        padding: 20px 10px;
    }

    .pain-point-btn .icon {
        font-size: 2rem;
    }

    .pain-point-btn .label {
        font-size: 0.9rem;
    }

    .pain-point-btn .count {
        font-size: 0.75rem;
    }

    .hero-video-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto auto;
        gap: 10px;
        padding: 15px 0;
        max-width: 100%;
    }

    .instagram-testimonials {
        padding: 20px 15px;
    }

    .video-card {
        border-radius: 8px;
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .product-card {
        font-size: 0.85rem;
    }

    .product-image {
        min-height: 180px;
        padding: 15px;
    }

    .product-image img {
        max-height: 150px;
    }

    .product-title {
        font-size: 0.9rem;
        min-height: auto;
    }

    .product-price {
        margin: 10px 0;
    }

    .price-current {
        font-size: 1.1rem;
    }

    .price-old {
        font-size: 0.9rem;
    }

    .product-cta {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .product-details-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .trust-info-section {
        padding: 20px;
    }

    .trust-info-text h6 {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .payment-methods-logos img,
    .shipping-methods-logos img {
        height: 30px;
    }

    .payment-methods-logos,
    .shipping-methods-logos {
        gap: 15px;
    }

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

    /* Mobile product description adjustments */
    .product-description {
        font-size: 8px;
        line-height: 1.3;
        max-height: calc(8px * 1.3 * 4); /* 4 rows */
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    .review-slide {
        flex: 0 0 calc(50% - 10px);
    }

    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .symptoms-grid {
        grid-template-columns: 1fr;
    }

    .symptoms-grid .symptom:nth-child(5),
    .symptoms-grid .symptom:nth-child(6) {
        grid-column: span 1;
    }

    /* Reviews Carousel Mobile */
    .reviews-carousel-section {
        padding: 30px 10px;
    }

    .bio-widget-container {
        padding: 20px 15px;
    }

    .bio-rating-large {
        font-size: 1.25rem;
    }

    .bio-reviews-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bio-review-item {
        padding: 15px;
    }

    .bio-reviewer-name {
        font-size: 0.9rem;
    }

    .bio-review-content {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }

    .bio-review-product {
        font-size: 0.7rem;
        margin-top: 6px;
        padding-top: 6px;
    }

    .bio-controls {
        display: none;
    }

    .bio-reviews-wrapper {
        cursor: default;
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }

    .selector-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto auto;
        gap: 10px;
    }

    .pain-point-selector h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .pain-point-btn {
        padding: 15px 5px;
        border-radius: 10px;
    }

    .pain-point-btn .icon {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .pain-point-btn .label {
        font-size: 0.8rem;
        font-weight: 500;
    }

    .pain-point-btn .count {
        font-size: 0.7rem;
    }

    .hero-video-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto auto;
        gap: 6px;
        padding: 10px 0;
        max-width: 100%;
    }

    .instagram-testimonials {
        padding: 15px 10px;
    }

    .instagram-testimonials h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .video-card {
        border-radius: 6px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .product-card {
        font-size: 0.8rem;
    }

    .product-image {
        min-height: 150px;
        padding: 10px;
    }

    .product-image img {
        max-height: 130px;
    }

    .product-title {
        font-size: 0.85rem;
        min-height: auto;
    }

    .product-content {
        padding: 15px;
    }

    .review-slide {
        flex: 0 0 100%;
    }

    .reviews-slider-container {
        padding: 20px 40px;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }
}

