/* Shop-specific styles */
.logo a {
    color: #1a1a1a;
    text-decoration: none;
}

.nav-menu .active {
    color: #8b5a3c;
}

.shop-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
    text-align: center;
}

.shop-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.shop-hero p {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.shop-content {
    padding: 80px 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 48px;
}

.filters {
    background: #faf8f3;
    padding: 32px;
    border-radius: 16px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.filters h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 12px 16px;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8b5a3c;
    color: white;
}

.products-section {
    min-height: 500px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.products-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.sort-options select {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.product-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #f5f1e8;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.product-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #8b5a3c;
    margin-bottom: 16px;
}

.add-to-cart-btn {
    width: 100%;
    background: #8b5a3c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.add-to-cart-btn:hover {
    background: #6d4530;
    transform: translateY(-1px);
}

.custom-perfume {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: white;
}

.custom-perfume .product-info {
    color: white;
}

.custom-perfume .product-info h3 {
    color: white;
}

.custom-perfume .product-description {
    color: rgba(255, 255, 255, 0.9);
}

.custom-perfume .product-price {
    color: white;
}

.custom-perfume .add-to-cart-btn {
    background: white;
    color: #8b5a3c;
}

.custom-perfume .add-to-cart-btn:hover {
    background: #f5f1e8;
}

.shop-cta {
    padding: 80px 0;
    background: #8b5a3c;
    text-align: center;
    color: white;
}

.shop-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.shop-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.shop-cta .primary-button {
    background: white;
    color: #8b5a3c;
}

.shop-cta .primary-button:hover {
    background: #f5f1e8;
}

/* Hidden class for filtering */
.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .filters {
        position: static;
        order: 2;
    }
    
    .products-section {
        order: 1;
    }
    
    .products-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 24px;
    }
    
    .shop-hero h1 {
        font-size: 36px;
    }
    
    .shop-hero p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .shop-hero {
        padding: 120px 0 60px;
    }
    
    .shop-hero h1 {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .filter-btn {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
} 