/*
Theme Name:  Penguin Authority
Theme URI:   https://penguinauthority.com
Author:      Penguin Authority
Author URI:  https://penguinauthority.com
Description: Custom WooCommerce theme for Penguin Authority — dark ink, gold, and grit.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: penguin-authority
Tags:        woocommerce, custom, dark, ecommerce
*/

/* ============================================================
   PENGUIN AUTHORITY — MASTER BRAND VARIABLES
   To change the look: edit values in this block only.
   ============================================================ */
:root {
  /* Core palette */
  --ink:          #0d0d0d;   /* page background */
  --ink-2:        #1a1a1a;   /* card / section background */
  --ink-3:        #242424;   /* input / deep background */
  --red:          #c0392b;   /* primary accent — buttons, borders */
  --red-dark:     #9b2d24;   /* hover state for red */
  --gold:         #b8982a;   /* secondary accent — labels, prices */
  --gold-2:       #d4af37;   /* brighter gold for highlights */
  --paper:        #f0ead6;   /* primary light text */
  --paper-2:      #e8e0c8;   /* secondary light text */
  --cream:        #d4c9a8;   /* muted text on dark */
  --smoke:        #6b6560;   /* subdued / placeholder text */
  --border:       #2a2a2a;   /* default border color */
  --border-light: #3a3a3a;   /* hover border */
  --offwhite:     #ede8d8;   /* body text on dark */
  --green-muted:  #5a9a6a;   /* free / success state */

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Oswald', 'Arial Narrow', sans-serif;
  --font-stamp:   'Special Elite', 'Courier New', monospace;
  --font-mono:    'Courier Prime', 'Courier New', monospace;

  /* Spacing */
  --section-pad:  52px 32px;
  --card-pad:     20px;
  --radius:       0px; /* intentionally sharp / no radius for gritty look */
}

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

html { scroll-behavior: smooth; }

body {
  background:  var(--ink);
  color:       var(--offwhite);
  font-family: var(--font-body);
  font-size:   15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--paper); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--paper);
}
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 26px; }
h4 { font-size: 20px; }

p {
  font-family: var(--font-stamp);
  font-size: 14px;
  line-height: 1.75;
  color: var(--smoke);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gold        { color: var(--gold); }
.text-red         { color: var(--red); }
.text-paper       { color: var(--paper); }
.text-smoke       { color: var(--smoke); }
.font-display     { font-family: var(--font-display); }
.font-mono        { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; }
.section-divider  { height: 3px; background: linear-gradient(90deg, var(--red), var(--gold), transparent); }
.sr-only          { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Section header pattern */
.section-label {
  font-family: var(--font-mono);
  font-size:   11px;
  color:       var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.section-title {
  font-family: var(--font-display);
  font-size:   clamp(26px, 3vw, 36px);
  color:       var(--paper);
  letter-spacing: 3px;
  text-transform: uppercase;
  display:     flex;
  align-items: center;
  gap:         16px;
  margin-bottom: 28px;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
button.btn,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display:          inline-block;
  font-family:      var(--font-display);
  font-size:        18px;
  letter-spacing:   3px;
  text-transform:   uppercase;
  padding:          12px 32px;
  border:           none;
  cursor:           pointer;
  transition:       background 0.2s, color 0.2s;
  text-align:       center;
}

.btn-primary,
.woocommerce a.button,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
#place_order {
  background: var(--red);
  color:      var(--paper);
}
.btn-primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button.alt:hover,
#place_order:hover {
  background: var(--red-dark);
  color:      var(--paper);
}

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

.btn-ghost {
  background:   transparent;
  color:        var(--smoke);
  border:       1px solid var(--border);
}
.btn-ghost:hover,
.btn-ghost.active {
  color:            var(--paper);
  border-color:     var(--red);
  background:       rgba(192, 57, 43, 0.1);
}

/* ============================================================
   FORMS
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
textarea,
select,
.woocommerce-input-wrapper input,
.woocommerce textarea {
  width:       100%;
  background:  var(--ink-3);
  border:      1px solid var(--border);
  color:       var(--offwhite);
  padding:     10px 14px;
  font-family: var(--font-stamp);
  font-size:   13px;
  outline:     none;
  transition:  border-color 0.2s;
  appearance:  none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
}
label {
  font-family:    var(--font-mono);
  font-size:      11px;
  color:          var(--gold);
  letter-spacing: 2px;
  display:        block;
  margin-bottom:  6px;
  text-transform: uppercase;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#masthead {
  background:    var(--ink);
  border-bottom: 3px solid var(--gold);
  position:      sticky;
  top:           0;
  z-index:       1000;
  padding:       0 24px;
}
.nav-inner {
  max-width:      1200px;
  margin:         0 auto;
  height:         64px;
  display:        flex;
  align-items:    center;
  justify-content: space-between;
  gap:            20px;
}
.site-branding {
  display:     flex;
  align-items: center;
  gap:         14px;
  flex-shrink: 0;
}
.site-logo img {
  height:     48px;
  width:      auto;
  mix-blend-mode: lighten;
}
.site-name {
  font-family:    var(--font-display);
  font-size:      24px;
  letter-spacing: 3px;
  color:          var(--paper);
  line-height:    1;
  text-decoration: none;
}
.site-tagline {
  font-family:    var(--font-mono);
  font-size:      9px;
  color:          var(--gold);
  letter-spacing: 2px;
  display:        block;
  margin-top:     2px;
}

/* Primary nav menu */
#primary-navigation ul {
  display:    flex;
  list-style: none;
  gap:        0;
}
#primary-navigation ul li a {
  display:        block;
  padding:        8px 16px;
  font-family:    var(--font-display);
  font-size:      16px;
  letter-spacing: 2px;
  color:          var(--smoke);
  border-bottom:  3px solid transparent;
  margin-bottom:  -3px;
  transition:     all 0.2s;
  text-decoration: none;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item a,
#primary-navigation ul li.current_page_item a {
  color:        var(--paper);
  border-bottom-color: var(--red);
}

/* Cart icon */
.nav-cart {
  display:     flex;
  align-items: center;
  gap:         8px;
  flex-shrink: 0;
}
.nav-cart a.cart-contents {
  background:     var(--red);
  color:          var(--paper);
  padding:        8px 20px;
  font-family:    var(--font-display);
  font-size:      16px;
  letter-spacing: 2px;
  text-decoration: none;
  transition:     background 0.2s;
  white-space:    nowrap;
}
.nav-cart a.cart-contents:hover { background: var(--red-dark); }
.nav-cart .amount { color: var(--paper); }

/* Mobile menu toggle */
.menu-toggle {
  display:    none;
  background: transparent;
  border:     1px solid var(--border);
  color:      var(--paper);
  padding:    8px 12px;
  font-family: var(--font-display);
  font-size:  14px;
  letter-spacing: 2px;
  cursor:     pointer;
}

/* ============================================================
   TICKER BANNER
   ============================================================ */
.ticker-wrap {
  background:   var(--ink-2);
  border-top:   1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding:      10px 0;
  overflow:     hidden;
  white-space:  nowrap;
}
.ticker-inner {
  display:   inline-block;
  animation: pa-ticker 25s linear infinite;
  font-family:    var(--font-display);
  font-size:      13px;
  letter-spacing: 4px;
  color:          var(--smoke);
}
.ticker-inner .ticker-sep { color: var(--gold); margin: 0 12px; }
@keyframes pa-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background:  var(--ink);
  min-height:  500px;
  display:     flex;
  align-items: stretch;
  border-bottom: 4px solid var(--gold);
  overflow:    hidden;
  position:    relative;
}
.hero-bg-word {
  position:    absolute;
  font-family: var(--font-display);
  font-size:   220px;
  color:       rgba(255,255,255,0.018);
  top:         50%;
  left:        -10px;
  transform:   translateY(-50%);
  pointer-events: none;
  letter-spacing: -8px;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}
.hero-content {
  flex:      1;
  padding:   52px 40px;
  display:   flex;
  flex-direction: column;
  justify-content: center;
  position:  relative;
  z-index:   2;
}
.hero-eyebrow {
  font-family:    var(--font-mono);
  font-size:      11px;
  color:          var(--gold);
  letter-spacing: 4px;
  margin-bottom:  16px;
  display:        flex;
  align-items:    center;
  gap:            10px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content:    '';
  width:      36px;
  height:     1px;
  background: var(--gold);
  opacity:    0.4;
}
.hero-title {
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: 20px;
}
.hero-title .line-1 { font-size: clamp(52px, 6vw, 72px); color: var(--paper); letter-spacing: 2px; display: block; }
.hero-title .line-2 { font-size: clamp(68px, 9vw, 100px); color: var(--red); letter-spacing: -2px; display: block; text-shadow: 3px 3px 0 rgba(0,0,0,0.5); }
.hero-title .line-3 { font-size: clamp(18px, 2.5vw, 28px); color: var(--gold); letter-spacing: 8px; display: block; margin-top: 6px; }

.hero-desc {
  font-family:   var(--font-stamp);
  font-size:     14px;
  color:         var(--smoke);
  line-height:   1.75;
  max-width:     400px;
  margin-bottom: 28px;
  border-left:   3px solid var(--red);
  padding-left:  14px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  width:          340px;
  flex-shrink:    0;
  display:        flex;
  align-items:    flex-end;
  justify-content: center;
  position:       relative;
  overflow:       hidden;
}
.hero-image img {
  max-height:  520px;
  width:       auto;
  object-fit:  contain;
  mix-blend-mode: lighten;
  position:    relative;
  z-index:     2;
}
.hero-image-glow {
  position:   absolute;
  bottom:     0;
  left:       50%;
  transform:  translateX(-50%);
  width:      220px;
  height:     80px;
  background: radial-gradient(ellipse, rgba(192,57,43,0.35), transparent 70%);
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.categories-section {
  background: var(--ink-2);
  padding:    var(--section-pad);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap:     2px;
}
.category-card {
  background:  var(--ink-3);
  border:      1px solid var(--border);
  padding:     22px 16px;
  text-align:  center;
  cursor:      pointer;
  transition:  all 0.25s;
  position:    relative;
  overflow:    hidden;
  text-decoration: none;
  display:     block;
}
.category-card-bar {
  position:   absolute;
  top:        0; left: 0; right: 0;
  height:     3px;
  background: var(--red);
  transform:  scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.category-card:hover .category-card-bar,
.category-card:focus .category-card-bar { transform: scaleX(1); }
.category-card:hover,
.category-card:focus { border-color: var(--gold); background: var(--ink); }
.category-card:hover .category-name { color: var(--gold); }
.category-icon  { font-size: 28px; margin-bottom: 10px; }
.category-name  { font-family: var(--font-display); font-size: 15px; letter-spacing: 2px; color: var(--offwhite); transition: color 0.2s; display: block; }
.category-count { font-family: var(--font-mono); font-size: 10px; color: var(--smoke); margin-top: 4px; display: block; }

/* ============================================================
   PRODUCT CARDS (WooCommerce overrides)
   ============================================================ */
.products-section { background: var(--ink); padding: var(--section-pad); }

ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
  gap:         2px !important;
  list-style:  none !important;
  margin:      0 !important;
  padding:     0 !important;
}

ul.products li.product {
  background:  var(--ink-2) !important;
  border:      1px solid var(--border) !important;
  overflow:    hidden !important;
  transition:  border-color 0.25s, transform 0.25s !important;
  position:    relative !important;
  margin:      0 !important;
  float:       none !important;
}
ul.products li.product:hover {
  border-color: var(--gold) !important;
  transform:    translateY(-3px) !important;
}

/* Product image area */
ul.products li.product a img {
  height:     180px !important;
  width:      100% !important;
  object-fit: cover !important;
  border-bottom: 1px solid var(--border) !important;
  transition: opacity 0.2s !important;
  background: var(--ink-3) !important;
}
ul.products li.product:hover a img { opacity: 0.9 !important; }

/* Product badges */
ul.products li.product .onsale {
  background:  var(--red) !important;
  color:       var(--paper) !important;
  font-family: var(--font-display) !important;
  font-size:   12px !important;
  letter-spacing: 1.5px !important;
  border-radius: 0 !important;
  min-height:  auto !important;
  min-width:   auto !important;
  line-height: 1 !important;
  padding:     4px 10px !important;
  top:         0 !important;
  right:       0 !important;
  left:        auto !important;
}

/* Product text */
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size:   13px !important;
  color:       var(--offwhite) !important;
  padding:     12px 14px 4px !important;
  line-height: 1.35 !important;
}
ul.products li.product .woocommerce-loop-category__title {
  font-family: var(--font-display) !important;
  color:       var(--paper) !important;
}

ul.products li.product .price {
  font-family: var(--font-display) !important;
  font-size:   20px !important;
  color:       var(--gold) !important;
  padding:     0 14px 4px !important;
  display:     block !important;
}
ul.products li.product .price del {
  color:       var(--smoke) !important;
  font-size:   13px !important;
  opacity:     1 !important;
}
ul.products li.product .price ins {
  text-decoration: none !important;
  color: var(--gold) !important;
}

/* Free products */
ul.products li.product .price .woocommerce-Price-amount:only-child {
  color: var(--gold) !important;
}

ul.products li.product a.button,
ul.products li.product button.button {
  background:  var(--red) !important;
  color:       var(--paper) !important;
  border:      none !important;
  font-family: var(--font-display) !important;
  font-size:   14px !important;
  letter-spacing: 2px !important;
  padding:     8px 16px !important;
  margin:      8px 14px 14px !important;
  border-radius: 0 !important;
  transition:  background 0.2s !important;
  display:     inline-block !important;
}
ul.products li.product a.button:hover,
ul.products li.product button.button:hover {
  background: var(--red-dark) !important;
  color:      var(--paper) !important;
}

/* ============================================================
   FEATURED PRODUCT BANNER
   ============================================================ */
.featured-banner {
  background: var(--ink-2);
  border:     1px solid var(--border);
  padding:    28px;
  display:    flex;
  gap:        28px;
  align-items: center;
  margin-bottom: 28px;
  border-top: 3px solid var(--red);
  position:   relative;
}
.featured-banner-label {
  font-family:    var(--font-mono);
  font-size:      10px;
  color:          var(--red);
  letter-spacing: 3px;
  margin-bottom:  6px;
  text-transform: uppercase;
}
.featured-banner-name {
  font-family:   var(--font-display);
  font-size:     clamp(20px, 2.5vw, 28px);
  color:         var(--paper);
  letter-spacing: 1px;
  margin-bottom: 8px;
  line-height:   1.1;
}
.featured-banner-desc {
  font-family:   var(--font-stamp);
  font-size:     13px;
  color:         var(--smoke);
  line-height:   1.6;
  margin-bottom: 16px;
}

/* ============================================================
   ABOUT STRIP (homepage)
   ============================================================ */
.about-strip {
  background:    var(--ink-2);
  border-top:    3px solid var(--red);
  border-bottom: 3px solid var(--red);
  padding:       40px 32px;
  display:       flex;
  align-items:   center;
  gap:           36px;
}
.about-strip-logo {
  flex-shrink: 0;
  width:       120px;
  height:      120px;
}
.about-strip-logo img {
  width:        100%;
  height:       100%;
  object-fit:   contain;
  mix-blend-mode: lighten;
}
.about-strip-text h2 {
  font-family:    var(--font-display);
  font-size:      clamp(22px, 3vw, 32px);
  color:          var(--paper);
  letter-spacing: 2px;
  margin-bottom:  8px;
}
.about-strip-text h2 em {
  color:       var(--red);
  font-style:  normal;
}
.about-strip-text p {
  max-width: 480px;
}
.about-strip-link {
  display:        inline-block;
  margin-top:     12px;
  color:          var(--gold);
  font-family:    var(--font-display);
  font-size:      15px;
  letter-spacing: 2px;
  border-bottom:  1px solid var(--gold);
  cursor:         pointer;
  text-decoration: none;
  transition:     color 0.2s;
}
.about-strip-link:hover { color: var(--paper); border-color: var(--paper); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-wrap { padding: var(--section-pad); }

.about-hero-grid {
  display:       grid;
  grid-template-columns: 1fr 260px;
  gap:           48px;
  align-items:   center;
  margin-bottom: 40px;
}
.about-hero-grid h1 { margin-bottom: 16px; line-height: 0.95; }
.about-hero-grid h1 em { color: var(--red); font-style: normal; display: block; }
.about-hero-grid p { margin-bottom: 12px; }
.about-mascot img {
  width:          100%;
  mix-blend-mode: lighten;
  filter:         brightness(0.88) contrast(1.08);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:     2px;
  margin:  32px 0;
}
.stat-box {
  background: var(--ink-2);
  border:     1px solid var(--border);
  padding:    22px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size:   42px;
  color:       var(--red);
  line-height: 1;
}
.stat-label {
  font-family:    var(--font-mono);
  font-size:      10px;
  color:          var(--smoke);
  letter-spacing: 2px;
  margin-top:     6px;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:     2px;
}
.value-card {
  background:  var(--ink-2);
  border:      1px solid var(--border);
  border-top:  3px solid var(--border);
  padding:     24px;
}
.value-card:nth-child(1) { border-top-color: var(--red); }
.value-card:nth-child(2) { border-top-color: var(--gold); }
.value-card:nth-child(3) { border-top-color: var(--smoke); }
.value-icon  { font-size: 28px; margin-bottom: 12px; }
.value-title {
  font-family:    var(--font-display);
  font-size:      18px;
  color:          var(--paper);
  letter-spacing: 2px;
  margin-bottom:  8px;
}

/* ============================================================
   CUSTOM REQUEST PAGE
   ============================================================ */
.custom-page-wrap { padding: var(--section-pad); }
.custom-form-card {
  max-width:    640px;
  margin:       0 auto;
  background:   var(--ink-2);
  border:       1px solid var(--border);
  border-top:   4px solid var(--red);
  padding:      36px;
}
.custom-form-title {
  font-family:    var(--font-display);
  font-size:      28px;
  color:          var(--paper);
  letter-spacing: 3px;
  margin-bottom:  6px;
}
.custom-form-sub {
  font-family:   var(--font-stamp);
  font-size:     13px;
  color:         var(--smoke);
  margin-bottom: 28px;
  line-height:   1.7;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-section { padding: var(--section-pad); background: var(--ink-2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:     2px;
}
.pricing-card {
  background: var(--ink-3);
  border:     1px solid var(--border);
  overflow:   hidden;
}
.pricing-card-header {
  background:  var(--ink-2);
  border-bottom: 2px solid;
  padding:     16px 20px;
}
.pricing-card:nth-child(1) .pricing-card-header { border-color: var(--gold); }
.pricing-card:nth-child(2) .pricing-card-header { border-color: var(--red); }
.pricing-card-title {
  font-family:    var(--font-display);
  font-size:      20px;
  color:          var(--paper);
  letter-spacing: 2px;
}
.pricing-card-sub {
  font-family: var(--font-mono);
  font-size:   10px;
  color:       var(--smoke);
  letter-spacing: 2px;
  margin-top:  4px;
}
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  font-family:    var(--font-mono);
  font-size:      10px;
  color:          var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding:        10px 16px;
  text-align:     left;
  border-bottom:  1px solid var(--border);
  background:     var(--ink);
}
.pricing-table td {
  font-family: var(--font-stamp);
  font-size:   13px;
  color:       var(--offwhite);
  padding:     10px 16px;
  border-bottom: 1px solid var(--border);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(184, 152, 42, 0.05); }

/* ============================================================
   WOOCOMMERCE — SINGLE PRODUCT PAGE
   ============================================================ */
.woocommerce div.product {
  padding: var(--section-pad);
  background: var(--ink);
}
.woocommerce div.product .product_title {
  font-family:    var(--font-display) !important;
  font-size:      clamp(32px, 4vw, 48px) !important;
  color:          var(--paper) !important;
  letter-spacing: 2px !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--font-display) !important;
  font-size:   36px !important;
  color:       var(--gold) !important;
}
.woocommerce div.product .woocommerce-product-details__short-description p {
  font-family: var(--font-stamp);
  font-size:   14px;
  color:       var(--smoke);
  line-height: 1.75;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background:  var(--red) !important;
  color:       var(--paper) !important;
  border:      none !important;
  font-family: var(--font-display) !important;
  font-size:   18px !important;
  letter-spacing: 2px !important;
  border-radius: 0 !important;
  padding:     12px 32px !important;
  transition:  background 0.2s !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--red-dark) !important;
  color:      var(--paper) !important;
}

/* ============================================================
   WOOCOMMERCE — CART & CHECKOUT
   ============================================================ */
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce table.shop_table {
  background: var(--ink) !important;
}
.woocommerce table.shop_table {
  border:          1px solid var(--border) !important;
  border-collapse: collapse !important;
}
.woocommerce table.shop_table th {
  font-family:    var(--font-display) !important;
  font-size:      14px !important;
  letter-spacing: 2px !important;
  color:          var(--gold) !important;
  background:     var(--ink-2) !important;
  border-bottom:  1px solid var(--border) !important;
  padding:        12px 16px !important;
}
.woocommerce table.shop_table td {
  font-family: var(--font-stamp) !important;
  color:       var(--offwhite) !important;
  border-bottom: 1px solid var(--border) !important;
  padding:     12px 16px !important;
  background:  var(--ink) !important;
}
.woocommerce table.shop_table .order-total td,
.woocommerce table.shop_table .order-total th {
  color:       var(--gold) !important;
  font-family: var(--font-display) !important;
  font-size:   20px !important;
}
.woocommerce-checkout h3 {
  font-family:    var(--font-display) !important;
  color:          var(--paper) !important;
  letter-spacing: 2px !important;
  border-bottom:  1px solid var(--border) !important;
  padding-bottom: 8px !important;
  margin-bottom:  20px !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background:  var(--ink);
  border-top:  3px solid var(--gold);
  padding:     40px 24px 24px;
}
.footer-grid {
  max-width: 1200px;
  margin:    0 auto;
  display:   grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:       32px;
}
.footer-brand-name {
  font-family:    var(--font-display);
  font-size:      22px;
  color:          var(--paper);
  letter-spacing: 3px;
  margin-bottom:  8px;
}
.footer-tagline {
  font-family: var(--font-stamp);
  font-size:   12px;
  color:       var(--smoke);
  line-height: 1.6;
  max-width:   200px;
}
.footer-social {
  display:    flex;
  gap:        8px;
  margin-top: 16px;
}
.footer-social-btn {
  background:  var(--ink-2);
  border:      1px solid var(--border);
  color:       var(--smoke);
  width:       36px;
  height:      36px;
  display:     flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size:   11px;
  font-weight: 700;
  cursor:      pointer;
  transition:  all 0.2s;
  text-decoration: none;
}
.footer-social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family:    var(--font-display);
  font-size:      15px;
  letter-spacing: 3px;
  color:          var(--gold);
  margin-bottom:  14px;
  border-bottom:  1px solid var(--border);
  padding-bottom: 8px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-family: var(--font-body);
  font-size:   13px;
  color:       var(--smoke);
  transition:  color 0.2s;
}
.footer-col ul li a:hover { color: var(--paper); }

.footer-bottom {
  max-width:      1200px;
  margin:         24px auto 0;
  padding-top:    16px;
  border-top:     1px solid var(--border);
  display:        flex;
  justify-content: space-between;
  align-items:    center;
  flex-wrap:      wrap;
  gap:            8px;
}
.footer-copy {
  font-family:    var(--font-mono);
  font-size:      11px;
  color:          var(--border);
  letter-spacing: 1px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-section      { flex-direction: column; }
  .hero-image        { width: 100%; height: 300px; }
  .about-hero-grid   { grid-template-columns: 1fr; }
  .about-mascot      { display: none; }
  .stats-row         { grid-template-columns: repeat(2, 1fr); }
  .values-grid       { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root              { --section-pad: 36px 20px; }
  .nav-inner         { height: 56px; }
  .site-name         { font-size: 18px; }
  #primary-navigation { display: none; }
  #primary-navigation.open { display: block; position: absolute; top: 56px; left: 0; right: 0; background: var(--ink); border-bottom: 2px solid var(--gold); z-index: 999; }
  #primary-navigation.open ul { flex-direction: column; }
  #primary-navigation.open ul li a { border-bottom: 1px solid var(--border); margin-bottom: 0; }
  .menu-toggle       { display: block; }
  .hero-title .line-2 { font-size: 56px; }
  .stats-row         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr; }
  .form-row-2        { grid-template-columns: 1fr; }
  .about-strip       { flex-direction: column; text-align: center; }
  .featured-banner   { flex-direction: column; }
}
