/** Shopify CDN: Minification failed

Line 6:2 Unexpected "="

**/
* ============================================
   BLINDADO THEME â€” Street/Urban Aesthetic
   Colors: Black, Steel Gray, Dark Red, Cream
   ============================================ */

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

:root {
  --black:      #0a0a0a;
  --gray-dark:  #1a1a1a;
  --gray-mid:   #3a3a3a;
  --gray-light: #6a6a6a;
  --red:        #8B1111;
  --red-hot:    #c41c1c;
  --cream:      #F5F0E8;
  --cream-dim:  #c9c4bc;
  --white:      #ffffff;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --transition: 0.25s ease;
  --border: 1px solid var(--gray-mid);
  --border-red: 2px solid var(--red);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 10vw, 8rem); }
h2 { font-size: clamp(2rem, 6vw, 5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 3rem); }
h4 { font-size: 1.8rem; }

p { font-family: var(--font-body); line-height: 1.7; color: var(--cream-dim); }

.label {
  font-family: var(--font-condensed);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--red);
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 40px 0; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  transition: color var(--transition);
}
.site-logo span { color: var(--red); }
.site-logo:hover { color: var(--red); }

.site-nav { display: flex; gap: 32px; align-items: center; }
.site-nav a {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.site-nav a:hover { color: var(--cream); }
.site-nav a:hover::after { width: 100%; }

.header-icons { display: flex; gap: 20px; align-items: center; }
.header-icons a {
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}
.header-icons a:hover { color: var(--red); }
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-family: var(--font-condensed);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

/* ---- HERO BANNER ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: var(--border-red);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(30%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.9) 40%, rgba(139,17,17,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-tag {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
}
.hero-title {
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 0.9;
  margin-bottom: 24px;
  color: var(--cream);
}
.hero-title .accent { color: var(--red); display: block; }
.hero-subtitle {
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  max-width: 480px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--red);
  color: var(--cream);
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-hot);
  border-color: var(--red-hot);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-ghost:hover {
  background: var(--red);
  color: var(--cream);
}

/* ---- SECTION HEADERS ---- */
.section-header {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: var(--border);
  padding-bottom: 24px;
}
.section-header h2 { line-height: 0.95; }
.section-header .view-all {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  transition: color var(--transition);
  white-space: nowrap;
}
.section-header .view-all:hover { color: var(--cream); }

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.product-card {
  background: var(--gray-dark);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--gray-mid);
  transition: border-color var(--transition);
}
.product-card:hover { border-color: var(--red); }
.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-mid);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.badge-new { background: var(--red); color: var(--cream); }
.badge-sold { background: var(--gray-mid); color: var(--cream-dim); }

.product-card-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(139,17,17,0.95);
  color: var(--cream);
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.product-card:hover .product-card-quick-add { transform: translateY(0); }

.product-card-info {
  padding: 16px 20px 20px;
  border-top: var(--border);
}
.product-card-collection {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.product-card-title {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-card-price {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream-dim);
}
.price-compare {
  text-decoration: line-through;
  color: var(--gray-light);
  margin-right: 8px;
}
.price-sale { color: var(--red); }

/* ---- PRODUCT PAGE ---- */
.product-page { padding: 60px 0; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery { position: sticky; top: 100px; }
.product-gallery-main {
  aspect-ratio: 3/4;
  background: var(--gray-dark);
  overflow: hidden;
  border: var(--border);
  margin-bottom: 12px;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.thumb {
  aspect-ratio: 1;
  background: var(--gray-dark);
  border: var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
}
.thumb:hover, .thumb.active { border-color: var(--red); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-top: 8px; }
.product-collection {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-collection::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}
.product-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  margin-bottom: 20px;
  color: var(--cream);
}
.product-price-wrap {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: var(--border);
}
.product-price {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
}

.product-variants { margin-bottom: 28px; }
.variant-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.size-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.size-option {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border);
  color: var(--cream-dim);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}
.size-option:hover { border-color: var(--cream); color: var(--cream); }
.size-option.active { border-color: var(--red); background: var(--red); color: var(--cream); }

.color-options { display: flex; gap: 10px; flex-wrap: wrap; }
.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  position: relative;
}
.color-swatch.active, .color-swatch:hover { border-color: var(--cream); }

.add-to-cart-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.btn-add-cart {
  flex: 1;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 24px;
  border: 2px solid var(--red);
  transition: all var(--transition);
}
.btn-add-cart:hover { background: var(--red-hot); border-color: var(--red-hot); }
.btn-add-cart:disabled { background: var(--gray-mid); border-color: var(--gray-mid); cursor: not-allowed; }

.btn-wishlist {
  width: 58px;
  height: 58px;
  border: var(--border);
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.btn-wishlist:hover { border-color: var(--red); color: var(--red); }

.product-meta {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: var(--border);
}
.product-meta span { display: flex; gap: 8px; }
.product-meta strong { color: var(--cream-dim); text-transform: uppercase; }

.product-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--cream-dim);
}

/* ---- COLLECTION PAGE ---- */
.collection-header {
  padding: 60px 0 48px;
  border-bottom: var(--border-red);
  margin-bottom: 48px;
}
.collection-header-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.collection-title { color: var(--cream); }
.collection-count {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.filter-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: var(--border);
}
.filter-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.filter-btn {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: var(--border);
  color: var(--cream-dim);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--red); color: var(--red); }

/* ---- CART PAGE ---- */
.cart-page { padding: 60px 0; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.cart-title {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: var(--border-red);
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: var(--border);
}
.cart-item-image {
  aspect-ratio: 3/4;
  background: var(--gray-dark);
  overflow: hidden;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}
.cart-item-variant {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 12px;
}
.qty-control {
  display: flex;
  align-items: center;
  border: var(--border);
  width: fit-content;
}
.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.qty-btn:hover { background: var(--gray-mid); color: var(--cream); }
.qty-input {
  width: 40px;
  text-align: center;
  background: none;
  border: none;
  border-left: var(--border);
  border-right: var(--border);
  color: var(--cream);
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px;
}
.cart-item-price {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  text-align: right;
}
.cart-remove {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 6px;
  transition: color var(--transition);
  cursor: pointer;
}
.cart-remove:hover { color: var(--red); }

.cart-summary {
  background: var(--gray-dark);
  border: var(--border);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.cart-summary-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: var(--border);
}
.cart-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--cream-dim);
  margin-bottom: 12px;
}
.cart-summary-line.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  padding-top: 16px;
  margin-top: 16px;
  border-top: var(--border-red);
}
.checkout-note {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--gray-light);
  text-align: center;
  margin-top: 16px;
}

/* ---- BRAND PILLARS ---- */
.pillars-section {
  background: var(--gray-dark);
  border-top: var(--border-red);
  border-bottom: var(--border-red);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.pillar {
  padding: 48px 32px;
  border-right: var(--border);
  text-align: center;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar:last-child { border-right: none; }
.pillar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { background: rgba(139,17,17,0.08); }
.pillar-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(245,240,232,0.06);
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  position: relative;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cream);
  margin-bottom: 8px;
  position: relative;
}
.pillar-sub {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  position: relative;
}

/* ---- MARQUEE ---- */
.marquee-bar {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid var(--red-hot);
  border-bottom: 1px solid var(--red-hot);
}
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  padding: 0 40px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 40px;
}
.marquee-item::before {
  content: 'âœ¦';
  font-size: 0.7rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--gray-dark);
  border-top: var(--border-red);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: var(--border);
}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cream);
  margin-bottom: 16px;
  display: block;
}
.footer-brand .logo span { color: var(--red); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-heading {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--red); color: var(--red); background: rgba(139,17,17,0.1); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gray-light);
  text-transform: uppercase;
}
.footer-bottom a { color: var(--gray-light); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--red); }

/* ---- EMPTY CART ---- */
.cart-empty {
  text-align: center;
  padding: 80px 24px;
  grid-column: 1 / -1;
}
.cart-empty h2 { margin-bottom: 16px; }
.cart-empty p { margin-bottom: 32px; }

/* ---- 404 PAGE ---- */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.page-404 .big-num {
  font-family: var(--font-display);
  font-size: clamp(8rem, 25vw, 20rem);
  color: rgba(139,17,17,0.15);
  line-height: 1;
  display: block;
  margin-bottom: -40px;
}
.page-404 h1 { margin-bottom: 16px; }
.page-404 p { margin-bottom: 32px; }

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: var(--red);
  padding: 10px 24px;
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ---- MOBILE MENU ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--cream);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: var(--border);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--red); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 32px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--gray-mid); }

/* ---- FORM ELEMENTS ---- */
input, select, textarea {
  background: var(--gray-dark);
  border: var(--border);
  color: var(--cream);
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--red); }
select { cursor: pointer; }
label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  display: block;
  margin-bottom: 8px;
}

/* ---- FLASH MESSAGES ---- */
.flash {
  padding: 14px 20px;
  margin-bottom: 20px;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-left: 4px solid;
}
.flash-success { background: rgba(40, 120, 40, 0.15); border-color: #3a8a3a; color: #7dc97d; }
.flash-error { background: rgba(139,17,17,0.15); border-color: var(--red); color: var(--red); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar { border-bottom: var(--border); }
  .footer-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: clamp(2.5rem, 12vw, 5rem); }
  .hero-title { font-size: clamp(3.5rem, 18vw, 7rem); }
  .section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-price { display: none; }
}