/* Category Page Styles */

/* Category Hero */
.category-hero {
    padding: 60px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.mindful-hero {
    background: url('../images/mindful-living-banner.jpg') center center / cover no-repeat;
    position: relative;
}
.mindful-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(33, 133, 137, 0.65);
}
.mindful-hero > * { position: relative; z-index: 1; }

.wellness-hero {
    background: url('../images/about-wellness.jpg') center center / cover no-repeat;
    position: relative;
}
.wellness-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 153, 112, 0.65);
}
.wellness-hero > * { position: relative; z-index: 1; }

.spiritual-hero {
    background: url('../images/about-spiritual.jpg') center center / cover no-repeat;
    position: relative;
}
.spiritual-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(102, 126, 234, 0.65);
}
.spiritual-hero > * { position: relative; z-index: 1; }

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.category-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
}

.category-hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Category Intro */
.category-intro {
    padding: 80px 0;
    background: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 32px;
    color: var(--navy-blue);
    margin-bottom: 25px;
    font-weight: bold;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium-gray);
    margin-bottom: 20px;
}

/* Filter Section */
.filter-section {
    padding: 30px 0;
    background: var(--bg-light-gray);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-toggle {
    background: var(--white);
    border: 1px solid var(--border-gray);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.filter-toggle:hover {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
}

.product-count {
    color: var(--text-secondary);
    font-size: 14px;
}

.sort-dropdown {
    padding: 10px 15px;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    background: var(--white);
    cursor: pointer;
    font-size: 14px;
}

/* Subcategories */
.subcategories {
    padding: 40px 0;
    background: var(--white);
}

.subcategory-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.subcategory-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-light-gray);
    border: 2px solid transparent;
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-dark-gray);
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s;
}

.subcategory-link:hover {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
}

.subcategory-link.active {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
}

.subcategory-icon {
    font-size: 20px;
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: var(--white);
}

.products-section .section-title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark-gray);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-teal);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bright-yellow);
    color: var(--text-black);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.product-badge.new {
    background: var(--green);
    color: var(--white);
}

.product-image {
    position: relative;
    width: 100%;
    height: 280px;
    background: var(--bg-light-gray);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 133, 137, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: var(--white);
    color: var(--primary-teal);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.quick-view-btn:hover {
    background: var(--bright-yellow);
    color: var(--text-black);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    color: var(--text-dark-gray);
    margin-bottom: 8px;
    font-weight: bold;
}

.product-description {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: var(--bright-yellow);
    font-size: 16px;
}

.review-count {
    font-size: 13px;
    color: var(--text-secondary);
}

.product-price {
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    color: var(--primary-teal);
    font-weight: bold;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-teal);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: var(--navy-blue);
    transform: translateY(-2px);
}

/* Load More */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

/* Category Benefits */
.category-benefits {
    padding: 80px 0;
    background: var(--bg-light-gray);
}

.category-benefits h2 {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark-gray);
    margin-bottom: 50px;
    font-weight: bold;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 22px;
    color: var(--navy-blue);
    margin-bottom: 15px;
    font-weight: bold;
}

.benefit-item p {
    color: var(--text-medium-gray);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .category-hero h1 {
        font-size: 36px;
    }

    .category-hero p {
        font-size: 16px;
    }

    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .subcategory-grid {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .intro-content h2 {
        font-size: 26px;
    }

    .intro-content p {
        font-size: 16px;
    }
}
/* ── Coming Soon Panel ── */
.coming-soon-panel {
    background: var(--white);
    border: 2px dashed var(--border-gray);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon-panel .cs-banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.coming-soon-panel h3 {
    font-size: 24px;
    color: var(--navy-blue);
    margin: 24px 40px 12px;
    font-weight: bold;
}

.coming-soon-panel p {
    font-size: 16px;
    color: var(--text-medium-gray);
    line-height: 1.7;
    margin: 0 40px 24px;
}

.coming-soon-panel .btn {
    margin-bottom: 32px;
    display: inline-block;
}

@media (max-width: 600px) {
    .coming-soon-panel h3 { margin: 20px 24px 10px; font-size: 20px; }
    .coming-soon-panel p { margin: 0 24px 20px; }
    .coming-soon-panel .btn { margin-bottom: 24px; }
}				