/* ===== Sunset Journey Theme ===== */
:root {
    --sj-primary: #c75b39;
    --sj-primary-dark: #a8482a;
    --sj-primary-light: #e07a5f;
    --sj-secondary: #2c3e50;
    --sj-accent: #d4a373;
    --sj-bg: #faf6f1;
    --sj-surface: #ffffff;
    --sj-surface-warm: #f5efe8;
    --sj-text: #2d2d2d;
    --sj-text-light: #6b6b6b;
    --sj-border: #e8dfd4;
    --sj-footer-bg: #2c3e50;
    --sj-gradient: linear-gradient(135deg, #c75b39 0%, #e07a5f 100%);
    --sj-radius: 20px;
    --sj-radius-sm: 12px;
    --sj-tr: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --sj-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --sj-display: 'Playfair Display', Georgia, serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--sj-font);
    background: var(--sj-bg);
    color: var(--sj-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
}

/* ===== Header ===== */
.sj-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sj-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.sj-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.sj-logo a {
    font-family: var(--sj-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sj-text);
}

.sj-logo img {
    display: block;
}

.sj-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.sj-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--sj-text);
    transition: var(--sj-tr);
    position: relative;
    padding: 4px 0;
}

.sj-nav a:hover {
    color: var(--sj-primary);
}

.sj-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sj-gradient);
    transition: var(--sj-tr);
    border-radius: 1px;
}

.sj-nav a:hover::after {
    width: 100%;
}

.sj-header-acts {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sj-icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--sj-text);
    transition: var(--sj-tr);
    font-size: 1rem;
    position: relative;
}

.sj-icon-btn:hover {
    background: var(--sj-surface-warm);
    color: var(--sj-primary);
}

.sj-cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--sj-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Bar */
.sj-search-bar {
    display: none;
    background: var(--sj-surface);
    border-bottom: 1px solid var(--sj-border);
    padding: 14px 24px;
}

.sj-search-bar.active {
    display: block;
}

.sj-search-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.sj-search-inner input {
    flex: 1;
    padding: 12px 20px;
    border: 1.5px solid var(--sj-border);
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.875rem;
    outline: none;
    transition: var(--sj-tr);
}

.sj-search-inner input:focus {
    border-color: var(--sj-primary);
}

.sj-search-inner button {
    padding: 12px 28px;
    background: var(--sj-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--sj-tr);
}

.sj-search-inner button:hover {
    box-shadow: 0 8px 20px rgba(199, 91, 57, 0.3);
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.overlay.active {
    display: block;
}

/* Pop-up */
.Pop-up {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--sj-surface);
    border-radius: var(--sj-radius);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    z-index: 999;
    width: 100%;
    min-width: 300px;
    max-width: 560px;
    max-height: 90vh;
    overflow: auto;
    padding: 24px;
}

.Pop-up.active {
    display: block;
}

#jq-close-pop {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--sj-surface-warm);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--sj-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sj-tr);
}

#jq-close-pop:hover {
    background: var(--sj-primary);
    color: #fff;
}

/* ===== Quick View Pop-up (h6po80.js) ===== */
.products_box { padding: 20px 8px 8px; }
.products_box .pro_title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--sj-text);
    font-family: var(--sj-display);
    word-break: break-word;
    overflow-wrap: break-word;
}
.products_box .box_price {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.products_box .discount_price {
    font-size: 1rem;
    color: var(--sj-muted);
    text-decoration: line-through;
}
.products_box .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sj-primary);
}
.products_box .sku_code {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.products_box .sku_code select {
    padding: 10px 14px;
    border: 1.5px solid var(--sj-border);
    background: var(--sj-surface);
    color: var(--sj-text);
    font-size: 0.875rem;
    min-width: 160px;
    cursor: pointer;
    font-family: var(--sj-font);
    border-radius: 50px;
    outline: none;
}
.products_box .sku_code select:focus { border-color: var(--sj-primary); }
.products_box .quantity-control {
    display: inline-flex;
    width: auto;
    margin: 16px 0;
}
.products_box .btn {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0;
}
.products_box .button {
    background: var(--sj-gradient);
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-family: var(--sj-font);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--sj-tr);
    text-align: center;
    flex: 1;
    border-radius: 50px;
}
.products_box .button:hover {
    box-shadow: 0 8px 20px rgba(199, 91, 57, 0.3);
    opacity: 0.95;
}

/* Side Menu */
#jq-sideMenu {
    position: fixed;
    top: 0;
    left: -340px;
    width: 340px;
    height: 100%;
    background: var(--sj-surface);
    z-index: 1001;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
}

#jq-sideMenu.active {
    left: 0;
}

.sj-side-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--sj-border);
}

.sj-side-hdr span {
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--sj-display);
}

.sj-side-close {
    width: 36px;
    height: 36px;
    background: var(--sj-surface-warm);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--sj-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sj-tr);
}

.sj-side-close:hover {
    background: var(--sj-primary);
    color: #fff;
}

.sj-side-search {
    padding: 16px 20px;
    border-bottom: 1px solid var(--sj-border);
}

.sj-side-search form {
    display: flex;
    gap: 8px;
}

.sj-side-search input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid var(--sj-border);
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.875rem;
    outline: none;
}

.sj-side-search button {
    padding: 10px 20px;
    background: var(--sj-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.875rem;
    cursor: pointer;
}

.sj-menu-list {
    list-style: none;
    padding: 0;
}

.sj-menu-item {
    border-bottom: 1px solid var(--sj-border);
}

.sj-menu-link {
    display: block;
    padding: 14px 20px;
    font-size: 0.9rem;
    color: var(--sj-text);
    transition: var(--sj-tr);
}

.sj-menu-link:hover {
    color: var(--sj-primary);
    background: var(--sj-surface-warm);
}

.sj-menu-arrow {
    float: right;
    margin-top: 4px;
    margin-right: 16px;
    font-size: 0.7rem;
    color: var(--sj-muted);
    cursor: pointer;
    padding: 4px;
    transition: transform 0.3s;
}

.submenu {
    list-style: none;
    padding-left: 20px;
    display: none;
}

.submenu.active {
    display: block;
}

.sj-side-bottom {
    padding: 20px;
    border-top: 1px solid var(--sj-border);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sj-side-bottom a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--sj-text);
    transition: var(--sj-tr);
    padding: 8px 0;
}

.sj-side-bottom a:hover {
    color: var(--sj-primary);
}

.sj-side-bottom a i {
    width: 20px;
    text-align: center;
}

/* ===== Footer ===== */
.sj-footer {
    background: var(--sj-footer-bg);
    color: #fff;
    position: relative;
    padding-bottom: 24px;
}

.sj-footer-wave {
    line-height: 0;
    margin-top: -1px;
    text-align: center;
}

.sj-footer-wave img {
    max-width: 100%;
}

.sj-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 24px 0;
}

.sj-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.sj-footer-brand .sj-footer-logo {
    font-family: var(--sj-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.sj-footer-brand .sj-footer-logo a {
    color: #fff;
    transition: var(--sj-tr);
}

.sj-footer-brand .sj-footer-logo a:hover {
    color: var(--sj-accent);
}

.sj-footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.sj-footer-social {
    display: flex;
    gap: 12px;
}

.sj-footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--sj-tr);
}

.sj-footer-social a:hover {
    background: var(--sj-primary);
    color: #fff;
    transform: translateY(-3px);
}

.sj-footer-col h4 {
    font-family: var(--sj-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.sj-footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    transition: var(--sj-tr);
}

.sj-footer-col a:hover {
    color: var(--sj-accent);
    padding-left: 4px;
}

.sj-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.sj-footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--sj-tr);
}

.sj-footer-bottom a:hover {
    color: var(--sj-accent);
}

/* ===== Loading Spinner ===== */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--sj-border);
    border-top-color: var(--sj-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== Empty State ===== */
.empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--sj-muted);
    font-size: 0.9rem;
}

/* ===== h6po80.js Cart/Wishlist Compatibility ===== */
.shop-cart {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    width: 360px;
    background: var(--sj-surface);
    border: 1px solid var(--sj-border);
    border-radius: var(--sj-radius-sm);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    display: flex;
    flex-direction: column;
    max-height: 480px;
}

.shop-cart::after {
    content: '';
    position: absolute;
    top: -7px;
    right: 14px;
    width: 14px;
    height: 14px;
    background: var(--sj-surface);
    transform: rotate(45deg);
    border-left: 1px solid var(--sj-border);
    border-top: 1px solid var(--sj-border);
}

.shop-cart-icon:hover .shop-cart,
.shop-cart:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.shop-cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--sj-border);
    flex-shrink: 0;
}

.shop-cart-head p {
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--sj-display);
    margin: 0;
}

.shop-cart-head .jq-close-pop {
    position: static;
    width: 32px;
    height: 32px;
    background: var(--sj-surface-warm);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--sj-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sj-tr);
}

.shop-cart-head .jq-close-pop:hover {
    background: var(--sj-primary);
    color: #fff;
}

.shop-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px;
    min-height: 0;
}

.shop-cart-body a {
    text-decoration: none;
    color: var(--sj-text);
}

.shop-cart-items {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--sj-border);
}

.shop-img img {
    object-fit: contain;
    width: 52px;
    height: 52px;
    border-radius: var(--sj-radius-sm);
    background: var(--sj-surface-warm);
}

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

.shop-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
    color: var(--sj-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-info p {
    font-size: 0.8rem;
    color: var(--sj-muted);
}

.shop-delete {
    background: var(--sj-gradient);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    cursor: pointer;
    border: none;
    flex-shrink: 0;
    transition: var(--sj-tr);
}

.shop-delete:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(199, 91, 57, 0.3);
}

.shop-cart-bottom {
    padding: 16px 20px;
    border-top: 1px solid var(--sj-border);
    background: var(--sj-surface);
    flex-shrink: 0;
}

.shop-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.shop-cart-total span:first-child {
    font-weight: 700;
    color: var(--sj-muted);
}

.shop-cart-subtotal {
    font-weight: 700;
    color: var(--sj-primary);
    font-size: 1.1rem;
}

.chekc_btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--sj-gradient);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--sj-tr);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    font-family: inherit;
}

.chekc_btn:hover {
    box-shadow: 0 8px 20px rgba(199, 91, 57, 0.3);
    opacity: 0.95;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--sj-border);
    align-items: center;
}

.cart-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: var(--sj-radius-sm);
}

.cart-item .item-details {
    flex: 1;
}

.cart-item .item-title {
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}

.cart-item .item-price {
    font-size: 0.82rem;
    color: var(--sj-primary);
    font-weight: 700;
}

/* Quantity Control */
.quantity-control {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--sj-border);
    border-radius: 50px;
    overflow: hidden;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--sj-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sj-tr);
}

.quantity-btn:hover {
    color: var(--sj-primary);
    background: var(--sj-surface-warm);
}

.quantity-input {
    width: 36px;
    height: 30px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    background: none;
    outline: none;
    color: var(--sj-text);
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Wishlist Item */
.wishlist-item {
    /* display: flex; */
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--sj-border);
    align-items: center;
}

.wishlist-item .item-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: var(--sj-radius-sm);
}

.wishlist-item .item-details {
    flex: 1;
}

.wishlist-item .item-title {
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}

.wishlist-item .item-price {
    font-size: 0.82rem;
    color: var(--sj-primary);
    font-weight: 700;
}

.item-remove {
    width: 32px;
    height: 32px;
    background: var(--sj-surface-warm);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--sj-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sj-tr);
}

.item-remove:hover {
    background: var(--sj-primary);
    color: #fff;
}

/* Add to Cart Button */
.btn-add-to-cart {
    padding: 10px 20px;
    background: var(--sj-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--sj-tr);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-add-to-cart:hover {
    box-shadow: 0 6px 16px rgba(199, 91, 57, 0.3);
}

/* Close Pop */
.jq-close-pop {
    width: 36px;
    height: 36px;
    background: var(--sj-surface-warm);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--sj-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sj-tr);
}

.jq-close-pop:hover {
    background: var(--sj-primary);
    color: #fff;
}

/* ===== Scroll to top ===== */
#to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--sj-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--sj-tr);
    box-shadow: 0 4px 12px rgba(199, 91, 57, 0.3);
}

#to-top.visible {
    opacity: 1;
    visibility: visible;
}

#to-top:hover {
    transform: translateY(-4px);
}

/* ===== Product Cards (shared) ===== */
.sj-product-card,
.sj-shop-card {
    background: var(--sj-surface);
    border-radius: var(--sj-radius);
    overflow: hidden;
    border: 1px solid transparent;
    transition: var(--sj-tr);
    position: relative;
}
.sj-product-card:hover,
.sj-shop-card:hover {
    border-color: var(--sj-border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.sj-product-img,
.sj-shop-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    /* background: var(--sj-surface-warm); */
}
.sj-product-img img,
.sj-shop-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}
.sj-product-card:hover .sj-product-img img,
.sj-shop-card:hover .sj-shop-img img {
    transform: scale(1.05);
}
.sj-product-tag,
.sj-shop-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--sj-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
}
.sj-wish-btn,
.sj-shop-wish {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--sj-tr);
    color: var(--sj-muted);
}
.sj-wish-btn:hover,
.sj-shop-wish:hover {
    background: var(--sj-primary);
    color: #fff;
}
.sj-product-overlay,
.sj-shop-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(to top, rgba(44,62,80,0.5), transparent);
    opacity: 0;
    transition: var(--sj-tr);
    pointer-events: none;
}
.sj-product-card:hover .sj-product-overlay,
.sj-shop-card:hover .sj-shop-overlay {
    opacity: 1;
}
.sj-quick-btn,
.sj-shop-quick {
    /* width: 100%; */
    padding: 12px 14px;
    background: #fff;
    color: var(--sj-ink);
    border: none;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--sj-tr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: auto;
}
.sj-quick-btn:hover,
.sj-shop-quick:hover {
    background: var(--sj-primary);
    color: #fff;
}
.sj-product-info,
.sj-shop-info {
    padding: 16px 20px;
}
.sj-product-price,
.sj-shop-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.sj-product-price span:first-child,
.sj-shop-price span:first-child {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sj-primary);
}
.sj-product-price .sj-old,
.sj-shop-price .sj-old {
    font-size: 0.85rem;
    color: var(--sj-muted);
    text-decoration: line-through;
}
.sj-product-title,
.sj-shop-title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--sj-text);
}
.sj-product-title a,
.sj-shop-title a {
    color: inherit;
    text-decoration: none;
}
.sj-product-title a:hover,
.sj-shop-title a:hover {
    color: var(--sj-primary);
}

/* ===== Responsive ===== */
.small_hide {
    display: flex !important;
}

.big_hide {
    display: none !important;
}

@media (max-width: 768px) {
    .small_hide {
        display: none !important;
    }

    .big_hide {
        display: flex !important;
    }

    .sj-header-inner {
        padding: 0 16px;
        height: 60px;
    }

    .sj-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .shop-cart {
        width: calc(100vw - 32px);
        right: -8px;
    }

    #jq-sideMenu {
        width: 300px;
        left: -300px;
    }

    .sj-product-overlay,
    .sj-shop-overlay {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .sj-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}