/* ═══════════════════════════════════════════════════════════════════
   TIOO Shop — Premium Editorial E-commerce
   Typography: Playfair Display (display) + DM Sans (body)
   Palette: Warm charcoal + burgundy accent + cream
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,700&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Design Tokens ── */
:root {
    --sh-accent: #A63446;
    --sh-accent-hover: #C04B5C;
    --sh-accent-dark: #8A2A3A;
    --sh-accent-soft: rgba(166, 52, 70, 0.08);
    --sh-accent-glow: rgba(166, 52, 70, 0.3);
    --sh-navy: #0D0E11;
    --sh-navy-mid: #15161A;
    --sh-surface: #FAF9F6;
    --sh-surface-warm: #FFF7F0;
    --sh-white: #ffffff;
    --sh-text: #1A1A1F;
    --sh-text-sub: #52555C;
    --sh-text-muted: #8E9099;
    --sh-border: #E5E3DE;
    --sh-border-light: #F0EEE9;
    --sh-emerald: #22A96B;
    --sh-radius: 14px;
    --sh-radius-sm: 10px;
    --sh-radius-full: 100px;
    --sh-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --sh-font-display: 'Playfair Display', Georgia, serif;
    --sh-font-body: 'DM Sans', 'Inter', system-ui, sans-serif;
}


/* ── 0. Utility ──────────────────────────────────────────────────── */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ── 1. Shop Main / Container ────────────────────────────────────── */

.shop-main {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
}


/* ── 2. Sub-Navigation ───────────────────────────────────────────── */

.shop-subnav {
    position: sticky;
    top: 72px;
    z-index: 90;
    background: var(--sh-white);
    border-bottom: 1px solid var(--sh-border-light);
}

.shop-subnav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 56px;
}

.shop-subnav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-width: 0;
}

.shop-subnav-links::-webkit-scrollbar {
    display: none;
}

.shop-subnav-link {
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--sh-text-sub);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--sh-radius-full);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.shop-subnav-link:hover {
    color: var(--sh-text);
    background: var(--sh-accent-soft);
}

.shop-subnav-link.active {
    color: var(--sh-accent);
    background: var(--sh-accent-soft);
    font-weight: 600;
}

.shop-subnav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}


/* ── 3. Search Form ──────────────────────────────────────────────── */

.shop-search-form {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.shop-search-form input {
    width: 100%;
    padding: 8px 16px 8px 38px;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-full);
    font-size: 14px;
    font-family: var(--sh-font-body);
    background: var(--sh-surface);
    transition: all 0.2s ease;
    color: var(--sh-text);
}

.shop-search-form input::placeholder {
    color: var(--sh-text-muted);
}

.shop-search-form input:focus {
    outline: none;
    border-color: var(--sh-accent);
    background: var(--sh-white);
    box-shadow: 0 0 0 3px rgba(166, 52, 70, 0.08);
}

.shop-search-form svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sh-text-muted);
    pointer-events: none;
    width: 16px;
    height: 16px;
}

.shop-search-form button {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--sh-text-muted);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}


/* ── 4. Cart Icon & Badge ────────────────────────────────────────── */

.shop-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--sh-radius-sm);
    color: var(--sh-text-sub);
    text-decoration: none;
    transition: all 0.2s ease;
}

.shop-cart-icon:hover {
    background: var(--sh-accent-soft);
    color: var(--sh-accent);
}

.shop-cart-icon svg {
    width: 22px;
    height: 22px;
}

.shop-cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: var(--sh-radius-full);
    background: var(--sh-accent);
    color: var(--sh-white);
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    pointer-events: none;
}


/* ── 5. Hero Section ─────────────────────────────────────────────── */

.shop-hero {
    position: relative;
    padding: 72px 0 56px;
    background: var(--sh-surface);
    overflow: hidden;
    text-align: center;
}

.shop-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 52, 70, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -120px;
    pointer-events: none;
}

.shop-hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 52, 70, 0.03) 0%, transparent 70%);
    bottom: -120px;
    left: -80px;
    pointer-events: none;
}

.shop-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 32px;
}

.shop-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--sh-accent-soft);
    border: 1px solid rgba(166, 52, 70, 0.18);
    border-radius: var(--sh-radius-full);
    padding: 7px 20px;
    font-family: var(--sh-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--sh-accent);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.shop-hero-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sh-emerald);
    animation: shopPulse 2s ease-in-out infinite;
}

@keyframes shopPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.shop-hero-inner h1 {
    font-family: var(--sh-font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.shop-hero-inner h1 em {
    font-style: italic;
    color: var(--sh-accent);
}

.shop-hero-subtitle {
    font-family: var(--sh-font-body);
    font-size: 17px;
    color: var(--sh-text-sub);
    margin: 0 0 28px;
    line-height: 1.7;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.shop-hero-search {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.shop-hero-search input {
    width: 100%;
    padding: 14px 110px 14px 24px;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-full);
    font-size: 16px;
    font-family: var(--sh-font-body);
    background: var(--sh-white);
    color: var(--sh-text);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.shop-hero-search input::placeholder {
    color: var(--sh-text-muted);
}

.shop-hero-search input:focus {
    outline: none;
    border-color: var(--sh-accent);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(166, 52, 70, 0.08);
}

.shop-hero-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 9px 22px;
    border: none;
    border-radius: var(--sh-radius-full);
    background: linear-gradient(135deg, var(--sh-accent), var(--sh-accent-dark));
    color: var(--sh-white);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--sh-font-body);
    cursor: pointer;
    transition: all 0.25s ease;
}

.shop-hero-search button:hover {
    box-shadow: 0 4px 16px var(--sh-accent-glow);
    transform: translateY(-50%) translateY(-1px);
}


/* ── 6. Section Wrappers ─────────────────────────────────────────── */

.shop-section {
    padding: 56px 0;
}

.shop-section--alt {
    padding: 56px 0;
    background: var(--sh-surface);
    border-top: 1px solid var(--sh-border-light);
    border-bottom: 1px solid var(--sh-border-light);
}

.shop-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.shop-section-header h2 {
    font-family: var(--sh-font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0;
    letter-spacing: -0.3px;
}

.shop-section-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--sh-accent);
    text-decoration: none;
    transition: gap 0.2s;
}

.shop-section-link:hover {
    gap: 8px;
    text-decoration: none;
    color: var(--sh-accent-hover);
}


/* ── 7. Product Grid ─────────────────────────────────────────────── */

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.shop-product-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}


/* ── 8. Product Card ─────────────────────────────────────────────── */

.shop-product-card {
    background: var(--sh-white);
    border: 1px solid var(--sh-border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.shop-product-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: var(--sh-border);
}

.shop-product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shop-product-card-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: var(--sh-surface);
}

.shop-product-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--sh-ease);
}

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

.shop-product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: var(--sh-radius-full);
    font-family: var(--sh-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.shop-product-card-badge--sale {
    background: var(--sh-accent);
    color: var(--sh-white);
}

.shop-product-card-badge--low-stock {
    background: #fef3c7;
    color: #92400e;
}

.shop-product-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shop-product-card-category {
    font-family: var(--sh-font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sh-accent);
    margin-bottom: 6px;
}

.shop-product-card-name {
    font-family: var(--sh-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 8px;
    line-height: 1.35;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-product-card-rating {
    margin-bottom: 10px;
}

.shop-product-card-review-count {
    font-family: var(--sh-font-body);
    font-size: 13px;
    color: var(--sh-text-muted);
    margin-left: 4px;
    font-weight: 500;
}

.shop-product-card-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 14px;
}

.shop-product-card-current-price {
    font-family: var(--sh-font-body);
    font-size: 18px;
    font-weight: 800;
    color: var(--sh-text);
    letter-spacing: -0.02em;
}

.shop-product-card-compare-price {
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-muted);
    text-decoration: line-through;
}

.shop-product-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: var(--sh-radius-sm);
    font-family: var(--sh-font-body);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1.4;
    background: linear-gradient(135deg, var(--sh-accent), var(--sh-accent-dark));
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: var(--sh-white);
    border-color: transparent;
}

.shop-product-card-btn:hover {
    background-position: 100% 50%;
    color: var(--sh-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--sh-accent-glow);
}

.shop-product-card-btn--amazon {
    background: #ff9900;
    background-size: auto;
    border-color: #ff9900;
    color: var(--sh-white);
}

.shop-product-card-btn--amazon:hover {
    background: #e68a00;
    border-color: #e68a00;
    color: var(--sh-white);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.shop-product-card-btn--disabled {
    background: var(--sh-border-light);
    background-size: auto;
    border-color: var(--sh-border-light);
    color: var(--sh-text-muted);
    cursor: not-allowed;
    pointer-events: none;
}


/* ── 9. Category Grid & Cards ────────────────────────────────────── */

.shop-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.shop-category-card {
    background: var(--sh-white);
    border: 1px solid var(--sh-border-light);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.shop-category-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: var(--sh-border);
}

.shop-category-card-image {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: var(--sh-surface);
}

.shop-category-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--sh-ease);
}

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

.shop-category-card-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sh-surface) 0%, var(--sh-border-light) 100%);
    padding-top: 60%;
    position: relative;
}

.shop-category-card-image--placeholder svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    color: var(--sh-border);
}

.shop-category-card-body {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-category-card-body h3 {
    font-family: var(--sh-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0;
}

.shop-category-card-count {
    font-family: var(--sh-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--sh-accent);
    background: var(--sh-accent-soft);
    padding: 3px 10px;
    border-radius: var(--sh-radius-full);
}


/* ── 10. Trust Section ───────────────────────────────────────────── */

.shop-trust {
    padding: 64px 0;
    background: var(--sh-surface-warm);
    border-top: 1px solid var(--sh-border-light);
}

.shop-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.shop-trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: var(--sh-white);
    border: 1px solid var(--sh-border-light);
    border-radius: 16px;
    transition: box-shadow 0.3s ease;
}

.shop-trust-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.shop-trust-card h3 {
    font-family: var(--sh-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 14px 0 6px;
}

.shop-trust-card p {
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-sub);
    margin: 0;
    line-height: 1.65;
}

.shop-trust-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--sh-radius-sm);
    background: var(--sh-accent-soft);
    color: var(--sh-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-trust-icon svg {
    width: 24px;
    height: 24px;
}


/* ── 11. Breadcrumbs ─────────────────────────────────────────────── */

.shop-breadcrumbs {
    padding: 14px 0;
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-muted);
}

.shop-breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-breadcrumbs-item {
    display: inline-flex;
    align-items: center;
}

.shop-breadcrumbs-item a {
    color: var(--sh-text-sub);
    text-decoration: none;
    transition: color 0.2s ease;
}

.shop-breadcrumbs-item a:hover {
    color: var(--sh-accent);
}

.shop-breadcrumbs-item.current {
    color: var(--sh-text);
    font-weight: 600;
}

.shop-breadcrumbs-sep {
    color: var(--sh-border);
    font-size: 12px;
    -webkit-user-select: none;
    user-select: none;
    margin: 0 2px;
}


/* ── 12. Filters Sidebar ─────────────────────────────────────────── */

.shop-filters {
    position: sticky;
    top: 160px;
    align-self: start;
}

.shop-filters-sidebar {
    background: var(--sh-white);
    border: 1px solid var(--sh-border-light);
    border-radius: 16px;
    padding: 20px;
}

.shop-filters-body {
    display: flex;
    flex-direction: column;
}

.shop-filters-toggle {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--sh-white);
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-sm);
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--sh-text);
    cursor: pointer;
    margin-bottom: 16px;
}

.shop-filters-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--sh-text-muted);
}

.shop-filter-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sh-border-light);
}

.shop-filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.shop-filter-heading {
    font-family: var(--sh-font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sh-text-muted);
    margin: 0 0 12px;
}

.shop-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-filter-list li {
    margin-bottom: 2px;
}

.shop-filter-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-sub);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s ease;
}

.shop-filter-link:hover {
    color: var(--sh-accent);
}

.shop-filter-link.active {
    color: var(--sh-accent);
    font-weight: 600;
}

.shop-filter-count {
    font-size: 12px;
    color: var(--sh-text-muted);
    margin-left: auto;
}

.shop-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-sub);
    padding: 5px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.shop-filter-checkbox:hover {
    color: var(--sh-text);
}

.shop-filter-checkbox input[type="checkbox"],
.shop-filter-checkbox input[type="radio"] {
    accent-color: var(--sh-accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}


/* ── 13. Product Listing Layout ──────────────────────────────────── */

.shop-listing-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    padding: 32px 0;
}

.shop-listing-main {
    min-width: 0;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.shop-toolbar-count {
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-muted);
}

.shop-toolbar-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-sub);
}

.shop-toolbar-sort select {
    padding: 6px 12px;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-sm);
    font-size: 14px;
    font-family: var(--sh-font-body);
    color: var(--sh-text);
    background: var(--sh-white);
    cursor: pointer;
    appearance: auto;
}

.shop-toolbar-sort select:focus {
    outline: none;
    border-color: var(--sh-accent);
    box-shadow: 0 0 0 3px rgba(166, 52, 70, 0.08);
}

.shop-category-hero {
    position: relative;
    padding: 56px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--sh-surface);
    overflow: hidden;
}

.shop-category-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 52, 70, 0.05) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.shop-category-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(166, 52, 70, 0.03) 0%, transparent 70%);
    bottom: -100px;
    left: -60px;
    pointer-events: none;
}

.shop-category-hero > * {
    position: relative;
    z-index: 2;
}

.shop-category-hero h1 {
    font-family: var(--sh-font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 10px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.shop-category-hero p {
    font-family: var(--sh-font-body);
    font-size: 17px;
    color: var(--sh-text-sub);
    margin: 0;
    max-width: 520px;
    line-height: 1.7;
}


/* ── 14. Pagination ──────────────────────────────────────────────── */

.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 32px 0;
    flex-wrap: wrap;
}

.shop-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--sh-border-light);
    border-radius: var(--sh-radius-sm);
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--sh-text-sub);
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--sh-white);
}

.shop-pagination-link:hover {
    border-color: var(--sh-accent);
    color: var(--sh-accent);
    background: var(--sh-accent-soft);
}

.shop-pagination-link.active {
    background: linear-gradient(135deg, var(--sh-accent), var(--sh-accent-dark));
    border-color: transparent;
    color: var(--sh-white);
    font-weight: 600;
}

.shop-pagination-prev,
.shop-pagination-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid var(--sh-border-light);
    border-radius: var(--sh-radius-sm);
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--sh-text-sub);
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--sh-white);
}

.shop-pagination-prev:hover,
.shop-pagination-next:hover {
    border-color: var(--sh-border);
    color: var(--sh-text);
    background: var(--sh-surface);
}

.shop-pagination-prev.disabled,
.shop-pagination-next.disabled {
    color: var(--sh-border);
    pointer-events: none;
    background: var(--sh-surface);
}

.shop-pagination-info {
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-muted);
    padding: 0 12px;
}


/* ── 15. Product Detail ──────────────────────────────────────────── */

.shop-product-detail {
    padding: 40px 0;
}

.shop-product-detail-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.shop-product-gallery {
    position: sticky;
    top: 160px;
}

.shop-product-gallery-main {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: var(--sh-surface);
    margin-bottom: 12px;
}

.shop-product-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.shop-product-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.shop-product-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.shop-product-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: var(--sh-radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease;
    background: var(--sh-surface);
}

.shop-product-thumb:hover {
    border-color: var(--sh-border);
}

.shop-product-thumb.active {
    border-color: var(--sh-accent);
}

.shop-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-product-info {
    display: flex;
    flex-direction: column;
}

.shop-product-info h1 {
    font-family: var(--sh-font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 12px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.shop-product-category-badge {
    display: inline-block;
    font-family: var(--sh-font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sh-accent);
    background: var(--sh-accent-soft);
    padding: 4px 12px;
    border-radius: var(--sh-radius-full);
    margin-bottom: 12px;
}

.shop-product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.shop-product-current-price {
    font-family: var(--sh-font-body);
    font-size: 28px;
    font-weight: 800;
    color: var(--sh-text);
    letter-spacing: -0.02em;
}

.shop-product-compare-price {
    font-family: var(--sh-font-body);
    font-size: 18px;
    color: var(--sh-text-muted);
    text-decoration: line-through;
}

.shop-product-save-badge {
    font-family: var(--sh-font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--sh-accent);
    background: rgba(166, 52, 70, 0.08);
    padding: 3px 10px;
    border-radius: var(--sh-radius-full);
}

.shop-product-availability {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--sh-radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.shop-product-availability--in_stock {
    background: #d1fae5;
    color: #065f46;
}

.shop-product-availability--low_stock {
    background: #fef3c7;
    color: #92400e;
}

.shop-product-availability--out_of_stock {
    background: #fee2e2;
    color: #991b1b;
}

.shop-product-availability--pre_order {
    background: #dbeafe;
    color: #1e40af;
}

.shop-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.shop-product-rating-text {
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-muted);
}

.shop-product-short-desc {
    font-family: var(--sh-font-body);
    font-size: 15px;
    color: var(--sh-text-sub);
    line-height: 1.7;
    margin-bottom: 20px;
}

.shop-product-description {
    font-family: var(--sh-font-body);
    font-size: 15px;
    color: var(--sh-text-sub);
    line-height: 1.7;
    margin: 16px 0 24px;
}

.shop-product-description p {
    margin: 0 0 12px;
}

.shop-product-description p:last-child {
    margin-bottom: 0;
}

.shop-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.shop-product-features li {
    position: relative;
    padding: 6px 0 6px 28px;
    font-family: var(--sh-font-body);
    font-size: 15px;
    color: var(--sh-text-sub);
    line-height: 1.5;
}

.shop-product-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(34, 169, 107, 0.1);
    color: var(--sh-emerald);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-product-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-family: var(--sh-font-body);
    font-size: 14px;
}

.shop-product-specs-table tr:nth-child(even) {
    background: var(--sh-surface);
}

.shop-product-specs-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--sh-border-light);
}

.shop-product-specs-table td:first-child {
    font-weight: 600;
    color: var(--sh-text);
    width: 40%;
    white-space: nowrap;
}

.shop-product-specs-table td:last-child {
    color: var(--sh-text-sub);
}

.shop-product-add-to-cart {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--sh-border-light);
    margin-top: 8px;
}

.shop-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: var(--sh-radius-sm);
    font-family: var(--sh-font-body);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1.4;
    background: linear-gradient(135deg, var(--sh-accent), var(--sh-accent-dark));
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: var(--sh-white);
}

.shop-product-btn:hover {
    background-position: 100% 50%;
    color: var(--sh-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--sh-accent-glow);
}

.shop-product-btn--amazon {
    background: #ff9900;
    background-size: auto;
    border-color: #ff9900;
    color: #111;
    font-weight: 700;
}

.shop-product-btn--amazon:hover {
    background: #e68a00;
    border-color: #e68a00;
    color: #111;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.shop-product-section {
    padding: 32px 0;
    border-top: 1px solid var(--sh-border-light);
    margin-top: 32px;
}

.shop-product-section h2 {
    font-family: var(--sh-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 20px;
    letter-spacing: -0.3px;
}


/* ── 16. Quantity Stepper ────────────────────────────────────────── */

.shop-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.shop-qty-stepper--cart {
    border-color: var(--sh-border-light);
}

.shop-qty-btn {
    width: 40px;
    height: 40px;
    background: var(--sh-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--sh-text-sub);
    transition: all 0.2s ease;
    font-family: var(--sh-font-body);
}

.shop-qty-btn:hover {
    background: var(--sh-surface);
    color: var(--sh-text);
}

.shop-qty-btn:active {
    background: var(--sh-border-light);
}

.shop-qty-btn:disabled {
    color: var(--sh-border);
    cursor: not-allowed;
    background: var(--sh-white);
}

.shop-qty-input {
    width: 50px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--sh-border);
    border-right: 1px solid var(--sh-border);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--sh-font-body);
    color: var(--sh-text);
    background: var(--sh-white);
    -moz-appearance: textfield;
    appearance: textfield;
}

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

.shop-qty-input:focus {
    outline: none;
    background: var(--sh-surface);
}

.shop-qty-input--cart {
    width: 44px;
    height: 36px;
    border-color: var(--sh-border-light);
}

.shop-qty-stepper--cart .shop-qty-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
}


/* ── 17. Star Rating (unprefixed — from template tags) ───────────── */

.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    line-height: 1;
}

.star-rating .star {
    color: #f59e0b;
}

.star-rating .star-empty {
    color: var(--sh-border);
}

.star-rating .rating-count {
    font-family: var(--sh-font-body);
    font-size: 13px;
    color: var(--sh-text-muted);
    margin-left: 6px;
    font-weight: 500;
}


/* ── 18. Trust Badges (product detail) ───────────────────────────── */

.shop-product-trust-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid var(--sh-border-light);
}

.shop-product-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sh-font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--sh-text-muted);
}

.shop-product-trust-badge svg {
    width: 18px;
    height: 18px;
    color: var(--sh-text-muted);
    flex-shrink: 0;
}


/* ── 19. Amazon Affiliate ────────────────────────────────────────── */

.shop-product-amazon-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ff9900;
    border: 1px solid #e68a00;
    border-radius: var(--sh-radius-sm);
    font-size: 14px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    transition: all 0.2s ease;
}

.shop-product-amazon-link:hover {
    background: #e68a00;
    color: #111;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

.shop-product-amazon-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.shop-product-ftc-disclosure {
    font-family: var(--sh-font-body);
    font-size: 12px;
    font-style: italic;
    color: var(--sh-text-muted);
    margin-top: 8px;
    line-height: 1.5;
}


/* ── 20. Reviews ─────────────────────────────────────────────────── */

.shop-reviews-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--sh-border-light);
}

.shop-reviews-summary-number {
    font-family: var(--sh-font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--sh-text);
    letter-spacing: -0.5px;
}

.shop-reviews-summary-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shop-reviews-summary-count {
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-muted);
}

.shop-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shop-review-card {
    background: var(--sh-white);
    border: 1px solid var(--sh-border-light);
    border-radius: var(--sh-radius);
    padding: 20px;
}

.shop-review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.shop-review-rating {
    flex-shrink: 0;
}

.shop-review-title {
    font-family: var(--sh-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 8px;
}

.shop-review-body {
    font-family: var(--sh-font-body);
    font-size: 15px;
    color: var(--sh-text-sub);
    line-height: 1.7;
    margin: 0 0 12px;
}

.shop-review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-family: var(--sh-font-body);
    font-size: 14px;
}

.shop-review-author {
    font-weight: 600;
    color: var(--sh-text);
}

.shop-review-date {
    color: var(--sh-text-muted);
}

.shop-review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--sh-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--sh-emerald);
    background: rgba(34, 169, 107, 0.08);
    padding: 2px 8px;
    border-radius: var(--sh-radius-full);
}

.shop-reviews-empty {
    text-align: center;
    padding: 48px 32px;
    color: var(--sh-text-muted);
    font-family: var(--sh-font-body);
    font-size: 15px;
}


/* ── 21. Cart Page ───────────────────────────────────────────────── */

.shop-cart-page {
    padding: 32px 0;
}

.shop-cart-page h1 {
    font-family: var(--sh-font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}

.shop-cart-count {
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-muted);
    margin-bottom: 24px;
}

.shop-cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.shop-cart-items {
    min-width: 0;
}

.shop-cart-table {
    width: 100%;
    border-collapse: collapse;
}

.shop-cart-table-head th {
    text-align: left;
    padding: 12px 16px;
    background: var(--sh-surface);
    border-bottom: 2px solid var(--sh-border-light);
    font-family: var(--sh-font-body);
    font-weight: 600;
    color: var(--sh-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.shop-cart-row {
    border-bottom: 1px solid var(--sh-border-light);
}

.shop-cart-row td {
    padding: 16px;
    vertical-align: middle;
}

.shop-cart-cell {
    padding: 16px;
    vertical-align: middle;
}

.shop-cart-cell--product {
    min-width: 300px;
}

.shop-cart-cell--price {
    white-space: nowrap;
    font-family: var(--sh-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--sh-text-sub);
}

.shop-cart-cell--qty {
    white-space: nowrap;
}

.shop-cart-cell--total {
    white-space: nowrap;
}

.shop-cart-cell--remove {
    text-align: center;
    width: 60px;
}

.shop-cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shop-cart-product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shop-cart-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: var(--sh-radius-sm);
    overflow: hidden;
    background: var(--sh-surface);
}

.shop-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-cart-product-name {
    font-family: var(--sh-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--sh-text);
    text-decoration: none;
    line-height: 1.35;
}

.shop-cart-product-name:hover {
    color: var(--sh-accent);
}

.shop-cart-product-sku {
    font-family: var(--sh-font-body);
    font-size: 13px;
    color: var(--sh-text-muted);
}

.shop-cart-line-total {
    font-family: var(--sh-font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--sh-text);
}

.shop-cart-remove-btn {
    background: none;
    border: none;
    color: var(--sh-text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: var(--sh-radius-sm);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shop-cart-remove-btn:hover {
    color: var(--sh-accent);
    background: rgba(166, 52, 70, 0.06);
}

.shop-cart-remove-btn svg {
    width: 18px;
    height: 18px;
}

.shop-cart-summary {
    background: var(--sh-white);
    border: 1px solid var(--sh-border-light);
    border-radius: 16px;
    padding: 28px;
    position: sticky;
    top: 160px;
}

.shop-cart-summary h3 {
    font-family: var(--sh-font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 20px;
}

.shop-cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-family: var(--sh-font-body);
    font-size: 15px;
}

.shop-cart-summary-row span:first-child {
    color: var(--sh-text-sub);
}

.shop-cart-summary-row span:last-child {
    font-weight: 600;
    color: var(--sh-text);
}

.shop-cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--sh-border-light);
    margin-top: 12px;
    padding-top: 16px;
}

.shop-cart-summary-total span:first-child {
    font-family: var(--sh-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--sh-text);
}

.shop-cart-summary-total span:last-child {
    font-family: var(--sh-font-body);
    font-size: 22px;
    font-weight: 800;
    color: var(--sh-accent);
    letter-spacing: -0.02em;
}

.shop-cart-summary-note {
    font-family: var(--sh-font-body);
    font-size: 12px;
    color: var(--sh-text-muted);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

.shop-cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 20px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: var(--sh-radius-sm);
    font-family: var(--sh-font-body);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    background: linear-gradient(135deg, var(--sh-accent), var(--sh-accent-dark));
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: var(--sh-white);
}

.shop-cart-checkout-btn:hover {
    background-position: 100% 50%;
    color: var(--sh-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--sh-accent-glow);
}

.shop-cart-continue {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--sh-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.shop-cart-continue:hover {
    color: var(--sh-accent);
}

.shop-empty-state {
    text-align: center;
    padding: 80px 32px;
}

.shop-empty-state svg {
    width: 64px;
    height: 64px;
    color: var(--sh-border);
    margin-bottom: 16px;
}

.shop-empty-state h2 {
    font-family: var(--sh-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 8px;
}

.shop-empty-state p {
    font-family: var(--sh-font-body);
    font-size: 16px;
    color: var(--sh-text-sub);
    margin: 0 0 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}


/* ── 22. Cart Cards (mobile layout) ──────────────────────────────── */

.shop-cart-cards {
    display: none;
}

.shop-cart-card {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--sh-border-light);
}

.shop-cart-card:last-child {
    border-bottom: none;
}

.shop-cart-card .shop-cart-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
}

.shop-cart-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shop-cart-card-price {
    font-family: var(--sh-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--sh-accent);
}


/* ── 23. Cart Drawer ─────────────────────────────────────────────── */

.shop-cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    z-index: 200;
    background: var(--sh-white);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.shop-cart-drawer.open {
    right: 0;
}

.shop-cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.shop-cart-drawer-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--sh-border-light);
}

.shop-cart-drawer-item:last-child {
    border-bottom: none;
}

.shop-cart-drawer-thumb {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--sh-radius-sm);
    overflow: hidden;
    background: var(--sh-surface);
}

.shop-cart-drawer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-cart-drawer-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shop-cart-drawer-name {
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--sh-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-cart-drawer-qty {
    font-family: var(--sh-font-body);
    font-size: 13px;
    color: var(--sh-text-muted);
}

.shop-cart-drawer-total {
    padding: 16px 20px;
    border-top: 2px solid var(--sh-border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--sh-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--sh-text);
}

.shop-cart-drawer-total span:last-child {
    font-size: 20px;
    font-weight: 800;
    color: var(--sh-accent);
}

.shop-cart-drawer-actions {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shop-cart-drawer-actions .btn {
    width: 100%;
    padding: 12px 24px;
}

.shop-cart-drawer-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--sh-text-muted);
    font-family: var(--sh-font-body);
    font-size: 15px;
}

.shop-cart-drawer-more {
    text-align: center;
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-muted);
    padding: 8px 0;
}


/* ── 24. Checkout ────────────────────────────────────────────────── */

.shop-checkout-page {
    padding: 32px 0;
}

.shop-checkout-page h1 {
    font-family: var(--sh-font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 24px;
    letter-spacing: -0.3px;
}

.shop-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.shop-checkout-form-area {
    min-width: 0;
}

.shop-checkout-section {
    border: none;
    padding: 0;
    margin: 0 0 32px;
}

.shop-checkout-section legend,
.shop-checkout-section h3 {
    font-family: var(--sh-font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--sh-text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sh-border-light);
    width: 100%;
    display: block;
}

.shop-checkout-errors {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: var(--sh-radius-sm);
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.shop-checkout-errors ul {
    margin: 4px 0 0;
    padding-left: 20px;
}

.shop-form-group {
    margin-bottom: 20px;
}

.shop-form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--sh-font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--sh-text);
}

.shop-form-group input,
.shop-form-group select,
.shop-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-sm);
    font-size: 14px;
    font-family: var(--sh-font-body);
    transition: all 0.2s ease;
    background: var(--sh-white);
    color: var(--sh-text);
}

.shop-form-group input:focus,
.shop-form-group select:focus,
.shop-form-group textarea:focus {
    outline: none;
    border-color: var(--sh-accent);
    box-shadow: 0 0 0 3px rgba(166, 52, 70, 0.08);
}

.shop-form-group select {
    appearance: auto;
}

.shop-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.shop-field-error {
    font-size: 12px;
    color: #991b1b;
    margin-top: 4px;
}

.shop-checkout-summary {
    position: sticky;
    top: 160px;
    background: var(--sh-white);
    border: 1px solid var(--sh-border-light);
    border-radius: 16px;
    padding: 28px;
}

.shop-checkout-summary h3 {
    font-family: var(--sh-font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--sh-border-light);
}

.shop-checkout-items {
    margin-bottom: 16px;
}

.shop-checkout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--sh-border-light);
}

.shop-checkout-item:last-child {
    border-bottom: none;
}

.shop-checkout-item-image {
    position: relative;
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--sh-radius-sm);
    overflow: hidden;
    background: var(--sh-surface);
}

.shop-checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-checkout-item-qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: var(--sh-radius-full);
    background: var(--sh-accent);
    color: var(--sh-white);
    font-family: var(--sh-font-body);
    font-size: 11px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

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

.shop-checkout-item-name {
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--sh-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-checkout-item-price {
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--sh-text-sub);
    flex-shrink: 0;
}

.shop-checkout-totals {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--sh-border-light);
}

.shop-checkout-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-family: var(--sh-font-body);
    font-size: 15px;
}

.shop-checkout-totals-row span:first-child {
    color: var(--sh-text-sub);
}

.shop-checkout-totals-row span:last-child {
    font-weight: 600;
    color: var(--sh-text);
}

.shop-checkout-totals-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--sh-border-light);
    margin-top: 8px;
    padding-top: 12px;
}

.shop-checkout-totals-total span:first-child {
    font-family: var(--sh-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--sh-text);
}

.shop-checkout-totals-total span:last-child {
    font-family: var(--sh-font-body);
    font-size: 22px;
    font-weight: 800;
    color: var(--sh-accent);
    letter-spacing: -0.02em;
}

.shop-checkout-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 20px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: var(--sh-radius-sm);
    font-family: var(--sh-font-body);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    background: linear-gradient(135deg, var(--sh-accent), var(--sh-accent-dark));
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: var(--sh-white);
}

.shop-checkout-submit:hover {
    background-position: 100% 50%;
    color: var(--sh-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--sh-accent-glow);
}

.shop-checkout-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.shop-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--sh-white);
    border-radius: 50%;
    animation: shop-spin 0.6s linear infinite;
}

@keyframes shop-spin {
    to { transform: rotate(360deg); }
}


/* ── 25. Order Confirmation ──────────────────────────────────────── */

.shop-order-confirm {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
    background: var(--sh-white);
    border: 1px solid var(--sh-border-light);
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.shop-order-confirm h1 {
    font-family: var(--sh-font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}

.shop-order-confirm-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(52, 211, 153, 0.1) 100%);
    color: var(--sh-emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.shop-order-confirm-icon svg {
    width: 36px;
    height: 36px;
}

.shop-order-confirm-number {
    font-family: var(--sh-font-body);
    font-size: 16px;
    color: var(--sh-text-muted);
    margin: 0 0 12px;
}

.shop-order-confirm-number strong {
    color: var(--sh-text);
    font-weight: 700;
}

.shop-order-confirm-email {
    font-family: var(--sh-font-body);
    font-size: 15px;
    color: var(--sh-text-muted);
    margin: 0 0 28px;
    line-height: 1.5;
}

.shop-order-confirm-details {
    text-align: left;
    background: var(--sh-surface);
    border-radius: var(--sh-radius);
    padding: 20px 24px;
    margin-bottom: 28px;
}

.shop-order-confirm-details h3 {
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sh-text-muted);
    margin: 0 0 12px;
}

.shop-order-confirm-items {
    text-align: left;
    margin-bottom: 28px;
}

.shop-order-confirm-items h3 {
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sh-text-muted);
    margin: 0 0 12px;
}

.shop-order-confirm-shipping {
    text-align: left;
    background: var(--sh-surface);
    border-radius: var(--sh-radius);
    padding: 20px 24px;
    margin-bottom: 28px;
}

.shop-order-confirm-shipping h3 {
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sh-text-muted);
    margin: 0 0 8px;
}

.shop-order-confirm-shipping p {
    font-family: var(--sh-font-body);
    font-size: 15px;
    color: var(--sh-text-sub);
    line-height: 1.6;
    margin: 0;
}

.shop-order-confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.shop-order-confirm-actions .btn {
    min-width: 160px;
}

.shop-order-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 16px;
}

.shop-order-table thead th {
    text-align: left;
    padding: 12px 16px;
    background: var(--sh-surface);
    border-bottom: 2px solid var(--sh-border-light);
    font-family: var(--sh-font-body);
    font-weight: 600;
    color: var(--sh-text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.shop-order-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--sh-border-light);
    vertical-align: middle;
    font-family: var(--sh-font-body);
}

.shop-order-item-row {
    border-bottom: 1px solid var(--sh-border-light);
}

.shop-order-item-row td {
    padding: 12px 16px;
    vertical-align: middle;
}

.shop-order-item-thumb {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--sh-radius-sm);
    overflow: hidden;
    background: var(--sh-surface);
}

.shop-order-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-order-totals {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--sh-border-light);
}

.shop-order-totals-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-family: var(--sh-font-body);
    font-size: 15px;
}

.shop-order-totals-row span:first-child {
    color: var(--sh-text-sub);
}

.shop-order-totals-row span:last-child {
    font-weight: 600;
    color: var(--sh-text);
}

.shop-order-totals-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--sh-border-light);
    margin-top: 8px;
    padding-top: 12px;
}

.shop-order-totals-total span:first-child {
    font-family: var(--sh-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--sh-text);
}

.shop-order-totals-total span:last-child {
    font-family: var(--sh-font-body);
    font-size: 18px;
    font-weight: 800;
    color: var(--sh-accent);
}

.shop-order-address {
    font-family: var(--sh-font-body);
    font-size: 15px;
    color: var(--sh-text-sub);
    line-height: 1.6;
}

.shop-order-address strong {
    color: var(--sh-text);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}


/* ── 26. Order Detail Page ───────────────────────────────────────── */

.shop-order-detail-page {
    padding: 32px 0;
}

.shop-order-detail {
    background: var(--sh-white);
    border: 1px solid var(--sh-border-light);
    border-radius: 16px;
    overflow: hidden;
}

.shop-order-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--sh-border-light);
    flex-wrap: wrap;
    gap: 12px;
}

.shop-order-detail-header h1 {
    font-family: var(--sh-font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0;
    letter-spacing: -0.3px;
}

.shop-order-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.shop-order-detail-date {
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-muted);
}

.shop-order-detail-body {
    padding: 28px;
}

.shop-order-detail-items {
    margin-bottom: 28px;
}

.shop-order-detail-items h3 {
    font-family: var(--sh-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 16px;
}

.shop-order-detail-shipping {
    background: var(--sh-surface);
    border-radius: var(--sh-radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.shop-order-detail-shipping h3 {
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--sh-text-muted);
    margin: 0 0 8px;
}

.shop-order-detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--sh-border-light);
}

.shop-order-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--sh-radius-full);
    font-family: var(--sh-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: var(--sh-surface);
    color: var(--sh-text-sub);
}

.shop-order-status-badge--pending {
    background: #fef3c7;
    color: #92400e;
}

.shop-order-status-badge--paid {
    background: #d1fae5;
    color: #065f46;
}

.shop-order-status-badge--processing {
    background: #dbeafe;
    color: #1e40af;
}

.shop-order-status-badge--shipped {
    background: #e0e7ff;
    color: #3730a3;
}

.shop-order-status-badge--delivered {
    background: #d1fae5;
    color: #065f46;
}

.shop-order-status-badge--cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.shop-order-status-badge--refunded {
    background: var(--sh-surface);
    color: var(--sh-text-sub);
}

.shop-order-tracking {
    background: var(--sh-surface);
    border-radius: var(--sh-radius);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.shop-order-tracking h4 {
    font-family: var(--sh-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 8px;
}

.shop-order-tracking-number {
    font-size: 15px;
    font-weight: 700;
    color: var(--sh-accent);
    font-family: monospace;
}

.shop-order-tracking-number a {
    color: var(--sh-accent);
    text-decoration: underline;
}

.shop-order-tracking-number a:hover {
    color: var(--sh-accent-hover);
}

.shop-order-tracking-info {
    font-family: var(--sh-font-body);
    font-size: 14px;
    color: var(--sh-text-muted);
    margin-top: 4px;
}

.shop-order-notes {
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: var(--sh-radius);
    padding: 16px 20px;
    margin-bottom: 24px;
    font-family: var(--sh-font-body);
    font-size: 15px;
    color: #92400e;
    line-height: 1.6;
}

.shop-order-notes strong {
    display: block;
    margin-bottom: 4px;
    color: #78350f;
}

.shop-order-item-name {
    font-family: var(--sh-font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--sh-text);
}

.shop-order-item-sku {
    font-family: var(--sh-font-body);
    font-size: 13px;
    color: var(--sh-text-muted);
    margin-top: 2px;
}


/* ── 27. Order Lookup ────────────────────────────────────────────── */

.shop-order-lookup {
    max-width: 480px;
    margin: 60px auto;
    text-align: center;
    background: var(--sh-white);
    border: 1px solid var(--sh-border-light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.shop-order-lookup h1 {
    font-family: var(--sh-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--sh-text);
    margin: 0 0 8px;
}

.shop-order-lookup p {
    font-family: var(--sh-font-body);
    font-size: 15px;
    color: var(--sh-text-muted);
    margin: 0 0 28px;
}

.shop-order-lookup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.shop-order-lookup-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--sh-border);
    border-radius: var(--sh-radius-sm);
    font-size: 14px;
    font-family: var(--sh-font-body);
    transition: all 0.2s ease;
    background: var(--sh-white);
    color: var(--sh-text);
}

.shop-order-lookup-form input:focus {
    outline: none;
    border-color: var(--sh-accent);
    box-shadow: 0 0 0 3px rgba(166, 52, 70, 0.08);
}

.shop-order-lookup-form .btn {
    width: 100%;
    padding: 12px 24px;
}


/* ── 28. Mobile Sticky Cart ──────────────────────────────────────── */

.shop-mobile-sticky-cart {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--sh-white);
    border-top: 1px solid var(--sh-border-light);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.shop-mobile-sticky-cart-price {
    font-family: var(--sh-font-body);
    font-size: 20px;
    font-weight: 800;
    color: var(--sh-text);
    letter-spacing: -0.02em;
}

.shop-mobile-sticky-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    max-width: 240px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: var(--sh-radius-sm);
    font-family: var(--sh-font-body);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    background: linear-gradient(135deg, var(--sh-accent), var(--sh-accent-dark));
    color: var(--sh-white);
}

.shop-mobile-sticky-cart-btn:hover {
    box-shadow: 0 4px 16px var(--sh-accent-glow);
    color: var(--sh-white);
}


/* ═══════════════════════════════════════════════════════════════════
   29. Responsive Breakpoints
   ═══════════════════════════════════════════════════════════════════ */

/* ── Tablet (max-width: 768px) ───────────────────────────────────── */

@media (max-width: 768px) {

    /* Sub-navigation */
    .shop-subnav {
        top: 64px;
    }
    .shop-subnav-inner {
        padding: 0 20px;
        height: 52px;
    }
    .shop-search-form {
        max-width: 200px;
    }

    /* Hero */
    .shop-hero {
        padding: 56px 0 44px;
    }
    .shop-hero-inner h1 {
        font-size: 36px;
    }

    /* Category hero */
    .shop-category-hero {
        padding: 44px 24px;
    }
    .shop-category-hero h1 {
        font-size: 32px;
    }

    /* Listing layout */
    .shop-listing-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .shop-filters {
        display: none;
        position: static;
    }
    .shop-filters-sidebar {
        margin-bottom: 20px;
    }
    .shop-filters-toggle {
        display: flex;
    }

    /* Product grid */
    .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .shop-product-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Category grid */
    .shop-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Product detail */
    .shop-product-detail-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .shop-product-gallery {
        position: static;
    }
    .shop-product-info h1 {
        font-size: 24px;
    }
    .shop-product-current-price {
        font-size: 24px;
    }
    .shop-product-add-to-cart {
        flex-wrap: wrap;
    }

    /* Cart — hide table, show cards */
    .shop-cart-layout {
        grid-template-columns: 1fr;
    }
    .shop-cart-table {
        display: none;
    }
    .shop-cart-cards {
        display: block;
    }
    .shop-cart-summary {
        position: static;
    }

    /* Checkout */
    .shop-checkout-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .shop-checkout-summary {
        position: static;
        order: -1;
    }

    /* Order confirm */
    .shop-order-confirm {
        margin: 32px auto;
        padding: 36px 24px;
    }

    /* Trust badges */
    .shop-product-trust-badges {
        gap: 16px;
    }
    .shop-product-trust-badge {
        font-size: 12px;
    }

    /* Mobile sticky cart — show */
    .shop-mobile-sticky-cart {
        display: flex;
    }
    .shop-product-detail {
        padding-bottom: 72px;
    }

    /* Order detail */
    .shop-order-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Cart drawer */
    .shop-cart-drawer {
        width: 100%;
        right: -100%;
    }

    /* Reviews */
    .shop-review-header {
        flex-direction: column;
    }
}


/* ── Mobile (max-width: 480px) ───────────────────────────────────── */

@media (max-width: 480px) {

    /* Container */
    .shop-main {
        padding: 0 16px;
    }

    /* Sub-navigation */
    .shop-subnav-inner {
        padding: 0 16px;
        gap: 12px;
    }
    .shop-search-form {
        max-width: 160px;
    }
    .shop-subnav-link {
        font-size: 13px;
        padding: 6px 10px;
    }

    /* Hero */
    .shop-hero {
        padding: 44px 0 36px;
    }
    .shop-hero-inner {
        padding: 0 20px;
    }
    .shop-hero-inner h1 {
        font-size: 30px;
    }
    .shop-hero-subtitle {
        font-size: 15px;
    }
    .shop-hero-pill {
        font-size: 11px;
        padding: 5px 14px;
    }

    /* Category hero */
    .shop-category-hero {
        padding: 36px 20px;
    }
    .shop-category-hero h1 {
        font-size: 26px;
    }
    .shop-category-hero p {
        font-size: 14px;
    }

    /* Product grid */
    .shop-product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .shop-product-grid--4 {
        grid-template-columns: 1fr;
    }

    /* Category grid */
    .shop-category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Product card */
    .shop-product-card-body {
        padding: 14px;
    }
    .shop-product-card-name {
        font-size: 15px;
    }
    .shop-product-card-current-price {
        font-size: 16px;
    }

    /* Product detail */
    .shop-product-info h1 {
        font-size: 22px;
    }
    .shop-product-current-price {
        font-size: 22px;
    }
    .shop-product-compare-price {
        font-size: 16px;
    }
    .shop-product-thumb {
        width: 64px;
        height: 64px;
        min-width: 64px;
    }
    .shop-product-add-to-cart {
        flex-direction: column;
    }
    .shop-product-add-to-cart .shop-qty-stepper {
        width: 100%;
        justify-content: center;
    }
    .shop-product-add-to-cart .shop-product-btn {
        width: 100%;
    }

    /* Section header */
    .shop-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .shop-section-header h2 {
        font-size: 20px;
    }

    /* Checkout form */
    .shop-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Cart summary */
    .shop-cart-summary {
        padding: 20px;
    }
    .shop-cart-summary-total span:last-child {
        font-size: 20px;
    }

    /* Breadcrumbs */
    .shop-breadcrumbs {
        font-size: 11px;
        padding: 10px 0;
    }

    /* Order confirm */
    .shop-order-confirm {
        margin: 20px 16px;
        padding: 32px 20px;
        border-radius: 16px;
    }
    .shop-order-confirm h1 {
        font-size: 24px;
    }
    .shop-order-confirm-actions {
        flex-direction: column;
    }
    .shop-order-confirm-actions .btn {
        width: 100%;
    }

    /* Order lookup */
    .shop-order-lookup {
        margin: 20px 16px;
        padding: 28px 20px;
    }

    /* Reviews */
    .shop-review-card {
        padding: 16px;
    }

    /* Pagination */
    .shop-pagination-link {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .shop-pagination-prev,
    .shop-pagination-next {
        padding: 0 10px;
        font-size: 13px;
    }

    /* Trust section */
    .shop-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .shop-trust-card {
        padding: 16px 12px;
    }

    /* Section spacing */
    .shop-section {
        padding: 32px 0;
    }
    .shop-section--alt {
        padding: 32px 0;
    }

    /* Order detail */
    .shop-order-detail-body {
        padding: 20px;
    }
    .shop-order-detail-header {
        padding: 16px 20px;
    }
}
