/* Products Hero Section */
.products-hero {
    height: 60vh;
    min-height: 500px;
    background: url('../images/products-hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 80px; /* Account for fixed navbar */
}

.products-hero .hero-content {
    text-align: center;
    width: 100%;
}

.products-hero .hero-title {
    font-size: 72px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.products-hero .hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Products Filter Section */
.products-filter-section {
    padding: 110px 0 60px 0;
    background-color: var(--black);
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.filter-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
}

.filter-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(218, 171, 45, 0.2);
}

/* Products Grid Section */
.products-grid-section {
    padding: 80px 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 11, 19, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background-color: var(--gold);
    color: var(--black);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.quick-view-btn:hover {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(218, 171, 45, 0.2);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-notes {
    margin-bottom: 15px;
    min-height: 30px;
}

.product-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-weight: 600;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 15px;
}

.product-price small {
    font-size: 0.8em;
    color: #777;
}

.product-sizes {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.size-option {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover {
    border-color: var(--gold);
}

.size-option.selected {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover {
    background-color: rgba(218, 171, 45, 0.1);
}

.page-number.active {
    background-color: var(--gold);
    color: var(--black);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .products-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .products-hero .hero-title {
        font-size: 48px;
    }
    
    .products-hero .hero-subtitle {
        font-size: 20px;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-group {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .products-hero .hero-title {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}