/* Shop Page Styles */

/* Shop Hero Styles */
.shop-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
    padding: 0.5rem 0 !important;
    min-height: 25px;
    max-height: 25px;
    overflow: hidden;
}

.category-stats {
    background: rgba(0, 171, 193, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid rgba(0, 171, 193, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Content Compact Styles - Hide all content for 25px height */
.shop-hero .hero-content {
    display: none;
}

.shop-hero .hero-image {
    display: none;
}

.shop-hero .container {
    display: none;
}

/* Sidebar Styles */
.shop-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    position: sticky;
    top: 2rem;
}

.sidebar-section {
    border-bottom: 1px solid #f8f9fa;
    padding-bottom: 1.5rem;
}

.sidebar-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.category-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #6c757d;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-link:hover {
    background: rgba(0, 171, 193, 0.1);
    color: #00abc1;
    border-color: rgba(0, 171, 193, 0.2);
}

.category-link.active {
    background: #00abc1;
    color: white !important;
    border-color: #00abc1;
}

.category-link .badge {
    font-size: 0.75rem;
}

/* Toolbar Styles */
.shop-toolbar {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

/* Product Card Enhancements */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    overflow: hidden;
}

.product-image-container img {
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-badges .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: #000000 !important;
}

.product-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-hover-overlay {
    background: rgba(0, 171, 193, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-hover-overlay {
    opacity: 1;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-features .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Empty State */
.empty-state {
    padding: 3rem 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .category-stats {
        flex-direction: row;
        gap: 0.5rem !important;
        padding: 0.75rem;
    }
    
    .stat-item {
        text-align: center;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .toolbar-actions {
        justify-content: center !important;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .shop-hero {
        padding: 0.5rem 0 !important;
        min-height: 25px;
        max-height: 25px;
    }
    
    .shop-sidebar {
        padding: 1rem;
    }
}
