/* ==========================================================================
   Shop / product listing — modern UI
   Loaded only on pages/website/ecommerce/products (route: /shop).
   ========================================================================== */

:root {
    --sh-bg: #f6f8fb;
    --sh-surface: #ffffff;
    --sh-border: #e8ecf3;
    --sh-text: #1f2433;
    --sh-muted: #6b7280;
    --sh-primary: #0989ff;
    --sh-primary-dark: #0a6fcc;
    --sh-primary-soft: #eaf4ff;
    --sh-danger: #e23744;
    --sh-danger-soft: #fdecee;
    --sh-success: #0f9d58;
    --sh-success-soft: #e8f7ef;
    --sh-star: #f5a623;
    --sh-radius: 16px;
    --sh-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 6px 22px rgba(16, 24, 40, .06);
}

.shop-area {
    background: var(--sh-bg);
    padding: 24px 0 80px;
}

.shop-wrap {
    width: 100%;
    color: var(--sh-text);
}

/* ---- Hero ---------------------------------------------------------------- */
.shop-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    padding: 4px 2px 20px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--sh-border);
}

.shop-hero-copy {
    max-width: 720px;
}

.shop-crumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--sh-muted);
    margin-bottom: 8px;
}

.shop-crumb a {
    color: var(--sh-muted);
    text-decoration: none;
}

.shop-crumb a:hover {
    color: var(--sh-text);
}

.shop-crumb span {
    color: #c3cad6;
}

.shop-crumb b {
    color: var(--sh-text);
    font-weight: 600;
}

.shop-hero-title {
    margin: 0 0 6px;
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--sh-text);
}

.shop-hero-sub {
    margin: 0;
    font-size: 14px;
    color: var(--sh-muted);
}

.shop-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    color: var(--sh-muted);
    font-size: 12.5px;
    font-weight: 600;
}

.shop-hero-badge i {
    color: #98a2b3;
}

/* ---- Category chips ------------------------------------------------------ */
.shop-chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    margin-bottom: 6px;
    scrollbar-width: thin;
}

.shop-chips::-webkit-scrollbar {
    height: 6px;
}

.shop-chips::-webkit-scrollbar-thumb {
    background: #d8e0ec;
    border-radius: 999px;
}

.shop-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--sh-border);
    background: var(--sh-surface);
    color: var(--sh-text);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s ease;
}

.shop-chip span {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #f1f5fb;
    color: var(--sh-muted);
    font-size: 11.5px;
    font-weight: 700;
}

.shop-chip:hover {
    border-color: var(--sh-primary);
    color: var(--sh-primary);
}

.shop-chip.is-active {
    background: var(--sh-primary);
    border-color: var(--sh-primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(9, 137, 255, .28);
}

.shop-chip.is-active span {
    background: rgba(255, 255, 255, .22);
    color: #fff;
}

/* ---- Toolbar ------------------------------------------------------------- */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: 14px;
    box-shadow: var(--sh-shadow);
}

.shop-toolbar-left,
.shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.shop-view-toggle {
    display: inline-flex;
    padding: 3px;
    border-radius: 10px;
    background: #f1f5fb;
}

.shop-view-btn {
    width: 34px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--sh-muted);
    cursor: pointer;
    transition: all .2s ease;
}

.shop-view-btn.is-active {
    background: var(--sh-surface);
    color: var(--sh-primary);
    box-shadow: 0 1px 4px rgba(16, 24, 40, .12);
}

.shop-count {
    margin: 0;
    font-size: 13.5px;
    color: var(--sh-muted);
}

.shop-count b {
    color: var(--sh-text);
    font-weight: 600;
}

.shop-select {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.shop-select i {
    position: absolute;
    left: 12px;
    color: var(--sh-muted);
    font-size: 13px;
    pointer-events: none;
}

.shop-select select {
    appearance: none;
    -webkit-appearance: none;
    height: 40px;
    padding: 0 34px 0 34px;
    border-radius: 10px;
    border: 1px solid var(--sh-border);
    background: var(--sh-surface) url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
    color: var(--sh-text);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.shop-select select:focus {
    border-color: var(--sh-primary);
    box-shadow: 0 0 0 3px var(--sh-primary-soft);
}

.shop-filter-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid var(--sh-border);
    background: var(--sh-surface);
    color: var(--sh-text);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}

.shop-filter-btn:hover,
.shop-filter-btn.is-open {
    border-color: var(--sh-primary);
    background: var(--sh-primary-soft);
    color: var(--sh-primary-dark);
}

.shop-filter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sh-danger);
}

/* ---- Active filter chips ------------------------------------------------- */
.shop-active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.shop-active-label {
    font-size: 13px;
    color: var(--sh-muted);
    font-weight: 600;
}

.shop-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--sh-border);
    background: var(--sh-surface);
    color: var(--sh-text);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.shop-tag i {
    font-size: 11px;
    color: var(--sh-muted);
}

.shop-tag:hover {
    border-color: var(--sh-danger);
    background: var(--sh-danger-soft);
    color: var(--sh-danger);
}

.shop-tag:hover i {
    color: var(--sh-danger);
}

.shop-tag-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(16, 24, 40, .15);
}

.shop-clear-all {
    border: 0;
    background: none;
    color: var(--sh-primary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}

/* ---- Filter panel -------------------------------------------------------- */
.shop-filter-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    padding: 24px;
    margin-bottom: 22px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    box-shadow: var(--sh-shadow);
}

.shop-filter-title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--sh-text);
}

.shop-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 240px;
    overflow-y: auto;
}

.shop-filter-list li + li {
    margin-top: 2px;
}

.shop-filter-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 8px;
    color: var(--sh-muted);
    font-size: 13.5px;
    text-decoration: none;
    transition: all .18s ease;
}

.shop-filter-list a span {
    font-size: 12px;
    color: #9aa2b1;
}

.shop-filter-list a:hover {
    background: #f5f8fd;
    color: var(--sh-text);
}

.shop-filter-list a.is-active {
    background: var(--sh-primary-soft);
    color: var(--sh-primary-dark);
    font-weight: 700;
}

.shop-color-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 240px;
    overflow-y: auto;
}

.shop-color-list label {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 8px;
    border-radius: 8px;
    margin: 0;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--sh-muted);
    transition: background .18s ease;
}

.shop-color-list label:hover {
    background: #f5f8fd;
}

.shop-color-list input {
    width: 15px;
    height: 15px;
    accent-color: var(--sh-primary);
    cursor: pointer;
}

.shop-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(16, 24, 40, .15);
}

.shop-color-name {
    flex: 1;
    text-transform: capitalize;
}

.shop-color-count {
    font-size: 12px;
    color: #9aa2b1;
}

.shop-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin: 0 0 18px;
}

.shop-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.shop-switch-track {
    position: relative;
    width: 42px;
    height: 24px;
    border-radius: 999px;
    background: #dfe6f0;
    transition: background .2s ease;
}

.shop-switch-track::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(16, 24, 40, .25);
    transition: transform .2s ease;
}

.shop-switch input:checked + .shop-switch-track {
    background: var(--sh-primary);
}

.shop-switch input:checked + .shop-switch-track::after {
    transform: translateX(18px);
}

.shop-switch-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--sh-text);
}

.shop-reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid var(--sh-border);
    background: var(--sh-surface);
    color: var(--sh-muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}

.shop-reset-btn:hover {
    border-color: var(--sh-danger);
    color: var(--sh-danger);
    background: var(--sh-danger-soft);
}

.shop-top-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.shop-top-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.shop-top-thumb {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    border: 1px solid var(--sh-border);
    background: #f8fafd;
    overflow: hidden;
}

.shop-top-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.shop-top-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.shop-top-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 10.5px;
    color: var(--sh-star);
}

.shop-top-stars .is-off {
    color: #d8dee9;
}

.shop-top-stars em {
    font-style: normal;
    margin-left: 4px;
    color: var(--sh-muted);
}

.shop-top-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--sh-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-top-price {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--sh-primary);
}

/* ---- Results ------------------------------------------------------------- */
.shop-results-area {
    position: relative;
    min-height: 240px;
    transition: opacity .2s ease;
}

.shop-results-area.is-busy .shop-results {
    opacity: .45;
    pointer-events: none;
}

.shop-busy-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: start center;
    padding-top: 80px;
    z-index: 3;
}

.shop-spinner {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid var(--sh-primary-soft);
    border-top-color: var(--sh-primary);
    animation: shop-spin .7s linear infinite;
}

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

.shop-results.is-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 22px;
}

.shop-results.is-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.shop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    overflow: hidden;
    box-shadow: var(--sh-shadow);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.shop-card:hover {
    transform: translateY(-4px);
    border-color: #d6e6fb;
    box-shadow: 0 14px 34px rgba(9, 137, 255, .14);
}

.shop-card-media {
    position: relative;
    background: #f7f9fc;
}

.shop-card-img {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.shop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform .35s ease;
}

.shop-card:hover .shop-card-img img {
    transform: scale(1.06);
}

.shop-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--sh-danger);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .2px;
}

.shop-card-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(8px);
    transition: all .25s ease;
}

.shop-card:hover .shop-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.shop-icon-btn {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--sh-muted);
    box-shadow: 0 2px 10px rgba(16, 24, 40, .14);
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
}

.shop-icon-btn:hover {
    background: var(--sh-primary);
    color: #fff;
}

.shop-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px 16px;
    flex: 1;
}

.shop-card-cat {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--sh-primary);
}

.shop-card-title {
    margin: 0;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.45;
}

.shop-card-title a {
    color: var(--sh-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.shop-card-title a:hover {
    color: var(--sh-primary);
}

.shop-card-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11.5px;
    color: var(--sh-star);
}

.shop-card-rating .is-off {
    color: #d8dee9;
}

.shop-card-rating em {
    font-style: normal;
    margin-left: 5px;
    font-weight: 700;
    color: var(--sh-text);
}

.shop-card-rating span {
    color: var(--sh-muted);
}

.shop-card-desc {
    display: none;
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--sh-muted);
}

.shop-card-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.shop-card-price b {
    font-size: 18px;
    color: var(--sh-text);
}

.shop-card-price del {
    font-size: 13px;
    color: #9aa2b1;
}

.shop-card-save {
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--sh-success-soft);
    color: var(--sh-success);
    font-size: 11.5px;
    font-weight: 700;
}

.shop-card-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background: var(--sh-primary);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease;
}

.shop-card-btn:hover {
    background: var(--sh-primary-dark);
}

/* List view — same card markup, different layout */
.shop-results.is-list .shop-card {
    flex-direction: row;
}

.shop-results.is-list .shop-card-media {
    flex: 0 0 260px;
    width: 260px;
}

.shop-results.is-list .shop-card-body {
    padding: 22px 24px;
    gap: 10px;
}

.shop-results.is-list .shop-card-title {
    font-size: 18px;
}

.shop-results.is-list .shop-card-title a {
    -webkit-line-clamp: 2;
    min-height: 0;
}

.shop-results.is-list .shop-card-desc {
    display: block;
}

.shop-results.is-list .shop-card-btn {
    margin-top: 8px;
    align-self: flex-start;
    padding: 0 26px;
}

.shop-results.is-list .shop-card-actions {
    opacity: 1;
    transform: none;
}

/* ---- Empty state --------------------------------------------------------- */
.shop-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 56px 24px 60px;
    background: var(--sh-surface);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius);
    box-shadow: var(--sh-shadow);
}

.shop-empty-art svg {
    width: 200px;
    max-width: 60vw;
    height: auto;
    margin-bottom: 18px;
}

.shop-empty-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--sh-text);
}

.shop-empty-text {
    margin: 0 0 22px;
    max-width: 520px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--sh-muted);
}

.shop-empty-text b {
    color: var(--sh-text);
}

.shop-empty-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.shop-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 22px;
    border: 1px solid var(--sh-primary);
    border-radius: 10px;
    background: var(--sh-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
}

.shop-empty-btn:hover {
    background: var(--sh-primary-dark);
    border-color: var(--sh-primary-dark);
    color: #fff;
}

.shop-empty-btn.is-ghost {
    background: transparent;
    color: var(--sh-primary);
}

.shop-empty-btn.is-ghost:hover {
    background: var(--sh-primary-soft);
    color: var(--sh-primary-dark);
}

.shop-empty-suggest {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px dashed var(--sh-border);
    width: 100%;
    max-width: 720px;
}

.shop-empty-suggest > span {
    display: block;
    margin-bottom: 12px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--sh-muted);
}

.shop-empty-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.shop-empty-chips button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 15px;
    border-radius: 999px;
    border: 1px solid var(--sh-border);
    background: #fff;
    color: var(--sh-text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.shop-empty-chips button em {
    font-style: normal;
    color: var(--sh-muted);
    font-size: 11.5px;
}

.shop-empty-chips button:hover {
    border-color: var(--sh-primary);
    background: var(--sh-primary-soft);
    color: var(--sh-primary-dark);
}

/* ---- Pagination ---------------------------------------------------------- */
.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
}

.shop-page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--sh-border);
    border-radius: 10px;
    background: var(--sh-surface);
    color: var(--sh-text);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}

.shop-page-btn:hover:not(:disabled):not(.is-active) {
    border-color: var(--sh-primary);
    color: var(--sh-primary);
}

.shop-page-btn.is-active {
    background: var(--sh-primary);
    border-color: var(--sh-primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(9, 137, 255, .28);
}

.shop-page-btn:disabled {
    opacity: .4;
    cursor: default;
}

.shop-page-gap {
    color: var(--sh-muted);
    padding: 0 2px;
}

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 1199.98px) {
    .shop-filter-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .shop-results.is-list .shop-card-media {
        flex: 0 0 200px;
        width: 200px;
    }
}

@media (max-width: 767.98px) {
    .shop-area {
        padding: 14px 0 60px;
    }

    .shop-hero {
        padding: 2px 0 16px;
        gap: 12px;
    }

    .shop-hero-title {
        font-size: 20px;
    }

    .shop-hero-sub {
        font-size: 13.5px;
    }

    .shop-hero-badge {
        font-size: 11.5px;
        padding: 6px 11px;
    }

    .shop-toolbar {
        padding: 10px 12px;
    }

    .shop-toolbar-left,
    .shop-toolbar-right {
        width: 100%;
        justify-content: space-between;
    }

    .shop-select select {
        min-width: 0;
    }

    .shop-results.is-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .shop-card-body {
        padding: 12px 12px 14px;
        gap: 6px;
    }

    .shop-card-title {
        font-size: 13px;
    }

    .shop-card-title a {
        min-height: 36px;
    }

    .shop-card-price b {
        font-size: 15.5px;
    }

    .shop-card-btn {
        height: 38px;
        font-size: 12.5px;
    }

    .shop-card-actions {
        opacity: 1;
        transform: none;
    }

    .shop-results.is-list .shop-card {
        flex-direction: column;
    }

    .shop-results.is-list .shop-card-media {
        flex: 1 1 auto;
        width: 100%;
    }

    .shop-results.is-list .shop-card-body {
        padding: 14px 14px 16px;
    }

    .shop-results.is-list .shop-card-title {
        font-size: 15px;
    }

    .shop-filter-panel {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 18px;
    }

    .shop-empty {
        padding: 40px 16px 44px;
    }

    .shop-empty-title {
        font-size: 18px;
    }

    .shop-empty-text {
        font-size: 13.5px;
    }
}

@media (max-width: 400px) {
    .shop-results.is-grid {
        grid-template-columns: 1fr;
    }
}
