/* Quality Section Styles */
.quality-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .quality-section {
        grid-template-columns: 1fr 1fr;
    }
}

.quality-text ul {
    list-style: none;
    padding: 0;
}

.quality-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.bg-gradient-beige {
    background: linear-gradient(to bottom right, #E3D9CD, rgba(201, 169, 97, 0.3));
}

.quality-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to right, #C9A961, #A88B4D);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.2), 0 2px 8px rgba(201, 169, 97, 0.1);
}



.subcategory-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
}

.subcategory-btn {
    padding: 0.625rem 1.25rem;
    border: 1px solid rgba(201, 169, 97, 0.3);
    background-color: white;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subcategory-btn:hover {
    border-color: #C9A961;
    background-color: rgba(201, 169, 97, 0.05);
}

.subcategory-btn.active {
    background-color: #C9A961;
    color: white;
    border-color: #C9A961;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.subcategory-name {
    color: rgb(0, 0, 0);
}

.subcategory-btn.active .subcategory-name {
    color: white;
}

.subcategory-count {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.subcategory-btn.active .subcategory-count {
    color: rgba(255, 255, 255, 0.8);
}



.catalog-hero-banner {
    position: relative;
    color: white;
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg-gradient-dark-premium {
    background: linear-gradient(to right, rgba(46, 21, 0, 0.6) 0%, rgba(62, 37, 16, 0.5) 100%);
}

#page-banner {
    margin-bottom: 2rem;
}

.catalog-grid {
    margin-bottom: 2rem;
}
