/* Products Page Additional Styles */
.products-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 250px 0 220px;
    margin-top: 0;
    text-align: center;
    color: white;
}

.products-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.products-hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.product-image a {
    display: block;
    height: 100%;
    width: 100%;
}

.product-image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-sidebar {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.category-sidebar h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0d6efd;
    display: inline-block;
}

.category-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: #4a5568;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.3s;
}

.category-list a:hover {
    background: #f1f5f9;
    color: #0d6efd;
}

.category-list a.active {
    background: #0d6efd;
    color: white;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-body {
    padding: 1.25rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.5;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .products-hero { padding: 150px 0 100px; }
    .products-hero h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .products-hero { padding: 120px 0 70px; }
    .products-hero h1 { font-size: 2rem; }
    .products-hero p { font-size: 1rem; }
    .category-sidebar { position: relative; top: 0; margin-bottom: 1.5rem; }
}

@media (max-width: 576px) {
    .products-hero { padding: 100px 0 50px; }
    .products-hero h1 { font-size: 1.6rem; }
}

