@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ==============================
   DESIGN TOKENS
============================== */
:root {
  --bg:        #080808;
  --bg2:       #111111;
  --bg3:       #181818;
  --bg4:       #222222;
  --line:      rgba(255,255,255,.08);
  --line2:     rgba(255,255,255,.14);
  --text:      #f0ece4;
  --muted:     #7a7570;
  --muted2:    #4a4744;

  --gold:      #C9A84C;
  --gold-dim:  #9a7a33;
  --gold-glow: rgba(201,168,76,.18);
  --gold-bg:   rgba(201,168,76,.08);

  --red:       #e05252;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ==============================
   BASE
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================
   HEADER
============================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,8,8,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line2);
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--gold);
  line-height: 1;
}

.brand-sub {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav */
.nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: .02em;
}

.nav a:hover {
  color: var(--text);
  background: var(--bg3);
}

/* Actions */
.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.actions input {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 9px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  width: 200px;
  transition: var(--transition);
}

.actions input::placeholder { color: var(--muted); }

.actions input:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.cart-btn {
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--line2);
  border-radius: var(--radius-md);
  padding: 9px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.cart-btn:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.cart-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

#cartCount {
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ==============================
   ANNOUNCEMENT BANNER
============================== */
.announcement {
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
}

.announcement span { opacity: .7; margin: 0 12px; }

/* ==============================
   HERO
============================== */
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 88px);
  line-height: .95;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 380px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.trust-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 30%);
}

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn.primary {
  background: var(--gold);
  color: #000;
}

.btn.primary:hover {
  background: #dbb85a;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(201,168,76,.35);
}

.btn.primary:active { transform: translateY(0); }

.btn.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line2);
}

.btn.outline:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: var(--gold-bg);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn.ghost:hover {
  border-color: var(--gold-dim);
  background: var(--gold-bg);
}

.btn.full { width: 100%; }

.btn svg {
  width: 16px;
  height: 16px;
}

/* ==============================
   SECTION
============================== */
.section { padding: 56px 0; }

.section.dark  { background: var(--bg); }
.section.light { background: var(--bg2); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--text);
}

.section-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.section-link:hover { color: #dbb85a; }

/* ==============================
   CATEGORIES
============================== */
.cats-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cats-head h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
}

.cats-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--line2);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  cursor: pointer;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .cats-toggle { display: flex; }
  .filter-row {
    display: none;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
  }
  .filter-row.open { display: flex; }
}

.cat {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cat:hover {
  color: var(--text);
  border-color: var(--line2);
}

.cat.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* ==============================
   BRANDS
============================== */
.brands-section { padding: 16px 0 40px; }

.brands-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.brands-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-pill {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .04em;
}

.brand-pill:hover {
  color: var(--text);
  border-color: var(--gold-dim);
}

.brand-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-bg);
}

/* ==============================
   PRODUCTS GRID
============================== */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.product {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.product:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 20px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.12);
  transform: translateY(-2px);
}

.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg4);
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.product:hover .product-img img {
  transform: scale(1.04);
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.product h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.product p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

@media (max-width: 640px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.reviews {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}

.star { color: var(--gold); }

.price {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
  margin-top: 4px;
}

/* ==============================
   SUPPORT SECTION
============================== */
.support {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.support h2 {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.support > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.support-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.support-badges span {
  background: var(--bg3);
  border: 1px solid var(--line2);
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--gold);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* ==============================
   OVERLAY
============================== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  z-index: 39;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* ==============================
   CART SIDEBAR
============================== */
.cart {
  position: fixed;
  right: 0;
  top: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: var(--bg2);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  z-index: 40;
  box-shadow: -20px 0 60px rgba(0,0,0,.5);
}

.cart.open { transform: translateX(0); }

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--text);
}

#closeCart {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg3);
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

#closeCart:hover {
  border-color: var(--gold-dim);
  color: var(--text);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--bg4) transparent;
}

.cart-section {
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.cart-section-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}

/* Cart items */
.cart-item {
  background: var(--bg4);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: var(--transition);
}

.qty-btn:hover { background: var(--bg4); color: var(--gold); }

.qty-value {
  min-width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.cart-item-subtotal {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--gold);
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-price {
  font-size: 12px;
  color: var(--muted);
}

.remove-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: var(--transition);
  font-family: var(--font-body);
}

.remove-btn:hover { color: var(--red); background: rgba(224,82,82,.1); }

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 28px 16px;
  border: 1px dashed var(--line2);
  border-radius: var(--radius-md);
  font-size: 14px;
}

/* Wallet & inputs */
.wallet-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wallet-box label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.wallet-row {
  display: flex;
  gap: 8px;
}

.wallet-row input { flex: 1; }

.wallet-box input[type="text"],
.wallet-box input[type="number"],
.delivery-address textarea {
  width: 100%;
  background: var(--bg4);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text);
  font: 14px var(--font-body);
  outline: none;
  transition: var(--transition);
}

.wallet-box input:focus,
.delivery-address textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.wallet-box input::placeholder,
.delivery-address textarea::placeholder { color: var(--muted2); }

.wallet-info-card {
  background: var(--bg4);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-md);
  padding: 12px;
}

.wallet-balance {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 4px;
}

.wallet-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.wallet-options label,
.delivery-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}

input[type="radio"] { accent-color: var(--gold); }

/* Delivery */
.cart-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.delivery-address { display: flex; flex-direction: column; gap: 8px; }

.delivery-address label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.delivery-address textarea {
  resize: none;
}

/* Cart footer */
.cart-footer {
  border-top: 1px solid var(--line);
  padding: 16px 20px 20px;
  flex-shrink: 0;
  background: var(--bg2);
}

.cart-summary { margin-bottom: 14px; }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.cart-total-row strong { color: var(--text); font-size: 15px; }

.cart-wallet-discount strong { color: var(--gold); }

.cart-grand-total {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 8px;
  font-size: 16px;
}

.cart-grand-total strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ==============================
   WHATSAPP BUTTON
============================== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 38;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 48px 0 32px;
    order: 2;
  }

  .hero-visual {
    height: 300px;
    order: 1;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, transparent 50%, var(--bg) 100%);
  }

  .nav { display: none; }

  .actions input { width: 140px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 48px; }
  .hero-content { padding: 36px 0 28px; }
  .hero-visual { height: 220px; }
  .actions input { display: none; }
  .cart { width: 100%; }
  .cart-header { padding: 16px 16px; }
  .cart-body { padding: 12px 14px; }
  .cart-footer { padding: 14px 16px 18px; }
  .wallet-row { flex-direction: column; }
  .hero-trust { gap: 12px; }
  .section { padding: 40px 0; }
}
