/*
Theme Name: WARDOGS
Theme URI: https://wardogsapparel.com
Author: WARDOGS Apparel
Author URI: https://wardogsapparel.com
Description: Custom WordPress + WooCommerce theme for WARDOGS Veterans Canine Apparel. Built for Printify integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
WC requires at least: 8.0
WC tested up to: 9.0
License: Private
Text Domain: wardogs
Tags: woocommerce, veteran, apparel, ecommerce, dark
*/

/* ═══════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════ */
:root {
  --wd-black:    #050506;
  --wd-dark:     #0d0d0f;
  --wd-panel:    #141416;
  --wd-border:   #252528;
  --wd-green:    #1a4d1a;
  --wd-green-mid:#2d7a2d;
  --wd-green-lt: #3d9e3d;
  --wd-gold:     #c8a032;
  --wd-gold-lt:  #e8bc4a;
  --wd-cream:    #f0ece0;
  --wd-muted:    #787878;
  --wd-white:    #f8f6f0;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--wd-black);
  color: var(--wd-cream);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transform: none !important;
  filter: none !important;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--wd-white);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(24px, 3vw, 40px); }
h4 { font-size: 28px; }

p { color: #ffffff; line-height: 1.8; }

.wd-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wd-green-lt);
  display: block;
  margin-bottom: 4px;
}

.wd-tm {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.3em;
  font-weight: 400;
  vertical-align: top;
  letter-spacing: 0;
}

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.wd-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 48px;
}

.wd-section { padding: 48px 0; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.wd-btn,
.button,
button[type="submit"],
input[type="submit"] {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 18px 40px;
  background: var(--wd-gold);
  color: var(--wd-black) !important;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.2s;
  text-decoration: none;
}

.wd-btn:hover,
.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: var(--wd-gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,160,50,0.3);
  color: var(--wd-black) !important;
}

.wd-btn-ghost {
  background: transparent !important;
  color: var(--wd-cream) !important;
  border: 1px solid var(--wd-border);
  clip-path: none;
  box-shadow: none !important;
}
.wd-btn-ghost:hover {
  border-color: var(--wd-gold) !important;
  color: var(--wd-gold) !important;
  transform: translateY(-2px) !important;
  background: transparent !important;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
#masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(5,5,6,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--wd-border);
  transition: box-shadow 0.3s;
}

#masthead.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

.wd-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 48px;
}

.site-branding { display: flex; align-items: center; gap: 12px; }

.site-branding img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(200,160,50,0.35));
}

.site-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.12em;
  color: var(--wd-white);
  line-height: 1;
}

.site-title a { color: inherit; }
.site-title span { color: var(--wd-gold); }

#primary-menu { display: flex; gap: 32px; align-items: center; }

#primary-menu li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wd-muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

#primary-menu li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--wd-gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}

#primary-menu li a:hover { color: var(--wd-gold); }
#primary-menu li a:hover::after { transform: scaleX(1); }

.wd-nav-actions { display: flex; align-items: center; gap: 16px; }

.wd-cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--wd-muted);
  transition: color 0.2s;
}

.wd-cart-link:hover { color: var(--wd-gold); }

.wd-cart-count {
  background: var(--wd-gold);
  color: var(--wd-black);
  font-size: 10px;
  font-weight: 900;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--wd-border);
  color: var(--wd-cream);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
  clip-path: none;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.wd-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.wd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, var(--wd-black) 55%, #0d1a0d 55%);
}

.wd-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(37,37,40,0.4) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(37,37,40,0.4) 60px);
  pointer-events: none;
}

.wd-hero-left {
  position: relative;
  z-index: 2;
  padding: 80px 48px 40px 64px;
}

.wd-hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.wd-hero-eyebrow-line { width: 40px; height: 2px; background: linear-gradient(90deg, var(--wd-gold), transparent); }

.wd-hero-title { font-size: clamp(68px, 9vw, 128px); color: var(--wd-white); margin-bottom: 4px; }
.wd-hero-title .stroke { -webkit-text-stroke: 1px #3d9e3d; color: transparent; }
.wd-hero-title .gold { color: var(--wd-gold); }

.wd-hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(20px, 2vw, 22px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wd-green-lt);
  margin-bottom: 4px;
}

.wd-hero-desc { font-size: 16px; line-height: 1.4; color: var(--wd-muted); max-width: 420px; margin-bottom: 20px; }
.wd-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.wd-hero-stats { display: flex; margin-top: 24px; border-top: 1px solid var(--wd-border); padding-top: 28px; }
.wd-hero-stat { flex: 1; border-right: 1px solid var(--wd-border); padding-right: 20px; margin-right: 20px; }
.wd-hero-stat:last-child { border-right: none; }

.wd-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--wd-gold); line-height: 1; }
.wd-stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wd-muted);
  margin-top: 4px;
}

.wd-hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; padding: 60px 40px; }

.wd-hero-logo-wrap { position: relative; display: flex; align-items: center; justify-content: center; }

.wd-hero-logo-wrap::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(45,122,45,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.wd-hero-logo-wrap::after {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(200,160,50,0.15);
  animation: wd-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wd-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%       { transform: scale(1.05); opacity: 0.9; }
}

.wd-hero-logo {
  width: 420px;
  max-width: 90%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(200,160,50,0.2)) drop-shadow(0 20px 60px rgba(0,0,0,0.8));
  animation: wd-float 4s ease-in-out infinite;
}

@keyframes wd-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ═══════════════════════════════════════
   MARQUEE BAND
═══════════════════════════════════════ */
.wd-band {
  background: var(--wd-green);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(61,158,61,0.3);
  border-bottom: 1px solid rgba(61,158,61,0.3);
}

.wd-band-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: wd-marquee 22s linear infinite;
}

@keyframes wd-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.wd-band-item {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(240,236,224,0.9);
  display: flex;
  align-items: center;
  gap: 18px;
}

.wd-band-sep { color: var(--wd-gold); font-size: 9px; }

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */
.wd-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 26px;
}

.wd-section-title .ghost {
  -webkit-text-stroke: 1px #3d9e3d;
  color: transparent;
}

.wd-section-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wd-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.wd-section-link:hover { gap: 14px; }
.wd-section-link::after { content: '->'; }

/* ═══════════════════════════════════════
   WOOCOMMERCE — PRODUCT GRID
═══════════════════════════════════════ */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 3px !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--wd-panel);
  overflow: hidden;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
  transition: transform 0.3s;
}

.woocommerce ul.products li.product:hover { transform: translateY(-3px); }

.woocommerce ul.products li.product .woocommerce-loop-product__link img,
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.woocommerce ul.products li.product:hover a img { transform: scale(1.04); }

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-family: 'Bebas Neue', sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  letter-spacing: 0.05em !important;
  color: var(--wd-white) !important;
  padding: 16px 18px 4px !important;
  line-height: 1.3 !important;
}

.woocommerce ul.products li.product .price {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 22px !important;
  color: var(--wd-gold) !important;
  padding: 0 18px 8px !important;
  display: block;
}

.woocommerce ul.products li.product .price del { color: var(--wd-muted) !important; font-size: 16px !important; }
.woocommerce ul.products li.product .price ins { text-decoration: none !important; }

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
  margin: 8px 18px 18px !important;
  width: calc(100% - 36px) !important;
  text-align: center !important;
  display: block !important;
}

.woocommerce span.onsale {
  background: var(--wd-gold) !important;
  color: var(--wd-black) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 900 !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  border-radius: 0 !important;
  min-width: auto !important;
  min-height: auto !important;
  padding: 4px 10px !important;
  line-height: 1.4 !important;
  top: 12px !important;
  left: 12px !important;
}

/* ═══════════════════════════════════════
   WOOCOMMERCE — SINGLE PRODUCT
═══════════════════════════════════════ */
.woocommerce div.product { background: var(--wd-black); padding: 48px 0; }
.woocommerce div.product .woocommerce-product-gallery { background: var(--wd-panel); border: 1px solid var(--wd-border); }
.woocommerce div.product .summary { padding-left: 48px; }

.woocommerce div.product .product_title {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: clamp(36px, 5vw, 64px) !important;
  color: var(--wd-white) !important;
  letter-spacing: 0.04em !important;
  line-height: 0.95 !important;
  margin-bottom: 16px !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 40px !important;
  color: var(--wd-gold) !important;
}

.woocommerce div.product .woocommerce-product-details__short-description p { color: #ffffff !important; line-height: 1.8; margin-bottom: 24px; }

.woocommerce .quantity .qty {
  background: var(--wd-panel) !important;
  border: 1px solid var(--wd-border) !important;
  color: var(--wd-cream) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 18px !important;
  padding: 12px 16px !important;
  width: 80px !important;
}

.woocommerce div.product form.cart .button { margin-left: 12px !important; padding: 14px 40px !important; }

.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--wd-border) !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom-color: var(--wd-gold) !important; }

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: var(--wd-muted) !important;
  padding: 14px 20px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--wd-gold) !important; }

.woocommerce div.product .woocommerce-tabs .panel {
  background: var(--wd-panel) !important;
  border: 1px solid var(--wd-border) !important;
  border-top: none !important;
  padding: 32px !important;
  margin: 0 !important;
}

.woocommerce div.product .woocommerce-tabs .panel p { color: #ffffff !important; }

/* ═══════════════════════════════════════
   WOOCOMMERCE — CART & CHECKOUT
═══════════════════════════════════════ */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce { padding: 48px 0; }

.woocommerce table.shop_table { border: 1px solid var(--wd-border) !important; background: var(--wd-panel) !important; }

.woocommerce table.shop_table th {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: var(--wd-muted) !important;
  background: var(--wd-dark) !important;
  border-bottom: 1px solid var(--wd-border) !important;
  padding: 14px 16px !important;
}

.woocommerce table.shop_table td {
  color: var(--wd-cream) !important;
  border-bottom: 1px solid var(--wd-border) !important;
  padding: 16px !important;
  vertical-align: middle !important;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  background: var(--wd-panel) !important;
  border: 1px solid var(--wd-border) !important;
  padding: 28px !important;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout #order_review_heading {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 28px !important;
  letter-spacing: 0.08em !important;
  color: var(--wd-white) !important;
  margin-bottom: 20px !important;
  border-bottom: 1px solid var(--wd-border) !important;
  padding-bottom: 12px !important;
}

.woocommerce form .form-row label {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: var(--wd-muted) !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  background: var(--wd-panel) !important;
  border: 1px solid var(--wd-border) !important;
  color: var(--wd-cream) !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 15px !important;
  padding: 12px 14px !important;
  border-radius: 0 !important;
  width: 100% !important;
  transition: border-color 0.2s !important;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--wd-gold) !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ═══════════════════════════════════════
   WOOCOMMERCE — NOTICES
═══════════════════════════════════════ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--wd-panel) !important;
  border-top: 3px solid var(--wd-gold) !important;
  color: var(--wd-cream) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 14px !important;
  letter-spacing: 0.05em !important;
}

.woocommerce-error { border-top-color: #8b1a1a !important; }

/* ═══════════════════════════════════════
   MWD TRIBUTE SECTION
═══════════════════════════════════════ */
.wd-tribute {
  background: var(--wd-dark);
  border-top: 1px solid var(--wd-border);
  border-bottom: 1px solid var(--wd-border);
  padding: 55px 0;
  position: relative;
  overflow: hidden;
}

.wd-tribute-wm {
  position: absolute;
  right: -5%; top: 50%;
  transform: translateY(-50%);
  width: 42%;
  opacity: 0.04;
  filter: grayscale(1);
  pointer-events: none;
}

.wd-tribute-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.wd-tribute-left { display: flex; flex-direction: column; }

.wd-tribute-badge {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 0 8px 0;
}

.wd-tribute-badge img {
  width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
}

.wd-tribute-title { margin: 0; }
.wd-tribute-title .gold { color: var(--wd-gold); }

.wd-tribute-body { font-size: 16px; line-height: 1.85; color: var(--wd-muted); margin: 16px 0 24px; }

.wd-tribute-quote { border-left: 3px solid var(--wd-gold); padding-left: 20px; margin-bottom: 36px; }

.wd-tribute-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--wd-cream);
  line-height: 1.5;
  margin-bottom: 6px;
}

.wd-tribute-attr { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wd-green-lt); }

.wd-tribute-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }

.wd-tstat { background: var(--wd-panel); border: 1px solid var(--wd-border); padding: 26px; position: relative; overflow: hidden; }
.wd-tstat::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--wd-gold); }

.wd-tstat-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--wd-green-lt); margin-bottom: 6px; }
.wd-tstat-big { font-family: 'Bebas Neue', sans-serif; font-size: 50px; color: var(--wd-gold); line-height: 1; margin-bottom: 6px; }
.wd-tstat-desc { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 300; color: var(--wd-muted); line-height: 1.5; }

/* ═══════════════════════════════════════
   COLLECTIONS GRID
═══════════════════════════════════════ */
#collections .wd-container { position: relative; }

.wd-collections-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  margin-top: 48px;
}

.wd-collection-item {
  min-width: 0;
  height: 200px;
  border: 1px solid #c8a032;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wd-collection-item.active {
  border-color: #e8bc4a;
  box-shadow: 0 0 0 1px #e8bc4a, 0 0 16px rgba(200,160,50,0.25);
}

.wd-collection-card {
  display: block;
  position: relative;
  height: 200px;
  overflow: hidden;
  text-decoration: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0d0d0d;
  transition: transform 0.3s ease;
}

.wd-collection-card:hover { transform: scale(1.03); }

.wd-collection-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
}

.wd-collection-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wd-collection-count {
  font-size: 11px;
  color: #c8a032;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ═══════════════════════════════════════
   PROMISE SECTION
═══════════════════════════════════════ */
.wd-promise { background: var(--wd-panel); border-top: 1px solid var(--wd-border); padding: 48px 0; }

.wd-promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 60px; }

.wd-p-item { position: relative; padding-top: 24px; }
.wd-p-item::before { content: ''; position: absolute; top: 0; left: 0; width: 44px; height: 3px; background: var(--wd-gold); }

.wd-p-icon { font-size: 32px; margin-bottom: 16px; }

.wd-promise .wd-p-title {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: var(--wd-muted);
  margin: 8px 0 10px 0;
}

.wd-promise .wd-p-text,
.wd-promise .wd-p-item p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
  margin: 0;
  color: var(--wd-muted);
}

/* ═══════════════════════════════════════
   EMAIL SIGNUP
═══════════════════════════════════════ */
.wd-signup { padding: 96px 0; background: var(--wd-green); position: relative; overflow: hidden; text-align: center; }
.wd-signup::before { content: ''; position: absolute; top: -200px; left: -200px; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(200,160,50,0.12); }

.wd-signup-logo-wm { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 380px; opacity: 0.05; filter: grayscale(1); pointer-events: none; }

.wd-signup-inner { position: relative; z-index: 2; max-width: 540px; margin: 0 auto; }

.wd-signup-offer { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--wd-gold); letter-spacing: 0.05em; margin: 8px 0 20px; }

.wd-signup-sub { font-size: 16px; color: rgba(240,236,224,0.65); margin-bottom: 32px; line-height: 1.7; }

.wd-signup-form { display: flex; }

.wd-signup-input {
  flex: 1;
  padding: 16px 18px;
  background: rgba(5,5,6,0.5);
  border: 1px solid rgba(200,160,50,0.4);
  border-right: none;
  color: var(--wd-cream);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  outline: none;
}
.wd-signup-input::placeholder { color: rgba(240,236,224,0.35); }

.wd-signup-btn {
  padding: 16px 28px;
  background: var(--wd-gold);
  color: var(--wd-black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transition: background 0.2s;
}
.wd-signup-btn:hover { background: var(--wd-gold-lt); }
.wd-signup-fine { margin-top: 12px; font-size: 11px; color: rgba(240,236,224,0.35); letter-spacing: 0.06em; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#colophon { background: var(--wd-black); border-top: 1px solid var(--wd-border); padding: 64px 0 32px; }

.wd-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.wd-footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.wd-footer-logo img { height: 42px; filter: drop-shadow(0 0 8px rgba(200,160,50,0.3)); }

.wd-footer-wordmark { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.1em; color: var(--wd-white); }
.wd-footer-wordmark span { color: var(--wd-gold); }

.wd-footer-tag { font-size: 14px; line-height: 1.7; color: var(--wd-muted); max-width: 280px; margin-bottom: 20px; }

.wd-footer-socials { display: flex; gap: 10px; }

.wd-footer-soc { width: 36px; height: 36px; border: 1px solid var(--wd-border); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--wd-muted); transition: all 0.2s; }
.wd-footer-soc:hover { border-color: var(--wd-gold); color: var(--wd-gold); }

.wd-footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--wd-cream); margin-bottom: 18px; }

.wd-footer-links { display: flex; flex-direction: column; gap: 10px; }
.wd-footer-links a { font-size: 14px; color: var(--wd-muted); transition: color 0.2s; }
.wd-footer-links a:hover { color: var(--wd-gold); }

.wd-footer-bottom { border-top: 1px solid var(--wd-border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.wd-footer-copy { font-size: 12px; color: var(--wd-muted); }

.wd-footer-mission { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--wd-green-lt); display: flex; align-items: center; gap: 10px; }
.wd-footer-mission::before { content: ''; width: 20px; height: 1px; background: var(--wd-green-lt); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.wd-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.wd-reveal.visible { opacity: 1; transform: translateY(0); }
.wd-d1 { transition-delay: 0.1s; }
.wd-d2 { transition-delay: 0.2s; }
.wd-d3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════ */
#mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(5,5,6,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--wd-border);
  padding: 24px;
  z-index: 199;
  flex-direction: column;
  gap: 0;
}

#mobile-menu.open { display: flex; }

#mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wd-cream);
  padding: 14px 0;
  border-bottom: 1px solid var(--wd-border);
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--wd-gold); }

/* ═══════════════════════════════════════
   BREADCRUMBS & ARCHIVES
═══════════════════════════════════════ */
.woocommerce-breadcrumb {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  color: var(--wd-muted) !important;
  text-transform: uppercase !important;
  padding: 20px 0 !important;
}

.woocommerce-breadcrumb a { color: var(--wd-gold) !important; }

.woocommerce-products-header__title {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: clamp(40px, 6vw, 80px) !important;
  color: #ffffff !important;
  margin-bottom: 32px !important;
}

.woocommerce-ordering select {
  background: var(--wd-panel) !important;
  border: 1px solid var(--wd-border) !important;
  color: var(--wd-cream) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
  padding: 10px 14px !important;
  border-radius: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul { border: none !important; display: flex; gap: 4px; }
.woocommerce nav.woocommerce-pagination ul li { border: none !important; }

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: var(--wd-panel) !important;
  border: 1px solid var(--wd-border) !important;
  color: var(--wd-muted) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 8px 14px !important;
  border-radius: 0 !important;
  transition: all 0.2s !important;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--wd-gold) !important;
  border-color: var(--wd-gold) !important;
  color: var(--wd-black) !important;
}

/* ═══════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════ */
.wd-page-header {
  padding: 120px 0 60px;
  background: var(--wd-dark);
  border-bottom: 1px solid var(--wd-border);
  position: relative;
  overflow: hidden;
}

.wd-page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(37,37,40,0.3) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(37,37,40,0.3) 60px);
}

.wd-page-header-title { position: relative; z-index: 2; font-size: clamp(48px, 8vw, 100px); color: var(--wd-white); }

/* ═══════════════════════════════════════
   SHOP TOPBAR / SUBNAV
═══════════════════════════════════════ */
.wd-shop-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin: 0 0 32px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wd-border);
}

.wd-shop-loop-meta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.wdx-subnav {
  clear: both;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 20px 0;
  padding-top: 14px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.wdx-subnav a {
  font-size: 14px;
  text-decoration: none;
  color: #19c15f;
  font-weight: 500;
}

.wdx-subnav a:hover { color: #ffffff; }

.wdx-branch-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}

.wdx-branch-list a {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  color: #19c15f;
  font-weight: 500;
}

.wdx-branch-list a:hover { color: #ffffff; }

/* ═══════════════════════════════════════
   CATEGORY SIDEBAR
═══════════════════════════════════════ */
.wd-sidebar-overlay,
.wd-sidebar-overlay.open{
  display:none !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  background:transparent !important;
}
@media (max-width: 767px){
  .wd-sidebar-overlay,
  .wd-sidebar-overlay.open,
  .wd-sidebar-drawer{
    display:none !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transform:none !important;
  }
}.wd-sidebar-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  right: auto;
  bottom: auto;
  width: 310px;
  max-width: calc(100vw - 24px);
  background: #0d0d0f;
  border: 1px solid #252528;
  border-top: 2px solid #c8a032;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 9999;
}

.wd-sidebar-overlay.open .wd-sidebar-drawer {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,160,50,0.15);
}

.wd-sidebar-header {
  padding: 16px 16px 12px;
  border-bottom: 1px solid #252528;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.wd-sidebar-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #3d9e3d;
  margin-bottom: 4px;
}

.wd-sidebar-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  line-height: 1;
  color: #f8f6f0;
  margin-bottom: 3px;
}

.wd-sidebar-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  color: #787878;
}

.wd-sidebar-close {
  flex-shrink: 0;
  background: none;
  border: 1px solid #252528;
  color: #787878;
  width: 28px;
  height: 28px;
  min-width: 28px;
  cursor: pointer;
  clip-path: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0;
  transition: border-color 0.15s, color 0.15s;
}
.wd-sidebar-close:hover {
  border-color: #c8a032;
  color: #c8a032;
  background: none;
  transform: none;
}

.wd-sidebar-body {
  padding: 14px 16px;
  overflow-y: auto;
  max-height: 360px;
}
.wd-sidebar-body::-webkit-scrollbar { width: 3px; }
.wd-sidebar-body::-webkit-scrollbar-track { background: #141416; }
.wd-sidebar-body::-webkit-scrollbar-thumb { background: #c8a032; }

.wd-sidebar-chips-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #787878;
  margin-bottom: 10px;
}

.wd-sidebar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wd-sidebar-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  background: #141416;
  border: 1px solid #2a2a2d;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.wd-sidebar-chip:hover {
  background: #1a4d1a;
  border-color: #3d9e3d;
  color: #3d9e3d;
}

.wd-sidebar-chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c8a032;
  flex-shrink: 0;
}

.wd-sidebar-chip-count {
  margin-left: auto;
  font-size: 11px;
  color: #6bbf59;
  font-weight: 700;
}

.wd-sidebar-coming {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  color: #787878;
  line-height: 1.5;
  padding: 4px 0;
}

.wd-sidebar-footer {
  padding: 12px 16px 14px;
  border-top: 1px solid #252528;
}

.wd-sidebar-viewall {
  display: block;
  text-align: center;
  width: 100%;
  padding: 11px;
  background: #c8a032;
  color: #050506 !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s;
}
.wd-sidebar-viewall:hover { background: #e8bc4a; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .wd-collections-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .wd-container { padding: 0 24px; }
  .wd-nav-inner { padding: 0 24px; }
  #primary-menu { display: none; }
  .wd-menu-toggle { display: block; }
  .wd-hero { grid-template-columns: 1fr; }
  .wd-hero::before { background: var(--wd-black); }
  .wd-hero-left { padding: 60px 24px 40px; }
  .wd-hero-right { padding: 0 24px 60px; }
  .wd-hero-logo { width: 300px; }
  .wd-tribute-grid { grid-template-columns: 1fr; gap: 40px; }
  .wd-promise-grid { grid-template-columns: 1fr; gap: 32px; }
  .wd-footer-top { grid-template-columns: 1fr 1fr; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .wd-signup-form { flex-direction: column; }
  .wd-signup-input { border-right: 1px solid rgba(200,160,50,0.4); }
}

@media (max-width: 820px) {
  .wd-collections-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .wd-sidebar-overlay.open { background: rgba(5,5,6,0.6); }
  .wd-sidebar-drawer {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-top: 2px solid #c8a032 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    transform: translateY(20px) scale(1) !important;
    transform-origin: bottom center !important;
  }
  .wd-sidebar-drawer.open {
    transform: translateY(0) scale(1) !important;
  }
  .wd-sidebar-body { max-height: 50vh; }
}

@media (max-width: 640px) {
  .wd-hero-stats { flex-wrap: wrap; }
  .wd-hero-stat { min-width: 50%; margin-bottom: 16px; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .wd-footer-top { grid-template-columns: 1fr; }
  .wd-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .wd-collections-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px){
  .wd-sidebar-overlay,
  .wd-sidebar-overlay.open,
  .wd-sidebar-drawer,
  .wd-sidebar-drawer.open{
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
  }
}
/* ========================================
   WARDOGS — FEATURED COLLECTIONS CAROUSEL
======================================== */

.wd-feature-carousel{
  position: relative;
  display: block;
}

.wd-feature-viewport{
  position: relative;
  overflow: hidden;
}

.wd-feature-track{
  position: relative;
}

.wd-feature-slide{
  display: none;
  text-decoration: none;
}

.wd-feature-slide.active{
  display: block;
}

.wd-feature-slide .wd-featured-art{
  display: block;
  width: 100%;
  height: auto;
}

.wd-feature-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.wd-feature-prev{
  left: 16px;
}

.wd-feature-next{
  right: 16px;
}

.wd-feature-arrow:hover{
  background: rgba(0,0,0,.65);
}

@media (max-width: 767px){
  .wd-feature-arrow{
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .wd-feature-prev{
    left: 10px;
  }

  .wd-feature-next{
    right: 10px;
  }
}
/* FEATURED FULL BLACK BAND */
.wd-featured{
  background:#000;
  padding:0;
}

.wd-featured .wd-container{
  padding-top:0;
  padding-bottom:0;
}