*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:   #080808;
  --surface: #101010;
  --edge:    #1c1c1c;
  --edge2:   #242424;
  --gold:    #b89a6a;
  --gold-l:  #d4b98a;
  --white:   #f0ede8;
  --muted:   #585858;
  --green:   #27ae60;
  --red:     #c0392b;
}
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Outfit', sans-serif; font-weight: 300; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 0 60px; height: 72px; background: rgba(8,8,8,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--edge); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.cart-btn { display: flex; align-items: center; gap: 8px; background: none; border: 1px solid var(--edge2); color: var(--white); padding: 9px 18px; font-family: 'Outfit', sans-serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-count { background: var(--gold); color: var(--black); width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 500; }

/* HERO */
.hero { min-height: 100vh; padding: 72px 60px 0; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 50% at 60% 40%, rgba(184,154,106,0.07) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 15% 80%, rgba(232,100,42,0.04) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(184,154,106,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(184,154,106,0.035) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, black 10%, transparent 80%); }
.hero-inner { position: relative; flex: 1; display: flex; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; padding: 60px 0 40px; gap: 80px; }
.hero-text { flex: 1; }
.hero-eyebrow { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content:''; width:32px; height:1px; background:var(--gold); }
h1.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 7vw, 96px); font-weight: 300; line-height: 0.95; margin-bottom: 28px; }
h1.hero-title em { font-style: italic; color: var(--gold-l); }
.hero-desc { font-size: 14px; line-height: 1.8; color: var(--muted); max-width: 400px; margin-bottom: 40px; }
.hero-cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* PAGE HERO (about/faq/contact) */
.page-hero { padding: 72px 60px 0; min-height: 40vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.page-hero-inner { position: relative; max-width: 1200px; margin: 0 auto; width: 100%; padding: 60px 0; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: var(--gold); color: var(--black); font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--gold-l); transform: translateY(-1px); }
.btn-ghost { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); background: none; border: none; cursor: pointer; transition: color 0.2s; text-decoration: none; }
.btn-ghost:hover { color: var(--white); }

/* HERO CARDS */
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 380px; flex-shrink: 0; }
.hero-card { aspect-ratio: 1; border: 1px solid var(--edge); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: border-color 0.25s; position: relative; overflow: hidden; background: var(--surface); }
.hero-card::before { content:''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; }
.hero-card:hover { border-color: var(--gold); }
.hero-card:hover::before { opacity: 1; }
.hero-card.cases::before   { background: radial-gradient(ellipse at 50% 80%, rgba(184,154,106,0.15), transparent); }
.hero-card.power::before   { background: radial-gradient(ellipse at 50% 80%, rgba(100,180,255,0.10), transparent); }
.hero-card.chargers::before { background: radial-gradient(ellipse at 50% 80%, rgba(255,200,80,0.09), transparent); }
.hero-card.cables::before  { background: radial-gradient(ellipse at 50% 80%, rgba(150,255,150,0.07), transparent); }
.hc-icon { font-size: 28px; position: relative; }
.hc-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); position: relative; transition: color 0.2s; }
.hero-card:hover .hc-label { color: var(--white); }

/* STRIP */
.strip { border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge); padding: 15px 0; overflow: hidden; }
.strip-track { display: flex; gap: 56px; width: max-content; animation: scrollx 24s linear infinite; }
.strip-item { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); white-space: nowrap; display: flex; align-items: center; gap: 20px; }
.strip-item::after { content:'◆'; font-size:6px; color:var(--gold); }
@keyframes scrollx { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* SHOP */
.shop-wrap { max-width: 1300px; margin: 0 auto; padding: 72px 60px; display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.sidebar { position: sticky; top: 92px; }
.sidebar-title { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--edge); }
.cat-list { list-style: none; }
.cat-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; cursor: pointer; border: 1px solid transparent; border-left: 2px solid transparent; margin-bottom: 2px; transition: background 0.2s, border-color 0.2s; }
.cat-item:hover { background: var(--surface); }
.cat-item.active { background: var(--surface); border-color: var(--edge2); border-left-color: var(--gold); }
.cat-item-left { display: flex; align-items: center; gap: 10px; }
.cat-icon { font-size: 16px; }
.cat-name { font-size: 12px; }
.cat-count { font-size: 10px; color: var(--muted); background: var(--edge); padding: 2px 7px; }
.cat-item.active .cat-count { background: var(--gold); color: var(--black); }
.shop-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.shop-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; }
.shop-heading em { font-style: italic; color: var(--gold-l); }
.result-count { font-size: 11px; color: var(--muted); margin-bottom: 22px; }

/* PRODUCTS GRID */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.product-card { background: var(--surface); border: 1px solid var(--edge); overflow: hidden; transition: border-color 0.25s; }
.product-card:hover { border-color: rgba(184,154,106,0.35); }
.product-visual { height: 240px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--black); }
.product-photo { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; padding: 16px; }
.product-card:hover .product-photo { transform: scale(1.06); }
.product-visual-inner { font-size: 52px; transition: transform 0.4s ease; user-select: none; position: relative; z-index: 1; }
.product-card:hover .product-visual-inner { transform: scale(1.12) translateY(-6px); }
.product-badge { position: absolute; top: 12px; left: 12px; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; padding: 4px 10px; font-weight: 500; z-index: 2; }
.badge-new  { background: var(--gold); color: var(--black); }
.badge-hot  { background: #e8642a; color: var(--white); }
.badge-sale { background: var(--red); color: var(--white); }
.product-body { padding: 18px 20px 22px; }
.product-cat { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; margin-bottom: 6px; line-height: 1.2; }
.product-desc { font-size: 11px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-size: 14px; color: var(--gold); }
.atc-btn { display: flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--edge2); color: var(--white); border: 1px solid var(--edge2); font-family: 'Outfit', sans-serif; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s; white-space: nowrap; }
.atc-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.atc-btn.added { background: var(--green); border-color: var(--green); color: var(--white); }

/* TRUST BAR */
.trust-bar { background: var(--surface); border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge); }
.trust-inner { max-width: 1300px; margin: 0 auto; padding: 40px 60px; display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.trust-item { text-align: center; padding: 20px; border-right: 1px solid var(--edge); }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 22px; margin-bottom: 10px; }
.trust-name { font-size: 13px; font-weight: 400; margin-bottom: 4px; }
.trust-desc { font-size: 11px; color: var(--muted); }

/* PAGE CONTENT */
.page-content { max-width: 1100px; margin: 0 auto; padding: 80px 60px; }
.section-label { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content:''; width:20px; height:1px; background:var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.05; }
.section-title em { font-style: italic; color: var(--gold-l); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: center; margin-bottom: 80px; }
.about-body { font-size: 15px; line-height: 1.9; color: var(--muted); margin-bottom: 20px; }
.about-logo-wrap { display: flex; align-items: center; justify-content: center; }
.about-logo { width: 100%; max-width: 300px; height: auto; opacity: 0.9; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.value-card { background: var(--surface); border: 1px solid var(--edge); padding: 36px 28px; }
.value-icon { font-size: 28px; margin-bottom: 16px; }
.value-name { font-size: 15px; font-weight: 400; margin-bottom: 10px; }
.value-desc { font-size: 12px; color: var(--muted); line-height: 1.7; }

/* FAQ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-group { margin-bottom: 48px; }
.faq-group-title { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.faq-group-title::before { content:''; width:20px; height:1px; background:var(--gold); }
.faq-item { border-bottom: 1px solid var(--edge); }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 300; padding: 18px 0; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-q:hover { color: var(--gold); }
.faq-arrow { font-size: 20px; color: var(--gold); flex-shrink: 0; line-height: 1; }
.faq-a { display: none; font-size: 13px; color: var(--muted); line-height: 1.8; padding-bottom: 18px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.contact-card { background: var(--surface); border: 1px solid var(--edge); padding: 40px 32px; text-align: center; transition: border-color 0.25s; }
.contact-card:hover { border-color: rgba(184,154,106,0.4); }
.contact-icon { font-size: 32px; margin-bottom: 16px; }
.contact-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; margin-bottom: 10px; }
.contact-desc { font-size: 12px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.contact-link { display: inline-block; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(184,154,106,0.4); padding-bottom: 2px; transition: border-color 0.2s; }
.contact-link:hover { border-color: var(--gold); }

/* CART */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 300; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 440px; background: var(--surface); border-left: 1px solid var(--edge); z-index: 301; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 26px 30px; border-bottom: 1px solid var(--edge); }
.cart-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 300; }
.close-x { background: none; border: none; color: var(--muted); font-size: 18px; cursor: pointer; transition: color 0.2s; }
.close-x:hover { color: var(--white); }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 30px; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--muted); font-size: 13px; }
.cart-item { display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--edge); }
.ci-thumb { width: 54px; height: 54px; background: var(--black); border: 1px solid var(--edge); display: flex; align-items: center; justify-content: center; overflow: hidden; font-size: 22px; }
.ci-name { font-size: 13px; margin-bottom: 4px; }
.ci-meta { font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.ci-qty { display: flex; align-items: center; gap: 6px; }
.ciq-btn { width: 22px; height: 22px; border: 1px solid var(--edge); background: none; color: var(--white); cursor: pointer; font-size: 13px; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.ciq-btn:hover { background: var(--edge); }
.ci-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 10px; }
.ci-price { font-size: 13px; color: var(--gold); white-space: nowrap; }
.ci-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 14px; transition: color 0.2s; }
.ci-remove:hover { color: var(--red); }
.cart-foot { padding: 22px 30px; border-top: 1px solid var(--edge); }
.cart-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.cart-label { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.cart-total-val { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; }
.cart-note { font-size: 10px; color: var(--muted); margin-bottom: 18px; }
.checkout-btn { width: 100%; padding: 15px; background: var(--gold); color: var(--black); font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.checkout-btn:hover { background: var(--gold-l); }
.checkout-btn:disabled { background: var(--edge); color: var(--muted); cursor: not-allowed; }

/* CHECKOUT MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 400; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--surface); border: 1px solid var(--edge); width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto; animation: slideUp 0.28s ease; }
@keyframes slideUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 26px 32px; border-bottom: 1px solid var(--edge); }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; }
.modal-body { padding: 28px 32px; }
.fsec { margin-bottom: 26px; }
.fsec-label { font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.fsec-label::before { content:''; width:20px; height:1px; background:var(--gold); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fgroup { margin-bottom: 12px; }
label { display: block; font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
input, select { width: 100%; padding: 11px 13px; background: var(--black); border: 1px solid var(--edge); color: var(--white); font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 300; outline: none; transition: border-color 0.2s; appearance: none; }
input:focus, select:focus { border-color: var(--gold); }
input::placeholder { color: #333; }
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pay-opt { border: 1px solid var(--edge); padding: 12px 14px; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: border-color 0.2s, background 0.2s; }
.pay-opt.active { border-color: var(--gold); background: rgba(184,154,106,0.06); }
.pay-icon2 { font-size: 18px; }
.pay-lbl { font-size: 12px; }
.pay-sub2 { font-size: 10px; color: var(--muted); }
.card-fields { margin-top: 12px; display: none; }
.card-fields.show { display: block; }
.order-sum { background: var(--black); border: 1px solid var(--edge); padding: 18px; margin-bottom: 22px; }
.os-title { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.os-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 7px; }
.os-row span:first-child { color: var(--muted); }
.os-total { border-top: 1px solid var(--edge); padding-top: 10px; margin-top: 6px; font-size: 14px; font-weight: 400; color: var(--gold); }
.place-btn { width: 100%; padding: 15px; background: var(--gold); color: var(--black); font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.place-btn:hover { background: var(--gold-l); }
.place-btn:disabled { background: var(--edge); color: var(--muted); cursor: not-allowed; }
.secure-note { text-align: center; font-size: 10px; color: var(--muted); margin-top: 10px; }
.success-wrap { text-align: center; padding: 52px 32px; }
.success-ico { width: 68px; height: 68px; border-radius: 50%; background: rgba(39,174,96,0.12); border: 1px solid var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 26px; }
.success-title { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 300; margin-bottom: 10px; }
.success-id { font-size: 11px; color: var(--gold); letter-spacing: 0.15em; margin: 14px 0; }
.success-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* FOOTER */
footer { border-top: 1px solid var(--edge); padding: 32px 60px; display: flex; align-items: center; justify-content: space-between; }
.footer-logo-img { height: 36px; width: auto; opacity: 0.6; transition: opacity 0.2s; }
.footer-logo-img:hover { opacity: 1; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 10px; color: #252525; }

/* TOAST */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(12px); background: var(--surface); border: 1px solid var(--edge2); color: var(--white); padding: 11px 26px; font-size: 12px; opacity: 0; pointer-events: none; z-index: 500; transition: all 0.28s ease; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 72px 24px 0; }
  .hero-inner { flex-direction: column; padding: 40px 0; gap: 36px; }
  .hero-cards { width: 100%; max-width: 360px; }
  .shop-wrap { grid-template-columns: 1fr; padding: 40px 24px; gap: 28px; }
  .sidebar { position: static; }
  .cat-list { display: flex; flex-wrap: wrap; gap: 6px; }
  .cat-item { padding: 8px 12px; margin-bottom: 0; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .trust-inner { grid-template-columns: repeat(2,1fr); padding: 32px 24px; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--edge); }
  .page-hero { padding: 72px 24px 0; }
  .page-content { padding: 48px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-logo-wrap { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  footer { padding: 28px 24px; flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { display: none; }
}
@media (max-width: 520px) {
  .products-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .hero-cards { max-width: 100%; }
}
