/* Layout & Spacing */
.shop-product { padding: 50px 0; background-color: #D9E6FF; position: relative; z-index: 0; }

/* Sidebar Styling */
.all-product-category-list { padding-right: 15px; padding: 10px; border-radius: 4px; background: radial-gradient(circle at center, #0e3552 0%, #000 70%); }
.sidebar-title {
    background-color: #cda85f;
    color: #fff;
    padding: 15px;
    font-size: 1.1vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 4px;
}
.category-link { transition: color 0.3s; }
.category-link:hover { color: #cda85f !important; }

/* Top Bar Styling */
.shop-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #041e42;
}
.shop-top-bar select {
    padding: 10px 15px;
    border: 1px solid #eaeaea;
    background: #fff;
    font-size: 1.1vw; /* Replaced vw with rem for stability */
    color: #333;
    outline: none;
    cursor: pointer;
    border-radius: 4px;
}
.results-count {
    font-size: 20px;
    font-weight: 700;
    color: #041e42;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.view-btn { cursor: pointer; font-size: 18px; color: #ccc; margin-right: 10px; transition: color 0.3s; }
.view-btn.active, .view-btn:hover { color: #041e42; }
.category-main a{font-size: 1.1vw}
.category-main ul li{font-size: 1vw}
/* Product Grid Styling */
.product-card {
    background: #ffffff; 
    border: 1px solid #eaeaea;
    border-radius: 8px; 
    text-align: left;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(4, 30, 66, 0.1) !important;
}

/* Image Container */
.product-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Forces a perfect square */
    background: #f4f4f4;
    overflow: hidden;
    display: block;
}

.product-card-img img {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img { 
    transform: scale(1.08); 
}

/* Text & Padding Area */
.product-detail-wrapper {
    padding: 20px; 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-detail-wrapper .badge{
    font-size: 1vw;
}
.product-detail-wrapper h5 {
    font-size: 1.1rem; /* Switched to rem for stability */
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-detail-wrapper h5 a { 
    color: #041e42; 
    text-decoration: none; 
    transition: color 0.2s; 
    font-size: 1.1vw;
}

.product-detail-wrapper h5 a:hover { 
    color: #cda85f; 
}

.product-detail-wrapper p { 
    font-size: 1.1vw; /* Switched to rem for stability */
    font-weight: 500; 
    margin: 0; 
    color: #666;
}
.product-detail-wrapper h4{
    font-size: 1.1vw;
}
/* Pagination Styling */
.custom-pagination .page-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #041e42;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.custom-pagination .page-link:hover,
.custom-pagination .page-link.active {
    background: #041e42;
    color: #cda85f;
    border-color: #041e42;
}

.custom-pagination .page-dots {
    color: #041e42;
    font-weight: 700;
    padding: 0 5px;
}
.card-footer a{
    font-size: 1.1vw;
}
.card-footer .badge{
    font-size: 1vw;
}
/* Responsiveness */
@media (max-width: 991px) {
    .product-wrapper.grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .shop-top-bar { flex-direction: column; gap: 15px; align-items: flex-start; }
    .shop-top-bar select { width: 100%; }
    .sort-dropdown-container { width: 100%; }
    .sidebar-title{font-size: 18px}
    .category-main a {
        font-size: 18px;
    }
    .product-detail-wrapper .badge{
        font-size: 16px;
    }
    .product-detail-wrapper h5 a{
        font-size: 18px;
    }
    .product-detail-wrapper h4{font-size: 18px}
    .card-footer a{font-size: 18px}
}

@media (max-width: 575px) {
    .product-wrapper.grid-3 { grid-template-columns: 1fr; }
    .shop-top-bar select { font-size: 1rem; }
    .product-detail-wrapper h5 { font-size: 1.1rem; }
    .product-detail-wrapper p { font-size: 16px; }
}