/** Shopify CDN: Minification failed

Line 14:0 Unexpected "<"

**/
/* ==========================================
   WITNESS | DEFENSE — BLACK GLASS MASTER THEME
   Polished & Unified Version
   ========================================== */


/* ===== WITNESS | DEFENSE — Font Imports ===== */

<link href="https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&display=swap" rel="stylesheet">

/* ===== COLOR SYSTEM ===== */
:root {
  --wd-bronze: #a1825b;
  --wd-silver: #c0c0c0;
  --wd-black: #000;
  --wd-charcoal: #151515;
  --wd-white: #fff;
}

/* ===== BASE TYPOGRAPHY ===== */
body {
  background: var(--wd-charcoal);
  font-family: "Stardos Stencil", system-ui, sans-serif;
  color: var(--wd-white);
  font-size: 1.05rem;
  line-height: 1.55;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--wd-white);
  text-shadow: 0 3px 6px rgba(0,0,0,0.9);
}

/* ===== HIDE SHOPIFY “SKIP” LINK ===== */
.skip-to-content-link {
  display: none !important;
}

/* ===== BUTTONS ===== */
button, .button, .wd-btn, .shopify-payment-button__button {
  position: relative;
  overflow: hidden;
  background: var(--wd-black);
  color: var(--wd-white);
  border: 2px solid var(--wd-bronze);
  border-radius: 4px;
  padding: 10px 24px;
  text-transform: uppercase;
  font-family: "Stardos Stencil", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 1.2px;
  box-shadow: 0 0 10px rgba(0,0,0,0.8);
  transition: all 0.3s ease;
}

/* Flicker metallic shine on hover */
button::after, .button::after, .wd-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  opacity: 0;
  transition: all 0.3s ease;
}
button:hover::after, .button:hover::after, .wd-btn:hover::after {
  animation: flash 0.6s ease forwards;
}
@keyframes flash {
  0% { left: -75%; opacity: 0; }
  40% { opacity: 1; }
  100% { left: 125%; opacity: 0; }
}

button:hover, .button:hover, .wd-btn:hover {
  color: var(--wd-bronze);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.9);
}

/* ===== HEADER / FOOTER ===== */
header, .header {
  background-color: var(--wd-black);
  border-bottom: 2px solid var(--wd-bronze);
}
.header__menu-item a { color: var(--wd-silver); }
.header__menu-item a:hover { color: var(--wd-bronze); }

footer {
  background: #0c0c0c;
  border-top: 3px solid var(--wd-bronze);
  color: var(--wd-silver);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

/* ===== PRODUCT / CARD STYLING ===== */
.card, .product-card {
  background: linear-gradient(180deg, var(--wd-charcoal), #0a0a0a);
  border: 2px solid var(--wd-bronze);
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover, .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.9);
}

/* ==========================================
   HERO SECTION — BLACK LACQUER & GLOSS SWEEP
   ========================================== */

/* Remove Shopify default banner image */
[id^="Banner-template--"] .banner__media,
[id^="Banner-template--"] .image-banner__media,
[id^="Banner-template--"] .banner__overlay {
  display: none !important;
}

/* Base hero glass */
[id^="Banner-template--"] {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0a 0%, #000 40%, #111 100%);
  border-top: 3px solid var(--wd-bronze);
  border-bottom: 3px solid var(--wd-bronze);
  box-shadow:
    inset 0 3px 8px rgba(255,255,255,0.05),
    inset 0 -6px 12px rgba(255,255,255,0.08),
    0 15px 30px rgba(0,0,0,1);
}

/* Gloss animation */
[id^="Banner-template--"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-25deg);
  animation: glossSweep 8s ease-in-out infinite;
  opacity: 0.45;
  pointer-events: none;
}
@keyframes glossSweep {
  0%,100% { transform: translateX(-20%) skewX(-25deg); opacity: 0.25; }
  50% { transform: translateX(20%) skewX(-25deg); opacity: 0.7; }
}

/* Hero content */
[id^="Banner-template--"] .banner__content {
  text-align: center;
  padding: 4rem 2rem;
}



/* ==========================================
   SLIDER NAV ARROWS (SQUARE, STATIC)
   ========================================== */
.slider-button, .slideshow__controls-button {
  border: 1px solid rgba(255,255,255,0.7) !important;
  background: rgba(0,0,0,0.6) !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 0 12px rgba(0,0,0,0.8);
}
.slider-button::before, .slideshow__controls-button::before {
  content: "";
  display: block;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid rgba(255,255,255,0.95);
}
.slider-button--prev::before {
  border-left: none;
  border-right: 12px solid rgba(255,255,255,0.95);
}
/* ===== FONT SYSTEM ===== */
body, p, span, li, a, label, input, textarea, select {
  font-family: "Stardos Stencil", system-ui, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Big Shoulders Display", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--wd-white);
  text-shadow: 0 3px 6px rgba(0,0,0,0.9);
}

/* ==========================================
   HERO TITLE — HYBRID DECORATIVE INITIALS
   ========================================== */

.hero__heading, .slideshow__heading {
  font-family: "Cinzel", serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: 2px;
  text-align: center;
  color: var(--wd-white);
  position: relative;
  display: inline-block;

  /* Stronger metallic gradient */
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,1) 0%,
    rgba(225,225,225,0.9) 20%,
    rgba(161,130,91,0.45) 55%,
    rgba(40,40,40,1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Better visibility & depth on black */
  text-shadow:
    0 4px 6px rgba(0,0,0,0.9),
    0 0 12px rgba(0,0,0,0.9),
    0 0 18px rgba(161,130,91,0.4);
}

/* Decorative initials — W & D only */
.hero__heading span.decor {
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  letter-spacing: 0.04em;

  /* warmer, more reflective tone */
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,1) 0%,
    rgba(200,180,150,0.8) 35%,
    rgba(161,130,91,0.6) 60%,
    rgba(30,30,30,1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 3px 6px rgba(0,0,0,0.85),
    0 0 12px rgba(161,130,91,0.5);
}


/* Buttons use Big Shoulders Display too */
button, .button, .wd-btn, .shopify-payment-button__button {
  font-family: "Big Shoulders Display", sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
.hero__heading, .slideshow__heading {
  font-family: "Cinzel Decorative", serif !important;
  font-weight: 700 !important;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: 3px;
  color: var(--wd-white);
  text-shadow:
    0 3px 8px rgba(0,0,0,0.85),
    0 0 12px rgba(255,255,255,0.15);
  /* preserve your gradient-text styling if desired */
  background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(180,180,180,0.3) 30%, rgba(0,0,0,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
[id^="Banner-template--"] .banner__content::before {
  content: "WITNESS | DEFENSE";
  display: block;
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(48px, 6vw, 88px);
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(180,180,180,0.3) 30%, rgba(0,0,0,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 3px 8px rgba(0,0,0,0.85),
    0 0 12px rgba(255,255,255,0.15);
}
[id^="Banner-template--"] .banner__content::after {
  content: "Dynamic Pistol Discipline";
  display: block;
  font-family: "Stardos Stencil", system-ui;
  font-weight: 700;
  color: var(--wd-silver);
  text-transform: uppercase;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 1.2px;
  text-shadow: 0 2px 3px rgba(0,0,0,0.9);
  margin-top: 0.5rem;
}
