/* ExhaustHub custom shop styles — externalized from exhausthub-shop-shortcode.php
   Enqueued only on pages containing the [exhausthub_shop] shortcode. */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');
    
    :root {
        --exshop-primary: #9b51e0;
        --exshop-primary-dark: #7b3cb8;
        --exshop-text-dark: #1f2937;
        --exshop-text-muted: #6b7280;
        --exshop-border: #e5e7eb;
        --exshop-bg-page: #f9fafb;
        --exshop-bg-white: #ffffff;
    }
    
    .exshop-container {
        font-family: 'Inter', sans-serif;
        background: var(--exshop-bg-page);
        min-height: 100vh;
    }
    
    /* --- PAGE HEADER --- */
    .exshop-page-header {
        background: var(--exshop-bg-white);
        padding: 30px;
        border-bottom: 1px solid var(--exshop-border);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .exshop-page-title {
        font-family: 'Oswald', sans-serif;
        font-size: 42px;
        font-weight: 700;
        color: var(--exshop-text-dark);
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .exshop-sort-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .exshop-sort-label {
        font-size: 13px;
        color: var(--exshop-text-muted);
    }
    .exshop-sort-select {
        padding: 8px 30px 8px 12px;
        border: 1px solid var(--exshop-border);
        border-radius: 6px;
        font-size: 13px;
        background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
        appearance: none;
        cursor: pointer;
        text-transform: capitalize;
    }
    /* Mobile-only Filter button in the sticky toolbar (hidden on desktop).
       Scoped under .exshop-container so its specificity (0,2,0) beats the
       parent theme reset.css [type=button] rule (0,1,0), which loads AFTER
       this file and would otherwise win the tie and force display:inline-block. */
    .exshop-container .exshop-toolbar-filter {
        display: none;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 16px;
        border: 1px solid var(--exshop-border);
        border-radius: 8px;
        background: #fff;
        color: var(--exshop-text-dark);
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
    }
    .exshop-toolbar-filter svg {
        flex-shrink: 0;
    }

    /* --- LAYOUT: SIDEBAR + CONTENT --- */
    .exshop-layout {
        display: flex;
        max-width: 1600px;
        margin: 0 auto;
        gap: 0;
    }
    
    /* --- SIDEBAR --- */
    .exshop-sidebar {
        width: 280px;
        flex-shrink: 0;
        background: var(--exshop-bg-white);
        border-right: 1px solid var(--exshop-border);
        padding: 20px;
        align-self: flex-start;
    }
    
    /* --- FILTER PANEL --- */
    .exshop-panel {
        background: var(--exshop-bg-white);
        border: 1px solid var(--exshop-border);
        border-radius: 10px;
        margin-bottom: 16px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }
    .exshop-panel-header {
        background: linear-gradient(135deg, #9b51e0, #7b3cb8);
        padding: 14px 16px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.2s;
    }
    .exshop-panel-header:hover {
        background: linear-gradient(135deg, #7b3cb8, #5a2d8a);
    }
    .exshop-panel-title {
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0;
    }
    .exshop-panel-toggle {
        color: #fff;
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    .exshop-panel.collapsed .exshop-panel-toggle {
        transform: rotate(-90deg);
    }
    .exshop-panel-body {
        padding: 16px;
        display: block;
    }
    .exshop-panel.collapsed .exshop-panel-body {
        display: none;
    }
    
    /* --- FILTER GROUPS --- */
    .exshop-filter-group {
        margin-bottom: 8px;
        border-bottom: 1px solid var(--exshop-border);
        padding-bottom: 8px;
    }
    .exshop-filter-group:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }
    /* Keep a divider below the injected Exhaust Type group (it is the only/last
       child of its wrapper, which would otherwise strip the border above). */
    #exshop-cat-type .exshop-filter-group {
        margin-bottom: 8px;
        border-bottom: 1px solid var(--exshop-border);
    }
    .exshop-filter-label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'Oswald', sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: var(--exshop-text-dark);
        cursor: pointer;
        padding: 10px 0;
        user-select: none;
    }
    .exshop-filter-label:hover {
        color: var(--exshop-primary);
    }
    .exshop-filter-toggle {
        font-size: 10px;
        transition: transform 0.3s ease;
        color: var(--exshop-text-muted);
    }
    .exshop-filter-group.collapsed .exshop-filter-toggle {
        transform: rotate(-90deg);
    }
    .exshop-filter-group.collapsed .exshop-checkbox-group {
        display: none;
    }
    .exshop-filter-group.collapsed .exshop-filter-search {
        display: none;
    }
    .exshop-filter-search {
        width: 100%;
        padding: 8px 12px;
        border: none;
        border-bottom: 1px solid var(--exshop-border);
        font-size: 13px;
        font-family: 'Oswald', sans-serif;
        color: var(--exshop-text-dark);
        background: transparent;
        outline: none;
        margin-bottom: 8px;
    }
    .exshop-filter-search::placeholder {
        color: var(--exshop-text-muted);
        font-style: italic;
    }
    .exshop-filter-search:focus {
        border-bottom-color: var(--exshop-primary);
    }
    .exshop-select {
        width: 100%;
        padding: 10px 32px 10px 12px;
        border: 1px solid var(--exshop-border);
        border-radius: 8px;
        font-size: 13px;
        background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
        background-size: 14px;
        appearance: none;
        cursor: pointer;
        transition: border-color 0.2s, box-shadow 0.2s;
        text-transform: capitalize;
    }
    .exshop-select:focus {
        outline: none;
        border-color: var(--exshop-primary);
        box-shadow: 0 0 0 3px rgba(155, 81, 224, 0.1);
    }
    
    /* --- CHECKBOX GROUPS --- */
    .exshop-checkbox-group {
        padding: 0 8px 8px 8px;
        background: #fff;
    }
    .exshop-checkbox-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 8px;
        border-radius: 6px;
        cursor: pointer;
        transition: background 0.15s;
        font-size: 13px;
        text-transform: capitalize;
    }
    .exshop-checkbox-item:hover {
        background: rgba(155, 81, 224, 0.08);
    }
    /* Sound levels are already cased correctly (e.g. "Loud as F*ck") — don't capitalize them */
    #exshop-sound-level .exshop-checkbox-item {
        text-transform: none;
    }
    .exshop-checkbox-item input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: var(--exshop-primary);
        cursor: pointer;
        flex-shrink: 0;
    }
    .exshop-checkbox-item label {
        cursor: pointer;
        flex: 1;
        user-select: none;
    }
    .exshop-checkbox-item.checked {
        background: rgba(155, 81, 224, 0.12);
        font-weight: 500;
    }
    
    /* --- PRICE RANGE FILTER --- */
    .exshop-price-filter {
        padding: 8px 0;
    }
    .exshop-price-inputs {
        display: flex;
        gap: 8px;
        margin-bottom: 12px;
    }
    .exshop-price-input-wrap {
        flex: 1;
    }
    .exshop-price-input-wrap label {
        display: block;
        font-size: 11px;
        color: var(--exshop-text-muted);
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .exshop-price-input {
        width: 100%;
        padding: 8px;
        border: 1px solid var(--exshop-border);
        border-radius: 6px;
        font-size: 13px;
    }
    .exshop-price-values {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: var(--exshop-text-muted);
        margin-top: 8px;
    }
    
    /* Range Slider */
    .exshop-price-slider {
        position: relative;
        height: 6px;
        background: #e5e7eb;
        border-radius: 3px;
        margin: 20px 0;
    }
    .exshop-price-slider-track {
        position: absolute;
        height: 100%;
        background: linear-gradient(135deg, #9b51e0, #7b3cb8);
        border-radius: 3px;
    }
    .exshop-price-slider-handle {
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 18px;
        height: 18px;
        background: #fff;
        border: 3px solid #9b51e0;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s;
        z-index: 2;
    }
    .exshop-price-slider-handle:hover {
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 0 2px 8px rgba(155, 81, 224, 0.4);
    }
    .exshop-price-slider-handle:active {
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    /* --- BUTTONS --- */
    .exshop-btn {
        width: 100%;
        padding: 12px 16px;
        border: none;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: 'Oswald', sans-serif !important;
    }
    .exshop-btn-primary {
        background: linear-gradient(135deg, #9b51e0, #7b3cb8);
        color: #fff;
    }
    .exshop-btn-primary:hover {
        background: linear-gradient(135deg, #7b3cb8, #5a2d8a);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(155, 81, 224, 0.3);
    }
    .exshop-btn-secondary {
        background: #fff;
        color: var(--exshop-text-dark);
        border: 1px solid var(--exshop-border);
    }
    .exshop-btn-secondary:hover {
        background: #f9fafb;
    }
    
    /* --- CONTENT AREA --- */
    .exshop-content {
        flex: 1;
        padding: 20px 30px;
        min-width: 0;
    }
    
    /* --- ACTIVE CATEGORY BANNER --- */
    .exshop-active-cat {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 12px 16px;
        margin-bottom: 16px;
        background: #f3e8ff;
        border: 1px solid #d8b4fe;
        border-left: 5px solid var(--exshop-primary, #9b51e0);
        border-radius: 8px;
    }
    .exshop-active-cat-label {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #6d28d9;
        font-weight: 600;
        white-space: nowrap;
        flex: 0 0 auto;
    }
    .exshop-active-cat-name {
        font-size: 17px;
        font-weight: 700;
        color: #4c1d95;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }
    .exshop-active-cat-clear {
        margin-left: auto;
        flex: 0 0 auto;
        white-space: nowrap;
        background: var(--exshop-primary, #9b51e0);
        color: #fff;
        border: none;
        border-radius: 6px;
        padding: 6px 12px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        line-height: 1;
    }
    .exshop-active-cat-clear:hover {
        background: #7c3aed;
    }
    @media (max-width: 600px) {
        .exshop-active-cat {
            gap: 6px;
            padding: 8px 10px;
            margin-top: 16px;
        }
        .exshop-active-cat .exshop-active-cat-label {
            font-size: 10px;
            letter-spacing: 0.2px;
        }
        .exshop-active-cat .exshop-active-cat-name {
            font-size: 13px;
        }
        .exshop-active-cat .exshop-active-cat-clear {
            padding: 3px 7px;
            font-size: 10px;
            font-weight: 600;
            border-radius: 5px;
            line-height: 1.2;
        }
    }

    /* --- RESULTS HEADER --- */
    .exshop-results-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    .exshop-results-count {
        font-size: 14px;
        color: var(--exshop-text-muted);
    }
    .exshop-results-count strong {
        color: var(--exshop-primary);
    }
    
    /* --- GRID --- */
    .exshop-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 24px;
    }
    
    /* --- PRODUCT CARD --- */
    .exshop-card {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        background: var(--exshop-bg-white);
        border: 1px solid var(--exshop-border);
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.2s, box-shadow 0.2s;
        display: flex;
        flex-direction: column;
    }
    .exshop-card:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }
    .exshop-card-image {
        position: relative;
        width: 100%;
        padding-bottom: 75%;
        background: #f3f4f6;
        overflow: hidden;
    }
    .exshop-carousel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        transition: transform 0.3s ease;
    }
    .exshop-carousel-slide {
        min-width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .exshop-carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.4) !important;
        border: none !important;
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transition: all 0.3s;
        opacity: 0.6;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        font-size: 18px !important;
        color: #333 !important;
        padding: 0 !important;
        font-family: Arial, sans-serif !important;
    }
    .exshop-carousel-btn:hover {
        background: rgba(255,255,255,0.95) !important;
        opacity: 1;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
        transform: translateY(-50%) scale(1.1);
        color: #333 !important;
        border: none !important;
    }
    .exshop-carousel-btn.prev {
        left: 8px;
    }
    .exshop-carousel-btn.next {
        right: 8px;
    }
    .exshop-carousel-dots {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
        z-index: 2;
    }
    .exshop-carousel-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255,255,255,0.6);
        cursor: pointer;
        transition: all 0.2s;
    }
    .exshop-carousel-dot.active {
        width: 20px;
        border-radius: 3px;
        background: #fff;
    }
    .exshop-card-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: linear-gradient(135deg, #10b981, #059669);
        color: #fff;
        padding: 4px 10px;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 2;
    }
    .exshop-card-body {
        padding: 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .exshop-card-title {
        font-family: 'Oswald', sans-serif;
        font-size: 18px;
        font-weight: 600;
        color: var(--exshop-text-dark);
        margin: 0 0 12px 0;
        line-height: 1.3;
    }
    .exshop-card-price {
        font-family: 'Oswald', sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: var(--exshop-primary);
        margin-bottom: 12px;
    }
    .exshop-card-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin: 16px 0;
    }
    .exshop-meta-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 12px 10px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        transition: all 0.2s;
    }
    .exshop-meta-icon:hover {
        border-color: #9b51e0;
        box-shadow: 0 2px 8px rgba(155, 81, 224, 0.1);
    }
    .exshop-meta-icon img {
        width: 70px;
        height: 70px;
        object-fit: cover;
    }
    .exshop-meta-label {
        font-size: 10px;
        color: var(--exshop-text-muted);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }
    .exshop-meta-icon span {
        font-size: 11px;
        color: #1f2937;
        font-weight: 600;
        text-align: center;
        line-height: 1.2;
    }
    .techno-sound-blocks {
        display: flex;
        flex-direction: column;
        gap: 2px;
        width: 56px;
        justify-content: center;
    }
    .techno-sound-block {
        width: 100%;
        height: 10px;
        background: #e5e7eb;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .techno-sound-block.green {
        background: #10b981;
    }
    .techno-sound-block.yellow {
        background: #fbbf24;
    }
    .techno-sound-block.orange {
        background: #f97316;
    }
    .techno-sound-block.red {
        background: #ef4444;
    }
    .exshop-card:hover .exshop-card-title {
        color: #9b51e0;
    }
    
    /* --- LOADING STATES --- */
    .exshop-loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.9);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }
    .exshop-loading-overlay.active {
        display: flex;
    }
    .exshop-spinner {
        width: 60px;
        height: 60px;
        border: 4px solid #e5e7eb;
        border-top-color: var(--exshop-primary);
        border-radius: 50%;
        animation: exshop-spin 0.8s linear infinite;
    }
    @keyframes exshop-spin {
        to { transform: rotate(360deg); }
    }
    
    /* --- PAGINATION --- */
    .exshop-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 24px;
        padding: 12px 0;
        flex-wrap: wrap;
    }
    .exshop-pagination.hidden {
        display: none;
    }
    .exshop-pagination-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 28px;
        height: 28px;
        padding: 0 12px!important;
        border: 1px solid #d1d5db !important;
        background: #fff !important;
        border-radius: 4px !important;
        font-size: 12px !important;
        font-weight: 500;
        color: #374151 !important;
        cursor: pointer;
        transition: all 0.2s ease;
        font-family: 'Oswald', sans-serif !important;
    }
    .exshop-pagination-btn:hover:not(:disabled):not(.active) {
        background: #f3f4f6 !important;
        border-color: #9ca3af !important;
        color: #374151 !important;
    }
    .exshop-pagination-btn.active {
        background: linear-gradient(135deg, #8b5cf6, #6366f1) !important;
        border-color: transparent !important;
        color: #fff !important;
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3) !important;
    }
    .exshop-pagination-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    .exshop-pagination-btn svg {
        width: 14px;
        height: 14px;
    }
    .exshop-pagination-btn:has(svg:only-child) {
        min-width: 28px;
        max-width: 28px;
        padding: 0 !important;
    }
    
    /* --- MOBILE STYLES --- */
    @media (max-width: 1024px) {
        .exshop-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    /* --- MOBILE TOGGLE BUTTON --- */
    .exshop-mobile-toggle {
        display: none;
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: linear-gradient(135deg, #9b51e0, #6366f1);
        color: white;
        border: none;
        font-size: 24px;
        cursor: pointer;
        z-index: 999;
        box-shadow: 0 4px 16px rgba(155, 81, 224, 0.4);
        transition: all 0.3s ease;
    }
    .exshop-mobile-toggle:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(155, 81, 224, 0.5);
    }
    
    /* --- MOBILE OVERLAY --- */
    .exshop-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    @media (max-width: 768px) {
        /* Floating button replaced by the sticky toolbar Filter button */
        .exshop-mobile-toggle {
            display: none;
        }

        /* Sticky CarID-style toolbar: Filter + Sort + count */
        .exshop-content {
            padding: 0 12px 24px;
        }
        .exshop-results-header {
            position: sticky;
            top: 0;
            z-index: 50;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-areas:
                "filter sort"
                "count count";
            align-items: center;
            gap: 8px 10px;
            margin: 0 -12px 16px;
            padding: 10px 12px;
            background: var(--exshop-bg-white);
            border-bottom: 1px solid var(--exshop-border);
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .exshop-container .exshop-toolbar-filter {
            display: flex;
            grid-area: filter;
            width: 100%;
        }
        .exshop-results-count {
            grid-area: count;
            font-size: 12px;
        }
        .exshop-sort-wrap {
            grid-area: sort;
            width: 100%;
        }
        .exshop-sort-label {
            display: none;
        }
        .exshop-sort-select {
            width: 100%;
            padding: 10px 30px 10px 12px;
            border-radius: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .exshop-layout {
            flex-direction: column;
        }
        .exshop-sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100vh;
            z-index: 999;
            transition: left 0.3s ease;
            border-right: none;
            box-shadow: 4px 0 20px rgba(0,0,0,0.15);
            overflow-y: auto;
            overflow-x: hidden;
            padding: 12px;
            padding-bottom: 80px;
            -webkit-overflow-scrolling: touch;
        }
        .exshop-sidebar.open {
            left: 0;
        }
        .exshop-overlay.open {
            display: block;
        }
        
        /* Tighter spacing on mobile */
        .exshop-panel {
            margin-bottom: 10px;
        }
        .exshop-panel-header {
            padding: 10px 12px;
        }
        .exshop-panel-title {
            font-size: 12px;
        }
        .exshop-panel-body {
            padding: 10px;
        }
        .exshop-select {
            padding: 8px 28px 8px 10px;
            font-size: 12px;
        }
        .exshop-btn {
            padding: 8px 16px;
            font-size: 12px;
        }
        
        /* CarID-style 2-up card grid */
        .exshop-grid {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .exshop-page-title {
            font-size: 28px;
        }
        .exshop-card {
            border-radius: 10px;
        }
        .exshop-card-body {
            padding: 10px;
        }
        .exshop-card-title {
            font-size: 14px;
            margin-bottom: 6px;
        }
        .exshop-card-price {
            font-size: 18px;
            margin-bottom: 0;
        }
        .exshop-card-badge {
            top: 8px;
            left: 8px;
            padding: 3px 8px;
            font-size: 10px;
        }
        /* Stack meta and run the sound meter horizontally (CarID look) */
        .exshop-card-meta {
            grid-template-columns: 1fr;
            gap: 8px;
            margin: 10px 0 0;
        }
        .exshop-meta-icon {
            flex-direction: column;
            align-items: flex-start;
            gap: 5px;
            padding: 8px 10px;
        }
        .exshop-meta-icon img {
            width: 44px;
            height: 44px;
        }
        .exshop-meta-label {
            font-size: 9px;
            margin-bottom: 0;
        }
        .exshop-meta-icon span {
            font-size: 11px;
            text-align: left;
        }
        .techno-sound-blocks {
            flex-direction: row;
            width: 100%;
            height: 12px;
            gap: 3px;
        }
        .techno-sound-block {
            flex: 1;
            height: 100%;
        }
    }

    /* Extra-small phones: keep cards readable */
    @media (max-width: 360px) {
        .exshop-card-title {
            font-size: 13px;
        }
        .exshop-grid {
            gap: 10px;
        }
    }
    
    /* --- EMPTY STATE --- */
    .exshop-empty {
        text-align: center;
        padding: 60px 20px;
        color: var(--exshop-text-muted);
    }
    .exshop-empty-icon {
        font-size: 64px;
        margin-bottom: 16px;
        opacity: 0.3;
    }
    .exshop-empty-title {
        font-size: 20px;
        font-weight: 600;
        color: var(--exshop-text-dark);
        margin-bottom: 8px;
    }
    .exshop-empty-text {
        font-size: 14px;
    }
