/* ============================================
   Pine Ridge Shooting Supplies — Mockup Styles
   Color palette derived from brand logos:
     OD Green + Tan/Gold on dark backgrounds
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-body: #111111;
  --bg-dark: #1a1a1a;
  --bg-card: #242424;
  --bg-card-hover: #2e2e2e;
  --bg-input: #2a2a2a;
  --green: #4A5D3A;
  --green-dark: #3A4A2E;
  --green-light: #5C7348;
  --tan: #C4A565;
  --tan-light: #D4B87A;
  --tan-dark: #A8893F;
  --red-accent: #8B3A3A;
  --text: #EDEDEC;
  --text-muted: #9A9A98;
  --text-dim: #6B6B69;
  --border: #333333;
  --border-light: #444444;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 2px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --transition: 0.2s ease;
  --max-width: 1200px;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-body);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--tan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--tan-light); }

img { max-width: 100%; height: auto; display: block; }

button, .btn {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
  transition: all var(--transition);
}

ul { list-style: none; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 60px 0; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.hidden { display: none !important; }

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--green);
  color: var(--text);
}
.btn-primary:hover { background: var(--green-light); color: #fff; }

.btn-secondary {
  background: transparent;
  color: var(--tan);
  border: 2px solid var(--tan);
}
.btn-secondary:hover { background: var(--tan); color: var(--bg-body); }

.btn-tan {
  background: var(--tan);
  color: var(--bg-body);
}
.btn-tan:hover { background: var(--tan-light); }

.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.header-logo img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.header-logo span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.header-logo .logo-sub {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--tan);
  display: block;
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(74, 93, 58, 0.3);
}

.nav-links a.active {
  color: var(--tan);
}

/* Cart icon in nav */
.cart-link {
  position: relative;
}

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

.cart-count.empty { display: none; }

/* Mobile hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-body) 0%, var(--green-dark) 50%, var(--bg-body) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74, 93, 58, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(196, 165, 101, 0.08) 0%, transparent 60%);
}

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

.hero-badge {
  display: inline-block;
  background: rgba(196, 165, 101, 0.15);
  color: var(--tan);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(196, 165, 101, 0.3);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

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

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
}

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

.hero-logo {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  opacity: 0.12;
  z-index: 0;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================
   CATEGORY CARDS (Home page)
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.category-card:hover {
  border-color: var(--green);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.category-card .cat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.category-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

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

.product-img {
  width: 100%;
  height: 200px;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  position: relative;
  overflow: hidden;
}

.product-img .placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--tan);
  color: var(--bg-body);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.product-badge.sale { background: var(--red-accent); color: #fff; }

.product-info {
  padding: 16px;
}

.product-info .product-category {
  font-size: 0.7rem;
  color: var(--tan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-info .product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tan);
  margin-bottom: 12px;
}

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

.product-info .btn { width: 100%; }

/* ============================================
   FEATURED / TRUST SECTION
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.trust-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.trust-card .trust-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--tan);
  display: block;
}

.trust-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   ABOUT BLURB (Home) & ABOUT PAGE
   ============================================ */
.about-blurb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-blurb-img {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.about-blurb-img img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-blurb-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-blurb-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.about-blurb-text .btn {
  margin-top: 10px;
}

/* Full about page */
.about-hero {
  text-align: center;
  padding: 50px 0 30px;
}

.about-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-content .about-text h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tan);
  margin: 30px 0 12px;
}

.about-content .about-text h2:first-child {
  margin-top: 0;
}

.about-content .about-text p {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-sidebar {
  position: sticky;
  top: 90px;
}

.about-sidebar .sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.about-sidebar .sidebar-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--tan);
}

.about-sidebar .sidebar-card p,
.about-sidebar .sidebar-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-sidebar .sidebar-card ul {
  padding-left: 0;
}

.about-sidebar .sidebar-card li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.about-sidebar .sidebar-card li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 90px;
}

.filter-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
}

.filter-group h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: var(--text);
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.filter-group label:hover { color: var(--text); }

.filter-group input[type="checkbox"] {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
}

.filter-group .cat-count {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

.shop-header .result-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.shop-sort select {
  background: var(--bg-input);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
}

/* ============================================
   SINGLE PRODUCT PAGE
   ============================================ */
.product-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-gallery {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-gallery .main-image {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  color: var(--text-dim);
  font-size: 1rem;
}

.product-gallery .thumb-row {
  display: flex;
  gap: 8px;
  padding: 12px;
}

.product-gallery .thumb {
  width: 60px;
  height: 60px;
  background: var(--bg-dark);
  border: 2px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--text-dim);
}

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

.product-details .breadcrumb {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.product-details .breadcrumb a { color: var(--text-muted); }
.product-details .breadcrumb a:hover { color: var(--tan); }
.product-details .breadcrumb span { margin: 0 6px; }

.product-details h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-details .product-sku {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.product-details .product-price-lg {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tan);
  margin-bottom: 20px;
}

.product-details .stock-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.stock-status.in-stock { color: var(--green-light); }
.stock-status.low-stock { color: var(--tan); }
.stock-status .stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.product-details .product-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.qty-cart-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-selector button {
  width: 40px;
  height: 44px;
  background: var(--bg-input);
  color: var(--text);
  font-size: 1.1rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-selector button:hover { background: var(--bg-card-hover); }

.qty-selector input {
  width: 50px;
  height: 44px;
  text-align: center;
  background: var(--bg-dark);
  color: var(--text);
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 600;
}

.qty-cart-row .btn { flex: 1; height: 44px; }

.product-meta {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.product-meta dt {
  display: inline;
  color: var(--text-muted);
  font-weight: 600;
}

.product-meta dd {
  display: inline;
  margin: 0 0 0 4px;
}

.product-meta .meta-row {
  margin-bottom: 6px;
}

/* Related products */
.related-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: start;
}

.cart-items {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cart-header-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 40px;
  gap: 16px;
  padding: 14px 20px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 40px;
  gap: 16px;
  padding: 16px 20px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-info {
  display: flex;
  gap: 14px;
  align-items: center;
}

.cart-item-thumb {
  width: 60px;
  height: 60px;
  background: var(--bg-dark);
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-dim);
}

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

.cart-item-variant {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.cart-item .price,
.cart-item .subtotal {
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-item .subtotal { color: var(--tan); }

.cart-item .qty-selector {
  transform: scale(0.85);
  transform-origin: center;
}

.cart-item .remove-btn {
  background: none;
  color: var(--text-dim);
  font-size: 1.1rem;
  padding: 4px;
}

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

/* Cart summary */
.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.cart-summary h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
}

.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 12px;
  padding-top: 16px;
  font-size: 1.1rem;
  font-weight: 700;
}

.summary-row.total .amount { color: var(--tan); }

.cart-summary .btn {
  width: 100%;
  margin-top: 20px;
}

.cart-summary .secure-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 12px;
}

/* Empty cart */
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

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

.cart-empty h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.cart-empty p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}

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

.contact-info h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-detail .detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(74, 93, 58, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green-light);
  flex-shrink: 0;
}

.contact-detail h3 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  margin-top: 60px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 50px 0 30px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-brand .footer-logo span {
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--tan);
  margin-bottom: 16px;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page {
  display: none;
  animation: fadeIn 0.25s ease;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NOTIFICATION TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--green);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 200px 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 768px) {
  :root { --header-height: 60px; }

  .mobile-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 12px 16px;
    width: 100%;
    text-align: left;
  }

  .hero { min-height: 400px; }
  .hero h1 { font-size: 2rem; }
  .hero-logo { display: none; }

  .about-blurb { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .product-page-layout { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }

  .cart-header-row { display: none; }
  .cart-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cart-item-info { margin-bottom: 8px; }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
