/* ========================================
   SMART STORE BROWSER - CSS
   ======================================== */

/* Container */
.scb-store-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: var(--scb-store-bg, #f8f9fa);
}

.scb-store-container * {
    box-sizing: border-box;
}

/* ========================================
   PROMO BANNER
   ======================================== */
.scb-store-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 14px;
    padding: 14px 20px;
    margin-bottom: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.scb-store-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    animation: scbStoreShimmer 8s ease-in-out infinite;
}

@keyframes scbStoreShimmer {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 10px);
    }
}

.scb-store-promo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    padding: 4px 8px;
    border-radius: 8px;
}

.scb-store-promo-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.scb-store-promo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(76, 175, 80, 0.25);
    border-radius: 50%;
    flex-shrink: 0;
}

.scb-store-promo-icon svg {
    stroke: #4caf50;
    width: 13px;
    height: 13px;
}

.scb-store-promo-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 12px;
    flex-shrink: 0;
}

/* ========================================
   SEARCH BAR
   ======================================== */
.scb-store-search {
    margin-bottom: 16px;
    position: relative;
    max-width: 500px;
}

.scb-store-search-inner {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 0 16px;
    height: 48px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1.5px solid #e8ecf0;
    transition: all 0.3s ease;
}

.scb-store-search-inner:focus-within {
    border-color: var(--scb-primary, #ff6b00);
    box-shadow: 0 2px 16px rgba(255, 107, 0, 0.12);
}

.scb-store-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #999;
    flex-shrink: 0;
}

.scb-store-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    background: transparent;
    padding: 0;
    height: 100%;
}

.scb-store-search-input::placeholder {
    color: #aaa;
}

.scb-store-search-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-top-color: var(--scb-primary, #ff6b00);
    border-radius: 50%;
    animation: scbStoreSpin 0.6s linear infinite;
}

@keyframes scbStoreSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Search Results */
.scb-store-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    margin-top: 4px;
}

.scb-store-search-results.active {
    display: block;
}

.scb-store-search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
}

.scb-store-search-result-item:last-child {
    border-bottom: none;
}

.scb-store-search-result-item:hover {
    background: #f8f9fa;
}

.scb-store-search-result-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.scb-store-search-result-info {
    flex: 1;
    min-width: 0;
}

.scb-store-search-result-title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scb-store-search-result-price {
    font-size: 12px;
    color: var(--scb-primary, #ff6b00);
    font-weight: 600;
    margin-top: 2px;
}

/* ========================================
   MAIN CATEGORIES - HORIZONTAL SCROLL
   ======================================== */
.scb-store-categories-wrap {
    position: relative;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scb-store-scroll-btn {
    display: none !important;
}



.scb-store-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
    flex: 1;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.scb-store-categories.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.scb-store-categories::-webkit-scrollbar {
    display: none;
}

.scb-store-cat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    border: 1.5px solid #e8ecf0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
    overflow: hidden;
}

.scb-store-cat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--scb-primary, #ff6b00);
    border-radius: 3px 3px 0 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.scb-store-cat-item:hover {
    border-color: var(--scb-primary, #ff6b00);
    color: var(--scb-primary, #ff6b00);
    background: rgba(255, 107, 0, 0.04);
}

.scb-store-cat-item.active {
    background: var(--scb-primary, #ff6b00);
    color: #ffffff;
    border-color: var(--scb-primary, #ff6b00);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.scb-store-cat-item.active::after {
    display: none;
}

.scb-store-cat-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* ========================================
   SUB CATEGORIES - OVAL PILLS
   ======================================== */
.scb-store-subcats-wrap {
    position: relative;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scb-store-subcats {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 6px 0;
    flex: 1;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.scb-store-subcats.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.scb-store-subcats::-webkit-scrollbar {
    display: none;
}

.scb-store-subcat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px 8px 8px;
    background: #ffffff;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 13px;
    color: #555;
    border: 1.5px solid #e8ecf0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.scb-store-subcat-pill:hover {
    border-color: var(--scb-primary, #ff6b00);
    box-shadow: 0 3px 12px rgba(255, 107, 0, 0.12);
    transform: translateY(-1px);
}

.scb-store-subcat-pill.active {
    background: linear-gradient(135deg, var(--scb-primary, #ff6b00), #ff8533);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
}

.scb-store-subcat-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.scb-store-subcat-letter {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.scb-store-subcat-pill:nth-child(3n+1) .scb-store-subcat-letter {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.scb-store-subcat-pill:nth-child(3n+2) .scb-store-subcat-letter {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.scb-store-subcat-pill:nth-child(3n) .scb-store-subcat-letter {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.scb-store-subcat-pill.active .scb-store-subcat-letter {
    background: rgba(255, 255, 255, 0.25);
}

.scb-store-subcat-name {
    font-weight: 500;
    font-size: 13px;
}

/* No subcategories message */
.scb-store-no-subcats {
    text-align: center;
    padding: 12px 20px;
    color: #999;
    font-size: 13px;
    font-style: italic;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.scb-store-products-section {
    margin-top: 4px;
}

.scb-store-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 0 2px;
}

.scb-store-products-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.3px;
}

.scb-store-sort-select {
    padding: 6px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 12px;
    color: #555;
    outline: none;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.2s;
}

.scb-store-sort-select:focus {
    border-color: var(--scb-primary, #ff6b00);
}

/* Products Grid */
.scb-store-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 769px) {
    .scb-store-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .scb-store-products-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Product Card */
.scb-store-product-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eef0f2;
    position: relative;
}

.scb-store-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.scb-store-product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f5f5f5;
}

.scb-store-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.scb-store-product-card:hover .scb-store-product-img {
    transform: scale(1.05);
}

.scb-store-sale-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.scb-store-add-to-cart {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--scb-primary, #ff6b00);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(255, 107, 0, 0.4);
    z-index: 3;
}

.scb-store-product-card:hover .scb-store-add-to-cart {
    opacity: 1;
    transform: translateY(0);
}

/* Always show add to cart on mobile */
@media (max-width: 768px) {
    .scb-store-add-to-cart {
        opacity: 1;
        transform: translateY(0);
    }
}

.scb-store-add-to-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 18px rgba(255, 107, 0, 0.5);
}

.scb-store-add-to-cart:active {
    transform: scale(0.95);
}

.scb-store-add-to-cart svg {
    width: 18px;
    height: 18px;
}

.scb-store-add-to-cart.added {
    background: #4caf50;
    box-shadow: 0 3px 12px rgba(76, 175, 80, 0.4);
}

.scb-store-add-to-cart.adding {
    pointer-events: none;
    opacity: 0.7;
}

/* Product Info */
.scb-store-product-info {
    padding: 10px 12px 14px;
}

.scb-store-product-name {
    font-size: 12.5px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.scb-store-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.scb-store-stars {
    display: flex;
    gap: 1px;
}

.scb-store-star {
    font-size: 12px;
    color: #ddd;
    line-height: 1;
}

.scb-store-star.filled {
    color: #ffc107;
}

.scb-store-review-count {
    font-size: 11px;
    color: #888;
    margin-right: 4px;
}

.scb-store-sales {
    font-size: 11px;
    color: #999;
    font-weight: 400;
    margin-top: 2px;
}


.scb-store-price {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
}

.scb-store-price del {
    color: #bbb;
    font-weight: 400;
    font-size: 11px;
    margin-right: 4px;
}

.scb-store-price ins {
    color: #e53935;
    text-decoration: none;
    font-weight: 700;
}

/* ========================================
   LOADING SKELETON
   ======================================== */
.scb-store-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 769px) {
    .scb-store-skeleton-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.scb-store-skeleton-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    padding-bottom: 12px;
}

.scb-store-skeleton-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: scbStoreShimmerBg 1.5s ease-in-out infinite;
}

.scb-store-skeleton-line {
    height: 12px;
    border-radius: 6px;
    margin: 10px 12px 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: scbStoreShimmerBg 1.5s ease-in-out infinite;
}

.scb-store-skeleton-line.w70 {
    width: 70%;
}

.scb-store-skeleton-line.w50 {
    width: 50%;
}

.scb-store-skeleton-line.w30 {
    width: 30%;
}

@keyframes scbStoreShimmerBg {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ========================================
   LOAD MORE
   ======================================== */
.scb-store-load-more {
    text-align: center;
    padding: 24px 0 32px;
}

.scb-store-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 36px;
    background: #ffffff;
    color: var(--scb-primary, #ff6b00);
    border: 2px solid var(--scb-primary, #ff6b00);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.scb-store-load-more-btn:hover {
    background: var(--scb-primary, #ff6b00);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(255, 107, 0, 0.35);
    transform: translateY(-2px);
}

.scb-store-load-more-btn:active {
    transform: translateY(0);
}

.scb-store-load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.scb-store-load-more-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-top-color: var(--scb-primary, #ff6b00);
    border-radius: 50%;
    animation: scbStoreSpin 0.6s linear infinite;
}

/* ========================================
   PROMO POPUP
   ======================================== */
.scb-store-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.scb-store-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.scb-store-popup {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    max-width: 420px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.scb-store-popup-overlay.active .scb-store-popup {
    transform: scale(1) translateY(0);
}

.scb-store-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.scb-store-popup-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.scb-store-popup-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #999;
    transition: all 0.2s;
}

.scb-store-popup-close:hover {
    background: #ebebeb;
    color: #333;
}

.scb-store-popup-content {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.scb-store-popup-content p {
    margin: 0 0 12px;
}

/* ========================================
   VARIATION POPUP
   ======================================== */
.scb-store-variation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.scb-store-variation-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 769px) {
    .scb-store-variation-overlay {
        align-items: center;
    }
}

.scb-store-variation-popup {
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) {
    .scb-store-variation-popup {
        border-radius: 18px;
        transform: scale(0.9) translateY(20px);
    }
}

.scb-store-variation-overlay.active .scb-store-variation-popup {
    transform: translateY(0);
}

@media (min-width: 769px) {
    .scb-store-variation-overlay.active .scb-store-variation-popup {
        transform: scale(1) translateY(0);
    }
}

.scb-store-var-product {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.scb-store-var-product-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.scb-store-var-product-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.scb-store-var-group {
    margin-bottom: 16px;
}

.scb-store-var-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.scb-store-var-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.scb-store-var-option {
    padding: 8px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    transition: all 0.2s;
    background: #fff;
}

.scb-store-var-option:hover {
    border-color: var(--scb-primary, #ff6b00);
    color: var(--scb-primary, #ff6b00);
}

.scb-store-var-option.selected {
    background: var(--scb-primary, #ff6b00);
    color: #fff;
    border-color: var(--scb-primary, #ff6b00);
}

.scb-store-var-option.out-of-stock {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.scb-store-var-add-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--scb-primary, #ff6b00);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.scb-store-var-add-btn:hover {
    opacity: 0.9;
    box-shadow: 0 4px 18px rgba(255, 107, 0, 0.35);
}

.scb-store-var-add-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================
   MOBILE-SPECIFIC
   ======================================== */
@media (max-width: 768px) {
    .scb-store-container {
        padding: 0 8px;
    }

    .scb-store-promo {
        padding: 12px 14px;
        border-radius: 12px;
        flex-direction: row;
        gap: 0;
    }

    .scb-store-promo-item {
        font-size: 11px;
        gap: 6px;
    }

    .scb-store-promo-icon {
        width: 18px;
        height: 18px;
    }

    .scb-store-promo-icon svg {
        width: 11px;
        height: 11px;
    }

    .scb-store-promo-divider {
        margin: 0 8px;
    }

    .scb-store-search-inner {
        height: 42px;
    }

    .scb-store-cat-item {
        padding: 8px 16px;
    }

    .scb-store-cat-name {
        font-size: 12px;
    }

    .scb-store-subcat-pill {
        padding: 6px 14px 6px 6px;
    }

    .scb-store-subcat-img {
        width: 26px;
        height: 26px;
    }

    .scb-store-subcat-letter {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .scb-store-subcat-name {
        font-size: 12px;
    }

    .scb-store-products-title {
        font-size: 16px;
    }

    .scb-store-product-info {
        padding: 8px 10px 12px;
    }

    .scb-store-product-name {
        font-size: 11.5px;
    }

    .scb-store-price {
        font-size: 13px;
    }

    .scb-store-add-to-cart {
        width: 32px;
        height: 32px;
    }

    .scb-store-add-to-cart svg {
        width: 15px;
        height: 15px;
    }
}

/* ========================================
   TOUCH SCROLL INDICATORS
   ======================================== */
.scb-store-categories-wrap::before,
.scb-store-categories-wrap::after,
.scb-store-subcats-wrap::before,
.scb-store-subcats-wrap::after {
    display: none;
}

@media (max-width: 768px) {
    .scb-store-categories-wrap {
        position: relative;
    }

    .scb-store-subcats-wrap {
        position: relative;
    }
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.scb-store-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a2e;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000001;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

.scb-store-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.scb-store-toast.success {
    background: linear-gradient(135deg, #4caf50, #45a049);
}

.scb-store-toast.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}