.storefront-page-v3 {
    --storefront-border: #e5e7eb;
    --storefront-muted: #6b7280;
    --storefront-heading: #1f2937;
    --storefront-danger: var(--primary);
    --storefront-soft-danger: color-mix(in srgb, var(--primary) 14%, white);
    --storefront-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    color: var(--storefront-heading);
}

.storefront-topbar {
    gap: 1rem;
}

.storefront-catalog-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--primary);
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.storefront-catalog-trigger i {
    font-size: 1rem;
}

.storefront-search-wrap {
    width: min(100%, 380px);
}

.storefront-search {
    overflow: hidden;
    border: 1px solid #dbe3ee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.storefront-search .input-group-text,
.storefront-search .form-control,
.storefront-search .btn {
    height: 38px;
    border: 0;
}

.storefront-search .input-group-text {
    padding-inline: 0.95rem 0.65rem;
    color: #94a3b8;
    background: #fff;
}

.storefront-search .form-control {
    padding-left: 0;
    color: #111827;
    background: #fff;
}

.storefront-search .form-control:focus {
    box-shadow: none;
    background: #fff;
}

.storefront-search .btn {
    background: var(--storefront-danger);
    color: var(--primaryText);
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding-inline: 1rem;
}

.storefront-search .form-control::placeholder {
    color: #94a3b8;
}

.storefront-search:focus-within {
    border-color: color-mix(in srgb, var(--primary) 40%, white);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 8%, white), 0 10px 24px rgba(15, 23, 42, 0.08);
}

.storefront-tabs {
    gap: 0.5rem;
}

.storefront-tabs .nav-link {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    font-weight: 600;
}

.storefront-tabs .nav-link.active {
    background: var(--primary);
    color: var(--primaryText);
}

.storefront-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.storefront-sidebar-wrap {
    position: sticky;
    top: 84px;
}

.storefront-sidebar-card {
    background: #fff;
    border-radius: 20px;
}

.storefront-sidebar-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0;
}

.storefront-category-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.7rem 0.8rem;
    border: 0;
    border-radius: 16px;
    color: #111827;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.storefront-category-link:hover,
.storefront-category-link.active {
    background: color-mix(in srgb, var(--primary) 62%, white);
    color: var(--primaryText);
}

.storefront-category-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--primary) 16%, white);
    color: var(--primary);
    font-size: 1.35rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.storefront-category-name {
    display: block;
    font-size: 1.02rem;
    line-height: 1.3;
    font-weight: 500;
}

.storefront-main {
    min-width: 0;
}

.storefront-page-title {
    font-size: 1.9rem;
    font-weight: 500;
}

.storefront-page-subtitle {
    font-size: 0.95rem;
}

.storefront-product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
}

.product-store-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-store-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.product-store-discount {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 0.45rem 0.65rem;
    border-bottom-right-radius: 12px;
    background: var(--primary);
    color: var(--primaryText);
    font-size: 0.8rem;
    font-weight: 700;
}

.product-store-favorite {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #111827;
    box-shadow: var(--storefront-shadow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-store-thumb {
    position: relative;
    height: 235px;
    flex: 0 0 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.8rem 0.2rem;
    background: #fff;
}

.product-store-thumb img,
.product-store-thumb-placeholder {
    width: 100%;
    height: 100%;
}

.product-store-thumb img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.product-store-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 2rem;
    background: #f9fafb;
    border-radius: 16px;
}

.product-store-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem 0.65rem;
}

.product-store-member-badge {
    align-self: flex-start;
    margin-bottom: 0.15rem;
    padding: 0.28rem 0.75rem;
    border-radius: 999px;
    background: var(--primary);
    color: var(--primaryText);
    font-size: 0.8rem;
    font-weight: 700;
}

.product-store-name {
    max-height: calc(1.4em * 2);
    margin-bottom: 0.1rem;
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
}

.product-store-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.15rem;
}

.product-store-price {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    margin-top: 0;
    flex: 1;
    min-width: 0;
}

.product-store-price-current {
    color: #ff1616;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.35;
    word-break: break-word;
}

.product-store-price-old {
    color: #6b7280;
    font-size: 0.86rem;
    text-decoration: line-through;
    line-height: 1.35;
    word-break: break-word;
}

.product-store-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.product-store-cart-trigger {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.product-store-cart-trigger i {
    font-size: 1.05rem;
}

.product-store-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: #ef2323;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-store-add-btn {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: var(--primaryText);
    font-size: 0.92rem;
    font-weight: 700;
}

.storefront-empty {
    border: 1px dashed #d7dde8;
    border-radius: 20px;
    padding: 3rem 1.5rem;
    text-align: center;
    background: #fff;
}

.storefront-empty-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--primary) 14%, white);
    color: var(--primary);
    font-size: 1.6rem;
}

.storefront-skeleton {
    border-radius: 14px;
    border: 1px solid var(--storefront-border);
    overflow: hidden;
    background: #fff;
}

.storefront-skeleton-block {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: storefront-loading 1.4s infinite;
}

@keyframes storefront-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.storefront-load-more-wrap {
    display: flex;
    justify-content: center;
}

.storefront-load-more-btn {
    min-width: 260px;
    padding: 0.8rem 1.5rem;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    color: #374151;
    font-size: 1rem;
    font-weight: 500;
}

.storefront-load-more-btn:hover,
.storefront-load-more-btn:focus {
    border-color: var(--primary);
    background: color-mix(in srgb, var(--primary) 8%, white);
    color: var(--primary);
}

.storefront-load-more-btn:disabled {
    opacity: 0.7;
}

.mobile-cart-summary {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1035;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.12);
}

.mobile-cart-summary-icon {
    color: var(--primary);
    font-size: 2rem;
    line-height: 1;
}

.mobile-cart-summary-content {
    flex: 1;
    min-width: 0;
}

.mobile-cart-summary-label {
    color: #1f2937;
    font-size: 0.85rem;
}

.mobile-cart-summary-value {
    color: #ff1616;
    font-size: 1.05rem;
    font-weight: 700;
}

.mobile-cart-summary-btn {
    border-radius: 12px;
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primaryText);
    padding-inline: 1rem;
    white-space: nowrap;
    font-weight: 500;
}

.storefront-cart-modal .modal-content {
    border: 0;
    border-radius: 16px;
    overflow: hidden;
}

.storefront-cart-modal .modal-dialog {
    max-width: 640px;
}

.storefront-cart-modal .modal-header,
.storefront-cart-modal .modal-body,
.storefront-cart-modal .modal-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.storefront-cart-modal .modal-header {
    padding-top: 1.25rem;
}

.storefront-cart-modal .modal-title {
    color: #1f2937;
    font-size: 1.35rem;
    font-weight: 500;
}

.storefront-cart-modal .btn-close {
    margin-top: 0.1rem;
}

.storefront-cart-dialog {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
    min-height: 200px;
}

.storefront-cart-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.storefront-cart-media img,
.storefront-cart-sheet-media img {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.storefront-cart-media-placeholder {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 2rem;
    background: #f9fafb;
    border-radius: 16px;
}

.storefront-cart-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.3rem;
}

.storefront-cart-brand {
    color: #4b5563;
    font-size: 0.95rem;
}

.storefront-cart-brand strong {
    font-weight: 700;
}

.storefront-cart-name,
.storefront-cart-sheet-name {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.45;
}

.storefront-cart-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.storefront-cart-price-current {
    color: #ff1616;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.35;
}

.storefront-cart-price-old {
    color: #6b7280;
    font-size: 0.95rem;
    text-decoration: line-through;
    line-height: 1.35;
}

.storefront-cart-discount {
    color: #ff1616;
    font-size: 0.95rem;
}

.storefront-cart-footer-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.storefront-cart-summary-row,
.storefront-cart-action-row {
    display: grid;
    gap: 1rem;
    align-items: flex-end;
}

.storefront-cart-summary-row {
    grid-template-columns: auto minmax(0, 1fr);
}

.storefront-cart-action-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.storefront-qty-box {
    display: grid;
    grid-template-columns: 36px minmax(92px, 108px) 36px;
    align-items: center;
    gap: 0.4rem;
    min-width: 188px;
    padding: 0.25rem;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--primary) 18%, white);
    background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 1%, white) 0%, color-mix(in srgb, var(--primary) 5%, white) 100%);
    box-shadow: 0 6px 12px color-mix(in srgb, var(--primary) 8%, transparent);
}

.storefront-qty-input {
    height: 36px;
    min-width: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #111827;
    font-size: 0.96rem;
    font-weight: 600;
    text-align: center;
    box-shadow: none;
    padding-inline: 0.65rem;
}

.storefront-qty-input:focus {
    background: transparent;
    box-shadow: none;
}

.storefront-qty-input.form-control {
    text-align: center;
}

.storefront-qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid color-mix(in srgb, #6b7280 18%, white);
    border-radius: 50%;
    background: #fff;
    color: #4b5563;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.storefront-qty-btn i {
    font-size: 0.9rem;
}

.storefront-qty-btn:hover,
.storefront-qty-btn:focus {
    border-color: color-mix(in srgb, #6b7280 34%, white);
    background: #f8fafc;
    color: #374151;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.storefront-qty-btn.is-plus {
    border-color: color-mix(in srgb, var(--primary) 14%, white);
    background: color-mix(in srgb, var(--primary) 86%, white);
    color: var(--primaryText);
}

.storefront-qty-btn.is-plus:hover,
.storefront-qty-btn.is-plus:focus {
    border-color: color-mix(in srgb, var(--primary) 18%, white);
    background: color-mix(in srgb, var(--primary) 90%, white);
    color: var(--primaryText);
}

.storefront-cart-total-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    color: #374151;
    font-size: 0.95rem;
}

.storefront-cart-total-wrap strong {
    color: #ff1616;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.35;
    word-break: break-word;
}

.storefront-cart-actions {
    display: flex;
    gap: 0.75rem;
}

.storefront-cart-back-btn,
.storefront-cart-submit-btn {
    width: 100%;
    border-radius: 999px;
    padding: 0.65rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    height: 42px;
}

.storefront-cart-back-btn {
    border: 1px solid var(--primary);
    background: color-mix(in srgb, var(--primary) 12%, white);
    color: var(--primary);
}

.storefront-cart-submit-btn,
.storefront-cart-sheet-submit {
    border: 0;
    background: var(--primary);
    color: var(--primaryText);
}

.storefront-cart-submit-btn:hover,
.storefront-cart-submit-btn:focus,
.storefront-cart-sheet-submit:hover,
.storefront-cart-sheet-submit:focus {
    background: var(--primary);
    color: var(--primaryText);
}

.storefront-cart-back-btn:hover,
.storefront-cart-back-btn:focus {
    border-color: var(--primary);
    background: color-mix(in srgb, var(--primary) 18%, white);
    color: var(--primary);
}

.storefront-cart-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: rgba(15, 23, 42, 0.42);
}

.storefront-cart-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1045;
    padding: 1.2rem 0 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: #fff;
    transform: translateY(100%);
    transition: transform 0.22s ease;
}

.storefront-cart-sheet.show {
    transform: translateY(0);
}

.storefront-cart-sheet-close {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 1.4rem;
}

.storefront-cart-sheet-body {
    padding: 0 1rem 1rem;
    text-align: center;
}

.storefront-cart-sheet-media {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.storefront-cart-sheet-footer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
}

.storefront-cart-sheet-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.storefront-cart-sheet-submit span {
    font-size: 1.1rem;
    line-height: 1.1;
}

.storefront-cart-sheet-submit small {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

@media (max-width: 1399.98px) {
    .storefront-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .storefront-shell {
        grid-template-columns: 250px minmax(0, 1fr);
    }

    .storefront-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .storefront-page-v3 {
        padding-bottom: 6.5rem;
    }

    .storefront-shell {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 0.45rem;
    }

    .storefront-sidebar-wrap {
        top: 0.5rem;
    }

    .storefront-sidebar-card {
        border-radius: 16px;
    }

    .storefront-category-link {
        flex-direction: column;
        gap: 0.45rem;
        padding: 0.65rem 0.25rem;
        text-align: center;
        border-radius: 12px;
    }

    .storefront-category-icon {
        width: 42px;
        height: 42px;
        flex-basis: 46px;
        font-size: 1.3rem;
    }

    .storefront-category-name {
        font-size: 0.74rem;
    }

    .storefront-page-title {
        font-size: 1.2rem;
    }

    .storefront-page-subtitle {
        font-size: 0.82rem;
    }

    .storefront-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .product-store-card {
        border-radius: 16px;
    }

    .product-store-thumb {
        height: 160px;
        flex-basis: 160px;
        padding: 0.45rem 0.35rem 0.1rem;
    }

    .product-store-thumb img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
    }

    .product-store-name {
        font-size: 0.84rem;
        line-height: 1.35;
    }

    .product-store-price-current {
        font-size: 0.88rem;
    }

    .product-store-price-old {
        font-size: 0.78rem;
    }

    .product-store-actions {
        justify-content: stretch;
    }

    .product-store-add-btn {
        width: 100%;
        min-height: 34px;
        font-size: 0.78rem;
        white-space: nowrap;
        padding-inline: 0.45rem;
    }
}

@media (max-width: 767.98px) {
    .storefront-cart-summary-row,
    .storefront-cart-action-row {
        grid-template-columns: 1fr;
    }

    .storefront-cart-total-wrap {
        justify-content: flex-start;
    }
}

@media (min-width: 992px) {
    .storefront-page-v3 {
        height: calc(100dvh - 146px);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .storefront-shell {
        flex: 1;
        min-height: 0;
        align-items: stretch;
        overflow: hidden;
    }

    .storefront-sidebar-wrap {
        position: static;
        height: 100%;
        overflow-y: auto;
        padding-right: 0.25rem;
        overscroll-behavior: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scrollbar-gutter: stable;
    }

    .storefront-sidebar-wrap::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    .storefront-main::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    .storefront-main::-webkit-scrollbar-track {
        background: transparent;
    }

    .storefront-main::-webkit-scrollbar-thumb {
        border: 2px solid transparent;
        border-radius: 999px;
        background: rgba(148, 163, 184, 0.72);
        background-clip: padding-box;
    }

    .storefront-main::-webkit-scrollbar-thumb:hover {
        background: rgba(100, 116, 139, 0.9);
        background-clip: padding-box;
    }

    .storefront-sidebar-card {
        min-height: 100%;
    }

    .storefront-main {
        min-height: 0;
        height: 100%;
        overflow-y: auto;
        padding-right: 0.25rem;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: rgba(148, 163, 184, 0.75) transparent;
        scrollbar-gutter: stable;
    }

    .storefront-mobile-search,
    .product-store-add-btn.mobile-only,
    .storefront-cart-sheet,
    .storefront-cart-sheet-backdrop,
    .mobile-cart-summary {
        display: none !important;
    }
}

@media (max-width: 991.98px) {

    .storefront-search-wrap,
    .storefront-mobile-search {
        width: 100%;
    }

    .storefront-search .input-group-text,
    .storefront-search .form-control,
    .storefront-search .btn {
        height: 38px;
    }

    .product-store-cart-trigger.desktop-only,
    .storefront-topbar {
        display: none !important;
    }

    .product-store-price {
        flex-direction: row;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 0.35rem;
    }

    .product-store-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .product-store-actions {
        width: 100%;
        justify-content: stretch;
    }
}

@media (max-width: 575.98px) {
    .storefront-search {
        border-radius: 8px;
    }

    .storefront-search .input-group-text {
        padding-inline: 0.8rem 0.55rem;
    }

    .storefront-search .btn {
        padding-inline: 0.9rem;
        font-size: 0.92rem;
    }

    .storefront-shell {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .storefront-category-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 1.15rem;
    }

    .storefront-category-name {
        font-size: 0.68rem;
    }

    .product-store-body {
        gap: 0.2rem;
        padding: 0.25rem 0.5rem 0.55rem;
    }

    .product-store-thumb img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
    }

    .product-store-discount {
        font-size: 0.72rem;
    }

    .product-store-member-badge {
        font-size: 0.74rem;
        padding-inline: 0.65rem;
    }

    .product-store-add-btn {
        min-height: 32px;
        font-size: 0.74rem;
    }

    .storefront-cart-sheet-footer {
        gap: 0.6rem;
    }

    .storefront-qty-box {
        grid-template-columns: 34px minmax(68px, 76px) 34px;
        min-width: 150px;
        gap: 0.35rem;
        padding-inline: 0.35rem;
        justify-content: center;
    }

    .storefront-qty-input {
        height: 36px;
        padding-inline: 0.5rem;
        font-size: 0.95rem;
    }

    .storefront-qty-btn {
        width: 34px;
        height: 34px;
    }
}
