/* ========== PRODUCT CARD STYLING ========== */
/* Product Cards voor categorie modal */
/* ========== PRODUCT MODAL STYLES ========== */


/* Responsive voor product modal */
@media (max-width: 768px) {
    #productDetailsModal .modal-content > div > div:nth-child(2) > div {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    #productDetailsModal .modal-body {
        padding: 15px !important;
    }
    
    #productDetailsModal .offer-card {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    #productDetailsModal .offer-card > div:first-child {
        text-align: center !important;
    }
    
    #productDetailsModal .offer-card > div:last-child {
        text-align: center !important;
    }
    
    #productDetailsModal button[onclick*="checkAndAddToCart"] {
        width: 100% !important;
    }
}

/* Zorg dat modal scrollbaar is */
#productDetailsModal .modal-dialog {
    max-width: 900px;
    margin: 1.75rem auto;
}

#productDetailsModal .modal-content {
    max-height: 90vh;
    overflow: hidden;
}

@media (max-width: 576px) {
    #productDetailsModal .modal-dialog {
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    #productDetailsModal .modal-content {
        max-height: 95vh;
    }
}
#productDetailsModal .modal-dialog {
    max-width: 900px;
    width: 90%;
}

#productDetailsModal .modal-content {
    border-radius: 20px;
    overflow: hidden;
}

/* Product slider */
.product-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f9fa;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-slide.active {
    opacity: 1;
    position: relative;
}

.product-modal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Slider navigatie */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--primary, #4361ee);
    color: white;
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

/* Slider indicators */
.slider-indicators {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.slider-indicators .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-indicators .dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary, #4361ee);
}

/* Shop logo small */
.shop-logo-sm {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

/* Offer item styling */
.offer-item {
    transition: background 0.2s ease;
}

.offer-item:hover {
    background: #f8f9fa;
}

/* Responsive */
@media (max-width: 768px) {
    #productDetailsModal .modal-dialog {
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    .offer-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .offer-item .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-item .text-end {
        text-align: center !important;
    }
    
    .slider-nav {
        width: 30px;
        height: 30px;
    }
    
    .shop-logo-sm {
        width: 50px;
        height: 50px;
    }
}
/* Product Modal Styles */
#productDetailsModal .modal-dialog {
    max-width: 800px;
}

#productDetailsModal .modal-content {
    border-radius: 16px;
    overflow: hidden;
}

#productDetailsModal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: none;
    padding: 20px 24px;
}

#productDetailsModal .modal-header .modal-title {
    color: white;
    font-weight: 600;
}

#productDetailsModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

#productDetailsModal .modal-body {
    padding: 24px;
    max-height: 80vh;
    overflow-y: auto;
}

#productDetailsModal .modal-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 16px 24px;
}

/* Offer items styling */
#productDetailsModal .offer-item {
    transition: all 0.2s ease;
    background: white;
}

#productDetailsModal .offer-item:hover {
    background: #f8f9fa;
    transform: translateX(4px);
}

#productDetailsModal .offer-item:last-child {
    border-bottom: none !important;
}

/* Carousel styling */
#productDetailsModal .carousel {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

#productDetailsModal .carousel-inner {
    border-radius: 12px;
}

#productDetailsModal .carousel-control-prev-icon,
#productDetailsModal .carousel-control-next-icon {
    background-size: 60% 60%;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 20px;
}

/* Scrollbar styling */
#productDetailsModal .offers-list::-webkit-scrollbar {
    width: 6px;
}

#productDetailsModal .offers-list::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 10px;
}

#productDetailsModal .offers-list::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    #productDetailsModal .modal-dialog {
        margin: 10px;
    }
    
    #productDetailsModal .modal-body {
        padding: 16px;
    }
    
    #productDetailsModal .offer-item {
        flex-direction: column;
        text-align: center;
    }
    
    #productDetailsModal .offer-item .d-flex {
        flex-direction: column;
        text-align: center;
        margin-bottom: 12px;
    }
    
    #productDetailsModal .offer-item .text-end {
        text-align: center !important;
    }
    
    #productDetailsModal .btn-primary {
        margin-top: 8px;
        margin-left: 0 !important;
    }
}
.product-card {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-body {
    padding: 15px;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 8px;
}

/* Express badge op product cards */
.express-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Image count badge */
.image-count-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 10;
}

/* Category subcard styling */
.category-subcard {
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.category-subcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.category-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
}


.product-search-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
/* Category subcard styling */
.category-subcard {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    background: white;
}

.category-subcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.category-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.category-icon-circle i {
    font-size: 2.2rem;
    color: #667eea;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .category-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .category-icon-circle i {
        font-size: 1.6rem;
    }
}
.product-search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
    border-color: var(--primary);
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-search-card:hover .product-image {
    transform: scale(1.05);
}

/* Product details grid */
.product-details-grid {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 8px;
    margin: 10px 0;
    border: 1px solid #e9ecef;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    font-size: 0.8rem;
}

.product-details-grid div {
    padding: 2px 0;
}

/* Tooltip voor lange SKU/EAN nummers */
.product-details-grid .fw-bold {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 120px;
}
/* Breadcrumb styling */
.breadcrumb {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.breadcrumb-item a:hover {
    background: rgba(102, 126, 234, 0.1);
    text-decoration: none;
    color: #764ba2;
}

.breadcrumb-item a i {
    margin-right: 0.3rem;
    font-size: 0.8rem;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #adb5bd;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 0.3rem;
}

/* Responsive breadcrumbs */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        flex-wrap: wrap;
    }
    
    .breadcrumb-item a {
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
    }
}

/* Home icon in breadcrumb */
.breadcrumb-item:first-child a {
    display: flex;
    align-items: center;
}

/* Category cards blijven zoals ze zijn */
.category-subcard {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    background: white;
}
/* Terug button styling */
.btn-back {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 20px;
    border: 1px solid #dee2e6;
    background: white;
    color: #495057;
    transition: all 0.2s;
    margin-bottom: 1rem;
}

.btn-back:hover {
    background: #f8f9fa;
    border-color: #667eea;
    color: #667eea;
}

.btn-back i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

/* Breadcrumb styling */
.breadcrumb {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    cursor: pointer;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}
/* Breadcrumb styling */
.breadcrumb {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.breadcrumb-item a:hover {
    background: rgba(102, 126, 234, 0.1);
    text-decoration: none;
    color: #764ba2;
}

.breadcrumb-item a i {
    margin-right: 0.3rem;
    font-size: 0.8rem;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #adb5bd;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 0.3rem;
}

/* Responsive breadcrumbs */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        flex-wrap: wrap;
    }
    
    .breadcrumb-item a {
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
    }
}

/* Home icon in breadcrumb */
.breadcrumb-item:first-child a {
    display: flex;
    align-items: center;
}

/* Category cards blijven zoals ze zijn */
.category-subcard {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    background: white;
}

.category-subcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.category-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.category-icon-circle i {
    font-size: 2.2rem;
    color: #667eea;
}
.category-subcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.category-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.category-icon-circle i {
    font-size: 2.2rem;
    color: #667eea;
}
.product-details-grid .fw-bold:hover {
    overflow: visible;
    white-space: normal;
    word-break: break-all;
    background: white;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 2px 5px;
    border-radius: 4px;
}

/* Image slider voor meerdere afbeeldingen */
.product-image-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.product-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-image-slide.active {
    opacity: 1;
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.product-image-container:hover .image-nav {
    opacity: 1;
}

.image-nav.prev {
    left: 10px;
}

.image-nav.next {
    right: 10px;
}

.image-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.image-indicators {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: all 0.3s;
    cursor: pointer;
}

.image-dot.active {
    background: white;
    transform: scale(1.2);
}

.product-image-count-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 15;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.product-price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    z-index: 15;
}

.product-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
    line-height: 1.4;
}

.category-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.shop-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0.75rem 0;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.shop-logo-small {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.shop-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.shop-city {
    font-size: 0.8rem;
    color: #6c757d;
}

.shop-city i {
    font-size: 0.7rem;
    margin-right: 2px;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.product-actions .btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 8px;
}

.add-to-cart-btn {
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== MODERN STYLING ========== */
:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

/* Nieuw gedetecteerde stad indicator */
.new-detection-badge {
    animation: pulse 2s infinite;
    position: relative;
}

.new-detection-badge::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(255, 193, 7, 0.5);
    border-radius: 50px;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.city-badge {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s;
    cursor: pointer;
}

.city-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.location-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    animation: fadeInDown 0.8s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.shop-card-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.shop-card-body {
    padding: 1.5rem;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.delivery-badge.normal {
    background: #e3f2fd;
    color: #1976d2;
}

.delivery-badge.express {
    background: linear-gradient(45deg, #ffecb3, #ffd54f);
    color: #5d4037;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.city-tag {
    background: #f3f4f6;
    color: #4b5563;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
}

.city-tag.current {
    background: linear-gradient(45deg, #10b981, #34d399);
    color: white;
}

.city-selector-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 20px;
    transition: all 0.3s;
    font-weight: 500;
    color: #4b5563;
}

.city-selector-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.city-selector-btn.current {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
}

.modal-city-item {
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 1px solid #f3f4f6;
}

.modal-city-item:hover {
    background: #f3f4f6;
}

.modal-city-item.active {
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-left: 4px solid var(--primary);
}

.stats-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.stats-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stats-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.stats-icon.shops {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.stats-icon.express {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: white;
}

.stats-icon.cities {
    background: linear-gradient(45deg, #10b981, #34d399);
    color: white;
}

.hero-title {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.floating-action-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s;
}

.floating-action-btn:hover {
    transform: scale(1.1) rotate(15deg);
    color: white;
}

/* Nieuwe styling voor zoekbalk en categorieën */
.search-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.search-container:hover {
    border-color: var(--primary);
}

.search-box {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 25px 15px 50px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 600;
}

.categories-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* AJAX Categorieën Styling */
.category-card-skeleton {
    border: 2px solid #f3f4f6;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-card-skeleton .skeleton {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-text {
    width: 120px;
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text-sm {
    width: 100px;
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.category-card {
    border: 2px solid #f3f4f6;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
    color: var(--primary);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.category-card:hover .category-icon {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
}

.category-main-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.category-main-card:hover {
    border-color: var(--primary);
}

.category-main-header {
    padding: 1.25rem;
    background: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.category-main-header:hover {
    background-color: #f9fafb;
}

.category-main-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
}

.category-toggle {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s;
}

.category-main-header:hover .category-toggle {
    background: #e5e7eb;
}

.category-subcategories {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.subcategory-item {
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.subcategory-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.subcategory-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.subcategory-arrow {
    color: #9ca3af;
    transition: transform 0.2s;
}

.subcategory-item:hover .subcategory-arrow {
    color: var(--primary);
    transform: translateX(5px);
}

.no-subcategories {
    color: #6b7280;
    font-style: italic;
}

/* =============== RESPONSIVE MODAL STYLING =============== */
.modal-header-category {
    display: flex;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.category-modal-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.modal-header-content {
    flex-grow: 1;
    margin-left: 1rem;
}

.modal-body-scrollable {
    max-height: 60vh;
    overflow-y: auto;
}

.product-modal-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
    background: white;
    display: flex;
}

.product-modal-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.product-modal-img-container {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.product-modal-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.product-modal-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.product-modal-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
}

.shop-modal-info {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid #f3f4f6;
}

.shop-modal-logo {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 10px;
}

.shop-modal-details small {
    display: block;
    line-height: 1.4;
}

.modal-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.no-products {
    text-align: center;
    padding: 3rem 1rem;
}

.no-products-icon {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.modal-footer-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 12px 12px;
}

.refresh-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s;
}

.refresh-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(90deg);
}

.refresh-btn.refreshing {
    animation: spin 1s linear infinite;
    color: var(--primary);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.product-count {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.search-results-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.no-results {
    text-align: center;
    padding: 3rem;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* ========== WINKEL SLIDER STYLING ========== */
.shop-slider-container {
    position: relative;
    margin: 0 -5px;
    overflow: hidden;
    padding: 10px 0;
}

.shop-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 5px 5px 15px 5px;
}

.shop-slider::-webkit-scrollbar {
    display: none;
}

.shop-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
}

.shop-slide-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.shop-slide-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.shop-slide-image {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.shop-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.shop-slide-card:hover .shop-slide-image img {
    transform: scale(1.1);
}

.shop-slide-content {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.shop-slide-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.shop-slide-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.shop-slide-header h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #333;
    line-height: 1.3;
}

.shop-slide-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: #6b7280;
}

.shop-slide-info i {
    color: var(--primary);
    width: 14px;
    margin-right: 2px;
}

.shop-slide-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.shop-slide-rating .stars {
    color: #fbbf24;
}

.shop-slide-rating .stars i {
    font-size: 0.8rem;
}

.shop-slide-rating span {
    color: #6b7280;
    font-size: 0.8rem;
}

.shop-slide-express {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: white;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    animation: pulse 2s infinite;
}

.shop-slide-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.shop-slide-footer .btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.shop-slide-footer .btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.shop-slide-footer .delivery-time {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
}

.shop-slide-footer .delivery-time i {
    margin-right: 4px;
    font-size: 0.7rem;
}

/* Navigatie pijlen */
.shop-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    opacity: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.shop-slider-container:hover .shop-slider-nav {
    opacity: 1;
}

.shop-slider-nav.prev {
    left: 10px;
}

.shop-slider-nav.next {
    right: 10px;
}

.shop-slider-nav:hover {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-50%) scale(1.1);
    border-color: transparent;
}

.shop-slider-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.shop-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.shop-slider-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
}

.shop-slider-indicators .indicator.active {
    width: 25px;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

/* ========== CATEGORIE SLIDER STYLING ========== */
.category-slider-container {
    position: relative;
    margin: 0 -5px;
    overflow: hidden;
    padding: 10px 0;
}

.category-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 5px 5px 15px 5px;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
}

.category-slide-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-slide-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.category-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.category-slide-card:hover .category-slide-image img {
    transform: scale(1.1);
}

.category-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.category-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    z-index: 3;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s;
}

.category-slide-card:hover .category-slide-content {
    transform: translateY(-10px);
}

.category-slide-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.category-slide-card:hover .category-slide-icon {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-color: white;
    transform: rotate(5deg) scale(1.1);
}

.category-slide-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.category-slide-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.category-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    opacity: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.category-slider-container:hover .category-slider-nav {
    opacity: 1;
}

.category-slider-nav.prev {
    left: 10px;
}

.category-slider-nav.next {
    right: 10px;
}

.category-slider-nav:hover {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-50%) scale(1.1);
    border-color: transparent;
}

.category-slider-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.category-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.category-slider-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
}

.category-slider-indicators .indicator.active {
    width: 30px;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

/* ========== RESPONSIVE BREAKPOINTS ========== */
@media (max-width: 1200px) {
    .shop-slide,
    .category-slide {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 992px) {
    .shop-slide,
    .category-slide {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .shop-slide,
    .category-slide {
        flex: 0 0 calc(100% - 10px);
        min-width: 280px;
    }
    
    .search-btn {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 10px;
        width: 100%;
    }
    
    .search-input {
        padding-right: 15px;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-price-tag {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .product-actions .btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .category-main-header {
        padding: 1rem;
    }
    
    .category-main-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-modal-card {
        flex-direction: row;
        height: auto;
    }
    
    .product-modal-img-container {
        width: 100px;
        flex-shrink: 0;
    }
    
    .product-modal-img {
        width: 100px;
        height: 100px;
        border-radius: 8px;
    }
    
    .product-modal-content {
        padding: 0.75rem;
    }
    
    .product-modal-price {
        font-size: 1.1rem;
    }
    
    .shop-modal-logo {
        width: 25px;
        height: 25px;
    }
    
    .modal-header-category {
        padding: 1rem 1rem 0.75rem 1rem;
    }
    
    .category-modal-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .category-slide-card {
        height: 250px;
    }
    
    .category-slide-content h4 {
        font-size: 1.2rem;
    }
    
    .category-slider-nav,
    .shop-slider-nav {
        width: 35px;
        height: 35px;
        opacity: 1;
        background: rgba(255,255,255,0.9);
    }
}
/* Modal container */
.modal {
    z-index: 1050;
}

.modal-backdrop {
    z-index: 1040;
}

.modal.show {
    display: block;
}

/* Voorkom meerdere backdrops */
.modal-backdrop + .modal-backdrop {
    display: none;
}

/* Category cards */
.category-subcard {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    height: 100%;
}

.category-subcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.category-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.category-icon-circle i {
    font-size: 2.2rem;
    color: #667eea;
}

/* Breadcrumbs */
.breadcrumb {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #e9ecef;
}

.breadcrumb-item a {
    color: #667eea;
    text-decoration: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.breadcrumb-item a:hover {
    background: rgba(102, 126, 234, 0.1);
}

.breadcrumb-item.active {
    color: #6c757d;
}
@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-content {
        border-radius: 12px;
    }
    
    .modal-header-category {
        padding: 1rem 1rem 0.5rem 1rem;
    }
    
    .modal-body-scrollable {
        padding: 1rem;
        max-height: 70vh;
    }
    
    .modal-footer-buttons {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal-footer-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .product-modal-img-container {
        width: 80px;
    }
    
    .product-modal-img {
        width: 80px;
        height: 80px;
    }
    
    .no-products {
        padding: 2rem 1rem;
    }
    
    .no-products-icon {
        font-size: 2.5rem;
    }
    
    .shop-slide-card {
        height: 240px;
    }
    
    .shop-slide-image {
        height: 110px;
    }
}