#shopLoader {
    text-align: center;
    margin: 1.5rem 0;
}

.shop-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 0.2em solid rgba(10, 102, 64, 0.2);
    border-top-color: #0a6640;
    border-radius: 50%;
    animation: shop-spinner-spin 0.75s linear infinite;
}

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

/* ============================
   SHOP — HERO
   ============================ */

.shop-hero {
    position: relative;
    /* padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 88px); */
    overflow: visible;
}

.shop-hero-wrap {
    position: relative;
    width: 100%;
}

.shop-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(32px, 5vw, 56px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.shop-hero-content {
    max-width: 560px;
}

.shop-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(16, 137, 72, 0.1);
    border: 1px solid rgba(16, 137, 72, 0.18);
    color: #0a6640;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.shop-hero-badge i {
    font-size: 14px;
    color: #108948;
}

.shop-hero-line {
    display: block;
    font-size: clamp(36px, 4.8vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #1a1a5e;
}

.shop-hero-line--green {
    color: #108948;
}

.shop-hero-content p {
    margin-top: 20px;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.75;
    color: #5a6578;
    max-width: 500px;
}

.shop-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.shop-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.shop-hero-btn--quote {
    background: #108948;
    color: #fff;
    box-shadow: 0 12px 28px rgba(16, 137, 72, 0.28);
}

.shop-hero-btn--quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(16, 137, 72, 0.34);
    color: #fff;
    background: #0d7340;
}

.shop-hero-btn--outline {
    background: #fff;
    color: #2D2A7B;
    border: 1.5px solid #d8dee8;
    box-shadow: 0 4px 14px rgba(45, 42, 123, 0.06);
}

.shop-hero-btn--outline:hover {
    background: #f8f9fc;
    border-color: #c5cdd8;
    transform: translateY(-2px);
    color: #2D2A7B;
}

.shop-hero-media {
    position: relative;
    width: 100%;
    max-width: 714px;
    margin-left: auto;
    border-radius: 28px;
    overflow: visible;
    aspect-ratio: 4 / 3.2;
    flex-shrink: 0;
}

.shop-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.shop-hero-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shop-hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    min-width: 200px;
    max-width: 240px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(45, 42, 123, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.shop-hero-card__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 137, 72, 0.12);
    color: #108948;
    font-size: 18px;
}

.shop-hero-card strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a5e;
    line-height: 1.3;
    margin-bottom: 2px;
}

.shop-hero-card span {
    display: block;
    font-size: 11px;
    line-height: 1.4;
    color: #6b7280;
}

.shop-hero-card--tl {
    top: 8%;
    left: -6%;
}

.shop-hero-card--bl {
    bottom: 10%;
    left: 4%;
}

.shop-hero-card--mr {
    top: 42%;
    right: -8%;
}

@media (max-width: 1200px) {
    .shop-hero-card--tl {
        left: 0;
    }

    .shop-hero-card--mr {
        right: 0;
    }

    .shop-hero-card {
        min-width: 180px;
        max-width: 210px;
        padding: 10px 14px;
    }
}

@media (max-width: 991px) {
    .shop-hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .shop-hero-content {
        max-width: none;
        text-align: left;
    }

    .shop-hero-badge {
        margin-left: 0;
        margin-right: 0;
    }

    .shop-hero-content p {
        margin-left: 0;
        margin-right: auto;
        max-width: 560px;
    }

    .shop-hero-btns {
        justify-content: flex-start;
    }

    .shop-hero-media {
        margin-left: 0;
        margin-right: auto;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .shop-hero {
        padding: 32px 0 40px;
        border-bottom: 1px solid #e9edf5;
        overflow: hidden;
    }

    .shop-hero-inner {
        gap: 28px;
    }

    .shop-hero-badge {
        font-size: 11px;
        padding: 7px 14px;
    }

    .shop-hero-media {
        aspect-ratio: auto;
        overflow: hidden;
        border-radius: 22px;
    }

    .shop-hero-media img {
        aspect-ratio: 16 / 11;
        border-radius: 22px;
    }

    .shop-hero-cards {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 14px;
        pointer-events: auto;
    }

    .shop-hero-card {
        position: static;
        min-width: 0;
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .shop-hero {
        padding: 28px 0 36px;
    }

    .shop-hero-line {
        font-size: clamp(28px, 8.5vw, 36px);
        letter-spacing: -1px;
    }

    .shop-hero-content p {
        font-size: 14px;
        line-height: 1.65;
        margin-top: 14px;
    }

    .shop-hero-btns {
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
        width: 100%;
    }

    .shop-hero-btn {
        width: 100%;
        min-height: 48px;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 10px;
        white-space: normal;
    }

    .shop-hero-media img {
        aspect-ratio: 4 / 3;
    }

    .shop-hero-card strong {
        font-size: 12px;
    }

    .shop-hero-card span {
        font-size: 10px;
    }

    .shop-hero-card__icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .shop-hero-cards {
        transform: scale(0.92);
        transform-origin: center center;
    }

    .shop-hero-card--tl {
        top: 4%;
        left: -2%;
    }

    .shop-hero-card--mr {
        right: -2%;
    }
}

/* ============================
   SHOP — PRODUCT LISTING (FIGMA)
   ============================ */

.product-shop {
    padding: clamp(40px, 5vw, 56px) 0 clamp(72px, 8vw, 100px);
    background: #f4f6f9;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

.product-shop .container.product-shop__container {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    padding-left: clamp(14px, 4vw, 24px);
    padding-right: clamp(14px, 4vw, 24px);
    --bs-gutter-x: 0;
    box-sizing: border-box;
}

.product-shop__container {
    max-width: 1320px;
    width: 100%;
    min-width: 0;
}

/* Layout */
.shop-layout {
    display: grid;
    grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 32px);
    align-items: start;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.shop-panel {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.shop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: calc(var(--header-height, 110px) + 16px);
    min-width: 0;
    max-width: 100%;
}

.shop-sidebar-card {
    padding: 22px 18px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.shop-sidebar-card,
.shop-card,
.shop-service-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(26, 26, 94, 0.05);
}

.shop-sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a5e;
    margin: 0 0 16px;
    padding: 0 6px;
}

.shop-category-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    max-width: 100%;
}

.shop-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.shop-category-item__bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c5cdd8;
    flex-shrink: 0;
}

.shop-category-item__label {
    flex: 1;
    min-width: 0;
}

.shop-category-item__arrow {
    font-size: 12px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    color: #108948;
}

.shop-category-item:hover {
    background: #f3f6fa;
    color: #1a1a5e;
}

.shop-category-item.is-active {
    background: rgba(16, 137, 72, 0.1);
    color: #1a1a5e;
    font-weight: 600;
}

.shop-category-item.is-active .shop-category-item__bullet {
    background: #108948;
}

.shop-category-item.is-active .shop-category-item__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Help card */
.shop-help-card {
    padding: 20px 18px;
    background: linear-gradient(160deg, #1a1a5e 0%, #2D2A7B 100%);
    border: none;
    color: #fff;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    border-radius: 22px;
}

.shop-help-card__profile {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
}

.shop-help-card__profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-help-card__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 4px;
}

.shop-help-card__copy strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.shop-help-card__copy {
    min-width: 0;
}

.shop-help-card__copy p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 16px;
    overflow-wrap: anywhere;
}

.shop-help-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    background: #108948;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease;
    box-sizing: border-box;
    overflow-wrap: anywhere;
}

.shop-help-card__cta:hover {
    background: #0d7340;
    color: #fff;
    transform: translateY(-1px);
}

/* Main area */
.shop-main {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.shop-main-toolbar {
    margin-bottom: 22px;
}

.shop-search {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 360px;
    height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #e3e8ef;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-search:focus-within {
    border-color: #2D2A7B;
    box-shadow: 0 0 0 3px rgba(45, 42, 123, 0.1);
}

.shop-search i {
    color: #9aa3b2;
    font-size: 16px;
    flex-shrink: 0;
}

.shop-search input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: inherit;
    color: #1f2937;
    outline: none;
}

.shop-search input::placeholder {
    color: #9aa3b2;
}

/* Product grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.5vw, 24px);
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.shop-grid > .shop-card,
.shop-grid > .shop-empty {
    min-width: 0;
    max-width: 100%;
}

.shop-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(26, 26, 94, 0.1);
}

.shop-card:focus-visible {
    outline: 2px solid #2D2A7B;
    outline-offset: 3px;
}

.shop-card.is-hidden {
    display: none;
}

.shop-card--featured::before {
    content: 'Featured';
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    padding: 4px 10px;
    border-radius: 999px;
    background: #108948;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.shop-card-media {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eef2f6;
    border-radius: 18px 18px 0 0;
}

.shop-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: #2D2A7B;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.shop-card-img--hover .shop-card-img__primary,
.shop-card-img--hover .shop-card-img__hover {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease, transform 0.45s ease;
}

.shop-card-img__hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.shop-card:hover .shop-card-img__primary {
    opacity: 1;
}

.shop-card:hover .shop-card-img__hover {
    opacity: 1;
    transform: scale(1.04);
}

.shop-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    padding: 18px 18px 20px;
    min-width: 0;
}

.shop-card-body h3 {
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 700;
    color: #1a1a5e;
    line-height: 1.3;
    margin: 0;
    overflow-wrap: anywhere;
}

.shop-card-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #6b7280;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 4px;
    color: #2D2A7B;
    font-size: 14px;
    font-weight: 700;
    transition: gap 0.2s ease, color 0.2s ease;
}

.shop-card:hover .shop-card-cta {
    color: #108948;
    gap: 12px;
}

.shop-card-cta i {
    font-size: 14px;
}

.shop-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 16px;
    display: none;
}

.shop-empty.show {
    display: block;
}

.shop-sentinel {
    height: 20px;
}

.shop-loader-wrap {
    text-align: center;
    margin: 1.5rem 0;
}

/* Services panel */
.shop-panel[hidden] {
    display: none !important;
}

/* Legacy service card hooks */
.shop-services-grid,
.shop-service-card,
.shop-service-card__icon {
    display: none;
}

/* Legacy toolbar hooks (unused) — kept minimal for safety */
.shop-toolbar,
.shop-filters,
.shop-filter,
.shop-toolbar-actions,
.shop-sort-wrap,
.shop-sort-dropdown,
.shop-filter-btn {
    display: none;
}

.product-detail-page {
    padding: 56px 0 100px;
    background: #fff;
}

.product-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    color: #2D2A7B;
    font-weight: 700;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: center;
}

.product-detail-media {
    overflow: hidden;
    border-radius: 24px;
    background: #f6f7f9;
    box-shadow: 0 18px 48px rgba(45, 42, 123, 0.1);
    position: relative;
}

.product-detail-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.product-detail-media--hover .product-detail-media__primary,
.product-detail-media--hover .product-detail-media__hover {
    transition: opacity 0.35s ease;
}

.product-detail-media__hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-detail-media--hover:hover .product-detail-media__primary {
    opacity: 0;
}

.product-detail-media--hover:hover .product-detail-media__hover {
    opacity: 1;
}

.product-detail-category {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(16, 137, 72, 0.1);
    color: #108948;
    font-weight: 700;
    margin-bottom: 18px;
}

.product-detail-content h1 {
    color: #2D2A7B;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.product-detail-price {
    color: #108948;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

.product-detail-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-detail-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 30px;
    color: #374151;
}

.related-products {
    margin-top: 72px;
}

.related-products h2 {
    color: #2D2A7B;
    font-size: 34px;
    margin-bottom: 28px;
}

.shop-card-media img.shop-card-img__primary,
.shop-card-media img.shop-card-img__hover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-panel.is-active {
    display: block;
}

/* Responsive — product shop */

/* Large desktop */
@media (min-width: 1400px) {
    .shop-layout {
        grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
        gap: 36px;
    }
}

/* Laptop / small desktop — 2-col grid beside sidebar */
@media (max-width: 1199px) {
    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(14px, 2vw, 20px);
    }
}

/* Tablet & below — stack sidebar above products */
@media (max-width: 991px) {
    .product-shop {
        padding: clamp(28px, 4vw, 40px) 0 clamp(56px, 7vw, 80px);
    }

    .shop-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        width: 100%;
        min-width: 0;
    }

    .shop-sidebar {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .shop-sidebar-card {
        padding: 16px 14px;
        width: 100%;
    }

    .shop-sidebar-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .shop-category-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        gap: 8px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding-inline: 0;
    }

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

    .shop-category-item {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 14px;
        border: 1px solid #e8edf3;
        border-radius: 999px;
        width: auto;
    }

    .shop-category-item__arrow {
        display: none;
    }

    .shop-category-item.is-active {
        border-color: rgba(16, 137, 72, 0.35);
    }

    .shop-help-card {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-areas:
            "profile copy"
            "cta cta";
        column-gap: 14px;
        align-items: start;
        padding: 16px;
        width: 100%;
    }

    .shop-help-card__profile {
        grid-area: profile;
        margin-bottom: 0;
        width: 48px;
        height: 48px;
    }

    .shop-help-card__copy {
        grid-area: copy;
        min-width: 0;
    }

    .shop-help-card__cta {
        grid-area: cta;
        margin-top: 12px;
    }

    .shop-main {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
}

/* Mobile landscape / large phones */
@media (max-width: 767px) {
    .shop-main-toolbar {
        margin-bottom: 16px;
    }

    .shop-search {
        max-width: none;
        width: 100%;
    }

    .shop-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
        width: 100%;
    }

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

    .shop-card-body {
        padding: 16px 16px 18px;
    }

    .shop-card-body h3 {
        font-size: 17px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-detail-page {
        padding: 36px 0 72px;
    }
}

/* Mobile portrait */
@media (max-width: 575px) {
    .product-shop .container.product-shop__container {
        padding-inline: 14px;
    }

    .shop-card {
        border-radius: 18px;
    }

    .shop-card-media {
        border-radius: 18px 18px 0 0;
    }

    .shop-card--featured::before {
        top: 10px;
        right: 10px;
        font-size: 9px;
        padding: 3px 8px;
    }

    .shop-card-badge {
        top: 10px;
        left: 10px;
        font-size: 9px;
        padding: 4px 8px;
    }

    .shop-help-card__copy p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .shop-card-desc {
        font-size: 12px;
    }

    .shop-category-item {
        padding: 9px 12px;
        font-size: 13px;
    }
}

@media (max-width: 390px) {
    .shop-card-body {
        padding: 14px 14px 16px;
    }

    .shop-card-body h3 {
        font-size: 16px;
    }
}

/* iPad / tablet landscape fine-tuning */
@media (min-width: 768px) and (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}
