/* Product Page Styles */

/* Product Banner */
.product-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.product-banner img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

/* Product Layout */
.product-layout {
    display: flex;
    gap: 0;
    margin-top: 0;
}

/* Filter Sidebar */
.filter-sidebar {
    flex: 0 0 250px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-right: none;
}

.filter-title {
    background-color: #cc0000;
    color: #fff;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
}

.filter-nav {
    display: flex;
    flex-direction: column;
}

.filter-link {
    padding: 16px 15px;
    color: #ccc;
    font-size: 16px;
    border-bottom: 1px solid #333;
    transition: all 0.3s;
    line-height: 1.4;
}

.filter-link:hover,
.filter-link.active {
    background-color: #333;
    color: #fff;
}

/* Product Showcase */
.product-showcase {
    flex: 1;
    background-color: #1a1a1a;
    border: 1px solid #333;
}

.showcase-title {
    background-color: #cc0000;
    color: #fff;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.product-item {
    text-align: center;
}

.product-image {
    
    padding: 10px;
    margin-bottom: 10px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
     width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    color: #ccc;
    font-size: 16px;
    line-height: 1.4;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 20px;
    border-top: 1px solid #333;
}

.page-link {
    padding: 5px 10px;
    color: #ccc;
    font-size: 16px;
    background-color: #333;
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background-color: #cc0000;
    color: #fff;
}
