/* ============================================================
   Of_Nation — Frontend CSS
   ============================================================ */

:root {
    --bg:          #0a0a0a;
    --surface:     #111111;
    --surface2:    #181818;
    --border:      #222222;
    --border2:     #2d2d2d;
    --text:        #e8e8e8;
    --text-muted:  #777;
    --text-dim:    #aaa;
    --gold:        #c8a96e;
    --gold-dark:   #a8893e;
    --gold-light:  #dfc08a;
    --green:       #25d366;
    --nav-h:       68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background:  var(--bg);
    color:       var(--text);
    font-size:   15px;
    line-height: 1.6;
    overflow-x:  hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    flex-shrink: 0;
}

.nav-logo span { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-link {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active { color: #fff; }

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 18px;
    font-size: 13px;
    color: var(--text-dim);
    transition: background 0.15s, color 0.15s;
}

.dropdown-item:hover {
    background: var(--surface2);
    color: var(--gold);
}

.dropdown-count {
    font-size: 11px;
    background: var(--surface2);
    color: var(--text-muted);
    padding: 2px 7px;
    border-radius: 10px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-btn {
    padding: 9px 20px;
    background: var(--gold);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-btn:hover { background: var(--gold-light); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.25s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--surface);
    z-index: 999;
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-link {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.5px;
}

.mobile-link:hover { color: var(--gold); }

.mobile-link-indent {
    padding-left: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.mobile-cat-label {
    padding: 16px 0 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-sm {
    padding: 8px 18px;
    font-size: 13px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.2s;
}
.btn-outline-sm:hover { color: var(--gold); border-color: var(--gold); }

.btn-lg {
    padding: 15px 32px;
    font-size: 15px;
}

.btn-wa {
    background: var(--green);
    color: #fff;
    font-weight: 700;
}
.btn-wa:hover {
    background: #1ebe57;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--nav-h) 24px 80px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(200, 169, 110, 0.08) 0%, transparent 65%),
        var(--bg);
    overflow: hidden;
}

.hero::before {
    content: 'OF_NATION';
    position: absolute;
    font-size: clamp(80px, 18vw, 220px);
    font-weight: 900;
    letter-spacing: -4px;
    color: rgba(255,255,255,0.025);
    pointer-events: none;
    user-select: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(200, 169, 110, 0.12);
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(44px, 8vw, 88px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    color: #fff;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--gold);
    display: block;
}

.hero-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Category Pills ──────────────────────────────────────── */
.cats-strip {
    padding: 0 0 48px;
    border-bottom: 1px solid var(--border);
}

.cats-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cat-pill {
    padding: 8px 20px;
    border-radius: 24px;
    border: 1px solid var(--border2);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--surface);
    transition: all 0.2s;
    cursor: pointer;
}

.cat-pill:hover,
.cat-pill.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 600;
}

/* ── Sections ────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-shop { padding-top: 40px; }

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

.section-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

/* ── Products Grid ───────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.product-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--border2);
    transform: translateY(-4px);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--surface2);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface2);
}

.product-img-placeholder.large { aspect-ratio: 1; }

.product-img-placeholder span {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--border2);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge-preorder {
    padding: 4px 10px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
}

.product-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.product-card:hover .product-hover { opacity: 1; }

.product-hover span {
    padding: 10px 24px;
    background: var(--gold);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.product-info { padding: 16px; }

.product-cat {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.product-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--gold);
}

.product-sizes-mini {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.product-sizes-mini span {
    font-size: 10px;
    padding: 2px 6px;
    border: 1px solid var(--border2);
    border-radius: 3px;
    color: var(--text-muted);
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(200,169,110,0.08) 0%, 
        transparent 50%,
        rgba(200,169,110,0.04) 100%
    );
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 460px;
    line-height: 1.7;
}

/* ── Shop Page ───────────────────────────────────────────── */
.shop-header {
    padding: calc(var(--nav-h) + 40px) 0 32px;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--border2); }
.breadcrumb span:last-child { color: var(--text); }

.shop-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

.shop-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: start;
}

/* Sidebar */
.shop-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }

.sidebar-section { margin-bottom: 32px; }

.sidebar-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 7px;
    font-size: 14px;
    color: var(--text-dim);
    transition: all 0.15s;
    margin-bottom: 2px;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(200,169,110,0.1);
    color: var(--gold);
}

.sidebar-count {
    font-size: 11px;
    background: var(--surface2);
    color: var(--text-muted);
    padding: 2px 7px;
    border-radius: 10px;
}

.sidebar-search {
    display: flex;
    gap: 0;
    border: 1px solid var(--border2);
    border-radius: 7px;
    overflow: hidden;
}

.sidebar-search input {
    flex: 1;
    background: var(--bg);
    border: none;
    padding: 10px 12px;
    color: var(--text);
    font-size: 13px;
    outline: none;
}

.sidebar-search button {
    background: var(--surface2);
    border: none;
    border-left: 1px solid var(--border2);
    padding: 0 14px;
    color: var(--gold);
    font-size: 16px;
    cursor: pointer;
    transition: background 0.15s;
}

.sidebar-search button:hover { background: var(--border); }

.clear-filters {
    font-size: 12px;
    color: #e57373;
    display: block;
    padding: 8px 12px;
}

.clear-filters:hover { color: #ef9a9a; }

/* Toolbar */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.shop-count {
    font-size: 14px;
    color: var(--text-muted);
}

.sort-form { display: flex; align-items: center; gap: 8px; }

.sort-select {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--text);
    font-size: 13px;
    outline: none;
    cursor: pointer;
}

.sort-select:focus { border-color: var(--gold); }

/* ── Product Detail ──────────────────────────────────────── */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery { position: sticky; top: calc(var(--nav-h) + 20px); }

.product-main-img {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--surface2);
    aspect-ratio: 3/4;
}

.product-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.product-cat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.product-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.product-price-lg {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.preorder-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(200,169,110,0.08);
    border: 1px solid rgba(200,169,110,0.2);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.5;
}

.preorder-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 6px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.product-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.product-option { margin-bottom: 24px; }

.option-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.option-required { color: #e57373; }

/* Size buttons */
.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    transition: all 0.2s;
}

.size-btn {
    padding: 10px 20px;
    border-radius: 7px;
    border: 1px solid var(--border2);
    background: var(--surface);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}

.size-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.size-btn.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.size-error {
    font-size: 13px;
    color: #e57373;
    margin-top: 8px;
}

.size-grid.shake {
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

/* Qty */
.qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1px solid var(--border2);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 42px;
    height: 42px;
    background: var(--surface2);
    border: none;
    color: var(--text);
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover { background: var(--border); }

.qty-input {
    width: 56px;
    height: 42px;
    text-align: center;
    background: var(--surface);
    border: none;
    border-left: 1px solid var(--border2);
    border-right: 1px solid var(--border2);
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    outline: none;
}

/* Product Actions */
.product-actions { margin-bottom: 24px; }

.btn-wa { width: 100%; justify-content: center; }

/* Trust badges */
.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.trust-item span:first-child { font-size: 16px; }

/* Related products */
.related-section { margin-top: 80px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
    padding-bottom: 48px;
}

.footer-brand { flex: 1; }

.footer-logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 7px;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.footer-wa:hover {
    background: rgba(37, 211, 102, 0.2);
}

.footer-links {
    display: flex;
    gap: 48px;
    flex-shrink: 0;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-link {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.15s;
}

.footer-link:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* ── Empty State ─────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.empty-icon { font-size: 48px; margin-bottom: 16px; }

.empty-state h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 10px;
}

.empty-state p { font-size: 15px; line-height: 1.6; }

.empty-state a { color: var(--gold); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .product-layout  { gap: 36px; }
    .shop-layout     { grid-template-columns: 190px 1fr; }
}

@media (max-width: 768px) {
    .nav-links   { display: none; }
    .hamburger   { display: flex; }

    .hero-title  { letter-spacing: -1px; }
    .hero-btns   { flex-direction: column; align-items: center; }

    .section     { padding: 52px 0; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }

    .product-layout { grid-template-columns: 1fr; gap: 32px; }
    .product-gallery { position: static; }
    .product-title  { font-size: 24px; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-text p { margin: 0 auto; }

    .footer-inner { flex-direction: column; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-info  { padding: 12px; }
    .product-name  { font-size: 13px; }
    .product-price { font-size: 14px; }
}