/* Category Page Premium Styling */
.category-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(172, 29, 184, 0.8), rgba(212, 175, 55, 0.6));
    display: flex;
    align-items: center;
    color: white;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.hero-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-overlay p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
}

/* Subcategories Grid */
.subcategories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.subcategories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
}

.subcategories-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ac1db8, #D4AF37);
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.subcategory-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.subcategory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(172, 29, 184, 0.15);
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.subcategory-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.card-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: white;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.trust-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.trust-item p {
    color: #6c757d;
    line-height: 1.6;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-card .card-content {
    padding: 20px;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ac1db8;
    margin-bottom: 15px;
}

.btn-quote {
    background: #ac1db8;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-quote:hover {
    background: #8a1693;
    transform: translateY(-2px);
}

/* Category CTA */
.category-cta {
    background: linear-gradient(135deg, #ac1db8, #D4AF37);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.category-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.category-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    background: white;
    color: #ac1db8;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* SEO Content */
.seo-content {
    padding: 60px 0;
    background: white;
}

.seo-block h3 {
    color: #ac1db8;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.seo-block p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .subcategories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-hero {
        height: 40vh;
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-overlay h1 {
        font-size: 1.8rem;
    }
    
    .hero-overlay p {
        font-size: 1rem;
    }
}

/* FAQ Section Styling */
.faq-section {
    background: #f8f9fa;
    padding: 3rem 0;
    margin: 2rem 0;
}

.faq-section h3 {
    text-align: center;
    color: #ac1db8;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #ac1db8;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(172, 29, 184, 0.15);
}

.faq-item h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-section h3 {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
}