* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #f8f9fa;
    padding: 0;
}

#glpcontent .text-white {
    color: #ffffff;
}
#glpcontent,#glpcontent h1, #glpcontent h2, #glpcontent h3, #glpcontent h4, #glpcontent h5, #glpcontent h6, #glpcontent h7, #glpcontent a, #glpcontent p, #glpcontent span, #glpcontent b, #glpcontent strong, #glpcontent div, #glpcontent table, #glpcontent table tr,  #glpcontent table td 
{
    color: #212529;
    font-family: 'Segoe UI', sans-serif; 
    
}
#product-list { margin-top:1em; }

#product-list .filter-bar {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#product-list .filter-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

#product-list .filter-group a, #product-list .filter-group strong {
    color: #333;
    display: inline-block;
    padding:2px 6px;
}
#product-list .filter-group strong {
    color: #f00;
}

#product-list #sort-by {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
}

#product-list .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 25px;
}
#product-list .product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

#product-list .product-card:hover {
    transform: translateY(-5px);
}

#product-list a {
    text-decoration: none;
}
#product-list a.product-line {
    display: block;
    width:100%;
    text-align: center;
    padding:10px 0 0;
}
#product-list .product-image {
    max-width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

#product-list .product-info {
    padding: 20px;
}

#product-list .product-name {
    font-size: 1.1em;
    font-weight: 600;
    color: #212529;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 8px;
    height: 4.9em;
    overflow: hidden;
}
#product-list .product-name a {
    font-size: 1.1em;
    font-weight: 600;
    color: #212529;
    font-family: 'Segoe UI', sans-serif;
}

#product-list .price-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

#product-list .current-price {
    font-size: 28px;
    font-weight: 700;
    color: #2b6cb0;
    font-family: 'Segoe UI', sans-serif;
}

#product-list .original-price {
    font-size: 22px;
    color: #6b7280;
    text-decoration: line-through;
    font-family: 'Segoe UI', sans-serif;
}

#product-list .exclusive-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 18px;
    font-family: 'Segoe UI', sans-serif;
    background-color: #22c55e;
    color: white;
    border-radius: 20px;
    margin-left: 10px;
}

#product-list .loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#product-list .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top-color: #2b6cb0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.breadcrumbs {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 1em 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    justify-content: space-between;
    align-items: center;
}

.breadcrumbs a, .breadcrumbs span, .breadcrumbs strong {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #2b6cb0;
}
#decrease-qty, #increase-qty, .thumbnail-btn {
    cursor: pointer;
}

@media (max-width: 575px) { 
    #product-list .exclusive-badge {
        text-align: center;
    }
    #product-list .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (min-width: 576px) and (max-width: 767px) { 
    #product-list .exclusive-badge {
        text-align: center;
    }
    #product-list .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (min-width: 768px) and (max-width: 991px) { 
    #product-list .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    #product-list .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    }
}

@media (min-width: 1200px) {
    #product-list .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }
}
.product-card.dxout {
    display: none !important;
}
.dxfade {
    display:block;
}