/* ==========================================================================
   PRODUCTS COMPONENT: CATALOG LAYOUT & SIDEBAR FILTERS
   Catalog Hero, Breadcrumb, Accordion Category Tree, Toolbar & Pagination
   ========================================================================== */

.shop-page {
    background: #f8fafc;
    min-height: auto;
    padding: 24px 0 32px;
    font-family: var(--font-family, 'Plus Jakarta Sans', sans-serif);
    color: var(--shop-text-main, #1e293b);
    -webkit-font-smoothing: antialiased;
}

.shop-shell {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

@media (max-width: 767px) {
    .shop-shell {
        width: calc(100% - 20px);
    }
}

/* ===================================================
   SLIM COMPACT CORPORATE CATEGORY BANNER
   =================================================== */
.shop-hero-slim {
    margin-bottom: 20px;
    position: relative;
}

.shop-slim-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* 1. Left: Category Identity */
.slim-category-col {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1 1 36%;
    min-width: 0;
}

.slim-category-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #0062ff;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 98, 255, 0.22);
}

.slim-category-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.slim-kicker {
    font-size: 11px;
    font-weight: 700;
    color: #0062ff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1;
    margin-bottom: 3px;
}

.slim-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
}

.slim-desc {
    font-size: 12px;
    line-height: 1.45;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.slim-desc span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

/* 2. Center: 4 Trust Badges */
.slim-trust-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    flex: 1 1 42%;
    border-left: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
    padding: 2px 18px;
}

.slim-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.trust-item-icon {
    color: #0062ff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
}

.trust-item-text strong {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    white-space: nowrap;
}

.trust-item-text span {
    display: block;
    font-size: 11px;
    color: #64748b;
    line-height: 1.2;
    white-space: nowrap;
    margin-top: 2px;
}

/* 3. Right: Mini Promo Card */
.slim-promo-col {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 220px;
    padding-left: 4px;
}

.slim-promo-media {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slim-promo-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.08));
    transition: transform 0.2s ease;
}

.slim-promo-col:hover .slim-promo-media img {
    transform: scale(1.04);
}

.slim-promo-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.slim-promo-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #0062ff;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    padding: 1px 6px;
    border-radius: 4px;
    line-height: 1.3;
    width: fit-content;
}

.slim-promo-heading {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 3px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slim-promo-price {
    font-size: 12px;
    font-weight: 700;
    color: #0062ff;
    margin-bottom: 2px;
}

.slim-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 700;
    color: #0062ff;
    text-decoration: none;
    transition: all 0.15s ease;
}

.slim-promo-btn:hover {
    color: #004ecc;
    gap: 6px;
    text-decoration: none;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .shop-slim-card {
        flex-wrap: wrap;
        gap: 16px;
        padding: 16px;
    }
    .slim-category-col {
        flex: 1 1 100%;
    }
    .slim-trust-col {
        flex: 1 1 calc(100% - 240px);
        border-left: none;
        padding-left: 0;
    }
    .slim-promo-col {
        flex: 0 0 220px;
    }
}

@media (max-width: 991px) {
    .slim-trust-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        border: none;
        padding: 14px 0;
        border-top: 1px solid #f1f5f9;
        border-bottom: 1px solid #f1f5f9;
        flex: 1 1 100%;
    }
    .slim-promo-col {
        flex: 1 1 100%;
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .shop-slim-card {
        padding: 14px;
    }
    .slim-title {
        font-size: 16px;
    }
    .slim-trust-col {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .trust-item-text strong {
        font-size: 11.5px;
    }
    .trust-item-text span {
        font-size: 10.5px;
    }
}

/* ===================================================
   BREADCRUMB
   =================================================== */
.shop-breadcrumb {
    margin-bottom: 22px;
}

.shop-breadcrumb-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: #64748b;
}

.shop-breadcrumb-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.shop-breadcrumb-link:hover {
    color: #0062ff;
}

.shop-breadcrumb-sep {
    color: #94a3b8;
    font-size: 10px;
}

.shop-breadcrumb-current {
    color: #0f172a;
    font-weight: 700;
}

/* ===================================================
   LAYOUT: 2-COLUMN (SIDEBAR + MAIN)
   =================================================== */
.shop-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 992px) {
    .shop-layout {
        display: grid;
        grid-template-columns: 270px 1fr;
        gap: 24px;
        align-items: start;
    }
}

@media (min-width: 1200px) {
    .shop-layout {
        grid-template-columns: 290px 1fr;
        gap: 28px;
    }
}

/* ===================================================
   SIDEBAR FILTERS (Desktop Sticky & Mobile Drawer)
   =================================================== */
.shop-sidebar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 16px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

@media (min-width: 992px) {
    .shop-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 156px;
        max-height: calc(100vh - 176px);
        overflow-y: auto;
        padding: 22px 18px;
        z-index: 90;
    }
}

.shop-sidebar-mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-header-title {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
}

.shop-sidebar-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f1f5f9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.shop-sidebar-close-btn:hover {
    background: #fee2e2;
    color: #ef4444;
}

.shop-sidebar-backdrop {
    display: none;
}

@media (max-width: 991px) {
    .shop-sidebar-mobile-header {
        display: flex;
    }

    .shop-sidebar-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.55);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1090;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        display: block;
    }

    .shop-sidebar-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .shop-sidebar {
        position: fixed !important;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(340px, 86vw);
        height: 100vh;
        z-index: 1100;
        border-radius: 0 16px 16px 0;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
        transform: translateX(-105%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        padding: 20px 16px calc(24px + var(--sab, 0px)) !important;
        background: #ffffff;
        margin: 0 !important;
    }

    .shop-sidebar.is-open {
        transform: translateX(0);
    }
}

.shop-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.shop-widget-title {
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #0f172a;
    margin: 0;
}

/* Category List */
/* ===================================================
   CATEGORY LIST & MODERN CHECKBOX TREE
   =================================================== */
.shop-category-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.shop-category-item {
    position: relative;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.shop-category-parent-row {
    display: flex;
    align-items: center;
    gap: 3px;
    width: 100%;
}

/* Expand Arrow Button at FRONT */
.shop-category-expand {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 6px;
    color: #94a3b8;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shop-category-expand:hover {
    color: #0062ff;
    background: #eff6ff;
}

.shop-category-expand i {
    font-size: 10.5px;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Rotate arrow when expanded */
.shop-category-item.is-expanded > .shop-category-parent-row .shop-category-expand i {
    transform: rotate(90deg);
    color: #0062ff;
}

/* Spacer to align categories without children with expand button */
.shop-category-spacer {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: inline-block;
}

/* Category Link Row */
.shop-category-link {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7.5px 10px;
    border-radius: 8px;
    color: #334155;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.15s ease;
    gap: 10px;
    border: 1px solid transparent;
}

.shop-category-link:hover {
    background: #f8fafc;
    color: #0062ff;
}

.shop-category-link.is-active {
    background: #eff6ff;
    color: #0062ff;
    font-weight: 700;
    border-color: #dbeafe;
}

/* Square Checkbox (ô vuông tích) */
.cat-checkbox {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border: 1.5px solid #cbd5e1;
    border-radius: 5px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: transparent;
    transition: all 0.18s ease;
}

.cat-checkbox i {
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.15s ease;
}

.shop-category-link:hover .cat-checkbox,
.shop-subcategory-link:hover .cat-checkbox {
    border-color: #0062ff;
}

.shop-category-link.is-active .cat-checkbox,
.shop-subcategory-link.is-active .cat-checkbox {
    background: #0062ff;
    border-color: #0062ff;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 98, 255, 0.35);
}

.shop-category-link.is-active .cat-checkbox i,
.shop-subcategory-link.is-active .cat-checkbox i {
    opacity: 1;
    transform: scale(1);
}

.cat-name {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
    word-break: break-word;
}

.cat-count {
    font-size: 11.5px;
    color: #64748b;
    font-weight: 600;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 10px;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.shop-category-link.is-active .cat-count {
    background: #dbeafe;
    color: #0062ff;
    font-weight: 700;
}

/* ===================================================
   SUBCATEGORIES TREE
   =================================================== */
.shop-subcategory-list {
    list-style: none !important;
    padding: 3px 0 3px 0 !important;
    margin: 2px 0 4px 13px !important;
    display: none;
    flex-direction: column;
    gap: 2px;
    border-left: 2px solid #e2e8f0;
}

.shop-category-item.is-expanded > .shop-subcategory-list {
    display: flex !important;
}

.shop-subcategory-item {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.shop-subcategory-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px 6px 14px;
    border-radius: 6px;
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s ease;
    gap: 8px;
    border: 1px solid transparent;
}

.shop-subcategory-link:hover {
    color: #0062ff;
    background: #f8fafc;
}

.shop-subcategory-link.is-active {
    color: #0062ff;
    background: #eff6ff;
    font-weight: 700;
    border-color: #dbeafe;
}

.subcat-checkbox {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border-radius: 4px;
    font-size: 9px;
}

.subcat-count {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    background: #f8fafc;
    padding: 1.5px 7px;
    border-radius: 10px;
    transition: all 0.15s ease;
    flex-shrink: 0;
}

.shop-subcategory-link.is-active .subcat-count {
    background: #dbeafe;
    color: #0062ff;
    font-weight: 700;
}

/* ===================================================
   MAIN CONTENT & TOOLBAR
   =================================================== */
.shop-main {
    position: relative;
    min-width: 0;
}

.shop-loader {
    position: absolute;
    inset: 0;
    background: rgba(248, 250, 252, 0.7);
    backdrop-filter: blur(2px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #0062ff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.shop-loader.is-loading {
    opacity: 1;
    visibility: visible;
}

.shop-spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid #dbeafe;
    border-top-color: #0062ff;
    border-radius: 50%;
    animation: shopSpin 0.7s linear infinite;
}

@keyframes shopSpin {
    to { transform: rotate(360deg); }
}

.shop-main-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

@media (min-width: 640px) {
    .shop-main-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.shop-results-count {
    font-size: 13px;
    color: #64748b;
}

.shop-results-count strong {
    color: #0f172a;
    font-weight: 700;
}

.shop-toolbar-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.shop-mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 14px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.shop-mobile-filter-btn:hover,
.shop-mobile-filter-btn:active {
    border-color: #0062ff;
    color: #0062ff;
    background: #eff6ff;
}

.shop-mobile-filter-btn .filter-active-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0062ff;
    box-shadow: 0 0 0 2px rgba(0, 98, 255, 0.25);
}

@media (max-width: 991px) {
    .shop-mobile-filter-btn {
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    .shop-main-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .shop-toolbar-controls {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 8px;
    }
    .shop-mobile-filter-btn {
        grid-column: 1;
    }
    .shop-sort-wrap {
        grid-column: 2;
        width: 100%;
        justify-content: space-between;
    }
    .shop-search-form {
        grid-column: 1 / -1;
        width: 100%;
        max-width: none;
    }
}

.shop-search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.shop-search-input-wrap i.fa-magnifying-glass {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    font-size: 13px;
    pointer-events: none;
}

.shop-search-input-wrap input {
    width: 100%;
    height: 38px;
    padding: 0 32px 0 34px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    outline: none;
    transition: all 0.2s ease;
}

.shop-search-input-wrap input:focus {
    background: #ffffff;
    border-color: #0062ff;
    box-shadow: 0 0 0 3px rgba(0, 98, 255, 0.1);
}

.shop-search-clear {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 12px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-search-clear:hover {
    color: #ef4444;
}

.shop-sort-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0 10px;
    height: 38px;
}

.shop-sort-label {
    color: #64748b;
    font-size: 13px;
}

.shop-sort-select {
    border: none;
    background: transparent;
    font-size: 13px;
    font-family: inherit;
    color: #1e293b;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

/* Products Grid in Catalog (4 Columns on Desktop) */
.shop-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 768px) {
    .shop-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1120px) {
    .shop-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

/* Empty State */
.shop-empty {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
    grid-column: 1 / -1;
}

.shop-empty-icon {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.shop-empty-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.shop-empty-desc {
    font-size: 13.5px;
    color: #64748b;
    margin: 0 0 20px;
    max-width: 440px;
    margin-inline: auto;
}

.shop-empty-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #0062ff;
    color: #ffffff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s ease;
}

.shop-empty-btn:hover {
    background: #004ecc;
}

/* ===================================================
   PAGINATION STYLING (Laravel Standard & Custom)
   =================================================== */
#shopPaginationWrapper {
    width: 100%;
    margin-top: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#shopPaginationWrapper nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fix for Laravel Bootstrap/Default UL Pagination */
#shopPaginationWrapper ul.pagination,
#shopPaginationWrapper .pagination {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 8px !important;
}

#shopPaginationWrapper li.page-item,
#shopPaginationWrapper .page-item {
    list-style: none !important;
    display: inline-flex !important;
    margin: 0 !important;
    padding: 0 !important;
}

#shopPaginationWrapper li.page-item::before,
#shopPaginationWrapper li.page-item::after {
    display: none !important;
    content: none !important;
}

/* Page Link & Current Page Span */
#shopPaginationWrapper .page-link,
#shopPaginationWrapper nav a,
#shopPaginationWrapper nav span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 14px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    color: #1e293b !important;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05) !important;
    cursor: pointer !important;
}

/* ===================================================
   LOAD MORE PRODUCTS BUTTON (REPLACING PAGE NUMBERS)
   =================================================== */
.shop-loadmore-wrapper {
    margin-top: 36px;
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-loadmore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #eff6ff;
    color: #0062ff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 11px 26px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0, 98, 255, 0.06);
    user-select: none;
    -webkit-user-select: none;
}

.shop-loadmore-btn:hover {
    background: #dbeafe;
    color: #004ecc;
    border-color: #bfdbfe;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 98, 255, 0.15);
}

.shop-loadmore-btn:active {
    transform: translateY(0);
}

.shop-loadmore-btn .btn-text strong {
    font-weight: 700;
    margin: 0 2px;
}

.shop-loadmore-btn .btn-icon {
    font-size: 13px;
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.shop-loadmore-btn:hover .btn-icon {
    transform: translateY(2px);
}

.shop-loadmore-btn.is-loading {
    opacity: 0.7;
    cursor: wait;
    pointer-events: none;
}
