/* ─── MARD & CO — Global Styles ───────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&family=Raleway:wght@300;400;500;600&family=Roboto:wght@300;400;500&display=swap');

:root {
  --black: #0a0a0a;
  --light-blue: #3ab4f2;
  --white: #ffffff;
  --dark-grey: #3a3a3a;
  --mid-grey: #6b6b6b;
  --light-grey: #f0f0f0;
  --card-bg: #111111;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.font-raleway { font-family: 'Raleway', sans-serif; }
.font-montserrat { font-family: 'Montserrat', sans-serif; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 70px;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 20px; letter-spacing: 2px;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .amp { color: var(--light-blue); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 500; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--light-blue); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.btn-cart {
  background: var(--light-blue); color: var(--black);
  border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 12px; letter-spacing: 1px;
  padding: 10px 22px; text-transform: uppercase;
  transition: all 0.2s; position: relative;
  text-decoration: none; display: inline-block;
}
.btn-cart:hover { background: #fff; }
.cart-badge {
  background: var(--black); color: var(--light-blue);
  font-size: 10px; font-weight: 900;
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 6px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--light-blue); color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; padding: 14px 32px;
  border: none; cursor: pointer;
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(58,180,242,0.3); }
.btn-outline {
  background: transparent; color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.3); cursor: pointer;
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--light-blue); color: var(--light-blue); }
.btn-danger {
  background: #e53e3e; color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  padding: 10px 20px; border: none; cursor: pointer; transition: all 0.2s;
}
.btn-danger:hover { background: #c53030; }

/* ─── SECTION LABELS ─── */
.section-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 300; font-size: 11px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--light-blue);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--light-blue); }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05; letter-spacing: -1px; margin-bottom: 14px;
}
.section-title em { color: var(--light-blue); font-style: normal; }

/* ─── PRODUCT CARDS ─── */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden; cursor: pointer;
  transition: all 0.35s; position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: rgba(58,180,242,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.product-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--light-blue); color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 10px;
}
.product-img-wrap {
  height: 220px;
  background: linear-gradient(145deg, #1a1a1a, #111);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-icon-display { font-size: 80px; transition: transform 0.4s; }
.product-card:hover .product-icon-display { transform: scale(1.1) translateY(-6px); }
.product-img-real {
  width: 100%; height: 100%; object-fit: contain; padding: 20px;
  transition: transform 0.4s;
}
.product-card:hover .product-img-real { transform: scale(1.05); }
.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 15px; margin-bottom: 4px;
  color: var(--white); text-decoration: none;
}
.product-name:hover { color: var(--light-blue); }
.product-tagline {
  font-family: 'Raleway', sans-serif; font-weight: 300; font-size: 13px;
  color: rgba(255,255,255,0.4); margin-bottom: 6px;
}
.product-size {
  font-family: 'Roboto', sans-serif; font-size: 11px; letter-spacing: 1px;
  color: var(--light-blue); text-transform: uppercase; margin-bottom: 16px;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border);
}
.product-price {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px;
  color: var(--light-blue);
}
.product-price .currency { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.4); margin-right: 3px; }
.product-price .sale-price { color: rgba(255,255,255,0.3); text-decoration: line-through; font-size: 13px; margin-left: 6px; }
.add-cart-btn {
  width: 38px; height: 38px; background: var(--light-blue); color: var(--black);
  border: none; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.add-cart-btn:hover { background: #fff; transform: scale(1.1); }

/* ─── MARQUEE ─── */
.marquee-strip { background: var(--light-blue); padding: 13px 0; overflow: hidden; display: flex; }
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 22s linear infinite; white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--black);
}
.marquee-item::after { content: ' ◆'; }

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  font-family: 'Raleway', sans-serif; font-weight: 500; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 8px; display: block;
}
.form-control {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light); color: var(--white);
  font-family: 'Roboto', sans-serif; font-size: 14px;
  padding: 12px 16px; transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--light-blue); background: rgba(58,180,242,0.04); }
.form-control::placeholder { color: rgba(255,255,255,0.25); }
select.form-control option { background: #1a1a1a; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* ─── CART DRAWER ─── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.75); 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; z-index: 201;
  width: 440px; background: #111; border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 24px 28px 20px; border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-header h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px; letter-spacing: 1px;
}
.cart-close {
  background: none; border: 1px solid var(--border); color: var(--white);
  font-size: 18px; width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.cart-close:hover { border-color: var(--light-blue); color: var(--light-blue); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 28px; }
.cart-item {
  display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 56px; height: 56px; background: #1a1a1a;
  display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0;
}
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 3px; }
.cart-item-sub { font-family: 'Raleway', sans-serif; font-weight: 300; font-size: 12px; color: rgba(255,255,255,0.4); }
.cart-item-price { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; color: var(--light-blue); margin-top: 4px; }
.cart-item-qty {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.qty-btn {
  width: 24px; height: 24px; background: var(--border-light);
  border: none; color: var(--white); cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.qty-btn:hover { background: var(--light-blue); color: var(--black); }
.qty-num { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; color: rgba(255,255,255,0.3); cursor: pointer; font-size: 16px; transition: color 0.2s; align-self: flex-start; }
.cart-item-remove:hover { color: #e53e3e; }
.cart-empty-msg {
  text-align: center; padding: 60px 20px;
  font-family: 'Raleway', sans-serif; font-weight: 300; color: rgba(255,255,255,0.3);
}
.cart-empty-msg .ei { font-size: 48px; display: block; margin-bottom: 12px; }
.cart-footer { padding: 16px 28px 28px; border-top: 1px solid var(--border); }
.cart-summary-row {
  display: flex; justify-content: space-between;
  font-family: 'Roboto', sans-serif; font-size: 13px;
  color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.cart-summary-row.total {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--white); padding-top: 12px; border-top: 1px solid var(--border); margin-top: 8px;
}
.cart-summary-row.total .amount { color: var(--light-blue); font-size: 20px; }
.btn-checkout {
  width: 100%; background: var(--light-blue); color: var(--black);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; padding: 16px;
  border: none; cursor: pointer; transition: all 0.2s; margin-top: 16px;
  text-decoration: none; display: block; text-align: center;
}
.btn-checkout:hover { background: #fff; }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--light-blue); color: var(--black);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1px;
  padding: 12px 28px; z-index: 400; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── FOOTER ─── */
.site-footer {
  background: #050505; border-top: 1px solid var(--border);
  padding: 60px 48px 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 20px; letter-spacing: 2px; margin-bottom: 12px; }
.footer-tagline { font-family: 'Raleway', sans-serif; font-weight: 300; font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-col-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-family: 'Raleway', sans-serif; font-weight: 300; font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--light-blue); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: 'Raleway', sans-serif; font-weight: 300; font-size: 12px; color: rgba(255,255,255,0.25); }

/* ─── ALERTS ─── */
.alert { padding: 12px 20px; margin-bottom: 20px; border-left: 3px solid; font-family: 'Raleway', sans-serif; font-size: 14px; }
.alert-success { background: rgba(72,187,120,0.1); border-color: #48bb78; color: #9ae6b4; }
.alert-error { background: rgba(229,62,62,0.1); border-color: #e53e3e; color: #fc8181; }
.alert-info { background: rgba(58,180,242,0.1); border-color: var(--light-blue); color: var(--light-blue); }

/* ─── FADE UP ─── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s, transform 0.6s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  section { padding: 60px 20px !important; }
}
