* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating WhatsApp Button - CRITICAL for conversions */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: 0.2s;
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.08);
    background: #128C7E;
}

/* Header */
header {
    background: linear-gradient(135deg, #0a1f12, #143d24);
    color: white;
    padding: 60px 20px;
}

/* Hero Split Layout */
.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.hero-image img:hover {
    transform: scale(1.02);
}

header h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffcc00;
}

.subheadline {
    font-size: 1rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-features span {
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.location-box {
    margin-bottom: 28px;
    font-size: 0.95rem;
    text-align: left;
}

.hero-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

.hero-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.02);
}

.urgency-badge {
    margin-top: 24px;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.1);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
}

/* CTA Context Text */
.cta-context {
    font-size: 0.75rem;
    font-weight: normal;
    opacity: 0.9;
}

.hero-whatsapp .cta-context,
.final-wa .cta-context {
    display: inline-block;
    margin-left: 5px;
}

/* Trust Bar */
.trust-bar {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-items span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Best Sellers */
.best-sellers {
    padding: 60px 0;
    background: #fff8f0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #143d24;
}

.section-header p {
    color: #666;
}

/* Categories */
.category {
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.category-header {
    text-align: center;
    margin-bottom: 32px;
}

.category-header h2 {
    font-size: 1.6rem;
    color: #143d24;
}

.category-header p {
    color: #666;
}

.category-footer {
    text-align: center;
    margin-top: 32px;
}

.category-wa {
    display: inline-block;
    background: transparent;
    border: 2px solid #25D366;
    color: #25D366;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.category-wa:hover {
    background: #25D366;
    color: white;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #eef2f0;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Hero Product Card (#1 Best Seller stands out) */
.hero-product-card {
    border: 2px solid #ffd700;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #143d24;
    font-weight: 700;
}

.product-desc {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #143d24;
    margin: 10px 0;
}

.product-wa {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: 0.3s;
    width: 100%;
    text-align: center;
}

.product-wa:hover {
    background: #128C7E;
}

.badge {
    display: inline-block;
    background: #ff6b35;
    color: white;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.badge.hero-product {
    background: #ffd700;
    color: #1a1a1a;
    font-weight: 700;
}

/* Product Badges */
.product-badge {
    display: inline-block;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 50px;
    font-weight: 600;
}

.product-badge.delivery {
    background: #e8f5e9;
    color: #2e7d32;
}

.product-badge.payment {
    background: #e3f2fd;
    color: #1565c0;
}

/* Decision Labels */
.decision-label {
    display: inline-block;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 600;
    margin: 8px 0;
}

.decision-label.back-pain {
    background: #e8f5e9;
    color: #2e7d32;
}

.decision-label.couples {
    background: #e3f2fd;
    color: #1565c0;
}

.decision-label.budget {
    background: #fff3e0;
    color: #e65100;
}

/* Collapsible Price List */
.price-list-toggle {
    background: none;
    border: none;
    color: #25D366;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 0;
    margin: 5px 0;
    text-align: left;
    display: inline-block;
}

.price-list-toggle:hover {
    text-decoration: underline;
}

.full-price-list {
    display: none;
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.75rem;
    line-height: 1.6;
}

.full-price-list.show {
    display: block;
}

.full-price-list p {
    margin: 4px 0;
    color: #333;
}

/* Variation Items for price list */
.variation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px dashed #e9ecef;
}

.variation-size {
    font-weight: 600;
    color: #143d24;
}

.variation-price {
    color: #25D366;
    font-weight: 600;
}

/* Why Choose */
.why-choose {
    padding: 50px 0;
    background: #f8f9fa;
    text-align: center;
}

.why-choose h2 {
    margin-bottom: 40px;
    font-size: 1.6rem;
    color: #143d24;
}

.why-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.why-item {
    text-align: center;
    max-width: 150px;
}

.why-item i {
    font-size: 2rem;
    color: #143d24;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Size Guide */
.size-guide {
    padding: 50px 0;
    background: #f8fbf7;
    text-align: center;
}

.size-guide h2 {
    font-size: 1.6rem;
    color: #143d24;
    margin-bottom: 16px;
}

.guide-intro {
    color: #666;
    margin-bottom: 30px;
}

.size-table {
    max-width: 550px;
    margin: 0 auto;
}

.size-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 10px;
}

.size-row.highlight {
    background: #fff3e0;
    border-radius: 12px;
    margin: 8px 0;
}

.size-name {
    font-weight: 700;
    min-width: 90px;
}

.size-desc {
    flex: 1;
    text-align: left;
    font-size: 0.85rem;
    color: #555;
}

.size-price {
    font-weight: 700;
    color: #1f5430;
    min-width: 100px;
}

.size-note {
    margin-top: 24px;
    color: #666;
    font-size: 0.85rem;
}

/* Delivery Areas */
.delivery-areas {
    padding: 50px 0;
    text-align: center;
    background: white;
}

.delivery-areas h2 {
    font-size: 1.6rem;
    color: #143d24;
    margin-bottom: 30px;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
}

.areas-grid span {
    background: #eef3e9;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.85rem;
}

.areas-note {
    color: #2e7d32;
    font-weight: 600;
    margin-top: 20px;
}

/* Map Section */
.map-section {
    padding: 50px 0;
    background: #f8fbf7;
    text-align: center;
}

.map-section h2 {
    font-size: 1.6rem;
    color: #143d24;
    margin-bottom: 12px;
}

.map-container {
    margin: 28px 0;
    border-radius: 24px;
    overflow: hidden;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a4a2a;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.directions-btn:hover {
    background: #0f3b22;
}

/* Reviews */
.reviews {
    padding: 50px 0;
    background: white;
    text-align: center;
}

.reviews h2 {
    margin-bottom: 40px;
    font-size: 1.6rem;
    color: #143d24;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.review-stars {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.review-name {
    font-weight: 700;
    font-size: 0.85rem;
}

/* FAQ Section */
.faq {
    padding: 50px 0;
    background: #f8f9fa;
    text-align: center;
}

.faq h2 {
    margin-bottom: 40px;
    font-size: 1.6rem;
    color: #143d24;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.faq-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-card i {
    font-size: 2rem;
    color: #143d24;
    margin-bottom: 12px;
}

.faq-card h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.faq-card p {
    font-size: 0.85rem;
    color: #555;
}

/* Final CTA */
.final-cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, #143d24, #0a1f12);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.final-cta p {
    margin-bottom: 28px;
    opacity: 0.9;
}

.final-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.final-features span {
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.final-wa {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

.final-wa:hover {
    background: #128C7E;
}

/* Contact */
.contact {
    padding: 50px 0;
    background: #143d24;
    color: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.contact-card {
    text-align: center;
    padding: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
}

.contact-card i {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-card h3 {
    margin-bottom: 12px;
}

.contact-card p {
    margin: 5px 0;
}

.contact-wa {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 12px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.contact-wa:hover {
    background: #128C7E;
}

/* Footer */
footer {
    background: #0a1f12;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-content p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 4px 0;
}

.social {
    display: flex;
    gap: 16px;
}

.social a {
    color: white;
    font-size: 1.3rem;
    opacity: 0.7;
    transition: 0.3s;
}

.social a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.7rem;
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .location-box {
        text-align: center;
    }
    
    .hero-image img {
        max-width: 80%;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .subheadline {
        font-size: 0.9rem;
    }
    
    .trust-items {
        gap: 12px;
    }
    
    .trust-items span {
        font-size: 0.7rem;
    }
    
    .section-header h2,
    .category-header h2,
    .why-choose h2,
    .reviews h2,
    .size-guide h2,
    .delivery-areas h2,
    .map-section h2,
    .faq h2,
    .contact h2 {
        font-size: 1.4rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        gap: 20px;
    }
    
    .why-item {
        max-width: 100px;
    }
    
    .why-item i {
        font-size: 1.5rem;
    }
    
    .why-item p {
        font-size: 0.7rem;
    }
    
    .size-row {
        flex-direction: column;
        text-align: center;
    }
    
    .size-desc {
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .final-features {
        gap: 12px;
    }
    
    .final-features span {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .final-wa {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-wa {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-info h3 {
        font-size: 0.95rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .price-list-toggle {
        font-size: 0.65rem;
    }
    
    .areas-grid span {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
}