/* Store additions — matches AROW Temple theme colors */

/* PC menubar: nav label SVGs at 56pt (main site uses --nav-gfx-height-desktop: 32px) */
@media (min-width: 1025px) {
    :root {
        --nav-gfx-height-desktop: 56pt;
    }
}

.shop-search {
    margin: 0 20px 1rem;
}

.shop-search-label {
    display: block;
    margin-bottom: 0.35rem;
    font-family: sans-serif;
    font-size: 13px;
    color: #C075FF;
}

.shop-search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.shop-search-input {
    flex: 1 1 12rem;
    min-width: 10rem;
    max-width: 28rem;
    padding: 0.45rem 0.6rem;
    font-size: 14px;
    font-family: sans-serif;
    color: #e8e0f5;
    background: rgba(20, 10, 35, 0.95);
    border: 1px solid #561A8B;
    border-radius: 3px;
}

.shop-search-input:focus {
    outline: none;
    border-color: #C075FF;
    box-shadow: 0 0 0 2px rgba(192, 117, 255, 0.25);
}

.shop-search-btn {
    flex-shrink: 0;
}

.shop-search-clear {
    flex-shrink: 0;
}

.shop-images-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    padding: 0.35rem 0.6rem;
    font-family: sans-serif;
    font-size: 13px;
    color: #C075FF;
    background: rgba(20, 10, 35, 0.9);
    border: 1px solid #561A8B;
    border-radius: 3px;
    cursor: pointer;
    flex-shrink: 0;
    user-select: none;
    white-space: nowrap;
}

.shop-images-toggle:hover {
    color: turquoise;
    border-color: #C075FF;
}

.shop-images-toggle input {
    margin: 0;
    accent-color: #C075FF;
}

html:not(.shop-show-images) .shop-card-image-wrap {
    display: none;
}

html.shop-show-images .shop-card-image-wrap {
    display: block;
}

html:not(.shop-show-images) .shop-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.shop-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem 1rem;
    margin: 0 20px 1.5rem;
    font-family: sans-serif;
    font-size: 13px;
}

.shop-pagination-info {
    color: #ffdf4d;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.shop-pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.75rem;
    background: #000000;
    color: #ffdf4d;
    border: 1px solid #ffdf4d;
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(192, 117, 255, 0.25);
    text-decoration: none;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        color 0.15s ease;
}

.shop-pagination-btn:hover,
.shop-pagination-btn:focus-visible {
    background: #141008;
    color: #fff0a8;
    border-color: #fff0a8;
    box-shadow:
        0 0 12px rgba(255, 223, 77, 0.45),
        0 0 0 1px rgba(192, 117, 255, 0.5);
}

.shop-pagination-btn:focus-visible {
    outline: 2px solid #c075ff;
    outline-offset: 2px;
}

.shop-pagination-btn:visited {
    color: #ffdf4d;
}

.shop-pagination-btn:visited:hover {
    color: #fff0a8;
}

.shop-pagination-arrow {
    display: block;
    width: 96px;
    height: auto;
    flex-shrink: 0;
}

.shop-pagination-btn-text {
    color: inherit;
}

.shop-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 20px 1rem;
    padding: 0;
}

.shop-category-tab {
    display: inline-block;
    margin: 0;
    padding: 0.45rem 0.85rem;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none;
    text-align: center;
    background: #000000;
    color: #ffdf4d;
    border: 1px solid #561A8B;
    border-radius: 4px;
    box-shadow: none;
    white-space: nowrap;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.shop-category-tab:link {
    color: #ffdf4d;
}

.shop-category-tab:visited {
    color: #ffdf4d;
}

.shop-category-tab:hover,
.shop-category-tab:hover:visited {
    color: #fff0a8;
    background: rgba(20, 10, 35, 0.95);
    border-color: #561A8B;
    box-shadow: none;
}

.shop-category-tab:focus-visible {
    outline: 2px solid #C075FF;
    outline-offset: 2px;
}

.shop-category-tab.is-active,
.shop-category-tab.is-active:link,
.shop-category-tab.is-active:visited {
    background-color: #1a1520;
    background-image: radial-gradient(
        ellipse 140% 90% at 50% 100%,
        rgba(110, 100, 130, 0.5) 0%,
        rgba(55, 48, 72, 0.85) 35%,
        #1a1520 100%
    );
    color: #ffdf4d;
    border-color: #C075FF;
    box-shadow: inset 0 0 10px rgba(192, 117, 255, 0.12);
}

.shop-category-tab[aria-selected="false"]:not(.is-disabled) {
    opacity: 0.92;
}

.shop-category-tab.is-disabled,
.shop-category-tab.is-disabled:link,
.shop-category-tab.is-disabled:visited {
    opacity: 0.4;
    color: #666;
    background: rgba(15, 8, 25, 0.9);
    border-color: #3a2a4a;
    cursor: not-allowed;
    text-decoration: line-through;
}

.shop-section-message {
    margin: 0 20px 1rem;
    padding: 0.85rem 1rem;
    background: rgba(20, 10, 35, 0.92);
    border: 1px solid #561A8B;
    border-radius: 6px;
    box-shadow: inset 0 0 12px rgba(86, 26, 139, 0.15);
}

.shop-section-message[hidden] {
    display: none;
}

.shop-section-message-title {
    margin: 0 0 0.35rem;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffdf4d;
    line-height: 1.3;
}

.shop-section-message-text {
    margin: 0;
    font-family: sans-serif;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #d4b8ff;
}

.shop-result-count {
    margin: 0 20px 0.75rem;
    font-size: 0.9rem;
    color: #977bC8;
}

.shop-catalog-hint {
    margin: 0 20px 1.5rem;
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #977bC8;
    font-style: italic;
    text-align: center;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
    margin: 0 20px 20px 20px;
}

.shop-card {
    background: rgba(20, 10, 35, 0.85);
    border: 1px solid #561A8B;
    border-radius: 4px;
    overflow: hidden;
}

.shop-card-image-wrap {
    cursor: zoom-in;
}

.shop-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: #1a0a2e;
    transition: opacity 0.15s ease;
}

.shop-product-zoom:hover {
    opacity: 0.92;
}

.shop-cart-thumb.shop-product-zoom {
    cursor: zoom-in;
}

/* Product image blowup (hover + close failsafe) */
.shop-blowup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.82);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.shop-blowup.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.shop-blowup-inner {
    position: relative;
    max-width: 92vw;
    max-height: 85vh;
    padding: 0.5rem 2.75rem 0.5rem 0.5rem;
    background: rgba(20, 10, 35, 0.95);
    border: 2px solid #C075FF;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(192, 117, 255, 0.35);
    text-align: center;
}

.shop-blowup-img {
    display: block;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.shop-blowup-caption {
    margin: 0.75rem 0 0;
    color: #C075FF;
    font-family: serif;
    font-size: 1.1rem;
}

.shop-blowup-close {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    padding: 0;
    line-height: 1.85rem;
    font-size: 1.5rem;
    font-family: sans-serif;
    font-weight: bold;
    color: #fff;
    background: #561A8B;
    border: 2px solid #C075FF;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.shop-blowup-close:hover,
.shop-blowup-close:focus {
    background: #7a2eb8;
    color: turquoise;
    outline: none;
}

.shop-card-body {
    padding: 0.75rem 1rem 1rem;
}

.shop-card-title {
    margin: 0 0 0.25rem;
    color: #C075FF;
    font-size: 1.15rem;
    font-family: serif;
}

.shop-card-category {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    color: turquoise;
}

.shop-card-desc {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    line-height: 1.35;
}

.shop-card-price {
    margin: 0 0 0.75rem;
    font-weight: bold;
    color: orange;
}

.shop-btn {
    font-family: sans-serif;
    font-size: 14px;
    padding: 0.4rem 0.9rem;
    cursor: pointer;
    background: #561A8B;
    color: whitesmoke;
    border: 1px solid #C075FF;
    border-radius: 3px;
}

.shop-btn:hover {
    background: #6b2aa8;
    color: turquoise;
}

.shop-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.shop-btn-primary {
    background: #3d1a66;
    font-weight: bold;
}

.shop-btn-link {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.shop-btn-link:link,
.shop-btn-link:visited {
    color: #ffdf4d;
    text-decoration: none;
}

.shop-btn-link:hover,
.shop-btn-link:visited:hover,
.shop-btn-link:focus-visible {
    color: #fff0a8;
    background: #6b2aa8;
    border-color: #C075FF;
    text-decoration: none;
}

.shop-btn-small {
    padding: 0.25rem 0.5rem;
    font-size: 12px;
}

.shop-qty-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.shop-qty-input {
    width: 3.5rem;
    padding: 0.2rem;
    font-size: 14px;
}

.shop-cart-summary {
    margin: 1rem 0 0 0.5rem;
    padding-right: 0.5rem;
}

.shop-cart-badge,
.shop-cart-stat {
    margin: 0 0 0.35rem;
    font-family: sans-serif;
    font-size: 13px;
    color: #C075FF;
    line-height: 1.35;
}

.shop-cart-stat span {
    color: turquoise;
    font-weight: bold;
}

.shop-cart-scroll {
    margin: 0 20px 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.shop-table {
    width: 100%;
    min-width: 36rem;
    margin: 0;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.9rem;
    table-layout: auto;
}

.shop-cart-table {
    font-family: sans-serif;
}

.shop-table th,
.shop-table td {
    border: 1px solid #561A8B;
    padding: 0.45rem 0.65rem;
    vertical-align: middle;
    background: rgba(20, 10, 35, 0.75);
}

.shop-table tbody tr:nth-child(even) td {
    background: rgba(30, 15, 50, 0.85);
}

.shop-table th {
    background: rgba(86, 26, 139, 0.85);
    color: #fff;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 1;
}

.shop-col-num,
.shop-col-qty,
.shop-col-sku {
    text-align: right;
    white-space: nowrap;
}

.shop-col-sku {
    font-family: ui-monospace, monospace;
    font-size: 0.85rem;
}

.shop-col-item {
    min-width: 10rem;
}

.shop-col-action {
    text-align: center;
    white-space: nowrap;
}

.shop-cart-item-name {
    display: inline-block;
    vertical-align: middle;
}

.shop-cart-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 0.5rem;
    border: 1px solid #561A8B;
}

.shop-cart-name {
    min-width: 12rem;
}

.shop-summary {
    margin: 0 20px 1.5rem;
    padding: 1rem;
    background: rgba(20, 10, 35, 0.7);
    border: 1px solid #561A8B;
    max-width: 320px;
}

.shop-total {
    font-size: 1.2rem;
    color: orange;
}

.shop-actions {
    margin: 0 20px 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Cart page: bottom action bar — white on purple; red when disabled */
#cart-form .shop-actions .shop-btn {
    background: #561A8B;
    color: #fff;
    border: 1px solid #C075FF;
    font-weight: 600;
}

#cart-form .shop-actions .shop-btn:hover:not(:disabled) {
    background: #6b2aa8;
    color: #fff;
    border-color: #e0b3ff;
}

#cart-form .shop-actions .shop-btn:focus-visible {
    outline: 2px solid #C075FF;
    outline-offset: 2px;
}

#cart-form .shop-actions .shop-btn:disabled,
#cart-form .shop-actions .shop-btn.is-disabled {
    background: #a31818;
    border-color: #c04040;
    color: #fff;
    opacity: 1;
    cursor: not-allowed;
    pointer-events: none;
}

#cart-form .shop-actions .shop-btn-primary,
#cart-form .shop-actions .shop-btn-link {
    background: #561A8B;
    color: #fff;
}

.shop-empty {
    margin: 0 20px;
    text-align: center;
    color: orange;
}

.shop-notice {
    margin: 1rem 20px;
    padding: 0.75rem 1rem;
    border: 1px solid #561A8B;
    background: rgba(40, 20, 60, 0.8);
}

.shop-notice-warn {
    border-color: orange;
    color: orange;
}

.shop-checkout-heading {
    margin: 0 20px 0.75rem;
    color: #C075FF;
    font-family: serif;
    font-size: 1.35rem;
    font-style: oblique;
}

.shop-checkout-summary {
    max-width: none;
}

.shop-checkout-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.shop-checkout-list li {
    margin-bottom: 0.35rem;
}

.shop-checkout-status {
    margin: 1rem 20px;
    min-height: 1.5rem;
}

.shop-checkout-status-ok {
    color: turquoise;
}

.shop-checkout-status-error {
    color: #ff8888;
}

#paypal-button-container,
.shop-paypal-pay-btn {
    margin: 1rem 0 0;
    max-width: 400px;
}

.shop-paypal-pay-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1.25rem;
    border: 1px solid #c89400;
    border-radius: 4px;
    background: #ffdf4d;
    color: #1a1520;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.shop-paypal-pay-btn:hover:not(:disabled) {
    background: #fff0a8;
    border-color: #ffdf4d;
}

.shop-paypal-pay-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.shop-paypal-pay-btn:focus-visible {
    outline: 2px solid #C075FF;
    outline-offset: 2px;
}

.shop-paypal-pay-btn[hidden] {
    display: none;
}

.shop-pay-panel {
    margin: 0 20px 1rem;
    max-width: 720px;
    padding: 1rem 1.25rem 1.25rem;
    border: 1px solid #561A8B;
    background: rgba(20, 10, 35, 0.75);
}

.shop-pay-total {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    color: #e8e0f5;
}

.shop-pay-total strong {
    color: turquoise;
}

.shop-paypal-notice {
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #3a7ca5;
    border-radius: 4px;
    background: rgba(10, 40, 60, 0.45);
    color: #c8e6f5;
    font-size: 0.92rem;
    line-height: 1.45;
}

.shop-paypal-notice-title {
    margin: 0 0 0.35rem;
    color: #7dd3fc;
    font-weight: bold;
}

.shop-paypal-notice p:last-child {
    margin: 0;
}

.shop-paypal-sandbox {
    margin: 0 0 0.75rem;
}

.shop-paypal-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.shop-paypal-modal[hidden] {
    display: none !important;
}

body.shop-paypal-modal-open {
    overflow: hidden;
}

.shop-paypal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.shop-paypal-modal-panel {
    position: relative;
    width: min(100%, 28rem);
    padding: 1.25rem 1.5rem 1.5rem;
    border: 1px solid #561A8B;
    border-radius: 6px;
    background: #1a0f28;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.shop-paypal-modal-title {
    margin: 0 0 0.75rem;
    color: #C075FF;
    font-family: serif;
    font-size: 1.35rem;
    font-style: oblique;
}

.shop-paypal-modal-text {
    margin: 0 0 0.75rem;
    color: #e8e0f5;
    line-height: 1.45;
}

.shop-paypal-modal-total {
    margin: 0 0 1rem;
    color: #977bC8;
}

.shop-paypal-modal-total strong {
    color: turquoise;
}

.shop-paypal-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.shop-paypal-modal-actions .shop-btn-primary {
    background: #0070ba;
    border-color: #005ea6;
    color: #fff;
}

.shop-paypal-modal-actions .shop-btn-primary:hover {
    background: #005ea6;
    color: #fff;
}

.shop-address-form {
    margin: 0 20px 1.5rem;
    max-width: 720px;
}

.shop-fieldset {
    border: 1px solid #561A8B;
    margin: 0 0 1.25rem;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(20, 10, 35, 0.75);
}

.shop-legend {
    color: #C075FF;
    font-family: serif;
    font-size: 1.25rem;
    font-style: oblique;
    padding: 0 0.5rem;
}

.shop-field-hint {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: #977bC8;
}

.shop-field-row {
    margin-bottom: 0.75rem;
}

.shop-field-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.shop-field-row-thirds {
    grid-template-columns: 2fr 1fr 1fr;
}

@media (max-width: 640px) {
    .shop-field-row-split,
    .shop-field-row-thirds {
        grid-template-columns: 1fr;
    }
}

.shop-label {
    display: block;
    font-family: sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #e8d4ff;
}

.shop-req {
    color: orange;
}

.shop-input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.4rem 0.5rem;
    font-size: 1rem;
    font-family: sans-serif;
    background: #0a0612;
    color: whitesmoke;
    border: 1px solid #561A8B;
    border-radius: 3px;
}

.shop-input:focus {
    outline: 1px solid #C075FF;
    border-color: #C075FF;
}

.shop-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.shop-address-errors {
    margin: 0.5rem 0 0;
    padding: 0.75rem 1rem;
    border: 1px solid #ff8888;
    background: rgba(80, 20, 20, 0.5);
    color: #ffcccc;
}

.shop-address-errors ul {
    margin: 0;
    padding-left: 1.25rem;
}

.shop-pay-heading {
    margin: 0 20px 0.5rem;
    color: #C075FF;
    font-family: serif;
    font-size: 1.35rem;
    font-style: oblique;
}

/* --- Mobile layout (auto: viewport ≤ 768px) --- */
@media (max-width: 768px) {
    body {
        font-size: 15pt;
        background-attachment: scroll;
        background-position: center 120px;
    }

    #page_head {
        padding-bottom: 8px;
    }

    #site_title {
        padding-left: 0;
        padding-right: 0;
    }

    /* Nav: hamburger drawer from assets/arowtemple.css (scaled nav-gfx SVGs) */

    /* Header graphics: inherit fluid rules from arowtemple.css (#page_head is outside #main_page) */

    #main_page .shop-cart-summary {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem 1rem;
        margin: 0.5rem 0 0;
        padding: 0.5rem 0.65rem;
        background: rgba(20, 10, 35, 0.85);
        border: 1px solid #561A8B;
        border-radius: 4px;
    }

    #main_page .shop-cart-badge,
    #main_page .shop-cart-stat {
        margin: 0;
        font-size: 12px;
    }

    #page_content {
        padding: 0 10px;
    }

    #page_content .section-head {
        font-size: 1.35rem;
        text-align: center;
    }

    #page_content > p {
        margin-left: 0;
        margin-right: 0;
        font-size: 14px;
        text-align: center;
    }

    .shop-search {
        margin-left: 0;
        margin-right: 0;
    }

    .shop-search-label {
        text-align: left;
    }

    .shop-search-row {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-search-input {
        max-width: none;
        width: 100%;
        box-sizing: border-box;
    }

    .shop-search-btn,
    .shop-search-clear,
    .shop-images-toggle {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .shop-category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        margin-left: 0;
        margin-right: 0;
        padding: 0 0 0.35rem;
        gap: 0.35rem;
    }

    .shop-category-tab {
        flex: 0 0 auto;
        scroll-snap-align: start;
        font-size: 12px;
        padding: 0.4rem 0.65rem;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-right: 0;
        gap: 0.85rem;
    }

    .shop-card-desc {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .shop-result-count,
    .shop-section-message,
    .shop-pagination,
    .shop-catalog-hint,
    .shop-empty,
    .shop-actions,
    .shop-summary,
    .shop-table,
    .shop-notice,
    .shop-address-form,
    .shop-pay-heading,
    #paypal-button-container,
    .shop-paypal-pay-btn {
        margin-left: 0;
        margin-right: 0;
    }

    .shop-actions {
        flex-direction: column;
    }

    #cart-form .shop-actions .shop-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .shop-cart-scroll {
        margin-left: 0;
        margin-right: 0;
    }

    .shop-table {
        min-width: 32rem;
        font-size: 0.8rem;
    }

    .shop-table th,
    .shop-table td {
        padding: 0.35rem 0.45rem;
    }

    .shop-summary {
        max-width: none;
    }

    .shop-checkout-heading {
        margin-left: 0;
        margin-right: 0;
    }

    .shop-blowup {
        padding: 0.75rem;
    }

    .shop-blowup-inner {
        max-width: 96vw;
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .shop-category-tab {
        font-size: 11px;
    }
}
