/* ===================================
   SHOP PAGE STYLES
   =================================== */

/* Shop Banner */
.shop-banner {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a2527 100%);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid var(--color-red);
}

.shop-banner-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.shop-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-banner-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Shop Section - Olmia Style */
.shop-section {
    background-color: #f5f5f5;
    min-height: 100vh;
    padding: 2rem 0 4rem;
}

.shop-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: block;
}

/* Sidebar */
.shop-sidebar {
    position: sticky;
    top: 100px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.sidebar-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2a3f41 100%);
    padding: 1.5rem 1.25rem;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-nav {
    padding: 0.5rem 0;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.category-link i:first-child {
    color: var(--color-gray);
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

.category-link i:last-child {
    margin-left: auto;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.category-link:hover {
    background-color: #f9fafb;
    border-left-color: var(--color-red);
    padding-left: 1.5rem;
}

.category-link:hover i:first-child {
    color: var(--color-red);
}

.category-link:hover i:last-child {
    opacity: 1;
    transform: translateX(0);
}

.category-link.active {
    background-color: rgba(220, 38, 38, 0.08);
    border-left-color: var(--color-red);
    color: var(--color-red);
}

.category-link.active i:first-child {
    color: var(--color-red);
}

.category-link.active i:last-child {
    opacity: 1;
    transform: translateX(0);
}

/* Allergen Box */
.allergen-box {
    margin: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 8px;
    text-align: center;
}

.allergen-icon {
    font-size: 2rem;
    color: #d97706;
    margin-bottom: 0.75rem;
}

.allergen-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.allergen-text {
    font-size: 0.875rem;
    color: var(--color-dark-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.allergen-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--color-dark);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.allergen-btn:hover {
    background-color: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Search Container */
.search-container {
    margin-bottom: 2rem;
}

.search-wrapper {
    position: relative;
    max-width: 600px;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 3.5rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray);
    font-size: 1.125rem;
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-gray);
    font-size: 1.125rem;
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-clear.active {
    opacity: 1;
    visibility: visible;
}

.search-clear:hover {
    color: var(--color-red);
}

/* Products Content */
.products-content {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.category-section {
    margin-bottom: 4rem;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-red);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-title i {
    color: var(--color-red);
    font-size: 1.5rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Product Card */
.product-card {
    background-color: var(--color-white);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--color-red);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f3f4f6;
}

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

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

.product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.badge-popular {
    background-color: #f59e0b;
}

.product-badge.badge-healthy {
    background-color: #10b981;
}

.product-badge.badge-spicy {
    background-color: #ef4444;
}

.product-info {
    padding: 1.25rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    min-height: 2.6rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 1rem;
}

.product-add-btn {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background-color: var(--color-dark);
    color: var(--color-white);
    border: 2px solid var(--color-dark);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-add-btn:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.product-add-btn i {
    font-size: 1rem;
}

/* Order Summary - Fixed Bottom - Compact */
.order-summary {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 950px;
    background-color: var(--color-white);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);
    border-radius: 20px 20px 0 0;
    border-top: 4px solid var(--color-red);
    z-index: 100;
    overflow: hidden;
}

.order-summary-content {
    padding: 1.125rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

/* Preview Button */
.os-preview-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.os-preview-btn:hover:not(:disabled) {
    background-color: #f3f4f6;
}

.os-preview-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.os-preview-btn i:first-child {
    font-size: 1.25rem;
    color: var(--color-red);
}

.os-chevron {
    font-size: 0.75rem;
    color: var(--color-gray);
    transition: transform 0.3s ease;
}

.os-chevron.os-rotated {
    transform: rotate(180deg);
}

/* Cart Preview Panel */
.os-cart-preview {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #f9fafb;
    border-bottom: 1px solid transparent;
}

.order-summary.os-expanded .os-cart-preview {
    max-height: 350px;
    border-bottom-color: #e5e7eb;
}

.os-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background-color: var(--color-white);
}

.os-cart-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.os-cart-title i {
    color: var(--color-red);
}

.os-cart-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: #f3f4f6;
    color: var(--color-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.os-cart-close:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

/* Cart Items */
.os-cart-items {
    padding: 1rem 1.5rem;
    max-height: 280px;
    overflow-y: auto;
}

.os-cart-empty {
    text-align: center;
    padding: 2rem;
    color: var(--color-gray);
}

.os-cart-empty i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.os-cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.os-cart-item:last-child {
    border-bottom: none;
}

.os-cart-item-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.os-cart-item-info {
    flex: 1;
    min-width: 0;
}

.os-cart-item-name {
    display: block;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.os-cart-item-qty {
    font-size: 0.8rem;
    color: var(--color-gray);
}

.os-cart-item-price {
    font-weight: 700;
    color: var(--color-red);
    font-size: 0.95rem;
}

.order-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.order-items-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-dark);
}

.order-items-badge i {
    font-size: 1.5rem;
    color: var(--color-red);
}

.order-items-count {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
}

.order-total {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-total-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray);
}

.order-total-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-red);
}

.order-checkout-btn {
    padding: 0.875rem 2.5rem;
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.order-checkout-btn:hover {
    background-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.order-checkout-btn:disabled {
    background-color: #4b5563;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

/* ===================================
   RESPONSIVE - TABLET (768px - 1024px)
   =================================== */
@media (max-width: 1024px) {
    /* Layout */
    .shop-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .shop-sidebar {
        position: static;
        max-width: 100%;
    }

    /* Categories - horizontal scroll op tablet */
    .category-nav {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 0.75rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

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

    .category-link {
        flex-shrink: 0;
        padding: 0.75rem 1rem;
        border-radius: 25px;
        border: 2px solid #e5e7eb;
        border-left: 2px solid #e5e7eb;
    }

    .category-link:hover,
    .category-link.active {
        border-color: var(--color-red);
        background-color: rgba(220, 38, 38, 0.08);
        padding-left: 1rem;
    }

    .category-link i:last-child {
        display: none;
    }

    /* Allergen box verbergen op tablet */
    .allergen-box {
        display: none;
    }

    /* Products */
    .products-content {
        padding: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    /* Order Summary */
    .order-summary {
        max-width: 700px;
        border-radius: 14px 14px 0 0;
    }

    .os-cart-preview {
        max-height: 0;
    }

    .order-summary.os-expanded .os-cart-preview {
        max-height: 300px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE (480px - 768px)
   =================================== */
@media (max-width: 768px) {
    /* Banner */
    .shop-banner {
        padding: 2rem 0;
    }

    .shop-banner-content {
        padding: 0 1rem;
    }

    .shop-banner-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .shop-banner-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Layout */
    .shop-section {
        padding: 1.5rem 0 8rem;
    }

    .shop-container {
        padding: 0 0.75rem;
        gap: 1rem;
    }

    /* Sidebar */
    .shop-sidebar {
        border-radius: 10px;
    }

    .sidebar-header {
        padding: 1rem;
    }

    .sidebar-title {
        font-size: 1rem;
    }

    .category-nav {
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .category-link {
        padding: 0.6rem 0.875rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }

    .category-link i:first-child {
        font-size: 0.9rem;
        width: 16px;
    }

    /* Search */
    .search-container {
        margin-bottom: 1.25rem;
    }

    .search-input {
        padding: 0.875rem 2.5rem 0.875rem 3rem;
        font-size: 0.95rem;
        border-radius: 30px;
    }

    .search-icon {
        left: 1rem;
        font-size: 1rem;
    }

    /* Products */
    .products-content {
        padding: 1rem;
        border-radius: 10px;
    }

    .category-section {
        margin-bottom: 2.5rem;
    }

    .category-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        gap: 0.5rem;
    }

    .category-title i {
        font-size: 1.125rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Product Cards - compact voor mobile */
    .product-card {
        border-radius: 10px;
        border-width: 1px;
    }

    .product-image {
        height: 140px;
    }

    .product-info {
        padding: 0.875rem;
    }

    .product-name {
        font-size: 0.9rem;
        min-height: unset;
        margin-bottom: 0.5rem;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-price {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .product-add-btn {
        padding: 0.625rem 0.75rem;
        font-size: 0.7rem;
        border-radius: 6px;
        gap: 0.375rem;
    }

    .product-add-btn i {
        font-size: 0.8rem;
    }

    .product-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        top: 0.5rem;
        right: 0.5rem;
    }

    /* Order Summary - Mobile optimized */
    .order-summary {
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    }

    .order-summary-content {
        padding: 0.75rem 1rem;
        gap: 0.625rem;
    }

    /* Preview Button */
    .os-preview-btn {
        font-size: 0.9rem;
        gap: 0.5rem;
        padding: 0.375rem;
    }

    .os-preview-btn i:first-child {
        font-size: 1.125rem;
    }

    .os-chevron {
        font-size: 0.65rem;
    }

    /* Cart Preview */
    .order-summary.os-expanded .os-cart-preview {
        max-height: 250px;
    }

    .os-cart-header {
        padding: 0.875rem 1rem;
    }

    .os-cart-title {
        font-size: 0.9rem;
    }

    .os-cart-close {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .os-cart-items {
        padding: 0.75rem 1rem;
        max-height: 180px;
    }

    .os-cart-item {
        padding: 0.625rem 0;
        gap: 0.75rem;
    }

    .os-cart-item-img {
        width: 44px;
        height: 44px;
        border-radius: 6px;
    }

    .os-cart-item-name {
        font-size: 0.85rem;
    }

    .os-cart-item-qty {
        font-size: 0.75rem;
    }

    .os-cart-item-price {
        font-size: 0.85rem;
    }

    /* Totals */
    .order-total {
        gap: 0.5rem;
    }

    .order-total-label {
        font-size: 0.8rem;
    }

    .order-total-price {
        font-size: 1.25rem;
    }

    /* Checkout Button */
    .order-checkout-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    /* Search No Results */
    .search-no-results {
        padding: 3rem 1.5rem;
    }

    .search-no-results-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .search-no-results-icon i {
        font-size: 1.5rem;
    }

    .search-no-results-title {
        font-size: 1.25rem;
    }

    .search-no-results-text {
        font-size: 0.9rem;
    }

    .search-no-results-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* ===================================
   RESPONSIVE - SMALL MOBILE (<480px)
   =================================== */
@media (max-width: 480px) {
    /* Banner */
    .shop-banner {
        padding: 1.5rem 0;
    }

    .shop-banner-title {
        font-size: 1.5rem;
    }

    .shop-banner-subtitle {
        font-size: 0.85rem;
    }

    /* Layout */
    .shop-section {
        padding: 1rem 0 7rem;
    }

    .shop-container {
        padding: 0 0.5rem;
    }

    /* Categories - vertical list */
    .category-nav {
        flex-direction: column;
        overflow-x: visible;
        padding: 0.5rem;
    }

    .category-link {
        width: 100%;
        justify-content: flex-start;
        border-radius: 8px;
    }

    /* Products */
    .products-content {
        padding: 0.75rem;
        border-radius: 8px;
    }

    .category-section {
        margin-bottom: 2rem;
    }

    .category-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    /* 1 kolom grid voor kleine schermen */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 0.625rem;
    }

    /* Product Cards - horizontal layout voor 1 kolom */
    .product-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        border-radius: 8px;
    }

    .product-card:hover {
        transform: none;
    }

    .product-image {
        height: 100%;
        min-height: 100px;
        border-radius: 8px 0 0 8px;
    }

    .product-image img {
        border-radius: 8px 0 0 8px;
    }

    .product-card:hover .product-image img {
        transform: none;
    }

    .product-badge {
        top: 0.375rem;
        right: auto;
        left: 0.375rem;
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }

    .product-info {
        padding: 0.75rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-name {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
        -webkit-line-clamp: 1;
    }

    .product-price {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .product-add-btn {
        padding: 0.5rem 0.625rem;
        font-size: 0.65rem;
    }

    .product-add-btn span {
        display: none;
    }

    .product-add-btn i {
        font-size: 0.9rem;
    }

    .product-add-btn::after {
        content: 'TOEVOEGEN';
        font-size: 0.65rem;
    }

    /* Order Summary */
    .order-summary {
        border-radius: 10px 10px 0 0;
    }

    .order-summary-content {
        padding: 0.625rem 0.75rem;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .order-info {
        flex: 1;
        min-width: 0;
    }

    .os-preview-btn {
        font-size: 0.8rem;
    }

    .os-preview-btn span {
        max-width: 60px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .order-total-label {
        display: none;
    }

    .order-total-price {
        font-size: 1.125rem;
    }

    .order-checkout-btn {
        flex: 0 0 auto;
        width: auto;
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }

    /* Cart Preview */
    .order-summary.os-expanded .os-cart-preview {
        max-height: 200px;
    }

    .order-summary.os-expanded .order-summary-content {
        flex-direction: column;
    }

    .order-summary.os-expanded .order-checkout-btn {
        width: 100%;
    }

    .os-cart-header {
        padding: 0.75rem;
    }

    .os-cart-items {
        padding: 0.5rem 0.75rem;
        max-height: 130px;
    }

    .os-cart-item-img {
        width: 40px;
        height: 40px;
    }

    .os-cart-item-name {
        font-size: 0.8rem;
    }

    .os-cart-empty {
        padding: 1.5rem;
    }

    .os-cart-empty i {
        font-size: 1.5rem;
    }

    .os-cart-empty p {
        font-size: 0.85rem;
    }

    /* Search No Results */
    .search-no-results {
        padding: 2rem 1rem;
    }

    .search-no-results-icon {
        width: 50px;
        height: 50px;
    }

    .search-no-results-icon i {
        font-size: 1.25rem;
    }

    .search-no-results-title {
        font-size: 1.125rem;
    }

    .search-no-results-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

/* ===================================
   SEARCH NO RESULTS
   =================================== */

.search-no-results {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
}

.search-no-results.active {
    display: block;
}

.search-no-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-no-results-icon i {
    font-size: 2rem;
    color: var(--color-red);
}

.search-no-results-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.search-no-results-text {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.search-no-results-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-dark);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-no-results-btn:hover {
    background-color: var(--color-red);
    transform: translateY(-2px);
}

/* ===================================
   PRODUCT MODAL STYLES (pm- prefix)
   =================================== */

/* Overlay */
.pm-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

.pm-overlay.pm-active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.pm-modal {
    position: relative;
    background-color: var(--color-white);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.pm-overlay.pm-active .pm-modal {
    transform: scale(1) translateY(0);
}

/* Close Button */
.pm-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: none;
    color: var(--color-dark);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.pm-close:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: rotate(90deg);
}

/* Content Layout */
.pm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
}

/* Image Container */
.pm-image-container {
    position: relative;
    background-color: #f3f4f6;
    overflow: hidden;
}

.pm-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

/* Details Section */
.pm-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 90vh;
}

.pm-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.pm-description {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pm-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 1.5rem;
}

/* Form Styles */
.pm-form {
    margin-top: auto;
}

.pm-field {
    margin-bottom: 1.5rem;
}

.pm-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pm-label-hint {
    font-weight: 400;
    color: var(--color-gray);
    text-transform: none;
    letter-spacing: 0;
}

.pm-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pm-textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.pm-textarea::placeholder {
    color: #9ca3af;
}

/* Quantity Row */
.pm-quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.pm-quantity {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.pm-qty-btn {
    width: 48px;
    height: 48px;
    border: none;
    background-color: #f9fafb;
    color: var(--color-dark);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pm-qty-btn:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.pm-qty-btn:active {
    transform: scale(0.95);
}

.pm-qty-input {
    width: 60px;
    height: 48px;
    border: none;
    border-left: 2px solid #e5e7eb;
    border-right: 2px solid #e5e7eb;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    background-color: var(--color-white);
    -moz-appearance: textfield;
}

.pm-qty-input::-webkit-outer-spin-button,
.pm-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to Cart Button */
.pm-add-btn {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.pm-add-btn:hover:not(:disabled) {
    background-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.pm-add-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.pm-add-btn.pm-success {
    background-color: #10b981;
}

.pm-add-btn.pm-error {
    background-color: #ef4444;
}

.pm-add-btn i {
    font-size: 0.9rem;
}

.pm-add-price {
    margin-left: auto;
    font-weight: 800;
}

/* ===================================
   PRODUCT MODAL - RESPONSIVE TABLET (768px - 1024px)
   =================================== */

@media (max-width: 1024px) {
    .pm-modal {
        max-width: 700px;
    }

    .pm-image {
        min-height: 280px;
    }

    .pm-details {
        padding: 1.75rem;
    }

    .pm-title {
        font-size: 1.5rem;
    }

    .pm-description {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }

    .pm-price {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .pm-field {
        margin-bottom: 1.25rem;
    }

    .pm-textarea {
        min-height: 70px;
    }

    .pm-qty-btn {
        width: 44px;
        height: 44px;
    }

    .pm-qty-input {
        width: 56px;
        height: 44px;
        font-size: 1.125rem;
    }
}

/* ===================================
   PRODUCT MODAL - RESPONSIVE MOBILE (480px - 768px)
   =================================== */

@media (max-width: 768px) {
    .pm-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .pm-modal {
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }

    .pm-overlay.pm-active .pm-modal {
        transform: translateY(0);
    }

    .pm-content {
        grid-template-columns: 1fr;
    }

    .pm-image-container {
        height: 180px;
        flex-shrink: 0;
    }

    .pm-image {
        min-height: unset;
        height: 180px;
    }

    .pm-details {
        padding: 1.25rem;
        max-height: calc(92vh - 180px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pm-title {
        font-size: 1.375rem;
        margin-bottom: 0.5rem;
    }

    .pm-description {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    .pm-price {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .pm-close {
        top: 0.625rem;
        right: 0.625rem;
        width: 36px;
        height: 36px;
        font-size: 1rem;
        background-color: rgba(255, 255, 255, 0.95);
    }

    /* Form aanpassingen */
    .pm-field {
        margin-bottom: 1rem;
    }

    .pm-label {
        font-size: 0.8rem;
        margin-bottom: 0.375rem;
    }

    .pm-textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
        min-height: 60px;
        border-radius: 10px;
    }

    /* Quantity - touch-friendly */
    .pm-quantity-row {
        margin-bottom: 1rem;
    }

    .pm-qty-btn {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }

    .pm-qty-input {
        width: 64px;
        height: 48px;
        font-size: 1.25rem;
    }

    /* Add to cart button - touch-friendly */
    .pm-add-btn {
        padding: 1rem 1.25rem;
        font-size: 0.8rem;
        border-radius: 10px;
        min-height: 52px;
    }

    .pm-add-btn i {
        font-size: 1rem;
    }
}

/* ===================================
   PRODUCT MODAL - RESPONSIVE SMALL MOBILE (<480px)
   =================================== */

@media (max-width: 480px) {
    .pm-modal {
        max-height: 90vh;
        border-radius: 16px 16px 0 0;
    }

    .pm-image-container {
        height: 150px;
    }

    .pm-image {
        height: 150px;
    }

    .pm-details {
        padding: 1rem;
        max-height: calc(90vh - 150px);
    }

    .pm-title {
        font-size: 1.125rem;
        margin-bottom: 0.375rem;
    }

    .pm-description {
        font-size: 0.85rem;
        margin-bottom: 0.625rem;
        /* Beperk lange beschrijvingen */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .pm-price {
        font-size: 1.375rem;
        margin-bottom: 0.875rem;
    }

    .pm-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    /* Form compact */
    .pm-field {
        margin-bottom: 0.875rem;
    }

    .pm-label {
        font-size: 0.75rem;
    }

    .pm-label-hint {
        display: block;
        margin-top: 0.125rem;
    }

    .pm-textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
        min-height: 50px;
        border-radius: 8px;
    }

    /* Quantity row - stack on small screens */
    .pm-quantity-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.625rem;
        margin-bottom: 0.875rem;
    }

    .pm-quantity {
        justify-content: center;
        border-radius: 10px;
    }

    .pm-qty-btn {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .pm-qty-input {
        width: 70px;
        height: 52px;
        font-size: 1.375rem;
    }

    /* Add button - full width, prominent */
    .pm-add-btn {
        padding: 0.875rem 1rem;
        font-size: 0.75rem;
        border-radius: 10px;
        min-height: 50px;
        gap: 0.375rem;
    }

    .pm-add-btn i {
        font-size: 0.9rem;
    }

    .pm-add-price {
        font-size: 0.9rem;
    }
}

/* ===================================
   PRODUCT MODAL - LANDSCAPE MOBILE
   =================================== */

@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
    .pm-modal {
        max-height: 98vh;
        border-radius: 12px;
    }

    .pm-overlay {
        align-items: center;
        padding: 0.5rem;
    }

    .pm-overlay.pm-active .pm-modal {
        transform: scale(1) translateY(0);
    }

    .pm-content {
        grid-template-columns: 40% 1fr;
    }

    .pm-image-container {
        height: auto;
        min-height: 100%;
    }

    .pm-image {
        height: 100%;
        min-height: unset;
    }

    .pm-details {
        padding: 1rem;
        max-height: 98vh;
    }

    .pm-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .pm-description {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        margin-bottom: 0.5rem;
    }

    .pm-price {
        font-size: 1.25rem;
        margin-bottom: 0.625rem;
    }

    .pm-field {
        margin-bottom: 0.5rem;
    }

    .pm-label {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }

    .pm-textarea {
        min-height: 40px;
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .pm-quantity-row {
        flex-direction: row;
        margin-bottom: 0.5rem;
    }

    .pm-qty-btn {
        width: 36px;
        height: 36px;
    }

    .pm-qty-input {
        width: 48px;
        height: 36px;
        font-size: 1rem;
    }

    .pm-add-btn {
        padding: 0.625rem;
        font-size: 0.7rem;
        min-height: 40px;
    }

    .pm-close {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        top: 0.375rem;
        right: 0.375rem;
    }
}

/* Pagination */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.pagination-info {
    color: #666;
    font-size: 0.9rem;
}

.pagination-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(.disabled):not(.active) {
    background: #f5f5f5;
    border-color: #ff2323;
    color: #ff2323;
}

.pagination-btn.active {
    background: #ff2323;
    border-color: #ff2323;
    color: white;
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.no-products i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-products h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-category {
    display: block;
    font-size: 0.75rem;
    color: #c41e3a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

/* Full width main without sidebar */
.shop-main-full {
    width: 100%;
    max-width: 100%;
}

.shop-container:has(.shop-main-full) {
    display: block;
}

/* ===== OLMIA PRODUCT GRID STYLING ===== */

/* Products Grid - 5 columns on large screens */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Card - Olmia Style */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-card:hover {
    border-color: #053A62;
    box-shadow: 0 4px 12px rgba(5, 58, 98, 0.1);
}

/* Product Image */
.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #ff2323;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
    text-transform: uppercase;
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem;
    border-top: 1px solid #f0f0f0;
}

/* Product Category */
.product-card .product-category {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Name - Olmia Blue */
.product-card .product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #053A62;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
    flex: 1;
}

/* Product Price - Olmia Style */
.product-card .product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #053A62;
    margin-bottom: 0.75rem;
}

/* Add to Cart / View Button - Olmia Blue */
.product-card .product-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1rem;
    background: #053A62;
    color: white !important;
    border: none;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .product-view-btn:hover {
    background: #ff2323;
}

.product-card .product-view-btn i {
    font-size: 0.75rem;
}

/* Orange label for hero */
.page-hero-label {
    background: #ff2323 !important;
    color: white !important;
}

/* ===== OLMIA SHOP LAYOUT WITH FILTERS ===== */

/* Search Bar */
.olmia-shop-search {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.olmia-search-form {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    max-width: 700px;
    transition: border-color 0.2s;
    position: relative;
}

.olmia-search-form:focus-within {
    border-color: #053A62;
}

.olmia-search-form > i {
    color: #999;
    font-size: 1.1rem;
}

.olmia-search-form input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.25rem 0;
}

.olmia-search-loading {
    display: none;
    color: #ff2323;
}

.olmia-search-loading.active {
    display: block;
    animation: spin 1s linear infinite;
}

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

.olmia-search-results {
    color: #666;
    font-size: 0.95rem;
    white-space: nowrap;
}

.olmia-search-results #resultsCount {
    font-weight: 700;
    color: #053A62;
    font-size: 1.1rem;
}

.olmia-search-time {
    color: #999;
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

/* Shop Layout */
.olmia-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar */
.olmia-shop-sidebar {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(5,58,98,0.08);
    position: sticky;
    top: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.olmia-filter-section {
    border-bottom: 1px solid #f0f0f0;
}

.olmia-filter-section:last-of-type {
    border-bottom: none;
}

.olmia-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ff2323 0%, #cc1c1c 100%);
}

.olmia-filter-content {
    padding: 1rem 1.25rem;
    background: #fafafa;
}

.olmia-filter-content.collapsed {
    display: none;
}

/* Checkbox Filter */
.olmia-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    margin: 0.25rem 0;
    cursor: pointer;
    font-size: 0.85rem;
    color: #333;
    background: white;
    border-radius: 6px;
    border: 1px solid #eee;
    transition: all 0.2s;
}

.olmia-filter-checkbox:hover {
    border-color: #053A62;
    box-shadow: 0 2px 6px rgba(5,58,98,0.1);
}

.olmia-filter-checkbox input[type="checkbox"] {
    display: none;
}

.olmia-filter-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    background: white;
}

.olmia-filter-checkbox input:checked + .checkmark {
    background: #ff2323;
    border-color: #ff2323;
}

.olmia-filter-checkbox input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: white;
}

.olmia-filter-checkbox .label-text {
    flex: 1;
    line-height: 1.3;
    word-break: break-word;
    font-weight: 500;
    color: #053A62;
}

.olmia-filter-checkbox .count {
    background: #053A62;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
}

.olmia-filter-checkbox:hover .checkmark {
    border-color: #ff2323;
}

/* Show More Button */
.olmia-show-more {
    background: #ff2323;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.olmia-show-more:hover {
    background: #e5850f;
}

/* Price Range */
.olmia-price-range {
    padding-top: 0.5rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.price-inputs input {
    flex: 1;
    padding: 0.65rem 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
    max-width: 90px;
    transition: border-color 0.2s;
}

.price-inputs input:focus {
    outline: none;
    border-color: #053A62;
}

.price-inputs span {
    color: #999;
    font-weight: 500;
}

.price-slider {
    position: relative;
    padding: 0.5rem 0;
}

.price-slider input[type="range"] {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    background: linear-gradient(to right, #ff2323 0%, #ff2323 50%, #e0e0e0 50%, #e0e0e0 100%);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid #ff2323;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}

.price-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.price-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid #ff2323;
    border-radius: 50%;
    cursor: pointer;
}

/* Price label styling */
.price-label {
    color: #666;
    font-weight: 600;
}

.olmia-clear-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: calc(100% - 2.5rem);
    margin: 1rem 1.25rem;
    padding: 0.75rem 1rem;
    background: #053A62;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.olmia-clear-filters:hover {
    background: #ff2323;
}

/* Main Content Area */
.olmia-shop-main {
    min-width: 0;
}

/* Top Bar */
.olmia-shop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.olmia-shop-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #053A62;
}

.olmia-shop-sorting {
    display: flex;
    gap: 0.75rem;
}

.olmia-shop-sorting select {
    padding: 0.6rem 2rem 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #333;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.olmia-shop-sorting select:focus {
    outline: none;
    border-color: #053A62;
}

/* Loading state */
.products-grid.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* 4-Column Product Grid */
.products-grid-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1200px) {
    .products-grid-4 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 900px) {
    .products-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 500px) {
    .products-grid-4 {
        grid-template-columns: 1fr !important;
    }
}

/* Responsive Layout */
@media (max-width: 992px) {
    .olmia-shop-layout {
        grid-template-columns: 1fr;
    }

    .olmia-shop-sidebar {
        position: static;
        margin-bottom: 1.5rem;
    }

    .olmia-shop-search {
        flex-direction: column;
        gap: 1rem;
    }

    .olmia-search-form {
        max-width: 100%;
    }

    .olmia-shop-topbar {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .olmia-shop-sorting {
        flex-direction: column;
        width: 100%;
    }

    .olmia-shop-sorting select {
        width: 100%;
    }
}
