/* =====================================================
   DEATH METAL FISHING — Global Stylesheet
   Premium Outdoor Apparel. No Apologies.
   ===================================================== */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0a0a0a;
  --black-mid:   #111111;
  --black-card:  #161616;
  --black-border:#222222;
  --red:         #8B0000;
  --red-bright:  #b30000;
  --red-glow:    rgba(139,0,0,0.4);
  --green-dark:  #1a2e1a;
  --bone:        #F5F0E8;
  --bone-dim:    #c8c2b5;
  --gray:        #2a2a2a;
  --gray-mid:    #444444;
  --gray-light:  #888888;
  --font-display: 'Metal Mania', cursive;
  --font-accent:  'Creepster', cursive;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* =====================================================
   SCROLLBAR
   ===================================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* =====================================================
   TYPOGRAPHY UTILITIES
   ===================================================== */
.display-title {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  line-height: 1.0;
  text-transform: uppercase;
}
.accent-title {
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
}
.section-label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-bright);
}

/* =====================================================
   NAVIGATION
   ===================================================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 68px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--black-border);
  transition: border-color 0.3s;
}
#nav.scrolled { border-bottom-color: var(--red); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--bone);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-logo span { color: var(--red-bright); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--red-bright);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--red-bright); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.cart-btn {
  position: relative;
  background: none;
  border: 1px solid var(--black-border);
  color: var(--bone);
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-btn:hover { border-color: var(--red); background: var(--red-glow); }
.cart-count {
  background: var(--red-bright);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--bone);
  transition: all 0.3s;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(139,0,0,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(26,46,26,0.2) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%230a0a0a'/%3E%3Crect x='0' y='0' width='1' height='1' fill='%23111'/%3E%3C/svg%3E");
  z-index: 0;
}

.hero-skull-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.04;
  pointer-events: none;
}
.hero-skull-art svg { width: min(700px, 90vw); height: auto; }

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '—';
  color: var(--red);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 10rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--bone);
  text-shadow:
    0 0 80px rgba(139,0,0,0.6),
    0 0 160px rgba(139,0,0,0.2),
    4px 4px 0px rgba(139,0,0,0.3);
  margin-bottom: 1.2rem;
}
.hero-title .highlight { color: var(--red-bright); }

.hero-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  margin: 1.5rem auto;
}

.hero-tagline {
  font-family: var(--font-cond);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.25s;
}
.btn:hover::before { opacity: 0.08; }

.btn-primary {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: var(--bone);
}
.btn-primary:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 30px var(--red-glow);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: var(--bone-dim);
  color: var(--bone);
}
.btn-outline:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--black-border);
  color: var(--bone-dim);
}
.btn-ghost:hover {
  border-color: var(--bone-dim);
  color: var(--bone);
}

.btn-full { width: 100%; }

/* =====================================================
   SECTIONS
   ===================================================== */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}
.section-header .section-label { margin-bottom: 0.6rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--bone);
}
.section-header p {
  margin-top: 1rem;
  color: var(--bone-dim);
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

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

/* =====================================================
   PRODUCT CARD
   ===================================================== */
.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--red);
  z-index: 1;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 20px var(--red-glow);
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red-bright);
  color: white;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
  z-index: 2;
}
.product-badge.coming-soon {
  background: var(--gray);
  color: var(--bone-dim);
}

.product-image {
  aspect-ratio: 3/4;
  background: var(--gray);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #141414 0%, #1e1e1e 50%, #141414 100%);
}
.product-image-placeholder .dmf-watermark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(245,240,232,0.07);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  user-select: none;
}
.product-image-placeholder .product-icon {
  opacity: 0.12;
}
.product-image-placeholder .product-icon svg {
  width: 80px;
  height: 80px;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }

.product-info {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.3rem;
}
.product-name {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bone);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.product-price {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bone-dim);
  margin-top: auto;
  padding-top: 0.6rem;
}
.product-price .original {
  text-decoration: line-through;
  color: var(--gray-mid);
  font-size: 0.85rem;
  margin-right: 0.4rem;
}

/* =====================================================
   MANIFESTO SECTION
   ===================================================== */
.manifesto {
  background: var(--black-mid);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: 'DMF';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(245,240,232,0.02);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.25;
  color: var(--bone);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.manifesto-quote .red { color: var(--red-bright); }
.manifesto-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--bone-dim);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.manifesto-body p + p { margin-top: 1em; }

/* =====================================================
   SOCIAL / INSTAGRAM STRIP
   ===================================================== */
.social-strip {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 3rem 0;
  text-align: center;
}
.social-strip h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.5rem;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.social-icon-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--black-border);
  padding: 0.6rem 1.2rem;
  transition: all 0.25s;
}
.social-icon-link:hover {
  color: var(--bone);
  border-color: var(--red);
  background: var(--red-glow);
}

/* =====================================================
   SHOP PAGE
   ===================================================== */
.shop-hero {
  padding: 9rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(139,0,0,0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--black-border);
}
.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 0.5rem;
}
.shop-hero p {
  color: var(--bone-dim);
  font-family: var(--font-cond);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--black-border);
  flex-wrap: wrap;
  background: var(--black-mid);
  position: sticky;
  top: 68px;
  z-index: 100;
}
.filter-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-right: 0.5rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--black-border);
  color: var(--bone-dim);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--bone);
}

.shop-grid-wrap { padding: 2rem; }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px;
}

/* =====================================================
   PRODUCT DETAIL PAGE
   ===================================================== */
.product-detail {
  padding-top: 100px;
}
.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 3rem 2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.product-detail-image {
  position: sticky;
  top: 100px;
  height: fit-content;
}
.product-detail-img-main {
  aspect-ratio: 3/4;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black-border);
}
.product-detail-img-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.thumb {
  width: 72px; height: 72px;
  background: var(--gray);
  border: 1px solid var(--black-border);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.5rem;
  color: rgba(245,240,232,0.1);
}
.thumb:hover, .thumb.active { border-color: var(--red); }

.product-detail-info { padding: 0.5rem 0; }
.product-detail-category {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.6rem;
}
.product-detail-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--bone);
  margin-bottom: 1rem;
}
.product-detail-price {
  font-family: var(--font-cond);
  font-size: 2rem;
  font-weight: 900;
  color: var(--bone);
  margin-bottom: 1.5rem;
}
.product-detail-desc {
  color: var(--bone-dim);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  border-top: 1px solid var(--black-border);
  padding-top: 1.5rem;
}

.selector-label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.75rem;
}
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.size-btn {
  min-width: 52px;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 1px solid var(--black-border);
  color: var(--bone-dim);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.size-btn:hover { border-color: var(--bone-dim); color: var(--bone); }
.size-btn.active { background: var(--red); border-color: var(--red); color: var(--bone); }
.size-btn.out-of-stock { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

.color-grid {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.color-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.color-swatch:hover, .color-swatch.active {
  border-color: var(--bone);
  box-shadow: 0 0 0 3px var(--red);
}

.product-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product-features {
  border-top: 1px solid var(--black-border);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}
.product-features h4 {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1rem;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--bone-dim);
}
.feature-list li::before {
  content: '✦';
  color: var(--red-bright);
  font-size: 0.6rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 5rem;
  background: linear-gradient(180deg, rgba(139,0,0,0.1) 0%, transparent 100%);
  border-bottom: 1px solid var(--black-border);
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--bone);
  margin-bottom: 1rem;
}
.about-hero p {
  font-size: 1.2rem;
  color: var(--bone-dim);
  max-width: 540px;
  margin: 0 auto;
  font-style: italic;
}

.about-body { max-width: 800px; margin: 0 auto; }

.about-origin {
  padding: 5rem 2rem;
}
.about-origin h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1.5rem;
}
.about-origin p {
  color: var(--bone-dim);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.about-origin p strong {
  color: var(--bone);
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin: 0 2rem 5rem;
}
.value-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.25s;
}
.value-card:hover { border-color: var(--red); }
.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.75rem;
}
.value-card p { color: var(--bone-dim); font-size: 0.92rem; line-height: 1.7; }

.about-closer {
  background: var(--black-mid);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 5rem 2rem;
  text-align: center;
}
.about-closer h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1rem;
}
.about-closer p { color: var(--bone-dim); font-size: 1.05rem; max-width: 600px; margin: 0 auto 2rem; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 9rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}
.contact-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1.0;
  margin-bottom: 1.5rem;
}
.contact-info p {
  color: var(--bone-dim);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.contact-details li {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-details li span.label { color: var(--red-bright); font-weight: 700; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.form-control {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
  outline: none;
}
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red-glow);
}
.form-control::placeholder { color: var(--gray-mid); }

/* =====================================================
   CART OVERLAY / TOAST
   ===================================================== */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--black-card);
  border: 1px solid var(--red);
  padding: 1rem 1.5rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone);
  z-index: 9999;
  transform: translateY(200%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 20px var(--red-glow);
  max-width: 320px;
}
.cart-toast.show { transform: translateY(0); }
.cart-toast .toast-title { color: var(--red-bright); font-size: 0.65rem; letter-spacing: 0.25em; margin-bottom: 0.25rem; }

/* =====================================================
   CART DRAWER
   ===================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1900;
  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: min(420px, 100vw);
  background: var(--black-mid);
  border-left: 1px solid var(--red);
  z-index: 2000;
  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-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--bone);
}
.cart-close {
  background: none;
  border: 1px solid var(--black-border);
  color: var(--bone-dim);
  width: 36px; height: 36px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cart-close:hover { border-color: var(--red); color: var(--red-bright); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--black-border);
}
.cart-item-img {
  width: 72px; height: 90px;
  background: var(--gray);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.45rem;
  color: rgba(245,240,232,0.1);
}
.cart-item-details { flex: 1; }
.cart-item-name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 0.3rem;
}
.cart-item-meta {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-family: var(--font-cond);
  letter-spacing: 0.1em;
}
.cart-item-price {
  font-family: var(--font-cond);
  font-weight: 700;
  color: var(--bone-dim);
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-light);
  cursor: pointer;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-family: var(--font-cond);
  letter-spacing: 0.1em;
  transition: color 0.2s;
  align-self: flex-start;
  margin-top: 0.2rem;
}
.cart-item-remove:hover { color: var(--red-bright); }
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--black-border);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cart-subtotal .label { color: var(--gray-light); font-size: 0.78rem; }
.cart-subtotal .amount { color: var(--bone); font-size: 1.3rem; }
.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}
.cart-empty .empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--black-mid);
  border-top: 1px solid var(--black-border);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bone);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer-brand .logo span { color: var(--red-bright); }
.footer-brand p {
  color: var(--gray-light);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--gray-light);
  transition: color 0.2s;
  text-transform: uppercase;
  font-family: var(--font-cond);
  letter-spacing: 0.08em;
}
.footer-col ul li a:hover { color: var(--bone); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--black-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-mid);
  font-family: var(--font-cond);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.text-red { color: var(--red-bright); }
.text-dim { color: var(--bone-dim); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none !important; }

/* =====================================================
   PAGE TRANSITION STRIPE
   ===================================================== */
.page-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--red-bright), #ff2200, var(--red-bright));
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
.page-stripe.visible { opacity: 1; }

/* =====================================================
   MOBILE NAV DRAWER
   ===================================================== */
.mobile-nav {
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--black-mid);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid var(--black-border);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-links { list-style: none; }
.mobile-nav-links li { border-bottom: 1px solid var(--black-border); }
.mobile-nav-links li a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-links li a:hover {
  color: var(--red-bright);
  padding-left: 0.5rem;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .product-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
  .product-detail-image { position: static; }
  .values-grid { grid-template-columns: 1fr; margin: 0 0 4rem; }
}

@media (max-width: 768px) {
  #nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; padding: 8rem 1.5rem 4rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .shop-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .about-body { padding: 0 1rem; }
}

@media (max-width: 480px) {
  .nav-logo { font-size: 1.1rem; }
  .filter-bar { padding: 1rem; }
  .shop-grid-wrap { padding: 1rem; }
  .product-detail-inner { padding: 2rem 1rem 4rem; }
  .hero-title { font-size: clamp(2.8rem, 13vw, 6rem); }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 80px rgba(139,0,0,0.6), 0 0 160px rgba(139,0,0,0.2), 4px 4px 0px rgba(139,0,0,0.3); }
  50%       { text-shadow: 0 0 120px rgba(139,0,0,0.9), 0 0 240px rgba(139,0,0,0.4), 4px 4px 0px rgba(139,0,0,0.5); }
}
.hero-title { animation: glowPulse 4s ease-in-out infinite; }
.animate-in { animation: fadeInUp 0.6s ease forwards; }
