/* Product Page Styles */

.product-hero {
    padding: 8rem 0 5rem;
    background: var(--bg-light);
    margin-top: 80px;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-hero-info h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-tagline {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.product-desc {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Product Benefits */
.product-benefits {
    padding: var(--spacing-xl) 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-cream);
    border-radius: 15px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Who It's For */
.product-for {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.for-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.for-check {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

.for-item p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin: 0;
    padding-top: 0.2rem;
}

/* Pain Relief Section */
.pain-relief {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.pain-relief-content {
    max-width: 800px;
    margin: 0 auto;
}

.pain-relief h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.pain-relief p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.pain-relief .btn {
    background: white;
    color: var(--primary-color);
    margin-top: 1rem;
}

.pain-relief .btn:hover {
    background: var(--bg-cream);
}

/* Product Specs */
.product-specs {
    padding: var(--spacing-xl) 0;
    background: white;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.spec-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.spec-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.spec-item p {
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-hero {
        padding: 6rem 0 3rem;
    }
    
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-hero-info h1 {
        font-size: 2.2rem;
    }
    
    .product-tagline {
        font-size: 1.2rem;
    }
    
    .product-desc {
        font-size: 1rem;
    }
    
    .product-hero-ctas {
        flex-direction: column;
    }
    
    .product-hero-ctas .btn {
        width: 100%;
    }
    
    .benefits-grid,
    .for-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-relief h2 {
        font-size: 2rem;
    }
    
    .pain-relief p {
        font-size: 1.05rem;
    }
}
