/* ===== Gemstone Theme - Template 76 ===== */
:root {
    --gs-bg: #f9f6f1;
    --gs-surface: #ffffff;
    --gs-surface-2: #f0ebe3;
    --gs-surface-3: #e8e0d4;
    --gs-border: #e5ddd0;
    --gs-border-light: #d5cdc0;
    --gs-ink: #1a1410;
    --gs-muted: #7a6e5e;
    --gs-gold: #9c7e4f;
    --gs-gold-light: #b89b6a;
    --gs-gold-pale: #d4c4a8;
    --gs-gold-dark: #7a6340;
    --gs-gradient: linear-gradient(135deg, #9c7e4f 0%, #b89b6a 100%);
    --gs-gradient-soft: linear-gradient(180deg, #f9f6f1 0%, #f0ebe3 100%);
    --gs-radius-sm: 8px;
    --gs-radius: 12px;
    --gs-radius-lg: 20px;
    --gs-radius-xl: 32px;
    --gs-tr: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --gs-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --gs-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--gs-tr);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ===== Header ===== */
.gs-header {
    position: relative;
    z-index: 999;
    background: var(--gs-gold);
    color: #fff;
}

.gs-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.gs-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.gs-logo a {
    font-family: var(--gs-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gs-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.gs-nav a {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.gs-nav a:hover {
    color: #fff;
}

.gs-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gs-nav-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    z-index: 999;
}

.gs-nav-item > a {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    position: relative;
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.gs-nav-arrow {
    font-size: 9px;
    color: rgba(255,255,255,0.7);
    transition: transform 0.3s ease;
}

.gs-nav-item:hover .gs-nav-arrow {
    transform: rotate(180deg);
    color: #fff;
}

.gs-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-radius-sm);
    min-width: 220px;
    padding: 8px 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.gs-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid var(--gs-border);
    border-top: 1px solid var(--gs-border);
}

.gs-nav-item:hover .gs-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.gs-dropdown-list {
    list-style: none;
    padding: 0;
}

.gs-dropdown-item {
    position: relative;
}

.gs-dropdown-item > a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gs-ink);
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
}

.gs-dropdown-item > a:hover {
    color: var(--gs-gold);
    background: var(--gs-bg);
}

.gs-dropdown-sub {
    list-style: none;
    padding: 4px 0 4px 20px;
    border-left: 2px solid var(--gs-border);
    margin: 0 20px;
}

.gs-dropdown-sub li a {
    display: block;
    padding: 6px 12px;
    font-size: 0.8rem;
    color: var(--gs-muted);
    transition: color 0.2s ease;
}

.gs-dropdown-sub li a:hover {
    color: var(--gs-gold);
}

.gs-header-acts {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gs-icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: var(--gs-tr);
    position: relative;
    background: none;
    border-radius: 50%;
}

.gs-icon-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

/* ===== Mobile Header ===== */
@media (max-width: 768px) {
    .gs-header-inner {
        padding: 16px;
        height: 64px;
    }

    .gs-nav {
        display: none;
    }

    .gs-logo a {
        font-size: 1.35rem;
    }
}

/* ===== Search Bar ===== */
.gs-search-bar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gs-surface);
    border-bottom: 1px solid var(--gs-border);
    padding: 16px 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--gs-tr);
    z-index: 2999;
}

.gs-search-bar.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

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

.gs-search-inner input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--gs-border);
    border-right: none;
    border-radius: var(--gs-radius-sm) 0 0 var(--gs-radius-sm);
    font-size: 0.875rem;
    outline: none;
    font-family: inherit;
    background: var(--gs-bg);
    color: var(--gs-ink);
}

.gs-search-inner input:focus {
    border-color: var(--gs-gold);
}

.gs-search-inner button {
    padding: 12px 24px;
    background: var(--gs-gold);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 var(--gs-radius-sm) var(--gs-radius-sm) 0;
}

/* ===== Side Menu ===== */
#jq-sideMenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: var(--gs-surface);
    z-index: 3100;
    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.15);
}

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

.gs-side-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gs-border);
    background: var(--gs-gold);
    color: #fff;
}

.gs-side-hdr span {
    font-family: var(--gs-serif);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.gs-side-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

.gs-side-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

.gs-side-search form {
    display: flex;
    gap: 0;
}

.gs-side-search input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--gs-border);
    border-right: none;
    border-radius: var(--gs-radius-sm) 0 0 var(--gs-radius-sm);
    font-size: 0.875rem;
    outline: none;
    font-family: inherit;
    background: var(--gs-surface-2);
    color: var(--gs-ink);
}

.gs-side-search button {
    padding: 10px 18px;
    background: var(--gs-gold);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 var(--gs-radius-sm) var(--gs-radius-sm) 0;
}

.gs-menu-list {
    padding: 8px 0;
}

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

.gs-menu-link {
    display: block;
    padding: 14px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gs-ink);
    transition: var(--gs-tr);
}

.gs-menu-link:hover {
    color: var(--gs-gold);
    background: var(--gs-surface-2);
}

.gs-menu-arrow {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--gs-muted);
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.gs-menu-arrow:hover {
    background: var(--gs-surface-2);
    color: var(--gs-gold);
}

.gs-menu-arrow.expanded {
    transform: rotate(90deg);
}

.submenu {
    display: none;
    background: var(--gs-surface-2);
}

.submenu.expanded {
    display: block;
}

.submenu .gs-menu-link {
    padding-left: 40px;
    font-size: 0.85rem;
    color: var(--gs-muted);
}

.submenu .submenu .gs-menu-link {
    padding-left: 56px;
    font-size: 0.8rem;
}

.gs-side-bottom {
    border-top: 1px solid var(--gs-border);
    padding: 16px 0;
}

.gs-side-bottom a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gs-muted);
    transition: var(--gs-tr);
}

.gs-side-bottom a:hover {
    color: var(--gs-gold);
    background: var(--gs-surface-2);
}

.gs-side-bottom a i {
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* ===== Footer ===== */
.gs-footer {
    background: #1a1410;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 24px 0;
}

.gs-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.gs-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gs-footer-brand .gs-logo a {
    font-family: var(--gs-serif);
    color: var(--gs-gold-light);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.gs-footer-brand p {
    margin-top: 16px;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    max-width: 300px;
}

.gs-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    font-size: 20px;
}

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

.gs-footer-social a:hover {
    background: var(--gs-gold);
    color: #fff;
    transform: translateY(-2px);
}

.gs-footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gs-gold-light);
    margin-bottom: 20px;
}

.gs-footer-col a {
    display: block;
    padding: 8px 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--gs-tr);
}

.gs-footer-col a:hover {
    color: var(--gs-gold-light);
    padding-left: 4px;
}

.gs-footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.gs-footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

.gs-footer-bottom a:hover {
    color: var(--gs-gold-light);
}

/* ===== Buttons ===== */
.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--gs-radius-sm);
    transition: var(--gs-tr);
    cursor: pointer;
    font-family: inherit;
}

.gs-btn-primary {
    background: var(--gs-gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(156, 126, 79, 0.25);
}

.gs-btn-primary:hover {
    background: var(--gs-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(156, 126, 79, 0.35);
}

.gs-btn-ghost {
    background: transparent;
    color: var(--gs-gold);
    border: 1.5px solid var(--gs-gold);
}

.gs-btn-ghost:hover {
    background: var(--gs-gold);
    color: #fff;
}

.gs-btn-outline {
    background: transparent;
    color: var(--gs-ink);
    border: 1px solid var(--gs-border-light);
}

.gs-btn-outline:hover {
    border-color: var(--gs-gold);
    color: var(--gs-gold);
}

/* ===== Section ===== */
.gs-section {
    padding: 80px 24px;
}

.gs-section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.gs-section-header {
    margin-bottom: 48px;
}

.gs-section-header h2 {
    font-family: var(--gs-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--gs-ink);
}

.gs-section-header p {
    font-size: 1rem;
    color: var(--gs-muted);
    max-width: 500px;
}

/* ===== Product Card ===== */
.gs-product-card {
    background: var(--gs-surface);
    border-radius: var(--gs-radius);
    overflow: hidden;
    transition: var(--gs-tr);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gs-border);
}

.gs-product-card:hover {
    border-color: var(--gs-gold-pale);
    box-shadow: 0 12px 32px rgba(156, 126, 79, 0.1);
    transform: translateY(-2px);
}

.gs-product-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gs-surface-2);
}

.gs-product-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.gs-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--gs-surface-2);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gs-product-card:hover .gs-product-img img {
    transform: scale(1.05);
}

.gs-wish-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gs-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gs-muted);
    font-size: 0.75rem;
    transition: var(--gs-tr);
    z-index: 3;
    opacity: 0;
}

.gs-product-card:hover .gs-wish-btn {
    opacity: 1;
}

.gs-wish-btn:hover {
    background: var(--gs-gold);
    border-color: var(--gs-gold);
    color: #fff;
}

.gs-product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gs-surface);
    color: var(--gs-ink);
    border: 1px solid var(--gs-border);
}

.gs-product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(249, 246, 241, 0.98), rgba(249, 246, 241, 0.6) 60%, transparent);
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gs-product-card:hover .gs-product-overlay {
    transform: translateY(0);
}

.gs-quick-btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    background: var(--gs-gold);
    color: #fff;
    transition: var(--gs-tr);
    display: flex;
    align-items: center;
    gap: 6px;
}

.gs-quick-btn:hover {
    background: var(--gs-gold-dark);
}

.gs-product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gs-product-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gs-ink);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.gs-product-price .gs-old {
    font-size: 0.8rem;
    color: var(--gs-muted);
    text-decoration: line-through;
    font-weight: 400;
}

.gs-product-title {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gs-muted);
}

.gs-product-title a {
    color: var(--gs-muted);
    transition: color 0.3s;
}

.gs-product-title a:hover {
    color: var(--gs-gold);
}

/* ===== Product Grid ===== */
.gs-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 640px) {
    .gs-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gs-product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* ===== Category Cards ===== */
.gs-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .gs-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gs-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gs-category-card {
    position: relative;
    overflow: hidden;
    background: var(--gs-surface);
    display: block;
    border-radius: var(--gs-radius);
    border: 1px solid var(--gs-border);
    transition: var(--gs-tr);
}

.gs-category-card:hover {
    border-color: var(--gs-gold-pale);
    box-shadow: 0 12px 32px rgba(156, 126, 79, 0.1);
}

.gs-category-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gs-surface-2);
}

.gs-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gs-category-card:hover img {
    transform: scale(1.05);
}

.gs-category-card-name {
    padding: 20px;
    text-align: center;
    font-family: var(--gs-serif);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gs-ink);
}

/* ===== Container ===== */
.gs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .gs-container {
        padding: 0 20px;
    }
}

/* ===== Cart, Overlay, Pop-up ===== */
#to-top {
    width: 44px;
    height: 44px;
    background: var(--gs-surface);
    color: var(--gs-ink);
    border: 1px solid var(--gs-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    font-size: 12px;
    display: none;
    transition: var(--gs-tr);
    border-radius: var(--gs-radius-sm);
    text-align: center;
    line-height: 44px;
}

#to-top:hover {
    background: var(--gs-gold);
    color: #fff;
    border-color: transparent;
}

.shop-cart {
    width: 300px;
    background: var(--gs-surface);
    border: 1px solid var(--gs-border);
    position: absolute;
    top: calc(100% + 2px);
    right: 0;
    padding: 20px;
    z-index: 1100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-radius: var(--gs-radius-sm);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.shop-cart-body {
    max-height: 320px;
    overflow-y: auto;
}

.shop-cart-total {
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--gs-border);
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--gs-muted);
}

.shop-cart-subtotal {
    font-weight: 600;
    color: var(--gs-ink);
}

.shop-cart-footer {
    padding-top: 10px;
}

.chekc_btn {
    background: var(--gs-gold);
    color: #fff;
    padding: 14px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--gs-tr);
    border: none;
    font-family: inherit;
    border-radius: var(--gs-radius-sm);
    width: 100%;
}

.chekc_btn:hover {
    background: var(--gs-gold-dark);
    box-shadow: 0 4px 16px rgba(156, 126, 79, 0.2);
}

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

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

.shop-cart-body input,
.shop-cart-body select {
    padding: 8px 10px;
    border: 1px solid var(--gs-border);
    background: var(--gs-bg);
    color: var(--gs-ink);
    font-size: 0.8rem;
    font-family: var(--gs-font);
    border-radius: var(--gs-radius-sm);
    outline: none;
    min-width: 60px;
}

.shop-cart-body input:focus,
.shop-cart-body select:focus {
    border-color: var(--gs-gold);
}

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

.shop-img img {
    object-fit: contain;
    width: 50px;
    height: 50px;
}

.shop-info {
    flex: 1;
}

.shop-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
    color: var(--gs-ink);
}

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

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

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

.Pop-up {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gs-surface);
    padding: 24px;
    border-radius: var(--gs-radius);
    z-index: 3500;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gs-border);
}

#jq-close-pop {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 16px;
    color: var(--gs-muted);
    cursor: pointer;
    border-radius: 50%;
}

#jq-close-pop:hover {
    background: var(--gs-surface-2);
    color: var(--gs-ink);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gs-border);
    border-top-color: var(--gs-gold);
    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);
    }
}

/* ===== Cart Count Badge ===== */
.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #fff;
    color: var(--gs-gold);
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ===== Wishlist ===== */
.cart-items {
    display: flex;
    flex-direction: column;
}

.wishlist-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .wishlist-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .wishlist-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .wishlist-items {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

.cart-item,
.wishlist-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gs-surface-2);
}

.wishlist-item {
    flex-direction: column;
    padding: 0;
    border-bottom: none;
    gap: 12px;
}

.item-image {
    width: 120px;
    height: 150px;
    flex-shrink: 0;
    background: var(--gs-surface-2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--gs-radius-sm);
}

.item-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.wishlist-item .item-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
}

/* ===== Cart Item Layout ===== */
.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gs-surface-2);
    align-items: center;
}

.cart-item .item-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.cart-item .item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gs-ink);
    text-decoration: none;
    line-height: 1.4;
}

.cart-item .item-title:hover {
    color: var(--gs-gold);
}

.cart-item .item-sku {
    font-size: 0.8rem;
    color: var(--gs-muted);
}

.cart-item .item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    flex-wrap: wrap;
    gap: 12px;
}

.cart-item .item-price {
    min-width: 100px;
    text-align: right;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.cart-item .price-current {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gs-gold);
}

.cart-item .price-original {
    font-size: 0.85rem;
    color: var(--gs-muted);
    text-decoration: line-through;
}

@media (max-width: 768px) {
    .cart-item {
        gap: 12px;
        padding: 16px 0;
        align-items: flex-start;
    }

    .cart-item .item-image {
        width: 80px;
        height: 100px;
    }

    .cart-item .item-title {
        font-size: 0.85rem;
    }

    .cart-item .item-sku {
        font-size: 0.75rem;
    }

    .cart-item .item-price {
        min-width: auto;
    }

    .cart-item .price-current {
        font-size: 0.95rem;
    }

    .cart-item .item-actions {
        margin-top: 6px;
        gap: 8px;
    }

    .cart-item .btn-remove {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .cart-item {
        gap: 10px;
        padding: 12px 0;
    }

    .cart-item .item-image {
        width: 70px;
        height: 88px;
    }

    .cart-item .item-details {
        gap: 4px;
    }

    .cart-item .item-title {
        font-size: 0.8rem;
    }

    .cart-item .item-price {
        min-width: 70px;
    }

    .cart-item .price-current {
        font-size: 0.85rem;
    }

    .cart-item .price-original {
        font-size: 0.75rem;
    }
}

.item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: var(--gs-surface);
    color: var(--gs-ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.125rem;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: var(--gs-tr);
    border: 1px solid var(--gs-border);
}

.item-remove:hover {
    background: var(--gs-gold);
    color: #fff;
    border-color: var(--gs-gold);
}

.item-details {
    flex: 1;
}

.item-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gs-ink);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    line-height: 1.4;
}

.item-title:hover {
    color: var(--gs-gold);
}

.item-price {
    text-align: left;
    min-width: auto;
    margin-bottom: 8px;
}

.price-current {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gs-gold);
    display: block;
}

.price-original {
    font-size: 0.8rem;
    color: var(--gs-muted);
    text-decoration: line-through;
    display: block;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.btn-add-to-cart {
    background: var(--gs-gold);
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-family: var(--gs-font);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--gs-tr);
    width: 100%;
    border-radius: var(--gs-radius-sm);
}

.btn-add-to-cart:hover {
    background: var(--gs-gold-dark);
}

.btn-remove {
    background: none;
    border: none;
    color: var(--gs-muted);
    cursor: pointer;
    font-size: 0.75rem;
    text-decoration: underline;
    padding: 0;
    font-family: var(--gs-font);
}

.btn-remove:hover {
    color: var(--gs-gold);
}

.item-sku {
    font-size: 0.75rem;
    color: var(--gs-muted);
    margin-bottom: 8px;
}

.continue-shopping {
    display: block;
    text-align: center;
    padding: 24px 0;
}

.continue-shopping-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gs-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
}

.continue-shopping-btn:hover {
    color: var(--gs-gold);
}

/* ===== Quantity Controls ===== */
.quantity-control {
    display: flex;
    align-items: center;
    margin: 0;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gs-border);
    background: var(--gs-surface);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--gs-tr);
    color: var(--gs-ink);
}

.quantity-btn:hover {
    background: var(--gs-surface-2);
    border-color: var(--gs-gold);
    color: var(--gs-gold);
}

.quantity-input {
    width: 48px;
    height: 32px;
    border-top: 1px solid var(--gs-border);
    border-bottom: 1px solid var(--gs-border);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 0.875rem;
    font-family: var(--gs-font);
    outline: none;
    background: var(--gs-bg);
    color: var(--gs-ink);
}

/* ===== Quick View Popup Content ===== */
.products_box {
    padding: 24px;
    color: var(--gs-ink);
}

.products_box .pro_title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--gs-ink);
}

.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(--gs-muted);
    text-decoration: line-through;
}

.products_box .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gs-gold);
}

.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: 1px solid var(--gs-border);
    background: var(--gs-surface);
    color: var(--gs-ink);
    font-size: 0.875rem;
    min-width: 160px;
    cursor: pointer;
    font-family: var(--gs-font);
    border-radius: var(--gs-radius-sm);
    outline: none;
}

.products_box .btn {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.products_box .button {
    background: var(--gs-gold);
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-family: var(--gs-font);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--gs-tr);
    text-align: center;
    flex: 1;
    border-radius: var(--gs-radius-sm);
}

.products_box .button:hover {
    background: var(--gs-gold-dark);
}

/* ===== Success Toast ===== */
.successful_title {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3500;
    background: var(--gs-gold);
    color: #fff;
    border: 1px solid var(--gs-gold-light);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(156, 126, 79, 0.2);
    animation: gsToastIn 0.3s ease, gsToastOut 0.5s ease 3s forwards;
    max-width: 90%;
    white-space: nowrap;
    border-radius: var(--gs-radius-sm);
}

@keyframes gsToastIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes gsToastOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== Pagination ===== */
.gs-pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.gs-pagination-list {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.gs-pagination-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid var(--gs-border);
    border-radius: var(--gs-radius-sm);
    color: var(--gs-muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--gs-tr);
    background: var(--gs-surface);
}

.gs-pagination-list a:hover,
.gs-pagination-list a.active {
    background: var(--gs-gold);
    color: #fff;
    border-color: transparent;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .gs-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

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

    .gs-section {
        padding: 48px 16px;
    }

    .gs-footer {
        padding-top: 48px;
    }

    .gs-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }

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

@media (min-width: 769px) {
    .big_hide {
        display: none !important;
    }
}