/** Shopify CDN: Minification failed

Line 195:8 Unexpected "{"
Line 195:16 Expected ":"
Line 195:23 Unexpected "{"

**/
/* ============================================================
   ROCKFABRIC CUSTOM STYLESHEET  v2.0
   Target: Shopify Horizon Theme
   Design: Dark Rock / Metal Luxury E-Commerce
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&family=Oswald:wght@300;400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLE OVERRIDES — Core Palette
   These override Horizon's generated variables at root level
   ============================================================ */
:root {
  /* Brand palette */
  --rf-black:        #0a0a0a;
  --rf-card:         #111111;
  --rf-card-hover:   #161616;
  --rf-surface:      #141414;
  --rf-border:       #222222;
  --rf-border-glow:  rgba(139, 0, 0, 0.5);
  --rf-red:          #8b0000;
  --rf-red-hover:    #c0392b;
  --rf-red-glow:     rgba(139, 0, 0, 0.35);
  --rf-text:         #e8e8e8;
  --rf-muted:        #555555;
  --rf-heading:      #ffffff;

  /* Horizon palette override */
  --color-background: rgb(10, 10, 10);
  --color-background-rgb: 10, 10, 10;
  --color-foreground: rgb(220, 220, 220);
  --color-foreground-heading: rgb(255, 255, 255);
  --color-primary: rgb(139, 0, 0);
  --color-primary-hover: rgb(192, 57, 43);
  --color-border: rgb(34, 34, 34);
  --color-shadow: rgb(139, 0, 0);

  /* Button variables */
  --color-primary-button-background: rgb(139, 0, 0);
  --color-primary-button-text: rgb(255, 255, 255);
  --color-primary-button-border: rgb(139, 0, 0);
  --color-primary-button-hover-background: rgb(192, 57, 43);
  --color-primary-button-hover-text: rgb(255, 255, 255);
  --color-primary-button-hover-border: rgb(192, 57, 43);
  --color-secondary-button-background: rgba(0, 0, 0, 0);
  --color-secondary-button-text: rgb(255, 255, 255);
  --color-secondary-button-border: rgba(255, 255, 255, 0.2);
  --color-secondary-button-hover-background: rgba(139, 0, 0, 0.15);
  --color-secondary-button-hover-text: rgb(255, 255, 255);
  --color-secondary-button-hover-border: rgb(139, 0, 0);

  /* Inputs */
  --color-input-background: rgba(255, 255, 255, 0.04);
  --color-input-text: rgb(232, 232, 232);
  --color-input-border: rgba(255, 255, 255, 0.1);

  /* Opacity helpers — dark surface adjustments */
  --opacity-5-15:  0.15;
  --opacity-10-25: 0.25;
  --opacity-35-55: 0.55;
  --opacity-40-60: 0.60;
  --opacity-30-60: 0.60;

  /* Hover effects */
  --hover-shadow-color: var(--rf-red);
}

/* All color scheme classes get the same dark override */
.color-scheme-1,
.color-scheme-2,
.color-scheme-3,
.color-scheme-4,
[class*="color-scheme"] {
  --color-background: rgb(10, 10, 10);
  --color-foreground: rgb(220, 220, 220);
  --color-foreground-heading: rgb(255, 255, 255);
}

/* ============================================================
   NOISE TEXTURE LAYER  (grain overlay)
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ============================================================
   BASE
   ============================================================ */
html,
body {
  background-color: #0a0a0a !important;
  color: #e8e8e8 !important;
  font-family: 'Inter', sans-serif !important;
}

/* Suppress any white flash on page load */
html { background: #0a0a0a; }

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

/* Heading family via Oswald */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4,
[class*="heading"],
[class*="__title"],
[class*="__heading"],
.card__heading,
.collection-card__title,
.blog-card__title,
.caption-with-letter-spacing {
  font-family: 'Oswald', sans-serif !important;
  letter-spacing: 0.04em;
}

h1, .h1 { font-size: clamp(2.4rem, 5vw, 4rem) !important; text-transform: uppercase; letter-spacing: 0.06em; }
h2, .h2 { font-size: clamp(1.8rem, 3.5vw, 3rem) !important; text-transform: uppercase; letter-spacing: 0.05em; }
h3, .h3 { font-size: clamp(1.3rem, 2.5vw, 2rem) !important; text-transform: uppercase; }
h4, .h4 { font-size: clamp(1.1rem, 2vw, 1.5rem) !important; text-transform: uppercase; }

/* Button text */
.button, .btn, button[type="submit"] {
  font-family: 'Oswald', sans-serif !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}

/* Accent labels, tags */
.badge,
.caption-with-letter-spacing,
[class*="__tag"],
[class*="__label"],
.product__badge,
.product-badge {
  font-family: 'Rajdhani', sans-serif !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Body text */
body, p, li, span, a, input, textarea, select {
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   LOGO — Metal Mania treatment
   ============================================================ */
.header__logo a,
.header__logo-image + span,
.header__logo .h2,
.header__logo .h1,
a.header__logo,
[class*="header-logo"] h1,
[class*="header-logo"] h2,
[class*="header-logo"] .heading {
  font-family: 'Metal Mania', cursive !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 30px rgba(139, 0, 0, 0.55) !important;
  font-size: 1.6rem !important;
}

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */
.section-background,
section,
.shopify-section,
[class*="color-scheme"],
.section,
.color-{{ scheme.id }} {
  background-color: #0a0a0a !important;
}

/* Alternate section (scheme-2) slightly lighter */
.color-scheme-2 {
  background-color: #111111 !important;
}

/* Red accent section (scheme-3) */
.color-scheme-3 {
  background-color: #8b0000 !important;
}

/* ============================================================
   HEADER
   ============================================================ */
header-component,
.header-section,
#header-component,
.section-header,
[class*="header-group"] > .header-section {
  background: #0a0a0a !important;
  border-bottom: 1px solid #1a1a1a !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Sticky header subtle border */
header-component[data-sticky-enabled] {
  border-bottom-color: #222 !important;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.8) !important;
}

/* Nav menu items */
.header__menu a,
.header-menu a,
.list-menu__item > a,
.list-menu > li > a,
nav a {
  font-family: 'Oswald', sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #e8e8e8 !important;
  transition: color 0.2s ease !important;
}

.header__menu a:hover,
.list-menu__item > a:hover,
nav a:hover {
  color: #c0392b !important;
}

/* Header icons */
.header__icon,
.header-actions__item,
[class*="header-actions"] a,
[class*="header-actions"] button {
  color: #e8e8e8 !important;
}
[class*="header-actions"] a:hover,
[class*="header-actions"] button:hover {
  color: #c0392b !important;
}

/* Cart count bubble */
.cart-count-bubble {
  background: #8b0000 !important;
  color: #fff !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700;
}

/* ============================================================
   ANNOUNCEMENT / MARQUEE BAR
   ============================================================ */
.announcement-bar,
.section-announcements,
[class*="announcement"],
.marquee-section,
.marquee {
  background: #8b0000 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.announcement-bar__message,
.announcement-bar a,
.marquee__item,
.marquee a {
  color: #ffffff !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
}

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero-wrapper,
.hero,
.hero__container,
.banner,
[class*="banner__"] {
  background-color: #0a0a0a !important;
}

/* Dark gradient overlay over hero images */
.hero__container::before,
.banner__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 10, 10, 0.45) 0%,
    rgba(139, 0, 0, 0.06) 50%,
    rgba(10, 10, 10, 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Ensure hero content is above overlay */
.hero__content-wrapper {
  z-index: 2 !important;
  position: relative;
}

/* Hero headings */
.hero__heading,
.banner__heading,
.slideshow__heading,
.hero__content-wrapper h1,
.hero__content-wrapper h2 {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.9), 0 0 60px rgba(139, 0, 0, 0.2) !important;
  line-height: 1.05 !important;
}

/* Hero subtext */
.hero__content-wrapper p,
.hero__content-wrapper .rte {
  color: rgba(220, 220, 220, 0.9) !important;
  font-size: 1rem !important;
  letter-spacing: 0.02em;
}

/* Bottom gradient vignette on hero sections */
.hero__container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.9));
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   PRODUCT & COLLECTION CARDS
   ============================================================ */
.card-wrapper {
  background: #111111 !important;
  border: 1px solid #222 !important;
  border-radius: 2px !important;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s !important;
  overflow: hidden;
}

.card-wrapper:hover {
  border-color: #8b0000 !important;
  transform: translateY(-4px) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 28px rgba(139, 0, 0, 0.35) !important;
}

/* Card inner */
.card,
.card--card,
.card--standard {
  background: #111111 !important;
  border: none !important;
  border-radius: 2px !important;
}

/* Card media / image placeholder */
.card__media,
.card-wrapper .media,
.card-wrapper .placeholder {
  background: linear-gradient(145deg, #181818, #0d0000) !important;
}

/* Card heading */
.card__heading,
.card__heading a,
.full-unstyled-link.card__heading {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  font-size: 1rem !important;
  color: #ffffff !important;
  transition: color 0.2s !important;
}

.card-wrapper:hover .card__heading a,
.card-wrapper:hover .card__heading {
  color: #c0392b !important;
}

/* Card info / price wrapper */
.card__information,
.card__content {
  background: #111111 !important;
  padding: 12px 14px 16px !important;
}

/* Price */
.price,
.price__regular,
.price__sale,
.price-item {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  letter-spacing: 0.06em !important;
  color: #e8e8e8 !important;
}

.price--on-sale .price__sale,
.price-item--sale {
  color: #c0392b !important;
}

.price__compare,
.price-item--regular.price-item--last {
  color: #444 !important;
  text-decoration: line-through !important;
}

/* Collection card image placeholder */
.collection-card__image,
.collection-card .card__media {
  background: linear-gradient(145deg, #181818, #0d0000) !important;
}

/* Collection card title */
.collection-card__title,
.collection-card h2,
.collection-card h3 {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #fff !important;
}

/* ============================================================
   BADGES / TAGS
   ============================================================ */
.badge,
.product-badge,
.product-card__badge,
[class*="badge--"] {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  padding: 3px 8px !important;
}

.badge--sale,
[class*="badge--sale"],
.badge--percent {
  background: #8b0000 !important;
  color: #fff !important;
}

.badge--new,
[class*="badge--new"] {
  background: #1a3a1a !important;
  color: #4caf50 !important;
}

.badge--sold-out,
[class*="badge--sold-out"] {
  background: #1a1a1a !important;
  color: #555 !important;
  border: 1px solid #333 !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.button,
.btn,
button[type="submit"],
.shopify-challenge__button {
  font-family: 'Oswald', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  transition: background-color 0.25s, box-shadow 0.25s, transform 0.15s !important;
}

.button--primary,
[class*="button--primary"] {
  background: #8b0000 !important;
  color: #ffffff !important;
  border: 1px solid #8b0000 !important;
}

.button--primary:hover,
[class*="button--primary"]:hover {
  background: #c0392b !important;
  border-color: #c0392b !important;
  box-shadow: 0 4px 20px rgba(139, 0, 0, 0.45) !important;
  transform: translateY(-1px) !important;
}

.button--secondary,
[class*="button--secondary"] {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.button--secondary:hover,
[class*="button--secondary"]:hover {
  background: rgba(139, 0, 0, 0.12) !important;
  border-color: #8b0000 !important;
}

/* Quick add button */
.quick-add__submit,
.quick-add-modal__submit {
  background: #8b0000 !important;
  color: #fff !important;
  font-family: 'Oswald', sans-serif !important;
  letter-spacing: 0.1em !important;
}
.quick-add__submit:hover,
.quick-add-modal__submit:hover {
  background: #c0392b !important;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product__info-container,
.product-information,
.product__info-wrapper {
  background: transparent !important;
}

.product__title,
.product-information__title {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #ffffff !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
}

.product__vendor,
.product-information__vendor {
  font-family: 'Rajdhani', sans-serif !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #8b0000 !important;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Product description */
.product__description,
.product-description {
  color: rgba(200, 200, 200, 0.85) !important;
  line-height: 1.75 !important;
  font-size: 0.95rem;
}

/* Add to cart */
.product-form__submit,
.product-form [type="submit"] {
  background: #8b0000 !important;
  color: #ffffff !important;
  font-family: 'Oswald', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 2px !important;
  font-size: 1.05rem !important;
  padding-block: 1rem !important;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s !important;
}

.product-form__submit:hover,
.product-form [type="submit"]:hover {
  background: #c0392b !important;
  box-shadow: 0 6px 24px rgba(139, 0, 0, 0.45) !important;
  transform: translateY(-1px) !important;
}

/* Product media container */
.product__media-item,
.product-media-container {
  background: #111 !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 2px !important;
}

/* Product thumbnails */
.thumbnail-list__item {
  border: 1px solid #222 !important;
  border-radius: 2px !important;
  background: #111 !important;
  transition: border-color 0.2s !important;
}
.thumbnail-list__item:hover,
.thumbnail-list__item.is-active {
  border-color: #8b0000 !important;
}

/* Variant options */
.variant-input-wrap,
.variant-picker,
[class*="variant-option"] {
  background: transparent !important;
}

.variant-input-wrap label,
.swatch-label,
.variant-button {
  background: #111111 !important;
  border: 1px solid #222 !important;
  color: #e8e8e8 !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  border-radius: 2px !important;
  transition: border-color 0.2s, background 0.2s !important;
}

.variant-input-wrap label:hover,
.swatch-label:hover,
.variant-button:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: #1a1a1a !important;
}

.variant-input-wrap input:checked + label,
.swatch-input:checked + .swatch-label,
.variant-button[aria-pressed="true"],
.variant-button.selected {
  background: #8b0000 !important;
  border-color: #8b0000 !important;
  color: #ffffff !important;
}

/* Quantity selector */
.quantity,
.quantity__button,
.quantity__input {
  background: #111 !important;
  border-color: #222 !important;
  color: #e8e8e8 !important;
}

.quantity__button:hover {
  background: #1a1a1a !important;
  border-color: #8b0000 !important;
  color: #fff !important;
}

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.collection-hero,
.collection__title-wrapper,
.main-collection-banner {
  background: #0a0a0a !important;
  border-bottom: 1px solid #1a1a1a !important;
  padding-bottom: 1rem;
}

.collection-hero__title,
.collection__title {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  color: #fff !important;
}

/* Facets / Filters */
.facets,
.facets__wrapper {
  border-right: 1px solid #1a1a1a !important;
  background: transparent !important;
}

.facets__summary,
.facets-label {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-size: 0.85rem !important;
  color: #e8e8e8 !important;
  border-color: #222 !important;
}

.facets__display-vertical .facets__header,
.facets__group-heading {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-size: 0.78rem !important;
  color: #888 !important;
  border-bottom: 1px solid #1a1a1a !important;
}

/* Active filter pill */
.active-facets__button {
  background: rgba(139, 0, 0, 0.12) !important;
  border: 1px solid rgba(139, 0, 0, 0.4) !important;
  color: #e8e8e8 !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 600 !important;
  border-radius: 2px !important;
}

/* Sort dropdown */
.select__select,
.facets-mobile__sort select {
  background: #111 !important;
  border: 1px solid #222 !important;
  color: #e8e8e8 !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  border-radius: 2px !important;
}

/* Product count */
.product-count,
.collection__product-count {
  color: #555 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
}

/* Pagination */
.pagination__item a,
.pagination__item button {
  background: #111 !important;
  border: 1px solid #222 !important;
  color: #e8e8e8 !important;
  border-radius: 2px !important;
  transition: all 0.2s !important;
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 600 !important;
}

.pagination__item a:hover,
.pagination__item--current a,
.pagination__item--current button {
  background: #8b0000 !important;
  border-color: #8b0000 !important;
  color: #fff !important;
}

/* ============================================================
   CART PAGE / DRAWER
   ============================================================ */
.cart-drawer,
.drawer {
  background: #0d0d0d !important;
  border-left: 1px solid #1a1a1a !important;
}

.cart-drawer__header,
.drawer__header {
  background: #0a0a0a !important;
  border-bottom: 1px solid #1a1a1a !important;
  padding: 1.2rem 1.5rem !important;
}

.cart-drawer__title,
.drawer__heading,
.cart-page__title {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #ffffff !important;
  font-size: 1.3rem !important;
}

/* Cart items */
.cart-item,
.cart-items .cart-item {
  border-bottom: 1px solid #1a1a1a !important;
  padding-block: 1rem !important;
}

.cart-item__image-container,
.cart-item__media {
  background: #111 !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 2px !important;
}

.cart-item__name,
.cart-item__title {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: #ffffff !important;
}

.cart-item__details {
  color: #888 !important;
  font-size: 0.85rem !important;
}

/* Cart totals */
.cart__totals,
.cart-summary,
.cart-drawer__footer {
  background: #0a0a0a !important;
  border-top: 1px solid #1a1a1a !important;
}

.cart__total-tag,
.totals__total {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 0.9rem !important;
  color: #888 !important;
}

.totals__total-value,
.cart__total-price {
  font-family: 'Oswald', sans-serif !important;
  font-size: 1.4rem !important;
  color: #fff !important;
  letter-spacing: 0.04em !important;
}

/* Checkout button */
.cart__ctas .button--primary,
.cart-drawer__footer .button--primary,
.cart-page .button--primary {
  background: #8b0000 !important;
  width: 100%;
  text-align: center;
  letter-spacing: 0.14em !important;
  font-size: 1rem !important;
}

.cart__ctas .button--primary:hover,
.cart-drawer__footer .button--primary:hover {
  background: #c0392b !important;
  box-shadow: 0 4px 20px rgba(139, 0, 0, 0.45) !important;
}

/* Discount code */
.cart__discount,
.cart-discount {
  border: 1px solid #222 !important;
  border-radius: 2px !important;
}

/* ============================================================
   FORMS & INPUTS
   ============================================================ */
.field__input,
.field__select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"],
textarea,
select {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #e8e8e8 !important;
  border-radius: 2px !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  font-family: 'Inter', sans-serif !important;
}

.field__input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: #8b0000 !important;
  box-shadow: 0 0 0 2px rgba(139, 0, 0, 0.2) !important;
  outline: none !important;
}

.field__label,
label {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-size: 0.78rem !important;
  color: #888 !important;
}

/* ============================================================
   MOBILE MENU DRAWER
   ============================================================ */
.menu-drawer,
.header__drawer,
.header-drawer {
  background: #0a0a0a !important;
  border-right: 1px solid #1a1a1a !important;
}

.menu-drawer__navigation,
.menu-drawer__inner-submenu {
  background: #0a0a0a !important;
}

.menu-drawer__menu-item,
.menu-drawer__navigation a {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #e8e8e8 !important;
  border-bottom: 1px solid #111 !important;
  transition: color 0.2s !important;
}

.menu-drawer__navigation a:hover {
  color: #c0392b !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer,
.footer,
.footer-section,
.section-footer,
[class*="footer-group"] {
  background: #060606 !important;
  border-top: 1px solid #111 !important;
}

/* Footer section separator */
.footer__content-bottom,
.footer-utilities__inner {
  border-top: 1px solid #111 !important;
}

.footer__heading,
.footer-block__heading,
[class*="footer__heading"] {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.16em !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 1.2rem !important;
}

.footer__list a,
.footer-block__link,
.footer a {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  color: #555 !important;
  transition: color 0.2s !important;
  letter-spacing: 0.02em;
}

.footer__list a:hover,
.footer-block__link:hover,
.footer a:hover {
  color: #c0392b !important;
}

/* Footer brand / logo area */
.footer__brand,
.footer__logo {
  font-family: 'Metal Mania', cursive !important;
  font-size: 1.6rem !important;
  color: #fff !important;
  letter-spacing: 0.06em !important;
  text-shadow: 0 0 20px rgba(139, 0, 0, 0.4) !important;
}

/* Social icons */
.list-social__item a,
.footer-social a {
  border: 1px solid #222 !important;
  border-radius: 2px !important;
  color: #555 !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: border-color 0.2s, color 0.2s !important;
}

.list-social__item a:hover,
.footer-social a:hover {
  border-color: #8b0000 !important;
  color: #c0392b !important;
}

/* Footer copyright */
.footer__copyright,
.footer-utilities__copyright,
[class*="copyright"] {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  color: #333 !important;
  letter-spacing: 0.04em;
}

/* ============================================================
   PREDICTIVE SEARCH
   ============================================================ */
predictive-search,
.predictive-search {
  background: #0f0f0f !important;
  border: 1px solid #1a1a1a !important;
  border-top: none !important;
  border-radius: 0 0 2px 2px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8) !important;
}

.predictive-search__heading,
.predictive-search__result-group-title {
  font-family: 'Rajdhani', sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  font-size: 0.72rem !important;
  color: #8b0000 !important;
  border-bottom: 1px solid #111 !important;
}

.predictive-search__item--link {
  border-bottom: 1px solid #111 !important;
  transition: background 0.15s !important;
}

.predictive-search__item--link:hover {
  background: rgba(139, 0, 0, 0.08) !important;
}

.predictive-search__item-heading {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #e8e8e8 !important;
}

/* ============================================================
   MODALS / POPUPS
   ============================================================ */
.modal__content,
.popup-modal__content,
dialog > *,
[role="dialog"] {
  background: #111 !important;
  border: 1px solid #222 !important;
  border-radius: 2px !important;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.9) !important;
}

/* Close button */
.modal__close-button,
[class*="close-button"],
button.modal__close {
  color: #888 !important;
  transition: color 0.2s !important;
}
.modal__close-button:hover { color: #fff !important; }

/* Modal overlay */
.modal-overlay,
.overlay {
  background: rgba(0, 0, 0, 0.85) !important;
}

/* ============================================================
   MEDIA WITH CONTENT SECTION
   ============================================================ */
.media-with-content,
.media-with-content__content {
  background: #0a0a0a !important;
}

.media-with-content__text,
.media-with-content__description {
  color: rgba(200, 200, 200, 0.85) !important;
}

/* ============================================================
   FEATURED PRODUCT
   ============================================================ */
.featured-product,
.featured-product__container {
  background: #0a0a0a !important;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-card,
.blog-post-card,
.article-card {
  background: #111 !important;
  border: 1px solid #222 !important;
  border-radius: 2px !important;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s !important;
}

.blog-card:hover,
.article-card:hover {
  border-color: #8b0000 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 0, 0, 0.2) !important;
}

.blog-card__title,
.article-card__title {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: #fff !important;
}

.blog-card__excerpt,
.article-card__excerpt {
  color: #888 !important;
  font-size: 0.9rem !important;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.main-404,
.main-404__content {
  background: transparent !important;
  text-align: center;
}

.main-404 h1,
.main-404 .title {
  font-family: 'Metal Mania', cursive !important;
  font-size: clamp(4rem, 12vw, 10rem) !important;
  color: #8b0000 !important;
  text-shadow: 0 0 60px rgba(139, 0, 0, 0.6) !important;
  letter-spacing: 0.1em !important;
}

/* ============================================================
   LOADING SPINNER
   ============================================================ */
.loading-overlay__spinner circle,
[class*="spinner"] circle {
  stroke: #8b0000 !important;
}

/* ============================================================
   SWATCHES
   ============================================================ */
.swatch,
.color-swatch {
  border: 2px solid #222 !important;
  border-radius: 2px !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

.swatch:hover,
.swatch--selected {
  border-color: #8b0000 !important;
  box-shadow: 0 0 0 1px #8b0000 !important;
}

/* ============================================================
   SECTION TITLES (Global)
   ============================================================ */
.section-heading,
.section__title,
[class*="section-title"],
[class*="featured-"] > .title,
.product-list__title,
.collection-list__title {
  font-family: 'Oswald', sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #ffffff !important;
  position: relative;
  display: inline-block;
}

/* Red underline accent after section titles */
.section-heading::after,
.section__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: #8b0000;
  margin-top: 8px;
}

/* ============================================================
   DIVIDERS
   ============================================================ */
hr,
.divider,
[class*="__divider"],
[class*="divider"] {
  border: none !important;
  border-top: 1px solid #1a1a1a !important;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #8b0000; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #c0392b; }

/* ============================================================
   FOCUS VISIBLE
   ============================================================ */
*:focus-visible {
  outline: 2px solid #8b0000 !important;
  outline-offset: 2px !important;
}

/* ============================================================
   SELECTION COLOR
   ============================================================ */
::selection {
  background: rgba(139, 0, 0, 0.5);
  color: #fff;
}

/* ============================================================
   LINKS (global)
   ============================================================ */
a {
  color: inherit;
  transition: color 0.2s;
}
a:hover { color: #c0392b; }

/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */
img,
.media img,
.placeholder {
  background-color: #111 !important;
}

/* Placeholder SVG icons */
.placeholder-svg {
  fill: #222 !important;
  stroke: #333 !important;
}

/* ============================================================
   PRODUCT RECOMMENDATIONS SECTION
   ============================================================ */
.recommendations,
product-recommendations,
.product-recommendations {
  background: #0a0a0a !important;
  border-top: 1px solid #111 !important;
}

/* ============================================================
   UTILITY — SECTION SPACING
   ============================================================ */
.shopify-section + .shopify-section {
  border-top: 1px solid #0f0f0f;
}
