/* ==================== 
   Shop Hero Section 
   ==================== */

.shop-hero {
    background: linear-gradient(135deg, var(--beige) 0%, var(--tan) 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.shop-title {
    font-family: 'Doulos SIL', serif;
    font-size: 72px;
    line-height: 1.1;
    color: var(--dark-brown);
    margin-bottom: 24px;
}

.shop-subtitle {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--light-brown);
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== 
   Shop Section 
   ==================== */

.shop-section {
    padding: 80px 0;
    background: var(--white);
}

/* Filters */
.shop-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    padding: 24px;
    background: var(--beige);
    border-radius: 12px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-label {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-brown);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    padding: 10px 16px;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    color: var(--dark-brown);
    background: var(--white);
    min-width: 180px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold);
}

.filter-results {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    color: var(--dark-brown);
    margin-left: auto;
}

.filter-results span {
    font-weight: 700;
    color: var(--gold);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--beige);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 24px;
}

.product-category {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light-brown);
    margin-bottom: 8px;
}

.product-name {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-price {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 12px;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
}

/* ==================== 
   Newsletter Section 
   ==================== */

.newsletter-section {
    padding: 80px 0;
    background: var(--dark-brown);
    text-align: center;
}

.newsletter-title {
    font-family: 'Doulos SIL', serif;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 16px;
}

.newsletter-text {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    padding: 14px 32px;
    white-space: nowrap;
}

/* ==================== 
   Empty State 
   ==================== */

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.empty-state-title {
    font-family: 'Doulos SIL', serif;
    font-size: 36px;
    color: var(--dark-brown);
    margin-bottom: 16px;
}

.empty-state-text {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    color: var(--light-brown);
    margin-bottom: 32px;
}

/* ==================== 
   Responsive Design 
   ==================== */

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .shop-hero {
        padding: 60px 0 50px;
    }
    
    .shop-title {
        font-size: 48px;
    }
    
    .shop-subtitle {
        font-size: 18px;
    }
    
    .shop-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .filter-results {
        margin-left: 0;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input,
    .newsletter-form .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .shop-title {
        font-size: 36px;
    }
    
    .shop-subtitle {
        font-size: 16px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
    }
}
