/* ============================================
   JOHN JO'S FISHING — styles.css
   Link this in index.html with:
   <link rel="stylesheet" href="styles.css" />
   ============================================ */

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

/* ── CSS VARIABLES (brand colors & fonts) ── */
:root {
  --camo-dark:    #3b3d2e;
  --camo-mid:     #5a6344;
  --camo-light:   #8a9468;
  --camo-tan:     #c9b99a;
  --camo-cream:   #f2ede4;
  --camo-accent:  #6b7c3f;
  --white:        #ffffff;
  --text-dark:    #1e1f17;
  --text-mid:     #4a4d3a;
  --text-light:   #7a7d6a;
  --border:       #d8d3c8;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h:        110px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--camo-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 100;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-social {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.social-link {
  color: #ffffff;
  font-size: 1.3rem;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
  text-decoration: none;
}

.social-link:hover {
  opacity: 1;
  color: var(--camo-tan);
}

.footer-social {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a.active {
  opacity: 1;
  border-bottom: 2px solid var(--camo-tan);
  padding-bottom: 2px;
}

.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(--camo-cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════
   PAGE SYSTEM
══════════════════════════════════════ */
.page {
  display: none;
  padding-top: var(--nav-h);
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* ══════════════════════════════════════
   HERO (HOME)
══════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--camo-dark) 0%, var(--camo-mid) 50%, var(--camo-dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 5% 100px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80px 60px at 15% 30%, rgba(90,99,68,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 60px 80px at 70% 15%, rgba(59,61,46,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 100px 50px at 85% 70%, rgba(138,148,104,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50px 70px at 40% 80%, rgba(59,61,46,0.45) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--camo-tan);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--camo-cream);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--camo-tan);
}

.hero p {
  color: rgba(242,237,228,0.75);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--camo-tan);
  color: var(--camo-dark);
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: #b8a78a;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--camo-cream);
  padding: 0.85rem 2rem;
  border: 1px solid rgba(242,237,228,0.4);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--camo-cream);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
section {
  padding: 90px 5%;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--camo-accent);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--camo-dark);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}

.section-sub {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════ */
.features-strip {
  background: var(--camo-cream);
  padding: 60px 5%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  border: 1px solid var(--border);
}

.feature-item {
  background: var(--white);
  padding: 2rem 1.5rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--camo-dark);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.feature-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--camo-dark);
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   PRODUCT PREVIEW (HOME)
══════════════════════════════════════ */
.product-preview {
  background: var(--white);
}

.product-preview-header {
  margin-bottom: 3rem;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59,61,46,0.1);
}

.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--camo-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.rod-graphic {
  width: 85%;
  height: 8px;
  background: linear-gradient(90deg, var(--camo-dark) 0%, var(--camo-mid) 40%, var(--camo-light) 80%, var(--camo-tan) 100%);
  border-radius: 4px;
  position: relative;
}

.rod-graphic::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--camo-tan);
  border-radius: 50%;
}

.product-info {
  padding: 1.25rem;
}

.product-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--camo-accent);
  margin-bottom: 0.4rem;
}

.product-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.product-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--camo-dark);
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-hero {
  background: var(--camo-dark);
  padding: 80px 5% 60px;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--camo-cream);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1rem;
}

.about-hero p {
  color: rgba(242,237,228,0.7);
  max-width: 520px;
  font-size: 1rem;
}

.about-story {
  background: var(--white);
  padding: 80px 5%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--camo-dark);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.about-story-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 0.95rem;
}

.about-img-mock {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  width: 100%;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 4px;
}

.about-values {
  background: var(--camo-cream);
  padding: 80px 5%;
}

.about-values .values-grid {
  max-width: 1300px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  border-left: 3px solid var(--camo-mid);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}

.value-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--camo-dark);
}

.value-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.value-card:hover .value-card-img img {
  transform: scale(1.06);
}

.value-card h3,
.value-card p {
  padding: 0 1.5rem;
}

.value-card h3 {
  padding-top: 1.25rem;
}

.value-card p {
  padding-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--camo-dark);
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════ */
.products-hero {
  background: var(--camo-dark);
  padding: 70px 5% 50px;
}

.products-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--camo-cream);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.products-hero p {
  color: rgba(242,237,228,0.7);
  max-width: 480px;
}

.products-filter {
  padding: 2rem 5% 0;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-mid);
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--camo-dark);
  color: var(--camo-cream);
  border-color: var(--camo-dark);
}

.products-grid-section {
  padding: 2.5rem 5% 80px;
}

.rod-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.rod-intro .section-sub {
  color: var(--text-mid);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.75;
  margin-top: 0.75rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.product-detail-card {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(59,61,46,0.1);
}

/* ── CAROUSEL ── */
.rod-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--camo-dark);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.carousel-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 3;
  border-radius: 2px;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.72);
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: #fff;
}

.product-detail-img {
  aspect-ratio: 4/3;
  width: 100%;
  background: var(--camo-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--camo-dark);
  color: var(--camo-tan);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-detail-info {
  padding: 1.5rem;
}

.product-detail-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0.75rem 0 1rem;
}

.meta-pill {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: var(--camo-cream);
  color: var(--text-mid);
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

.specs-list {
  margin: 0.75rem 0 1.25rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--text-light);
}

.spec-value {
  font-weight: 500;
  color: var(--text-dark);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--camo-dark);
}

.btn-order {
  background: var(--camo-dark);
  color: var(--camo-cream);
  padding: 0.65rem 1.4rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-order:hover {
  background: var(--camo-mid);
}

/* ── Apparel color / size selectors ── */
.apparel-options {
  margin: 0.85rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.option-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.option-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-family: var(--font-body);
}

.swatch-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.15s, transform 0.15s;
  outline: none;
}

.swatch:hover {
  transform: scale(1.15);
}

.swatch.active {
  border-color: var(--camo-tan);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
}

.size-row {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.size-btn {
  padding: 0.22rem 0.5rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--text-main);
  font-size: 0.75rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.size-btn:hover {
  border-color: var(--camo-tan);
  color: var(--camo-tan);
}

.size-btn.active {
  background: var(--camo-tan);
  border-color: var(--camo-tan);
  color: #fff;
}

.select-error {
  color: #d64f4f;
  font-size: 0.78rem;
  min-height: 1rem;
}

/* ── Product Quick View Modal ── */
.product-detail-card {
  cursor: pointer;
}

.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 450;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 1rem;
}

.product-modal.active {
  opacity: 1;
  pointer-events: all;
}

.product-modal-inner {
  background: var(--white);
  border-radius: 10px;
  max-width: 860px;
  width: 100%;
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  cursor: default;
  border: none;
  transform: none !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35) !important;
}

.product-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-mid);
  z-index: 10;
  line-height: 1;
}

.product-modal-close:hover {
  color: var(--text-dark);
}

.product-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-modal-img-area {
  background: var(--camo-cream);
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 1.5rem;
  gap: 0.75rem;
}

.modal-main-img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border-radius: 6px;
}

.modal-placeholder {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.85rem;
  width: 100%;
  min-height: 200px;
  background: transparent;
}

.modal-placeholder i {
  font-size: 2.5rem;
  opacity: 0.4;
}

.modal-thumbnails {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.modal-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s;
}

.modal-thumb.active,
.modal-thumb:hover {
  border-color: var(--camo-tan);
}

.product-modal-info {
  padding: 2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-product-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--text-dark);
  letter-spacing: 0.02em;
  line-height: 1.1;
  padding-right: 2rem;
}

.modal-product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--camo-dark);
}

.modal-specs {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.modal-options {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin: 0;
}

.modal-cart-row {
  margin-top: auto;
  padding-top: 0.5rem;
}

.modal-cart-row .btn-order {
  width: 100%;
}

@media (max-width: 620px) {
  .product-modal-body {
    grid-template-columns: 1fr;
  }
  .product-modal-img-area {
    border-radius: 10px 10px 0 0;
    min-height: 220px;
  }
  .product-modal-info {
    padding: 1.25rem;
  }
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-hero {
  background: var(--camo-dark);
  padding: 70px 5% 50px;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--camo-cream);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.contact-hero p {
  color: rgba(242,237,228,0.7);
  max-width: 460px;
}

.contact-main {
  padding: 70px 5%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* ── DESCRIPTION ── */
.contact-description h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--camo-dark);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.contact-description p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.contact-description-note {
  margin-top: 0.75rem;
  font-size: 0.82rem !important;
  font-weight: 600;
  color: var(--camo-mid) !important;
  letter-spacing: 0.02em;
}

/* ── EMAIL CARD ── */
.contact-email-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--camo-dark);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
}

.contact-email-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--camo-tan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-email-text {
  flex: 1;
}

.contact-email-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.5);
  margin-bottom: 3px;
}

.contact-email-address {
  font-size: 1rem;
  font-weight: 500;
  color: var(--camo-cream);
  letter-spacing: 0.01em;
}

.copy-btn {
  background: rgba(255,255,255,0.1);
  color: var(--camo-cream);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}

/* ── META ROW ── */
.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--camo-cream);
  border-radius: 4px;
  padding: 1.2rem 1.25rem;
}

.contact-meta-item > i {
  color: var(--camo-mid);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.meta-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.meta-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ── SOCIAL BUTTONS ── */
.contact-socials {
  text-align: center;
}

.contact-socials-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-social-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.contact-social-btn:hover {
  background: var(--camo-dark);
  border-color: var(--camo-dark);
  color: var(--camo-cream);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--camo-dark);
  padding: 3rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  display: block;
  opacity: 0.85;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
}

footer p {
  font-size: 0.8rem;
  color: rgba(242,237,228,0.45);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(242,237,228,0.55);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--camo-tan);
}

/* ══════════════════════════════════════
   ACCESSIBILITY
══════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--camo-dark);
  color: var(--camo-cream);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

*:focus-visible {
  outline: 2px solid var(--camo-tan);
  outline-offset: 3px;
}

/* ══════════════════════════════════════
   PAYMENT INFO
══════════════════════════════════════ */
.payment-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--camo-cream);
  border-left: 3px solid var(--camo-tan);
  border-radius: 2px;
}

.payment-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--camo-dark);
  margin-bottom: 0.4rem;
}

.payment-note {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.payment-methods {
  display: flex;
  gap: 1rem;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--camo-dark);
  color: var(--camo-cream);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   SOCIALS PAGE
══════════════════════════════════════ */
.socials-page {
  min-height: 100vh;
  background: var(--camo-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 5% 40px;
}

.socials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.socials-logo {
  height: 90px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.7));
}

.socials-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--camo-cream);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.socials-header p {
  font-size: 0.88rem;
  color: rgba(242,237,228,0.55);
}

.socials-links {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.socials-link-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.socials-link-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.socials-link-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.socials-link-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.socials-link-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--camo-cream);
}

.socials-link-sub {
  font-size: 0.75rem;
  color: rgba(242,237,228,0.5);
}

.socials-link-arrow {
  color: rgba(242,237,228,0.3);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.socials-footer {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: rgba(242,237,228,0.25);
}

/* ══════════════════════════════════════
   RESPONSIVE (LARGE SCREENS)
══════════════════════════════════════ */
@media (min-width: 1200px) {
  .about-values .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE (TABLET NAV — hamburger kicks in early)
══════════════════════════════════════ */
@media (max-width: 1280px) {
  :root {
    --nav-h: 80px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--camo-dark);
    padding: 1.5rem 5%;
    gap: 1.25rem;
    z-index: 150;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .nav-social {
    gap: 1rem;
  }

  .nav-social .social-link {
    font-size: 1.1rem;
  }

  .nav-logo-img {
    height: 68px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE (MOBILE)
══════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-h: 80px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--camo-dark);
    padding: 1.5rem 5%;
    gap: 1.25rem;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .nav-social {
    gap: 1rem;
  }

  .nav-social .social-link {
    font-size: 1.1rem;
  }

  .nav-logo-img {
    height: 68px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-cards {
    grid-template-columns: 1fr;
  }

  .product-detail-img,
  .product-img {
    aspect-ratio: 3/2;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }

  .dot {
    width: 9px;
    height: 9px;
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }

  .contact-email-card {
    flex-wrap: wrap;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   PRODUCT IMAGE PLACEHOLDER
══════════════════════════════════════ */
.product-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--camo-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(242, 237, 228, 0.25);
}

.product-img-placeholder i {
  font-size: 2.75rem;
}

.product-img-placeholder p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ══════════════════════════════════════
   CART ICON (NAV)
══════════════════════════════════════ */
.cart-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--camo-cream);
  font-size: 1.15rem;
  position: relative;
  padding: 0.3rem 0.5rem;
  display: flex;
  align-items: center;
  margin-right: 0.25rem;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--camo-tan);
  color: var(--camo-dark);
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  padding: 0 3px;
}

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88dvh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ══════════════════════════════════════
   CART DRAWER
══════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  height: 100dvh;
  background: var(--camo-dark);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.4);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--camo-cream);
  letter-spacing: 0.06em;
}

.cart-close-btn,
.checkout-close-btn {
  background: none;
  border: none;
  color: var(--camo-cream);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.cart-close-btn:hover,
.checkout-close-btn:hover {
  opacity: 1;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1.5rem;
}

.cart-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  padding: 3rem 0;
  font-size: 0.9rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  color: var(--camo-cream);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.cart-item-price {
  color: var(--camo-tan);
  font-size: 0.82rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--camo-cream);
  font-size: 0.9rem;
}

.qty-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--camo-cream);
  width: 26px;
  height: 26px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.25rem;
  transition: color 0.2s;
}

.cart-item-remove:hover {
  color: #e74c3c;
}

.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  color: var(--camo-cream);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn-checkout-now {
  width: 100%;
  background: var(--camo-tan);
  color: var(--camo-dark);
  border: none;
  padding: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-checkout-now:hover {
  background: #b8a78a;
}

/* ══════════════════════════════════════
   CHECKOUT MODAL
══════════════════════════════════════ */
.checkout-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.checkout-modal.active {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal-inner {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
}

.checkout-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.checkout-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #1a1a1a;
  letter-spacing: 0.04em;
}

.checkout-close-btn {
  color: #1a1a1a;
}

.checkout-order-summary {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: #333;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.summary-total {
  font-weight: 700;
  border-top: 1px solid #ddd;
  padding-top: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.95rem;
}

.btn-pay-now {
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: background 0.2s;
}

.btn-pay-now:hover {
  background: #333;
}

.btn-pay-now:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.payment-message {
  color: #e74c3c;
  font-size: 0.83rem;
  margin-top: 0.6rem;
  min-height: 1.2em;
}

.checkout-secure-note {
  text-align: center;
  font-size: 0.72rem;
  color: #aaa;
  margin-top: 0.75rem;
}

.checkout-secure-note i {
  margin-right: 0.3rem;
}

.checkout-success {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}

.checkout-success i {
  font-size: 3rem;
  color: #27ae60;
  display: block;
  margin-bottom: 1rem;
}

.checkout-success h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.checkout-success p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}