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

:root {
  --red: #D42B2B;
  --red-dark: #B01E1E;
  --red-glow: rgba(212, 43, 43, 0.25);
  --black: #1A1A1A;
  --black-rich: #0D1117;
  --dark: #222;
  --gold: #C9A84C;
  --gold-soft: rgba(201, 168, 76, 0.15);
  --gray-900: #2C2C2C;
  --gray-700: #555;
  --gray-400: #999;
  --gray-200: #E5E5E5;
  --gray-100: #F5F5F5;
  --warm-white: #FAF9F7;
  --white: #FFFFFF;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: all var(--transition);
  font-weight: 600;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 8px var(--red-glow);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,43,43,0.4); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--black); }

.btn-dark {
  background: var(--black-rich);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover { background: var(--gray-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
}

.nav.nav--top {
  background: transparent;
}

.nav.nav--scrolled {
  background: var(--black-rich);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  border-bottom: 2px solid var(--red);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cart {
  position: relative;
  font-size: 1.2rem;
  color: var(--white);
}

.nav-cart .cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--black);
    flex-direction: column;
    padding: 24px 0;
    gap: 0;
    transform: translateY(-120%);
    transition: transform var(--transition);
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links a {
    padding: 16px 24px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-links a::after { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,17,23,0.85) 0%, rgba(13,17,23,0.5) 40%, rgba(0,0,0,0.3) 100%);
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--black-rich);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,17,23,0.6) 0%, rgba(13,17,23,0.85) 100%);
}

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

.page-hero h1 { margin-bottom: 12px; }
.page-hero p { opacity: 0.7; font-size: 1.1rem; }

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 { margin-bottom: 12px; }

.section-header .accent-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 16px auto;
}

.section-header p {
  color: var(--gray-700);
  max-width: 560px;
  margin: 0 auto;
}

.section--dark { background: var(--black-rich); color: var(--white); }
.section--dark .section-header p { color: var(--gray-400); }

.section--gray { background: var(--warm-white); }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(212,43,43,0.1), rgba(201,168,76,0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--red);
  border: 1px solid rgba(212,43,43,0.12);
}

.feature-card h3 { margin-bottom: 12px; }

.feature-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.product-img {
  position: relative;
  padding-top: 100%;
  background: var(--gray-100);
  overflow: hidden;
}

.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-img img.product-placeholder {
  object-fit: contain;
  padding: 32px;
  background: var(--gray-100);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.product-info h3 {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
}

.product-price .price-original {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-left: 8px;
  font-weight: 400;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.product-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 10px 16px;
  font-size: 0.8rem;
}

/* ===== ABOUT / STORY ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}

.story-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.story-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.story-content h2 { margin-bottom: 20px; }

.story-content p {
  color: var(--gray-700);
  margin-bottom: 16px;
}

.story-content p:last-of-type { margin-bottom: 32px; }

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--red);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-row { gap: 24px; }
}

/* ===== SPONSORS BAR ===== */
.sponsors-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.7;
}

.sponsors-bar span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* ===== SHOP FILTERS ===== */
.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

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

.filter-tab {
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-700);
  background: var(--gray-100);
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all var(--transition);
}

.filter-tab:hover { border-color: var(--gray-200); }
.filter-tab.active { background: var(--red); color: var(--white); }

.sort-select {
  padding: 10px 16px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  background: var(--white);
  color: var(--dark);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }

.info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--warm-white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.info-card-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.info-card p {
  color: var(--gray-700);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== MAP ===== */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #e63535 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 { margin-bottom: 16px; }

.cta-banner p {
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black-rich);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover { background: var(--red); }

.footer h4 {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links a {
  display: block;
  color: var(--gray-400);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  color: var(--gray-400);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom .veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.cart-overlay.open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
}

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

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

.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cart-close {
  font-size: 1.5rem;
  color: var(--gray-700);
  padding: 4px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--gray-400);
}

.cart-empty-icon { font-size: 3rem; margin-bottom: 16px; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  background: var(--gray-100);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart-item-price { color: var(--red); font-weight: 600; font-size: 0.9rem; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  transition: all var(--transition);
}

.cart-item-qty button:hover { border-color: var(--red); color: var(--red); }

.cart-item-qty span { font-weight: 600; font-size: 0.9rem; }

.cart-item-remove {
  color: var(--gray-400);
  font-size: 0.8rem;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cart-item-remove:hover { color: var(--red); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-200);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.cart-total .total-price { color: var(--red); font-size: 1.3rem; }

.cart-footer .btn { width: 100%; justify-content: center; }

/* ===== FISHING REPORTS ===== */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.report-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.report-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.report-img {
  height: 200px;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.report-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.report-content { padding: 24px; }

.report-content h3 {
  font-family: var(--font-main);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.report-content p {
  color: var(--gray-700);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.report-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.report-tag {
  padding: 4px 10px;
  background: var(--gray-100);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
