/*
Theme Name: Sox Outlet
Theme URI: https://soxoutlet.com
Author: Sox Outlet Web Team
Description: Custom hand-coded theme for Sox Outlet — a workwear, footwear and safety-gear retailer with two Chicago-area store locations. Built specifically for WooCommerce with Lightspeed Retail POS sync in mind. Requires WooCommerce.
Version: 1.0.0
Requires PHP: 7.4
Text Domain: sox-outlet
*/

/* ==========================================================================
   1. DESIGN TOKENS (CSS variables — change these to re-theme the whole site)
   ========================================================================== */
:root {
  /* Brand colors — pulled from logo / approved homepage design */
  --so-orange: #F0821E;
  --so-orange-hover: #E0740F;
  --so-orange-deep: #D96E0A;
  --so-orange-light: #F7A24E;
  --so-brown: #2A1D12;
  --so-black: #17181A;
  --so-green: #5C8A63;

  /* Backgrounds */
  --so-bg-white: #ffffff;
  --so-bg-cream: #FBFAF8;
  --so-bg-cream-2: #F6F4F0;
  --so-bg-tan: #FAF4E9;
  --so-bg-card: #EDEAE3;

  /* Borders */
  --so-border: #E7E4DD;
  --so-border-2: #EAE7E0;

  /* Text */
  --so-text-body: #3E3C37;
  --so-text-muted: #6E6A62;
  --so-text-faint: #9A958B;
  --so-text-onbrown: #DCD5CA;
  --so-text-onbrown-faint: #9C9284;
  --so-heading: #17181A;

  --so-radius: 12px;
  --so-radius-lg: 14px;
  --so-radius-pill: 999px;
  --so-maxwidth: 1280px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--so-text-body);
  background: var(--so-bg-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Archivo', -apple-system, sans-serif;
  color: var(--so-heading);
  margin: 0;
}

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

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

.so-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 7px;
  border: none;
  transition: background .16s, color .16s, border-color .16s, transform .16s;
}
.so-btn-primary { background: var(--so-orange); color: var(--so-black); }
.so-btn-primary:hover { background: var(--so-orange-hover); }
.so-btn-dark { background: var(--so-black); color: #fff; }
.so-btn-dark:hover { background: #000; }
.so-btn-outline { background: transparent; border: 1.5px solid var(--so-black); color: var(--so-black); }
.so-btn-outline:hover { background: var(--so-black); color: #fff; }
.so-btn-pill { border-radius: var(--so-radius-pill); }

.so-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--so-orange-deep);
  margin-bottom: 8px;
  display: block;
}

.so-section-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .so-section-title { font-size: 30px !important; }
}

/* ==========================================================================
   3. UTILITY BAR + HEADER
   ========================================================================== */
.so-utility-bar {
  background: var(--so-black);
  color: #EDEBE7;
  font-size: 13px;
  letter-spacing: .02em;
}
.so-utility-bar .so-container {
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.so-utility-bar a { color: #B9B6AF; }
.so-utility-left { display: flex; align-items: center; gap: 9px; font-weight: 500; }
.so-utility-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--so-orange); display: inline-block; }
.so-utility-right { display: flex; align-items: center; gap: 22px; font-weight: 500; }

.so-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--so-border);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.so-header-inner {
  max-width: var(--so-maxwidth);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.so-logo img { height: 52px; width: auto; }

.so-nav { flex: 1; display: flex; align-items: center; justify-content: center; }
.so-nav ul.menu { display: flex; align-items: center; gap: 2px; position: relative; }
.so-nav li { position: relative; }
.so-nav > ul > li > a {
  display: block;
  padding: 10px 16px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--so-heading);
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.so-nav > ul > li:hover > a,
.so-nav > ul > li.current-menu-item > a { color: var(--so-orange-deep); background: #FBF3E9; }

/* Dropdown submenu (acts as mega/category menu — fully editable via Appearance > Menus) */
.so-nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--so-border);
  border-radius: 10px;
  box-shadow: 0 22px 40px -12px rgba(23,24,26,.18);
  padding: 10px;
  z-index: 60;
}
.so-nav li:hover > ul { display: block; }
.so-nav ul ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 14.5px;
  color: #3E3C37;
  border-radius: 6px;
}
.so-nav ul ul li a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--so-orange); flex: none; }
.so-nav ul ul li a:hover { background: var(--so-bg-cream-2); color: var(--so-orange-deep); }

.so-cart-icon {
  flex: none;
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--so-black);
  display: flex; align-items: center; justify-content: center;
  margin-left: auto;
}
.so-cart-icon:hover { background: #000; }
.so-cart-count {
  position: absolute; top: -2px; right: -2px;
  min-width: 18px; height: 18px; border-radius: 999px;
  background: var(--so-orange); color: var(--so-black);
  font-family: 'Archivo'; font-weight: 800; font-size: 10.5px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

.so-mobile-toggle { display: none; background: none; border: 1px solid #E0DCD3; border-radius: 6px; padding: 9px; margin-left: 10px; }
.so-mobile-menu { display: none; border-top: 1px solid var(--so-border); padding: 8px 16px 16px; }
.so-mobile-menu.is-open { display: block; }
.so-mobile-menu a { display: block; font-family: 'Archivo'; font-weight: 600; font-size: 16px; padding: 13px 8px; border-bottom: 1px solid #F0EEE9; }

@media (max-width: 900px) {
  .so-nav, .so-cart-icon { display: none; }
  .so-mobile-toggle { display: block; margin-left: auto; }
  .so-utility-right { display: none; }
}

/* ==========================================================================
   4. HERO SLIDER
   ========================================================================== */
.so-hero { position: relative; height: 600px; overflow: hidden; background: #CFC9BE; }
.so-hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .6s ease;
  background-size: cover; background-position: center;
}
.so-hero-slide.is-active { opacity: 1; z-index: 2; }
.so-hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,21,23,.9) 0%, rgba(20,21,23,.66) 42%, rgba(20,21,23,.2) 72%, rgba(20,21,23,.05) 100%);
}
.so-hero-content {
  position: relative; height: 100%; max-width: var(--so-maxwidth); margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; justify-content: center;
}
.so-hero-kicker {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: rgba(240,130,30,.16); border: 1px solid rgba(240,130,30,.5); border-radius: 100px;
  padding: 6px 14px; font-family: 'Archivo'; font-weight: 700; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: #F7A24E; margin-bottom: 20px;
}
.so-hero-content h1 {
  font-weight: 900; font-size: 62px; line-height: .97; letter-spacing: -.015em;
  text-transform: uppercase; color: #fff; max-width: 720px;
}
.so-hero-content h1 span { color: var(--so-orange); }
.so-hero-content p { font-size: 19px; line-height: 1.55; color: #D9D6CF; max-width: 480px; margin: 22px 0 32px; }
.so-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.so-hero-actions .so-btn-primary { box-shadow: 0 6px 18px rgba(240,130,30,.35); }
.so-hero-actions .so-btn-ghost {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.08); color: #fff;
  font-family: 'Archivo'; font-weight: 700; font-size: 16px; padding: 16px 24px; border-radius: 7px;
  border: 1.5px solid rgba(255,255,255,.55);
}
.so-hero-actions .so-btn-ghost:hover { background: #fff; color: var(--so-black); }

.so-hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(23,24,26,.5); border: 1.5px solid rgba(255,255,255,.4); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.so-hero-arrow:hover { background: var(--so-orange); border-color: var(--so-orange); }
.so-hero-prev { left: 22px; } .so-hero-next { right: 22px; }
.so-hero-dots { position: absolute; left: 0; right: 0; bottom: 22px; z-index: 6; display: flex; justify-content: center; gap: 10px; }
.so-hero-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; }
.so-hero-dots button.is-active { background: var(--so-orange); width: 22px; border-radius: 5px; }

@media (max-width: 900px) { .so-hero { height: 480px; } .so-hero-content h1 { font-size: 42px; } }
@media (max-width: 560px) { .so-hero { height: 420px; } .so-hero-content h1 { font-size: 34px; } }

/* ==========================================================================
   5. TRUST STRIP / QUICK CATEGORIES
   ========================================================================== */
.so-trust { background: var(--so-black); color: #EDEBE7; }
.so-trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; padding: 20px 24px; max-width: var(--so-maxwidth); margin: 0 auto; }
.so-trust-item { display: flex; align-items: center; gap: 14px; }
.so-trust-item + .so-trust-item { border-left: 1px solid #2E2F31; padding-left: 18px; }
.so-trust-title { font-family: 'Archivo'; font-weight: 700; font-size: 15.5px; }
.so-trust-sub { font-size: 13.5px; color: #A9A69F; }
@media (max-width: 700px) { .so-trust-grid { grid-template-columns: 1fr; } .so-trust-item + .so-trust-item { border-left: none; padding-left: 0; border-top: 1px solid #2E2F31; padding-top: 14px; } }

.so-quickstrip { padding: 44px 24px 8px; }
.so-quickstrip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.so-quickstrip-item { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 110px; }
.so-quickstrip-circle {
  width: 82px; height: 82px; border-radius: 50%; overflow: hidden; background: var(--so-bg-cream-2);
  border: 1px solid var(--so-border-2); transition: border-color .16s, transform .16s;
}
.so-quickstrip-item:hover .so-quickstrip-circle { border-color: var(--so-orange); transform: translateY(-3px); }
.so-quickstrip-circle img { width: 100%; height: 100%; object-fit: cover; }
.so-quickstrip-item span.label { font-family: 'Archivo'; font-weight: 700; font-size: 13.5px; text-align: center; color: #2B2C2E; }

/* ==========================================================================
   6. FEATURED CATEGORY GRID
   ========================================================================== */
.so-cats { padding: 52px 24px 20px; }
.so-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.so-view-all { font-family: 'Archivo'; font-weight: 700; font-size: 15px; color: var(--so-heading); display: inline-flex; align-items: center; gap: 8px; border-bottom: 2px solid var(--so-orange); padding-bottom: 2px; }

.so-cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
@media (max-width: 1000px) { .so-cat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .so-cat-grid { grid-template-columns: 1fr; } }

.so-cat-card {
  display: block; border: 1px solid var(--so-border); border-radius: var(--so-radius); overflow: hidden;
  background: #fff; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.so-cat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(23,24,26,.12); border-color: var(--so-orange); }
.so-cat-card-img { position: relative; aspect-ratio: 4/3.4; background: var(--so-bg-card); overflow: hidden; }
.so-cat-card-img img { width: 100%; height: 100%; object-fit: cover; }
.so-cat-badge { position: absolute; top: 12px; left: 12px; background: var(--so-orange); color: var(--so-black); font-family: 'Archivo'; font-weight: 800; font-size: 10px; letter-spacing: .08em; padding: 4px 9px; border-radius: 5px; text-transform: uppercase; }
.so-cat-card-body { padding: 18px 18px 20px; display: flex; align-items: center; justify-content: space-between; }
.so-cat-card-body h3 { font-weight: 800; font-size: 21px; text-transform: uppercase; letter-spacing: -.01em; }
.so-cat-card-sub { font-size: 13.5px; color: var(--so-text-muted); margin-top: 3px; }
.so-cat-arrow { flex: none; width: 34px; height: 34px; border-radius: 50%; background: #F5F2EC; display: flex; align-items: center; justify-content: center; }

/* Promo split banners */
.so-promo-split { padding: 44px 24px; }
.so-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 800px) { .so-promo-grid { grid-template-columns: 1fr; } }
.so-promo-card {
  position: relative; border-radius: var(--so-radius-lg); overflow: hidden; min-height: 230px;
  display: flex; align-items: center; background-size: cover; background-position: center;
}
.so-promo-card::before { content:''; position: absolute; inset:0; background: linear-gradient(90deg, rgba(20,21,23,.88), rgba(20,21,23,.3)); }
.so-promo-card-body { position: relative; padding: 34px 36px; }
.so-promo-card-body h3 { font-weight: 900; font-size: 30px; line-height: 1.02; text-transform: uppercase; color: #fff; max-width: 300px; }
.so-promo-card-body p { font-size: 15px; color: #D9D6CF; max-width: 290px; margin: 12px 0 20px; }

/* ==========================================================================
   7. PRODUCT GRID (best sellers / new arrivals / shop reskin)
   ========================================================================== */
.so-prod-section { padding: 64px 24px; }
.so-prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
@media (max-width: 1000px) { .so-prod-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .so-prod-grid { grid-template-columns: 1fr; } }

.so-prod-card {
  display: flex; flex-direction: column; border: 1px solid var(--so-border); border-radius: var(--so-radius);
  overflow: hidden; background: #fff; transition: transform .16s, box-shadow .16s, border-color .16s;
}
.so-prod-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(23,24,26,.1); border-color: #EAD9C6; }
.so-prod-card-img { position: relative; aspect-ratio: 1/1; background: var(--so-bg-card); overflow: hidden; }
.so-prod-card-img img { width: 100%; height: 100%; object-fit: cover; }
.so-prod-badge { position: absolute; top: 11px; left: 11px; font-family: 'Archivo'; font-weight: 800; font-size: 9.5px; letter-spacing: .08em; padding: 4px 8px; border-radius: 5px; text-transform: uppercase; }
.so-prod-card-body { padding: 15px 16px 17px; display: flex; flex-direction: column; flex: 1; }
.so-prod-brand { font-family: 'Archivo'; font-weight: 700; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: #C4611A; }
.so-prod-name { font-size: 15.5px; font-weight: 600; color: var(--so-heading); margin: 5px 0 auto; line-height: 1.32; }
.so-prod-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.so-prod-stock { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--so-green); font-weight: 600; }
.so-prod-stock span { width: 7px; height: 7px; border-radius: 50%; background: var(--so-green); }
.so-prod-view { font-family: 'Archivo'; font-weight: 700; font-size: 13px; color: var(--so-heading); }

/* Hidden-price notice used across shop/category/single product */
.so-price-hidden {
  font-family: 'Archivo'; font-weight: 700; font-size: 13.5px; color: var(--so-orange-deep);
}

/* ==========================================================================
   8. BRAND MARQUEE
   ========================================================================== */
.so-brands { background: var(--so-bg-cream-2); padding: 56px 0; border-top: 1px solid var(--so-border-2); border-bottom: 1px solid var(--so-border-2); overflow: hidden; }
.so-brands-head { max-width: var(--so-maxwidth); margin: 0 auto; padding: 0 24px; text-align: center; margin-bottom: 30px; }
.so-brands-head p { font-size: 16px; color: var(--so-text-muted); max-width: 560px; margin: 0 auto; }
.so-marquee { position: relative; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.so-marquee-track { display: flex; gap: 20px; width: max-content; padding: 0 10px; animation: so-scroll 42s linear infinite; }
.so-marquee:hover .so-marquee-track { animation-play-state: paused; }
@keyframes so-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.so-brand-tile {
  flex: none; width: 180px; height: 96px; background: #fff; border: 1px solid #E4E0D8; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.so-brand-tile img { max-width: 70%; max-height: 40px; object-fit: contain; }
.so-brand-tile span { font-family: 'Archivo'; font-weight: 700; font-size: 16px; color: #2B2C2E; }

/* ==========================================================================
   9. ABOUT / BRAND STORY
   ========================================================================== */
.so-about { background: var(--so-brown); color: #F5F1EA; padding: 96px 24px; }
.so-about-grid { max-width: var(--so-maxwidth); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .so-about-grid { grid-template-columns: 1fr; gap: 40px; } .so-about { padding: 60px 24px; } }
.so-about-img { display: flex; align-items: center; justify-content: center; min-height: 300px; }
.so-about-img img { width: min(320px,74%); }
.so-about h2 { font-weight: 900; font-size: 52px; line-height: 1.08; letter-spacing: -.015em; color: #FCFAF6; }
@media (max-width: 900px) { .so-about h2 { font-size: 36px; } }
.so-about p { font-size: 18px; line-height: 1.7; color: var(--so-text-onbrown); margin: 20px 0; max-width: 620px; }
.so-about-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.so-about-stat-num { font-family: 'Archivo'; font-weight: 900; font-size: 30px; color: var(--so-orange); }
.so-about-stat-label { font-family: 'Archivo'; font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #A79C8D; margin-top: 6px; }
.so-about-cta-row { display: flex; align-items: center; gap: 44px; flex-wrap: wrap; margin-top: 28px; }
.so-about-cta-row .so-btn-primary { border-radius: 999px; padding: 20px 36px; color: #231708; }

/* ==========================================================================
   10. REVIEWS
   ========================================================================== */
.so-reviews { background: var(--so-bg-cream); padding: 78px 24px; border-top: 1px solid #EFEBE3; }
.so-reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 38px; flex-wrap: wrap; }
.so-reviews-score { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid #E7E3DB; border-radius: 12px; padding: 14px 20px; }
.so-reviews-score-num { font-family: 'Archivo'; font-weight: 900; font-size: 24px; }
.so-reviews-score-sub { font-size: 13px; color: var(--so-text-muted); margin-top: 2px; }
.so-review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 900px) { .so-review-grid { grid-template-columns: 1fr; } }
.so-review-card { border: 1px solid var(--so-border); border-radius: var(--so-radius); padding: 24px; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.03); }
.so-review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.so-review-avatar { width: 44px; height: 44px; border-radius: 50%; color: #fff; font-family: 'Archivo'; font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; }
.so-review-name { font-family: 'Archivo'; font-weight: 700; font-size: 15.5px; }
.so-review-when { font-size: 12.5px; color: #8A8579; }
.so-review-text { font-size: 15px; line-height: 1.6; color: var(--so-text-body); margin-top: 12px; }
.so-review-stars { display: flex; gap: 1px; margin-bottom: 12px; color: var(--so-orange); }

/* ==========================================================================
   11. LOCATIONS
   ========================================================================== */
.so-locations { background: var(--so-bg-tan); padding: 88px 24px 76px; }
.so-locations-head { max-width: var(--so-maxwidth); margin: 0 auto 40px; }
.so-locations-head h2 { font-family: 'Archivo'; font-weight: 900; font-size: 48px; line-height: 1.1; letter-spacing: -.02em; color: var(--so-brown); }
@media (max-width: 900px) { .so-locations-head h2 { font-size: 32px; } }
.so-location-grid { max-width: var(--so-maxwidth); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 900px) { .so-location-grid { grid-template-columns: 1fr; } }
.so-location-card { background: #fff; border-radius: var(--so-radius-lg); overflow: hidden; border: 1px solid #EFE6D6; }
.so-location-map { position: relative; height: 200px; background: #DED2BA; display: flex; align-items: flex-end; justify-content: flex-end; padding: 14px; }
.so-location-map span { background: rgba(42,29,18,.82); color: #FCFAF6; font-family: 'Archivo'; font-weight: 700; font-size: 10.5px; letter-spacing: .08em; padding: 6px 11px; border-radius: 6px; }
.so-location-body { padding: 24px; }
.so-location-top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.so-location-top h3 { font-family: 'Archivo'; font-weight: 900; font-size: 26px; letter-spacing: -.01em; color: var(--so-brown); }
.so-location-phone { font-family: 'Archivo'; font-weight: 800; font-size: 19px; color: #D2560F; white-space: nowrap; }
.so-location-address { font-size: 16px; color: #6A5B4C; margin: 12px 0 20px; }
.so-location-hours { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.so-location-hours span { border: 1px solid #E6DCCC; background: #FBF6EE; border-radius: 999px; padding: 9px 16px; font-size: 14.5px; color: #4A3D30; }
.so-location-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.so-location-actions a { display: flex; align-items: center; justify-content: center; font-family: 'Archivo'; font-weight: 800; font-size: 16px; padding: 18px 12px; border-radius: 999px; }
.so-location-actions .directions { background: var(--so-brown); color: #FCFAF6; }
.so-location-actions .call { border: 1px solid #DED3C2; color: var(--so-brown); }

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.so-footer { background: var(--so-brown); color: var(--so-text-onbrown); }
.so-footer-grid { max-width: var(--so-maxwidth); margin: 0 auto; padding: 76px 24px 40px; display: grid; grid-template-columns: 1.35fr .8fr 1fr 1fr; gap: 52px; }
@media (max-width: 900px) { .so-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .so-footer-grid { grid-template-columns: 1fr; } }
.so-footer-logo img { height: 84px; }
.so-footer h4 { font-family: 'Archivo'; font-weight: 800; font-size: 19px; color: #FCFAF6; margin-bottom: 22px; }
.so-footer-col a, .so-footer-col div { display: block; margin-bottom: 14px; font-size: 16px; }
.so-footer-social { display: flex; gap: 12px; margin-top: 22px; }
.so-footer-social a { width: 46px; height: 46px; border-radius: 999px; border: 1px solid rgba(245,241,234,.28); display: flex; align-items: center; justify-content: center; }
.so-footer-social a:hover { background: var(--so-orange); border-color: var(--so-orange); }
.so-footer-bottom { border-top: 1px solid rgba(245,241,234,.13); text-align: center; padding: 26px 24px 34px; font-size: 15px; color: var(--so-text-onbrown-faint); }

/* ==========================================================================
   13. GENERIC PAGE HERO (shop / archive / contact / cart / checkout banner)
   ========================================================================== */
.so-page-hero { background: var(--so-brown); color: #F5F1EA; padding: 56px 24px; }
.so-page-hero h1 { font-family: 'Archivo'; font-weight: 900; font-size: 42px; text-transform: uppercase; letter-spacing: -.01em; }
.so-page-hero .so-breadcrumb { font-size: 14px; color: var(--so-text-onbrown-faint); margin-top: 10px; }
.so-page-hero .so-breadcrumb a { color: var(--so-orange-light); }

.so-content-wrap { max-width: var(--so-maxwidth); margin: 0 auto; padding: 48px 24px 80px; }

/* Contact page */
.so-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 900px) { .so-contact-grid { grid-template-columns: 1fr; } }
.so-contact-form input, .so-contact-form textarea, .so-contact-form select {
  width: 100%; border: 1px solid var(--so-border); border-radius: 8px; padding: 13px 14px; font-size: 15px;
  font-family: inherit; margin-bottom: 16px; background: #fff;
}
.so-contact-form label { font-family: 'Archivo'; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--so-text-muted); display: block; margin-bottom: 6px; }
.so-contact-info-card { background: var(--so-bg-cream-2); border-radius: var(--so-radius-lg); padding: 30px; }
.so-contact-success { background: #EAF3EC; border: 1px solid #C7DDCB; color: #33623F; padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; font-size: 15px; }
