/* ============================================================
   GRAPHIKIA THEME — MAIN STYLESHEET
   Design: Dark Black + Champagne Gold
   ============================================================ */

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

:root {
  --bg:       #0C0C0C;
  --bg2:      #111111;
  --bg3:      #161616;
  --bg4:      #1C1C1C;
  --gold:     #C9A84D;
  --gold-lt:  #E2C06A;
  --gold-dim: rgba(201,168,77,.12);
  --gold-brd: rgba(201,168,77,.18);
  --white:    #F0EDE6;
  --muted:    rgba(240,237,230,.38);
  --muted2:   rgba(240,237,230,.22);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --radius:   6px;
  --max-w:    1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── UTILITIES ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.gold-rule { height: 1px; background: var(--gold-brd); }
.eyebrow {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono);
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .8rem;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }

.btn-gold {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--bg);
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  padding: .85rem 1.8rem; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--muted);
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .85rem 1.8rem;
  border: 1px solid rgba(240,237,230,.2); cursor: pointer;
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); transform: translateY(-2px); }

/* ── NAVIGATION ── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
#site-nav.scrolled {
  background: rgba(12,12,12,.92);
  backdrop-filter: blur(14px);
  border-color: var(--gold-brd);
}
.nav-logo {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none;
}
.nav-emblem {
  width: 28px; height: 28px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-emblem span {
  font-family: var(--font-display); font-size: 14px; color: var(--gold);
}
.nav-wordmark {
  font-family: var(--font-mono); font-size: .9rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--white);
}
.nav-links {
  display: flex; gap: 2.2rem;
}
.nav-links a {
  font-family: var(--font-mono); font-size: .85rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: #FFFFFF;
  transition: color .2s; position: relative; padding-bottom: 2px;
}
.nav-links a:hover, .nav-links a.current { color: var(--gold); }
.nav-links a.current::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
}
.nav-right { display: flex; align-items: center; gap: .8rem; }
.nav-cart {
  font-family: var(--font-mono); font-size: .9rem;
  letter-spacing: .1em; color: var(--muted); transition: color .2s;
}
.nav-cart:hover { color: var(--white); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { width: 22px; height: 1px; background: var(--white); transition: transform .3s, opacity .3s; }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--bg2);
  border-top: 1px solid var(--gold-brd);
  border-bottom: 1px solid var(--gold-brd);
  padding: .6rem 0; overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 2.5rem;
  animation: marquee 24s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 2.5rem;
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted2);
}
.marquee-diamond {
  width: 5px; height: 5px;
  background: var(--gold); transform: rotate(45deg); flex-shrink: 0; opacity: .7;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 60px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 60%, rgba(201,168,77,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; padding: 5rem 2rem; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 500; line-height: 1; letter-spacing: -.01em;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); display: block; }
.hero-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 520px;
  margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── SERVICES GRID ── */
.services-section { padding: 6rem 0; background: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--gold-brd);
  border: 1px solid var(--gold-brd); margin-top: 2.5rem;
}
.service-tile {
  background: var(--bg3); padding: 2rem 1.5rem;
  transition: background .25s; position: relative; overflow: hidden;
}
.service-tile:hover { background: var(--bg4); }
.service-tile::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .4s ease;
}
.service-tile:hover::after { width: 100%; }
.service-num {
  font-family: var(--font-display); font-size: 2.8rem; color: var(--gold-dim);
  line-height: 1; margin-bottom: 1rem; transition: color .25s;
}
.service-tile:hover .service-num { color: rgba(201,168,77,.25); }
.service-name {
  font-family: var(--font-display); font-size: 1.2rem; color: var(--white);
  margin-bottom: .5rem;
}
.service-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── PROJECTS / CARDS ── */
.projects-section { padding: 6rem 0; background: var(--bg2); border-top: 1px solid var(--gold-brd); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.1; }
.section-title em { font-style: italic; color: var(--gold); }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gold-brd); border: 1px solid var(--gold-brd); }
.project-card { background: var(--bg3); overflow: hidden; position: relative; cursor: pointer; }
.project-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg4); position: relative; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; filter: brightness(.85); }
.project-card:hover .project-card-img img { transform: scale(1.04); filter: brightness(1); }
.project-card-img .card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--muted2); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-mono); }
.project-card-body { padding: 1.2rem; }
.project-cat { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.project-name { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); }

/* ── STATS ROW ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--bg2); border-top: 1px solid var(--gold-brd); border-bottom: 1px solid var(--gold-brd);
}
.stat-item { padding: 2rem 1rem; text-align: center; border-right: 1px solid var(--gold-brd); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1; }
.stat-label { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; }

/* ── INNER PAGE HERO ── */
.page-hero {
  padding-top: 60px; background: var(--bg2);
  border-bottom: 1px solid var(--gold-brd);
}
.page-hero-inner { padding: 4rem 0; max-width: 700px; }
.page-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 400; line-height: 1.1; margin-bottom: 1rem; }
.page-title em { font-style: italic; color: var(--gold); }
.page-sub { font-size: .95rem; color: var(--muted); line-height: 1.75; max-width: 540px; }
.page-hero-actions { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--bg2); border-bottom: 1px solid var(--gold-brd); padding: .6rem 0; }
.breadcrumb span { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; color: var(--muted2); }
.breadcrumb span a { color: var(--muted); transition: color .2s; }
.breadcrumb span a:hover { color: var(--gold); }
.breadcrumb-sep { margin: 0 .5rem; opacity: .4; }

/* ── DETAIL GRID (services included) ── */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--gold-brd); border: 1px solid var(--gold-brd); margin-top: 2.5rem; }
.detail-cell { background: var(--bg3); padding: 2rem; }
.detail-cell-rule { width: 18px; height: 1px; background: var(--gold); margin-bottom: 1rem; }
.detail-cell h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--white); margin-bottom: .6rem; }
.detail-cell p { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ── CONTENT SECTION ── */
.content-section { padding: 5rem 0; }
.content-section + .content-section { border-top: 1px solid var(--gold-brd); }

/* ── SUPPORT CARDS ── */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.support-card {
  background: var(--bg3); border: 1px solid var(--gold-brd); padding: 2rem;
  transition: border-color .25s, background .25s;
}
.support-card:hover { border-color: rgba(201,168,77,.4); background: var(--bg4); }
.support-card-icon {
  width: 36px; height: 36px; background: var(--gold-dim);
  border: 1px solid var(--gold-brd);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem;
}
.support-card-icon svg { width: 16px; height: 16px; }
.support-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--white); margin-bottom: .5rem; }
.support-card p { font-size: .85rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.support-link { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); transition: letter-spacing .2s; }
.support-card:hover .support-link { letter-spacing: .18em; }

.support-cta {
  margin-top: 2rem; background: var(--bg3); border: 1px solid var(--gold-brd);
  padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.support-cta p { font-size: .9rem; color: var(--muted); }
.support-cta strong { color: var(--white); font-weight: 400; display: block; margin-bottom: .3rem; font-family: var(--font-display); font-size: 1.05rem; }

/* ── SHOP ── */
.shop-section { padding: 5rem 0; }
.shop-filter-bar {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.filter-label { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-right: .5rem; }
.filter-chip {
  font-family: var(--font-mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem 1rem; border: 1px solid var(--gold-brd); color: var(--muted); background: transparent;
  cursor: pointer; transition: border-color .2s, color .2s, background .2s;
}
.filter-chip:hover, .filter-chip.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* WooCommerce product cards */
.wc-product-card, ul.products li.product {
  background: var(--bg3) !important;
  border: 1px solid var(--gold-brd) !important;
  padding: 0 !important; margin: 0 !important;
  transition: border-color .25s, transform .2s;
  list-style: none !important;
}
.wc-product-card:hover, ul.products li.product:hover {
  border-color: rgba(201,168,77,.45) !important; transform: translateY(-3px);
}
ul.products li.product a img,
.wc-product-card .woocommerce-loop-product__link img {
  width: 100% !important; height: 200px !important; object-fit: cover !important;
  filter: brightness(.85); transition: filter .3s;
}
ul.products li.product:hover a img { filter: brightness(1) !important; }

.wc-product-card .card-body, ul.products li.product .card-inner {
  padding: 1.2rem !important;
}
.product-badge {
  display: inline-block; font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-brd);
  padding: .2rem .7rem; margin-bottom: .5rem;
}
.product-badge.bestseller { background: rgba(201,168,77,.2); border-color: rgba(201,168,77,.4); }
ul.products li.product .woocommerce-loop-product__title,
.wc-product-card h3 {
  font-family: var(--font-display) !important; font-size: 1.1rem !important;
  font-weight: 400 !important; color: var(--white) !important; margin-bottom: .4rem !important;
}
.product-cat-label { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
ul.products li.product .price, .wc-product-card .price {
  color: var(--gold) !important; font-family: var(--font-display) !important;
  font-size: 1.15rem !important; margin-bottom: .8rem !important;
}
ul.products li.product .price del { color: var(--muted2) !important; font-size: .85rem !important; }
ul.products li.product .button, .wc-product-card .add-to-cart-btn {
  display: block !important; width: 100% !important;
  background: var(--gold) !important; color: var(--bg) !important;
  font-family: var(--font-mono) !important; font-size: .68rem !important;
  letter-spacing: .12em !important; text-transform: uppercase !important; font-weight: 500 !important;
  padding: .75rem !important; text-align: center !important;
  border: none !important; cursor: pointer !important;
  transition: background .2s !important;
}
ul.products li.product .button:hover, .wc-product-card .add-to-cart-btn:hover {
  background: var(--gold-lt) !important;
}

/* WooCommerce single product */
.woocommerce div.product .product_title {
  font-family: var(--font-display) !important; font-size: 2.5rem !important;
  font-weight: 400 !important; color: var(--white) !important; margin-bottom: 1rem !important;
}
.woocommerce div.product p.price {
  color: var(--gold) !important; font-family: var(--font-display) !important;
  font-size: 2rem !important;
}
.woocommerce div.product .woocommerce-product-gallery { background: var(--bg2) !important; }
.woocommerce .single_add_to_cart_button {
  background: var(--gold) !important; color: var(--bg) !important;
  font-family: var(--font-mono) !important; letter-spacing: .12em !important;
  text-transform: uppercase !important; border: none !important;
  padding: 1rem 2.5rem !important; border-radius: 0 !important;
}
.woocommerce .single_add_to_cart_button:hover { background: var(--gold-lt) !important; }

/* ── CONTACT ── */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 0; border-bottom: 1px solid rgba(201,168,77,.1);
}
.ci-label { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted2); }
.ci-value { font-size: .88rem; color: var(--white); transition: color .2s; }
a.ci-value:hover { color: var(--gold); }
.social-links { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.social-link {
  font-family: var(--font-mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--gold-brd); padding: .4rem .9rem;
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── FORM ── */
.contact-form-panel { background: var(--bg3); border: 1px solid var(--gold-brd); padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
.form-label { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-select, .form-textarea {
  background: var(--bg); border: 1px solid rgba(201,168,77,.15); color: var(--white);
  font-family: var(--font-body); font-size: .9rem; font-weight: 300;
  padding: .75rem 1rem; outline: none; width: 100%; appearance: none;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted2); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select option { background: var(--bg2); color: var(--white); }
.form-submit {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; background: var(--gold); color: var(--bg);
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  padding: 1rem 1.5rem; border: none; cursor: pointer;
  transition: background .2s;
}
.form-submit:hover { background: var(--gold-lt); }
.form-submit-arrow { transition: transform .2s; }
.form-submit:hover .form-submit-arrow { transform: translateX(4px); }

/* ── PLUGINS PAGE TABS ── */
.plugin-tabs { display: flex; border-bottom: 1px solid var(--gold-brd); margin-bottom: 2.5rem; }
.plugin-tab {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); padding: .8rem 1.6rem;
  border-bottom: 2px solid transparent; cursor: pointer; transition: color .2s, border-color .2s;
}
.plugin-tab:hover { color: var(--white); }
.plugin-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.plugin-section { display: none; }
.plugin-section.active { display: block; }

/* ── VR SECTION ── */
.vr-visual-wrap {
  width: 120px; height: 120px; position: relative;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vr-ring {
  position: absolute; border: 1px solid rgba(201,168,77,.2);
  border-radius: 50%; animation: spin-slow 20s linear infinite;
}
.vr-ring:nth-child(1) { inset: 0; }
.vr-ring:nth-child(2) { inset: 16px; border-color: rgba(201,168,77,.35); animation-duration: 14s; animation-direction: reverse; }
.vr-ring:nth-child(3) { inset: 32px; border-color: rgba(201,168,77,.55); animation-duration: 9s; }
.vr-core {
  width: 40px; height: 40px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.vr-core span { font-family: var(--font-display); font-size: 14px; color: var(--bg); font-weight: 500; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--bg2); border-top: 1px solid var(--gold-brd); border-bottom: 1px solid var(--gold-brd);
  padding: 4rem 0; text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; font-weight: 400; }
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p { color: var(--muted); margin-bottom: 2rem; }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
#site-footer {
  background: var(--bg); border-top: 1px solid var(--gold-brd); padding: 4rem 0 2rem;
}
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.footer-tagline { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: .65rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .85rem; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--gold-brd);
}
.footer-copy { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted2); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted2); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── WooCommerce Global Overrides ── */
.woocommerce-breadcrumb { display: none; }
.woocommerce-notices-wrapper { max-width: var(--max-w); margin: 0 auto; padding: 1rem 2rem; }
.woocommerce-message, .woocommerce-info { background: var(--bg3) !important; border-top-color: var(--gold) !important; color: var(--white) !important; }
.woocommerce-message a, .woocommerce-info a { color: var(--gold) !important; }
.woocommerce-MyAccount-navigation ul { display: flex; flex-direction: column; gap: .5rem; }
.woocommerce-MyAccount-navigation a { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.woocommerce-MyAccount-navigation a:hover, .woocommerce-MyAccount-navigation .is-active a { color: var(--gold); }
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; max-width: var(--max-w); margin: 4rem auto; padding: 0 2rem; }

/* ── CART & CHECKOUT ── */
.woocommerce table.cart { color: var(--white); }
.woocommerce table.cart th { color: var(--muted); font-family: var(--font-mono); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; border: none !important; }
.woocommerce table.cart td { border-color: var(--gold-brd) !important; }
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: var(--gold) !important; color: var(--bg) !important;
  font-family: var(--font-mono) !important; letter-spacing: .1em !important;
  text-transform: uppercase !important; border-radius: 0 !important;
}
.woocommerce form .form-row label { color: var(--muted); font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
  background: var(--bg2) !important; border-color: var(--gold-brd) !important;
  color: var(--white) !important; border-radius: 0 !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #site-nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 1rem;
    position: fixed; inset: 60px 0 0 0;
    background: rgba(12,12,12,.97); padding: 2rem;
    border-top: 1px solid var(--gold-brd);
  }
  .hero-title { font-size: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .support-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
