/* Premium Theme Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

h1,
h2,
h3,
h4,
h5,
h6,
.nav-text-logo,
.stat-num {
  font-family: var(--font-heading) !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.wpforms-field-label{
text-align:start;
}
.collab-form-panel{
    max-width: 50%;
    margin: 54px auto;
}
.collab-form-panel .collab_container{
    padding: 30px !important;
}
:root {
  /* Brand Colors */
  --primary: #C8102E;
  /* red */
  --primary-dark: #8B0A1F;
  --secondary: #C9954C;
  /* gold */
  --accent: #045233;
  /* emerald */
  --gradient-start: #045233;
  --gradient-end: #0d7a4d;

  /* Existing palette (kept for backward compatibility) */
  --red: #C8102E;
  --red-dark: #8B0A1F;
  --cream: #FDF9F4;
  --cream-dark: #FAF5EE;
  --black: #121212;
  --off-black: #1a1a1a;
  --smoke: #242424;
  --wine-dark: #19080a;
  --gold: #C9954C;
  --gold-light: #E8C68A;
  --emerald: #045233;
  --emerald-light: #0d7a4d;
  --text-muted: #666;
  --white: #fff;

  /* Typography — 3-font professional system
     Cormorant Garamond : headings (luxury serif)
     Playfair Display   : accent / display (editorial serif)
     Montserrat         : body & UI (clean sans-serif)
  */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;
}

/* Dark mode – keep brand palette intact, only adjust surface/text */
@media (prefers-color-scheme: dark) {
  :root {
    --background: var(--off-black);
    --text-color: var(--white);
  }
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

/* Prevent WordPress/theme default padding from disrupting full-width sections */
.site-main {
  padding: 0;
  margin: 0;
}

/* ─── ANNOUNCEMENT BAR TICKER ─── */
.announcement-bar {
  background: var(--black);
  border-bottom: 1px solid rgba(201, 149, 76, 0.18);
  overflow: hidden;
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
}

.ticker-wrapper {
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 28px;
}

.ticker-sep {
  color: rgba(201, 149, 76, 0.4);
  font-size: 14px;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--red) !important;
}

/* ─── NAV / SITE HEADER ─── */
.site-header {
  position: relative;
  z-index: 10;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 16, 46, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 48px;
}

.nav-logo {
  height: 48px;
  display: block;
  max-width: 100%;
  width: auto;
}

.nav-text-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
}

.nav-text-logo .highlight {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links .current-menu-item a {
  color: var(--red);
}

/* Dropdown and Sub-menu Navigation Styling */
.nav-links li {
  position: relative;
}

.nav-links .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links .menu-item-has-children > a::after {
  content: "▼";
  font-size: 8px;
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-block;
  vertical-align: middle;
}

.nav-links li:hover > a {
  color: var(--red) !important;
}

.nav-links li:hover > a::after {
  transform: rotate(180deg);
  color: var(--red) !important;
}

/* Sub-menu Styles (Desktop) */
@media (min-width: 1025px) {
  .nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #111111;
    border: 1px solid rgba(200, 16, 46, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 12px 0;
    min-width: 180px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    border-radius: 4px;
  }

  .nav-links .sub-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #111111;
    border-left: 1px solid rgba(200, 16, 46, 0.2);
    border-top: 1px solid rgba(200, 16, 46, 0.2);
  }

  .nav-links li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-links .sub-menu li {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-links .sub-menu a {
    display: block;
    padding: 8px 20px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    transition: background-color 0.2s, color 0.2s;
    text-align: left !important;
    white-space: nowrap !important;
    border: none !important;
  }

  .nav-links .sub-menu a:hover {
    background-color: rgba(200, 16, 46, 0.1) !important;
    color: var(--red) !important;
  }
}

.nav-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--red-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Header Layout Presets */
.nav-layout-logo_center {
  flex-direction: column;
  gap: 15px;
  padding: 12px 20px;
}

.nav-layout-logo_center .nav-links {
  order: 2;
}

.nav-layout-logo_center .nav-actions {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger-bars {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--black);
  transition: all 0.3s;
}

/* ─── HERO – WHITE SPLIT LAYOUT ─── */
.hero {
  min-height: 100vh;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center;
  background: #ffffff !important;
  background-color: #ffffff !important;
  overflow: hidden;
  position: relative;
}

/* ── Left: text content ── */
.hero-content {
  padding: 120px 64px 80px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--black) !important;
}

.hero h1 span {
  color: var(--red) !important;
}

.hero-subheading {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  color: #555 !important;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 15px;
  color: #444 !important;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 100px;
  color: var(--black);
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
}

.pill:hover {
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.04);
}

.pill.red {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.pill.red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(0, 0, 0, 0.25);
  background: transparent;
  color: var(--black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(200, 16, 46, 0.04);
}

/* ── Right: media panel ── */
.hero-media-panel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  /* border-radius: 24px 0 0 24px; */
  margin: 24px 20px 24px;
  /* box-shadow: -8px 0 48px rgba(0, 0, 0, 0.12); */
}

.hero-media-video,
.hero-media-img {
  width: 75%;
  height: 100%;
  object-fit: cover;
  object-position: center top; 
  display: block;
  transition: transform 0.6s ease;
  box-shadow: 3px 0px 0px 2px rgb(200 16 46);
  border: 1px solid black;
  margin: auto;
  border-radius: 5px;
}

.hero-media-panel:hover .hero-media-video,
.hero-media-panel:hover .hero-media-img {
  transform: scale(1.02);
}

/* ─── VIDEO BANNER (ABOUT) ─── */
.video-section {
  background: var(--smoke);
  padding: 100px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.video-mock {
  flex: 0 0 560px;
  /* aspect-ratio: 16/9; */
  aspect-ratio: 9/12;
  background: #000;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-mock-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.2) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.play-btn:hover {
  transform: scale(1.1);
  background: var(--red-dark);
}

.play-btn svg {
  margin-left: 4px;
}

.video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.video-text {
  flex: 1;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.video-text h2 {
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 1;
  margin-bottom: 20px;
}

.video-text p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 16px;
}

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── COLLECTIONS ─── */
.collections-section {
  padding: 100px 80px;
  background: var(--black);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1;
}

.section-header h2 span {
  color: var(--red);
}

.see-all {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--text-muted);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.see-all:hover {
  color: white;
  border-color: white;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.collection-card {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.collection-card:hover {
  transform: translateY(-6px);
}

.collection-card:hover .collection-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.collection-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  transition: transform 0.4s;
}

.collection-card:hover .collection-bg {
  transform: scale(1.05);
}

.collection-bg-rb {
  background: linear-gradient(160deg, #1a0a20 0%, #3d1155 100%);
}

.collection-bg-st {
  background: linear-gradient(160deg, #0d1f0d 0%, #1a3d1a 100%);
}

.collection-bg-dn {
  background: linear-gradient(160deg, #20090d 0%, #4a0d1a 100%);
}

.collection-bg-ba {
  background: linear-gradient(160deg, #0a0a0a 0%, #2a2a2a 100%);
}

.collection-bg-vr {
  background: linear-gradient(160deg, #0d1520 0%, #0d2a3d 100%);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.3s;
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.collection-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.collection-name {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--white);
}

.collection-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* ─── FEATURED PRODUCTS ─── */
.featured-products-section {
  padding: 100px 80px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* Card enhancements */
.bnb-product-card {
  background: var(--surface, rgba(20, 20, 20, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
}

.bnb-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.bnb-product-img-wrapper {
  overflow: hidden;
}

.bnb-product-img {
  transition: transform 0.4s ease;
}

.bnb-product-card:hover .bnb-product-img {
  transform: scale(1.07);
}


/* ─── VINYL FEATURED ─── */
.vinyl-section {
  background: var(--cream);
  color: var(--black);
  padding: 100px 80px;
  display: flex;
  gap: 80px;
  align-items: center;
}

.vinyl-text {
  flex: 1;
}

.vinyl-text .section-label {
  color: var(--red-dark);
}

.vinyl-text h2 {
  font-family: var(--font-heading);
  font-size: 60px;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 20px;
}

.vinyl-text h2 span {
  color: var(--red);
}

.vinyl-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 32px;
  max-width: 460px;
}

.vinyl-features {
  list-style: none;
  margin-bottom: 40px;
}

.vinyl-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 15px;
  color: #333;
}

.vinyl-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.vinyl-visual {
  flex: 0 0 460px;
  position: relative;
}

.vinyl-record {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: conic-gradient(#1a1a1a 0deg, #333 5deg, #1a1a1a 10deg,
      #333 15deg, #1a1a1a 20deg, #333 25deg, #1a1a1a 30deg,
      #333 35deg, #1a1a1a 40deg, #333 50deg, #1a1a1a 60deg,
      #333 70deg, #1a1a1a 80deg, #333 100deg, #1a1a1a 120deg,
      #333 150deg, #1a1a1a 180deg, #333 210deg, #1a1a1a 240deg,
      #333 270deg, #1a1a1a 300deg, #333 330deg, #1a1a1a 360deg);
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: spin 20s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: spin 20s linear infinite reverse;
}

.vinyl-label-text {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: white;
  line-height: 1.2;
}

.vinyl-label-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}

.vinyl-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
}
.vinyl-section .btn-dark {
  color: var(--white) !important;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white) !important;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 40px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.85);
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.btn-dark:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 6px 28px rgba(139, 10, 31, 0.35);
}

/* ─── BUNDLES ─── */
.bundles-section {
  padding: 100px 80px;
  background: var(--smoke);
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.bundle-card {
  background: var(--off-black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.bundle-card:hover {
  border-color: rgba(200, 16, 46, 0.4);
  transform: translateY(-4px);
}

.bundle-card.featured {
  border-color: var(--red);
  background: linear-gradient(160deg, rgba(200, 16, 46, 0.08) 0%, var(--off-black) 50%);
}

.bundle-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.bundle-badge.gold {
  background: var(--gold);
  color: var(--black);
}

.bundle-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.bundle-name {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.bundle-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.bundle-includes {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.bundle-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bundle-includes li::before {
  content: '✓';
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.price-new {
  font-family: var(--font-heading);
  font-size: 36px;
  color: white;
}

.price-old {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 12px;
  color: #4ade80;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ─── DYNAMIC EVENTS & COMMUNITY GRID ─── */
.events-section {
  padding: 100px 80px;
  background: var(--black);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.event-card {
  background: var(--off-black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 16, 46, 0.3);
}

.event-image {
  height: 200px;
  position: relative;
  background: linear-gradient(135deg, #2a0a0f 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--red);
  color: var(--white) !important;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 2px;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.event-info {
  padding: 24px;
}

.event-info {
  color: var(--cream) !important;
}

.event-location {
  color: var(--gold);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 800;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 12px;
  line-height: 1.1;
  color: var(--white);
}

.event-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-price-tag {
  font-size: 16px;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 20px;
}

.event-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 13px;
}

.city-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.city-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 20px;
  border-radius: 100px;
  transition: all 0.2s;
}

.city-tag:hover {
  border-color: var(--red);
  color: white;
}

/* ─── INSTAGRAM WRAPPER ─── */
.instagram-section {
  padding: 100px 80px;
  background: var(--smoke);
}

.instagram-container {
  max-width: 1200px;
  margin: 0 auto;
}

.instagram-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.instagram-item-fallback {
  aspect-ratio: 1/1;
  background: var(--off-black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.instagram-item-fallback:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(200, 16, 46, 0.05);
}

.instagram-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* ─── STORY (AYSHA) ─── */
.story-section {
  background: var(--cream);
  padding: 100px 80px;
  display: flex;
  gap: 100px;
  align-items: center;
}

.story-visual {
  flex: 0 0 400px;
  position: relative;
}

.story-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #2a0a0f 0%, #0a0a0a 100%);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(200, 16, 46, 0.2);
  position: relative;
  overflow: hidden;
}

.story-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg,
      transparent, transparent 40px,
      rgba(200, 16, 46, 0.03) 40px, rgba(200, 16, 46, 0.03) 41px);
}

.story-initial {
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(200, 16, 46, 0.15);
  line-height: 1;
  position: relative;
}

.story-frame-label {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  padding: 0 32px;
  line-height: 1.6;
}

.story-quote-mark {
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: var(--font-display);
  font-size: 180px;
  color: rgba(200, 16, 46, 0.08);
  line-height: 1;
  pointer-events: none;
}

.story-text {
  flex: 1;
}

.story-text h2 {
  font-family: var(--font-heading);
  font-size: 54px;
  line-height: 1;
  margin-bottom: 24px;
}

.story-text h2 span {
  color: var(--red);
}

.story-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--black); opacity: 0.8;
  margin-bottom: 20px;
}

.story-body strong {
  color: var(--black);
  font-weight: 500;
}

.story-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--gold-light);
  margin-top: 32px;
}

/* ─── DYNAMIC REVIEWS SLIDER ─── */
.reviews-section {
  padding: 100px 80px;
  background: var(--black);
  overflow: hidden;
}

.reviews-slider-container {
  position: relative;
  margin-top: 50px;
  width: 100%;
}

.reviews-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.review-card {
  min-width: calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  background: var(--off-black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 32px 28px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.review-card:hover {
  border-color: rgba(200, 16, 46, 0.3);
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.review-loc {
  font-size: 12px;
  color: var(--text-muted);
}

.reviews-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s;
}

.slider-dot.active {
  background: var(--red);
  transform: scale(1.2);
}

/* ─── SUBSCRIPTION ─── */
.sub-section {
  background: var(--cream-dark);
  padding: 100px 80px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.sub-text {
  flex: 1;
}

.sub-text h2 {
  font-family: var(--font-heading);
  font-size: 60px;
  line-height: 1;
  margin-bottom: 16px;
}

.sub-text h2 span {
  color: var(--red);
}

.sub-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 400px;
}

.sub-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.perk-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.sub-card {
  flex: 0 0 360px;
  background: var(--off-black);
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-radius: 4px;
  padding: 48px 40px;
  text-align: center;
}

.sub-price {
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 1;
  color: var(--red);
}

.sub-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.sub-name {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.sub-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ─── EMAIL CAPTURE ─── */
.email-section {
  background: var(--cream-dark);
  padding: 80px;
  text-align: center;
}

.email-section h2 {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--black);
}

.email-section p {
  font-size: 16px;
  color: rgba(18, 18, 18, 0.7);
  margin-bottom: 40px;
}

.email-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 20px;
}

.email-input {
  flex: 1;
  border: 1px solid rgba(201, 149, 76, 0.3) !important;
  border-right: none;
  color: var(--black) !important;

}

.email-input::placeholder {
  color: rgba(18, 18, 18, 0.4);
}

.email-btn {
  background: var(--black);
  color: white;
  border: 1px solid var(--black);
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 0 2px 2px 0;
  transition: all 0.3s;
}

.email-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.email-disclaimer {
  font-size: 12px;
  color: rgba(18, 18, 18, 0.5);
}

/* ─── CREDIBILITY ─── */
.cred-section {
  background: var(--off-black);
  padding: 60px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cred-header {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.cred-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}

.cred-logo {
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.2s;
}

.cred-logo:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ─── RIP N REFLECT PROMO BLOCK ─── */
.rnr-promo {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a0a20 50%, #0a0d1a 100%);
  padding: 100px 80px;
  border-top: 1px solid rgba(167, 139, 250, 0.15);
  border-bottom: 1px solid rgba(167, 139, 250, 0.15);
}

.rnr-promo-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.rnr-promo-text {
  flex: 1;
}

.rnr-card-preview {
  flex: 0 0 320px;
}

.rnr-card-demo {
  background: linear-gradient(160deg, #1e1030 0%, #0f0a1e 100%);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(100, 60, 200, 0.2);
}

.rnr-card-logo {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 24px;
}

.rnr-card-question {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.5;
  color: white;
  margin-bottom: 16px;
  min-height: 60px;
  transition: opacity 0.3s;
}

.rnr-card-type {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}

.rnr-card-btns {
  display: flex;
  gap: 10px;
}

.rnr-mini-btn {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.15s, opacity 0.15s;
  font-family: var(--font-body);
}

.rnr-mini-btn:hover {
  transform: translateY(-2px);
}

.rnr-mini-btn.rip {
  background: rgba(200, 16, 46, 0.2);
  color: #ff8095;
  border: 1px solid rgba(200, 16, 46, 0.4);
}

.rnr-mini-btn.reflect {
  background: rgba(167, 139, 250, 0.15);
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.3);
}

/* ─── RIP N' REFLECT FULL CARD GAME SECTION ─── */
.rnr-section {
  background: #080810;
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rnr-section .rnr-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.rnr-section .rnr-left-col {
  flex: 1.1;
}

.rnr-section .rnr-right-col {
  flex: 0.9;
  max-width: 560px;
  width: 100%;
  position: relative;
  text-align: center;
}

.rnr-header-inside {
  margin-bottom: 40px;
}

.rnr-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 20%, rgba(167, 139, 250, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 80%, rgba(200, 16, 46, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.rnr-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.rnr-title {
  font-family: var(--font-heading);
  font-size: clamp(60px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 50%, #ff8095 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.rnr-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 40px;
}

.rnr-mode-btns {
  display: inline-flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 16px;
}

.rnr-mode-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.rnr-mode-btn.active {
  background: var(--red);
  color: white;
}

.rnr-mode-btn:not(.active):hover {
  color: white;
}

.rnr-mode-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  margin-bottom: 60px;
}

.rnr-game-area {
  max-width: 560px;
  margin: 0 auto 48px;
  position: relative;
}

.rnr-card-wrap {
  perspective: 1000px;
  margin-bottom: 40px;
}

.rnr-main-card {
  height: 300px;
  position: relative;
}

.rnr-card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.rnr-card-inner.flipping {
  transform: rotateY(180deg);
}

.rnr-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 36px;
  gap: 12px;
}

.rnr-card-front {
  background: linear-gradient(160deg, #1e1030 0%, #100820 60%, #0a0614 100%);
  border: 1px solid rgba(167, 139, 250, 0.25);
  box-shadow: 0 32px 80px rgba(100, 60, 200, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.rnr-card-front.rip-style {
  background: linear-gradient(160deg, #200a12 0%, #120008 60%, #0a0005 100%);
  border-color: rgba(200, 16, 46, 0.3);
  box-shadow: 0 32px 80px rgba(200, 16, 46, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.rnr-card-brand {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 8px;
}

.rnr-card-mode-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(167, 139, 250, 0.15);
  color: #c4b5fd;
  border: 1px solid rgba(167, 139, 250, 0.25);
}

.rnr-card-mode-tag.rip-tag {
  background: rgba(200, 16, 46, 0.15);
  color: #ff8095;
  border-color: rgba(200, 16, 46, 0.3);
}

.rnr-question-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: white;
  text-align: center;
  transition: opacity 0.2s;
}

.rnr-card-number {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.rnr-draw-area {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.rnr-draw-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}

.rnr-draw-btn:hover {
  transform: translateY(-3px);
}

.rip-btn {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.25) 0%, rgba(200, 16, 46, 0.1) 100%);
  border: 1px solid rgba(200, 16, 46, 0.4) !important;
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.15);
}

.rip-btn:hover {
  box-shadow: 0 16px 48px rgba(200, 16, 46, 0.3);
}

.reflect-btn {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(167, 139, 250, 0.08) 100%);
  border: 1px solid rgba(167, 139, 250, 0.35) !important;
  box-shadow: 0 8px 32px rgba(167, 139, 250, 0.1);
}

.reflect-btn:hover {
  box-shadow: 0 16px 48px rgba(167, 139, 250, 0.25);
}

.rnr-btn-icon {
  font-size: 28px;
}

.rnr-btn-label {
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}

.rnr-btn-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.rnr-or {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.rnr-counter-row {
  margin-bottom: 8px;
}

.rnr-counter-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.rnr-counter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, #a78bfa 100%);
  border-radius: 100px;
  transition: width 0.4s ease;
}

.rnr-counter-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

.rnr-gate {
  max-width: 560px;
  margin: 0 auto 48px;
}

.rnr-gate-card {
  background: linear-gradient(160deg, #1a0a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}

.rnr-email-gate {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}

.rnr-email-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  color: white;
  padding: 14px 18px;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  border-radius: 8px 0 0 8px;
}

.rnr-email-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.rnr-email-submit {
  background: #7c3aed;
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  border-radius: 0 8px 8px 0;
  transition: background 0.2s;
}

.rnr-email-submit:hover {
  background: #6d28d9;
}

.rnr-vibes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rnr-vibe-pill {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.2s;
}

.rnr-vibe-pill:hover {
  border-color: rgba(167, 139, 250, 0.4);
  color: #c4b5fd;
  cursor: default;
}

/* ─── FAQ ACCORDION ─── */
.faq-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--off-black) 100%);
  padding: 100px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s, background-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(254, 1, 182, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item.active {
  border-color: var(--red);
  background: rgba(254, 1, 182, 0.02);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}

.faq-question span {
  padding-right: 20px;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s ease, color 0.3s ease;
  font-family: var(--font-body);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--red);
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer {
  min-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
  padding: 0 24px;
  transition: padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px 24px;
}

/* ─── FOOTER ─── */
footer {
  background: #0a0a0a;
  padding: 64px 80px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img,
.footer-logo {
  height: 48px;
  margin-bottom: 20px;
  width: auto;
  max-width: 100%;
}

.footer-text-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-text-logo .highlight {
  color: var(--red);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--red);
  color: white;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: white;
}

/* ─── FLOATING CTA ─── */
.float-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.float-bar.hidden {
  transform: translate(-50%, 150px);
  opacity: 0;
}

.float-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.float-text strong {
  color: white;
}

.float-btn {
  background: var(--red);
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.2s;
  white-space: nowrap;
}

.float-btn:hover {
  background: var(--red-dark);
}

/* ─── GLOBAL FORM INPUT FIELDS (Disabled - using WPForms styles natively) ─── */
/*
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
select,
textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12)!important;
  color: var(--black)!important;
  padding: 12px 16px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--red);
  cursor: pointer;
}
*/

/* ─── AJAX NOTICES AND MESSAGE RESPONSES ─── */
.bnb-form-response,
.review-form-response,
.ajax-response-msg {
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.bnb-form-response[style*="block"],
.review-form-response[style*="block"] {
  display: block !important;
  animation: fadeInDown 0.3s ease-out forwards;
}

/* Success State Styles */
.bnb-form-response-success,
#dff0d8,
.success-msg {
  background: rgba(60, 118, 61, 0.1) !important;
  color: #a3e635 !important;
  border: 1px solid rgba(163, 230, 53, 0.2) !important;
  border-left: 4px solid #84cc16 !important;
}

/* Error State Styles */
.bnb-form-response-error,
#f2dede,
.error-msg {
  background: rgba(169, 68, 66, 0.1) !important;
  color: #f87171 !important;
  border: 1px solid rgba(248, 113, 113, 0.2) !important;
  border-left: 4px solid #ef4444 !important;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── NATIVE SOCIAL FEED GRID ANIMATIONS ─── */
.social-feed-card:hover img {
  transform: scale(1.06);
}

.social-feed-card:hover .social-feed-overlay {
  opacity: 1 !important;
}

.social-tab-btn {
  background: none;
  color: rgba(255, 255, 255, 0.6);
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-family: inherit;
}

.social-tab-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.social-tab-btn.active {
  background: var(--red) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

/* ─── SIDEBAR WIDGETS OVERHAUL ─── */
.widget,
.sidebar-widget {
  background: var(--off-black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px;
  border-radius: 6px;
  margin-bottom: 30px;
}

.widget .widget-title,
.widget h2,
.sidebar-widget h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget ul li {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.widget ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.widget ul li a,
.sidebar-widget a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.widget ul li a:hover,
.sidebar-widget a:hover {
  color: var(--red);
}

.widget select {
  margin-top: 10px;
}

.widget_search .search-form {
  display: flex;
  gap: 10px;
}

.widget_search .search-form input[type="search"] {
  flex: 1;
}

.widget_search .search-form button,
.widget_search .search-form input[type="submit"] {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.widget_search .search-form button:hover,
.widget_search .search-form input[type="submit"]:hover {
  background: var(--red-dark);
}



/* ==========================================================================
   6. PREMIUM DESIGN FLOW AND COLOR SCHEME OVERRIDES (DARK/LIGHT TRANSITIONS)
   ========================================================================== */

/* ─── CREDIBILITY SECTION (Light Mode Accent) ─── */
.cred-section {
  background: var(--cream-dark) !important;
  color: var(--black) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.cred-header {
  color: rgba(0, 0, 0, 0.45) !important;
}

.cred-logo {
  color: rgba(0, 0, 0, 0.35) !important;
}

.cred-logo:hover {
  color: rgba(0, 0, 0, 0.8) !important;
}

/* ─── FEATURED PRODUCTS SECTION (Light Mode Accent) ─── */
.featured-products-section {
  background: var(--cream) !important;
  color: var(--black) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.featured-products-section h2 {
  color: var(--black) !important;
}

.featured-products-section .section-label {
  color: var(--red) !important;
}

.featured-products-section .see-all {
  color: rgba(0, 0, 0, 0.6) !important;
  border-bottom-color: rgba(0, 0, 0, 0.4) !important;
}

.featured-products-section .see-all:hover {
  color: var(--black) !important;
  border-bottom-color: var(--black) !important;
}

/* ─── VINYL SPOTLIGHT SECTION (Linen Spotlight Card) ─── */
.vinyl-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%) !important;
  color: var(--black) !important;
  margin: 40px 80px;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.vinyl-text h2 {
  color: var(--black) !important;
}

.vinyl-text p {
  color: rgba(0, 0, 0, 0.7) !important;
}

.vinyl-features li {
  color: rgba(0, 0, 0, 0.8) !important;
  border-bottom-color: rgba(0, 0, 0, 0.05) !important;
}

/* ─── DYNAMIC EVENTS SECTION (Light Mode Accent) ─── */
.events-section {
  background: var(--cream) !important;
  color: var(--black) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.events-section h2 {
  color: var(--black) !important;
}

.events-section p {
  color: rgba(0, 0, 0, 0.6) !important;
}

.events-section .event-card {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.events-section .event-title {
  color: var(--black) !important;
}

.events-section .event-desc {
  color: rgba(0, 0, 0, 0.6) !important;
}

.events-section .event-location {
  color: var(--red) !important;
}

.events-section .event-price-tag {
  color: var(--black) !important;
}

.events-section .city-tag {
  color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
}

.events-section .city-tag:hover {
  color: var(--black) !important;
  border-color: var(--red) !important;
}

/* ─── REVIEWS SECTION (Light Mode Accent) ─── */
.reviews-section {
  background: var(--cream) !important;
  color: var(--black) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.reviews-section h2 {
  color: var(--black) !important;
}

.reviews-section .review-card {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: var(--black) !important;
}

.reviews-section .review-text {
  color: rgba(0, 0, 0, 0.8) !important;
}

.reviews-section .review-name {
  color: var(--black) !important;
}

.reviews-section .review-loc {
  color: rgba(0, 0, 0, 0.5) !important;
}

.reviews-section .slider-arrow {
  background: rgba(0, 0, 0, 0.03) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  color: var(--black) !important;
}

.reviews-section .slider-arrow:hover {
  background: var(--red) !important;
  color: var(--white) !important;
  border-color: var(--red) !important;
}

.reviews-section .slider-dot {
  background: rgba(0, 0, 0, 0.15) !important;
}

.reviews-section .slider-dot.active {
  background: var(--red) !important;
}

/* ─── INSTAGRAM / SOCIAL FEED (Light Mode Accent) ─── */
.social-feed-section {
  background: var(--cream) !important;
  color: var(--black) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.social-feed-section .instagram-profile-header {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.social-feed-section .instagram-profile-info h2 {
  color: var(--black) !important;
}

.social-feed-section .instagram-profile-stats {
  color: rgba(0, 0, 0, 0.7) !important;
}

.social-feed-section .instagram-profile-bio {
  color: rgba(0, 0, 0, 0.6) !important;
}

.social-feed-section .instagram-profile-avatar {
  background: var(--white) !important;
  border-color: var(--red) !important;
}

.social-feed-section .social-feed-card {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* ─── SUBSCRIPTION CLUB SECTION (Wine Dark Accent) ─── */
.sub-section {
  background: var(--cream-dark) !important;
  border-top: 1px solid rgba(200, 16, 46, 0.15) !important;
  border-bottom: 1px solid rgba(200, 16, 46, 0.15) !important;
}

/* ─── SOFT DEEP CRIMSON NEWSLETTER CAPTURE ─── */
.email-section {
  background: var(--cream-dark) !important;
  border-top: 1px solid rgba(201, 149, 76, 0.2) !important;
  border-bottom: 1px solid rgba(201, 149, 76, 0.2) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* ─── FAQ SECTION (Light Mode Accent) ─── */
.faq-section {
  background: var(--cream) !important;
  color: var(--black) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.faq-section h2 {
  color: var(--black) !important;
}

.faq-section .faq-item {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.faq-section .faq-item:hover {
  border-color: rgba(200, 16, 46, 0.3) !important;
  background: rgba(0, 0, 0, 0.01) !important;
}

.faq-section .faq-item.active {
  border-color: var(--red) !important;
  background: rgba(0, 0, 0, 0.01) !important;
}

.faq-section .faq-question {
  color: var(--black) !important;
}

.faq-section .faq-answer {
  color: rgba(0, 0, 0, 0.7) !important;
}

/* ==========================================================================
   WOOCOMMERCE PREMIUM STYLING SYSTEM
   ========================================================================== */

/* Breadcrumbs */
.woocommerce-breadcrumb {
  font-family: var(--font-body);
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-bottom: 24px !important;
}

.woocommerce-breadcrumb a {
  color: var(--text-muted) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.woocommerce-breadcrumb a:hover {
  color: var(--gold-light) !important;
}

/* Sale Badge */
span.onsale {
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 6px 14px !important;
  border-radius: 4px !important;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3) !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1 !important;
  display: inline-block !important;
}

/* Single Product Container Layout */
.woocommerce div.product,
.woocommerce-page div.product {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 50px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  padding: 48px !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
  margin-top: 20px !important;
  margin-bottom: 80px !important;
}

@media (max-width: 860px) {

  .woocommerce div.product,
  .woocommerce-page div.product {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 10px !important;
  }
  
}

/* Image Gallery */
.woocommerce div.product div.images,
.woocommerce-page div.product div.images {
  float: none !important;
  width: 100% !important;
  margin-bottom: 0 !important;
}

.woocommerce div.product div.images img,
.woocommerce-page div.product div.images img {
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Product Info Summary */
.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
  float: none !important;
  width: 100% !important;
  margin-bottom: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

.woocommerce div.product .product_title,
.woocommerce-page div.product .product_title {
  font-family: var(--font-body) !important;
  font-size: clamp(36px, 5vw, 30px) !important;
  line-height: 1.05 !important;
  letter-spacing: 1px !important;
  color: var(--off-black) !important;
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}

/* Price block */
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-page div.product p.price,
.woocommerce-page div.product span.price {
  color: var(--gold-light) !important;
  font-family: var(--font-body) !important;
  font-size: 32px !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 24px !important;
}

.woocommerce div.product p.price del,
.woocommerce-page div.product p.price del {
  color: var(--text-muted) !important;
  font-size: 20px !important;
  margin-right: 10px !important;
}

.woocommerce div.product p.price ins,
.woocommerce-page div.product p.price ins {
  text-decoration: none !important;
  color: var(--gold-light) !important;
}

/* Quantity input wrapper styling */
.woocommerce div.product form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-top: 24px !important;
  margin-bottom: 30px !important;
}

.woocommerce div.product form.cart .quantity {
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  height: 48px !important;
  overflow: hidden !important;
}

.woocommerce div.product form.cart .quantity input.qty {
  width: 50px !important;
  height: 46px !important;
  border: none !important;
  background: transparent !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-align: center !important;
  outline: none !important;
}

/* Add to Cart button styling */
.woocommerce div.product form.cart button.single_add_to_cart_button {
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 0 36px !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3) !important;
}

.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 16, 46, 0.5) !important;
  background: linear-gradient(135deg, var(--red-dark), #b80d27) !important;
}

/* Product Meta styling */
.product_meta {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 20px !important;
  margin-top: 10px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  font-size: 13px !important;
  color: var(--text-muted) !important;
}

.product_meta a {
  color: var(--white) !important;
  text-decoration: none !important;
}

.product_meta a:hover {
  color: var(--gold-light) !important;
}

/* Tabs System Redesign */
.woocommerce-tabs {
  grid-column: 1 / -1 !important;
  margin-top: 50px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 40px !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex !important;
  gap: 32px !important;
  list-style: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 0 0 12px 0 !important;
  margin: 0 0 30px 0 !important;
  background: transparent !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--text-muted) !important;
  font-family: var(--font-body) !important;
  font-size: 20px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 0 0 10px 0 !important;
  display: block !important;
  transition: color 0.2s ease !important;
  position: relative !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--primary) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a::after {
  content: '' !important;
  position: absolute !important;
  bottom: -13px !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: var(--red-dark) !important;
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  color: rgba(--off-black) !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
}

.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-family: var(--font-body) !important;
  font-size: 28px !important;
  color: var(--off-black) !important;
  margin-bottom: 20px !important;
  letter-spacing: 0.5px !important;
}

/* Reviews List & Comment Forms */
.woocommerce #reviews #comments ol.commentlist {
  padding: 0 !important;
  list-style: none !important;
}

.woocommerce #reviews #comments ol.commentlist li {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 8px !important;
  padding: 24px !important;
  margin-bottom: 20px !important;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: var(--smoke) !important;
}

/* Comment Form controls override */
.comment-respond {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  padding: 32px !important;
  margin-top: 40px !important;
}

.comment-respond h3 {
  font-family: var(--font-body) !important;
  font-size: 24px !important;
  color: var(--white) !important;
  letter-spacing: 1px !important;
  margin-bottom: 24px !important;
}

.comment-form p {
  margin-bottom: 16px !important;
}

.comment-form label {
  display: block !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: var(--text-muted) !important;
  margin-bottom: 6px !important;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  padding: 12px 16px !important;
  width: 100% !important;
  border-radius: 6px !important;
  outline: none !important;
  transition: border-color 0.2s ease !important;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
  border-color: var(--gold) !important;
}

.comment-form input[type="submit"] {
  background: var(--gold) !important;
  color: var(--black) !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  padding: 12px 30px !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  font-weight: bold !important;
}

.comment-form input[type="submit"]:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px) !important;
}

/* Related Products redone */
.related.products {
  margin-top: 80px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 60px !important;
  grid-column: 1 / -1 !important;
}

.related.products h2 {
  font-family: var(--font-body) !important;
  font-size: 36px !important;
  letter-spacing: 1px !important;
  color: var(--white) !important;
  margin-bottom: 40px !important;
}

.related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.related.products ul.products li.product {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  text-align: center !important;
  position: relative !important;
  transition: transform 0.3s ease, border-color 0.3s ease !important;
  margin: 0 !important;
  width: auto !important;
  float: none !important;
}

.related.products ul.products li.product:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(200, 16, 46, 0.3) !important;
}

.related.products ul.products li.product img {
  border-radius: 8px !important;
  margin-bottom: 15px !important;
  width: 100% !important;
  height: auto !important;
}

.related.products ul.products li.product h2.woocommerce-loop-product__title {
  font-family: var(--font-body) !important;
  font-size: 22px !important;
  color: var(--white) !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.5px !important;
}

.related.products ul.products li.product span.price {
  color: var(--gold-light) !important;
  font-family: var(--font-body) !important;
  font-size: 18px !important;
  display: block !important;
  margin-bottom: 15px !important;
}

.related.products ul.products li.product a.button {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  padding: 16px 6px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.2s ease !important;
}

.related.products ul.products li.product a.button:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

/* ==========================================================================
   WOOCOMMERCE BLOCKS CART REDESIGN
   ========================================================================== */

/* Cart Main Container Layout */
.wc-block-cart.wp-block-woocommerce-filled-cart-block {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 40px 20px !important;
}

/* Flexbox / Grid Layout for Main & Sidebar */
.wc-block-components-sidebar-layout {
  display: flex !important;
  flex-direction: row !important;
  gap: 40px !important;
  align-items: start !important;
}

@media (max-width: 991px) {
  .wc-block-components-sidebar-layout {
    flex-direction: column !important;
    gap: 30px !important;
  }
}

/* Main Area - Cart Items List */
.wc-block-components-main.wc-block-cart__main {
  flex: 1.6 !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  padding: 30px !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
}

/* Cart Items Table elements */
.wc-block-cart-items {
  width: 100% !important;
  border-collapse: collapse !important;
}

.wc-block-cart-items__header th {
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: var(--text-muted) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-bottom: 15px !important;
  font-weight: 600 !important;
}

.wc-block-cart-items__row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.wc-block-cart-items__row:last-child {
  border-bottom: none !important;
}

/* Item Image cell */
.wc-block-cart-item__image {
  padding: 20px 0 !important;
  width: 90px !important;
}

.wc-block-cart-item__image img {
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: transform 0.2s ease !important;
}

.wc-block-cart-item__image img:hover {
  transform: scale(1.04) !important;
}

/* Details cell */
.wc-block-cart-item__product {
  padding: 20px 15px !important;
  vertical-align: middle !important;
}

.wc-block-components-product-name {
  color: var(--white) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.wc-block-components-product-name:hover {
  color: var(--gold-light) !important;
}

/* Prices */
.wc-block-cart-item__prices {
  margin-bottom: 10px !important;
}

.wc-block-components-product-price {
  display: inline-flex !important;
  gap: 8px !important;
  align-items: center !important;
}

.wc-block-components-product-price__regular {
  color: var(--text-muted) !important;
  text-decoration: line-through !important;
  font-size: 14px !important;
}

.wc-block-components-product-price__value.is-discounted {
  color: var(--gold-light) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

.wc-block-components-product-metadata__description p {
  color: var(--text-muted) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  margin-bottom: 14px !important;
}

/* Quantity and Remove wrappers */
.wc-block-cart-item__quantity {
  display: inline-flex !important;
  align-items: center !important;
  gap: 15px !important;
  margin-top: 10px !important;
}

.wc-block-components-quantity-selector {
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  height: 38px !important;
}

.wc-block-components-quantity-selector__input {
  width: 44px !important;
  height: 36px !important;
  border: none !important;
  background: transparent !important;
  color: var(--white) !important;
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  outline: none !important;
  order: 2 !important;
}

.wc-block-components-quantity-selector__button {
  background: transparent !important;
  border: none !important;
  color: var(--white) !important;
  width: 32px !important;
  height: 36px !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}

.wc-block-components-quantity-selector__button--minus {
  order: 1 !important;
}

.wc-block-components-quantity-selector__button--plus {
  order: 3 !important;
}

.wc-block-components-quantity-selector__button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.05) !important;
}

.wc-block-components-quantity-selector__button:disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
}

/* Remove button styling */
.wc-block-cart-item__remove-link {
  background: transparent !important;
  border: none !important;
  color: var(--text-muted) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px !important;
  border-radius: 50% !important;
  transition: all 0.2s ease !important;
}

.wc-block-cart-item__remove-link svg {
  fill: currentColor !important;
  width: 18px !important;
  height: 18px !important;
}

.wc-block-cart-item__remove-link:hover {
  background: rgba(200, 16, 46, 0.1) !important;
  color: var(--red) !important;
}

/* Total Price Column */
.wc-block-cart-item__total {
  padding: 20px 0 !important;
  text-align: right !important;
  vertical-align: middle !important;
}

.wc-block-cart-item__total-price-and-sale-badge-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 6px !important;
}

.wc-block-cart-item__total-price-and-sale-badge-wrapper .wc-block-components-product-price__value {
  color: var(--white) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.wc-block-components-sale-badge {
  background: rgba(200, 16, 46, 0.1) !important;
  border: 1px solid rgba(200, 16, 46, 0.3) !important;
  color: #ff6b6b !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-weight: 600 !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  display: inline-block !important;
}

/* Sidebar Totals Card styling */
.wc-block-cart__sidebar {
  flex: 1 !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 30px !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
  width: 100% !important;
  position: sticky !important;
  top: 150px !important;
}

.wc-block-cart__totals-title {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: var(--white) !important;
  margin-bottom: 24px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-bottom: 12px !important;
}

/* Coupon section */
.wc-block-components-panel__button {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  color: var(--white) !important;
  font-size: 14px !important;
  padding: 12px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  width: 100% !important;
}

.wc-block-components-panel__button:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.wc-block-components-panel__button svg {
  fill: currentColor !important;
  width: 20px !important;
  height: 20px !important;
}

/* Estimated Totals Footer element */
.wc-block-components-totals-footer-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 20px !important;
  margin-top: 20px !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
}

.wc-block-components-totals-item__label {
  font-size: 15px !important;
  color: var(--text-muted) !important;
}

.wc-block-components-totals-footer-item-tax-value {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--gold-light) !important;
}

/* Submit proceeding checkout button wrapper */
.wc-block-cart__submit {
  margin-top: 30px !important;
}



.wc-block-cart__submit-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(200, 16, 46, 0.5) !important;
  background: linear-gradient(135deg, var(--primary-dark), #9e111e) !important;
}

/* ==========================================================================
   WOOCOMMERCE CATEGORY/SHOP PAGE REDESIGN
   ========================================================================== */

/* Archive Description */
.term-description,
.woocommerce-archive-description {
  max-width: 680px !important;
  margin: 0 auto 30px auto !important;
  text-align: center !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: rgba(0, 0, 0, 0.6) !important;
}

/* Sorting & Result Count Header Row */
.woocommerce-before-shop-loop {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-top: 30px !important;
  margin-bottom: 40px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  padding-bottom: 20px !important;
  flex-wrap: wrap !important;
  gap: 15px !important;
  width: 100% !important;
  clear: both !important;
}

/* Fallback for direct siblings under container (if wrapper is absent) */
p.woocommerce-result-count {
  float: left !important;
  color: rgba(0, 0, 0, 0.6) !important;
  font-size: 14px !important;
  margin: 20px 0 !important;
  height: 42px !important;
  line-height: 42px !important;
}

form.woocommerce-ordering {
  float: right !important;
  margin: 20px 0 !important;
}

form.woocommerce-ordering select {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  color: var(--black) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  padding: 10px 16px !important;
  border-radius: 8px !important;
  outline: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  padding-right: 40px !important;
}

form.woocommerce-ordering select:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15) !important;
}

form.woocommerce-ordering select option {
  background: var(--white) !important;
  color: var(--black) !important;
}

/* WooCommerce Products Grid */
ul.products {
  clear: both !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
  gap: 20px !important;
  padding: 0 !important;
  margin: 40px 0 !important;
  list-style: none !important;
}

ul.products::before,
ul.products::after {
  display: none !important;
  /* Hide old floats spacers */
}

/* Individual Product Card */
ul.products li.product {
  background: var(--white) !important;
  border: 1px solid rgb(200 16 46 / 21%) !important;
  border-radius: 12px !important;
  padding: 10px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  position: relative !important;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
}

ul.products li.product:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(200, 16, 46, 0.2) !important;
  box-shadow: 0 15px 35px rgba(200, 16, 46, 0.08) !important;
  background: var(--white) !important;
}

/* Product Category Loop Cards */
ul.products li.product-category.product {
  text-align: center !important;
}

ul.products li.product-category.product h2.woocommerce-loop-category__title {
  font-family: var(--font-body) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--black) !important;
  margin: 15px 0 !important;
}

ul.products li.product-category.product h2.woocommerce-loop-category__title .count {
  display: block !important;
  font-size: 13px !important;
  color: rgba(0, 0, 0, 0.45) !important;
  font-weight: 500 !important;
  margin-top: 6px !important;
}

/* Product Card Images & Aspect Ratio crop */
ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  text-decoration: none !important;
}

ul.products li.product a.woocommerce-LoopProduct-link img {
  border-radius: 8px !important;
  margin-bottom: 15px !important;
  transition: transform 0.4s ease !important;
  width: 100% !important;
  aspect-ratio: 1/1 !important;
  object-fit: cover !important;
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

ul.products li.product:hover a.woocommerce-LoopProduct-link img {
  transform: scale(1.03) !important;
}

/* Slanted / Positioned Sale Badge inside loop */
ul.products li.product span.onsale {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  z-index: 5 !important;
  margin: 0 !important;
}

/* Loop Product Title */
ul.products li.product h2.woocommerce-loop-product__title {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--black) !important;
  margin: 10px 0 8px 0 !important;
  line-height: 1.35 !important;
  transition: color 0.2s ease !important;
  letter-spacing: 0.2px !important;
  padding: 0 !important;
}

ul.products li.product:hover h2.woocommerce-loop-product__title {
  color: var(--red) !important;
}

/* Loop Pricing */
ul.products li.product span.price {
  color: var(--red) !important;
  font-size: 15px !important;
  margin-bottom: 16px !important;
  display: block !important;
  font-weight: 600 !important;
}

ul.products li.product span.price del {
  color: rgba(0, 0, 0, 0.4) !important;
  font-size: 13px !important;
  margin-right: 6px !important;
}

ul.products li.product span.price ins {
  text-decoration: none !important;
  color: var(--red) !important;
  font-weight: 700 !important;
}

/* Loop Action Buttons (Add to Cart / Select options) */
ul.products li.product a.button {
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 16px 20px !important;
  border-radius: 6px !important;
  border: none !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2) !important;
  text-align: center !important;
  margin-top: auto !important;
}

ul.products li.product a.button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.4) !important;
  background: linear-gradient(135deg, var(--red-dark), #b80d27) !important;
}

/* WooCommerce Pagination System */
nav.woocommerce-pagination {
  margin-top: 50px !important;
  text-align: center !important;
  border: none !important;
  clear: both !important;
}

nav.woocommerce-pagination ul {
  border: none !important;
  display: inline-flex !important;
  gap: 8px !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

nav.woocommerce-pagination ul li {
  border: none !important;
  margin: 0 !important;
  float: none !important;
}

nav.woocommerce-pagination ul li a,
nav.woocommerce-pagination ul li span {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: var(--black) !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
  text-decoration: none !important;
}

nav.woocommerce-pagination ul li a:hover,
nav.woocommerce-pagination ul li span.current {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: var(--white) !important;
}

/* ==========================================================================
   WOOCOMMERCE BLOCKS CHECKOUT REDESIGN
   ========================================================================== */

.wc-block-checkout {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 40px 0px !important;
}

/* Layout Split */
.wc-block-checkout__main {
  flex: 1.6 !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  padding: 30px !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
}

.wc-block-checkout__sidebar {
  flex: 1 !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 30px !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
  width: 100% !important;
}

/* Checkout step containers */
.wc-block-components-checkout-step {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-bottom: 30px !important;
  margin-bottom: 30px !important;
}

.wc-block-components-checkout-step:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}

.wc-block-components-checkout-step__title {
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
}

/* Text and Field Inputs */
.wc-block-components-text-input input,
.wc-block-components-combobox input,
.wc-block-components-combobox select,
.wc-block-components-textarea textarea {
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  border-radius: 6px !important;
  padding: 12px 16px !important;
  outline: none !important;
  transition: all 0.2s ease !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-combobox input:focus,
.wc-block-components-textarea textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(232, 198, 138, 0.15) !important;
}

.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-textarea label {
  color: var(--text-muted) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

/* Express payment section */
.wc-block-components-express-payment {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 8px !important;
  padding: 20px !important;
  margin-bottom: 30px !important;
}

/* Select Option Radio controls */
.wc-block-components-radio-control__option {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 8px !important;
  padding: 16px !important;
  margin-bottom: 12px !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}

.wc-block-components-radio-control__option:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.wc-block-components-radio-control__option-checked {
  background: rgba(232, 198, 138, 0.05) !important;
  border-color: var(--gold) !important;
}

.wc-block-components-radio-control__label {
  color: var(--white) !important;
  font-weight: 500 !important;
}

.wc-block-components-radio-control__description {
  color: var(--text-muted) !important;
  font-size: 13px !important;
  margin-top: 6px !important;
}

/* Checkboxes */
.wc-block-components-checkbox .wc-block-components-checkbox__input {
  border-radius: 4px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(0, 0, 0, 0.25) !important;
}

.wc-block-components-checkbox .wc-block-components-checkbox__label {
  color: var(--white) !important;
  font-size: 14px !important;
}

/* Place Order button */
.wc-block-components-checkout-place-order-button {
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-size: 16px !important;
  border-radius: 8px !important;
  padding: 16px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3) !important;
}

.wc-block-components-checkout-place-order-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(200, 16, 46, 0.5) !important;
  background: linear-gradient(135deg, var(--red-dark), #b80d27) !important;
}

/* ==========================================================================
   CLASSIC WOOCOMMERCE CART & CHECKOUT STYLING (SHORTCODE FALLBACKS)
   ========================================================================== */

/* Tables styling */
table.shop_table {
  width: 100% !important;
  border-collapse: collapse !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  margin-bottom: 40px !important;
}

table.shop_table th {
  background: rgba(255, 255, 255, 0.03) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 15px 20px !important;
  color: var(--text-muted) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-align: left !important;
}

table.shop_table td {
  padding: 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  color: var(--black) !important;
  vertical-align: middle !important;
}

table.shop_table tr:last-child td {
  border-bottom: none !important;
}

/* Coupon & Actions row */
table.shop_table td.actions {
  text-align: right !important;
}

table.shop_table td.actions .coupon {
  float: left !important;
}

/* table.shop_table td.actions .input-text {
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  margin-right: 10px !important;
} */

/* Cart collaterals */
.cart-collaterals {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
  align-items: start !important;
  margin-top: 40px !important;
}

@media (max-width: 768px) {
  .cart-collaterals {
    grid-template-columns: 1fr !important;
  }
}

.cart_totals {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  padding: 30px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.cart_totals h2 {
  font-family: var(--font-body) !important;
  font-size: 20px !important;
  color: var(--white) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  margin-bottom: 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-bottom: 10px !important;
}

/* Checkout columns */
/* .col2-set {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 40px !important;
  margin-bottom: 40px !important;
}

@media (max-width: 768px) {
  .col2-set {
    grid-template-columns: 1fr !important;
  }
} */

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading {
  font-family: var(--font-body) !important;
  font-size: 22px !important;
  color: var(--white) !important;
  margin-bottom: 24px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* Form Row Layout */
.form-row {
  margin-bottom: 20px !important;
  display: flex !important;
  flex-direction: column !important;
}

.form-row label {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-bottom: 6px !important;
}

/* .form-row input.input-text,
.form-row select,
.form-row textarea {
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
  padding: 12px 16px !important;
  border-radius: 6px !important;
  outline: none !important;
  transition: border-color 0.2s ease !important;
} */

.form-row input.input-text:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold) !important;
}

/* Payment Section */
#payment {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  padding: 30px !important;
}

#payment ul.payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
}

#payment ul.payment_methods li {
  margin-bottom: 15px !important;
  line-height: 1.5 !important;
}

#payment ul.payment_methods li label {
  color: var(--white) !important;
  font-weight: 500 !important;
  margin-left: 8px !important;
  cursor: pointer !important;
}

#payment div.payment_box {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 6px !important;
  padding: 15px !important;
  margin: 15px 0 !important;
  font-size: 14px !important;
  color: var(--text-muted) !important;
}

#payment div.payment_box::before {
  display: none !important;
}

/* Buttons for classic layouts */
button.button,
a.button.alt,
button.button.alt,
input.button.alt {
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 12px 24px !important;
  border: none !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2) !important;
}

button.button:hover,
a.button.alt:hover,
button.button.alt:hover,
input.button.alt:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.4) !important;
  background: linear-gradient(135deg, var(--red-dark), #b80d27) !important;
}

/* ==========================================================================
   LIGHT CREAM ACCENT PAGES (ALL WOOCOMMERCE PAGES)
   ========================================================================== */

body.woocommerce,
body.woocommerce-page,
body.woocommerce-cart,
body.woocommerce-checkout,
body.single-product {
  background: var(--cream) !important;
  color: var(--black) !important;
}

/* Base link and text overrides (restricted to site-main to preserve header/footer links) */
body.woocommerce .site-main a,
body.woocommerce-page .site-main a,
body.woocommerce-cart .site-main a,
body.woocommerce-checkout .site-main a,
body.single-product .site-main a {
  color: var(--black);
}

body.woocommerce .site-main a:hover,
body.woocommerce-page .site-main a:hover,
body.woocommerce-cart .site-main a:hover,
body.woocommerce-checkout .site-main a:hover,
body.single-product .site-main a:hover {
  color: var(--red);
}

/* Entry content text colors */
.entry-content {
  color: var(--black);
}

body.woocommerce .entry-content,
body.woocommerce-page .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-checkout .entry-content,
body.single-product .entry-content {
  color: var(--black) !important;
}

/* Headings */
body.woocommerce .site-main h1,
body.woocommerce .site-main h2,
body.woocommerce .site-main h3,
body.woocommerce-page .site-main h1,
body.woocommerce-page .site-main h2,
body.woocommerce-page .site-main h3,
body.woocommerce-cart h1.entry-title,
body.woocommerce-checkout h1.entry-title,
body.woocommerce-cart h1,
body.woocommerce-cart h2,
body.woocommerce-cart h3,
body.woocommerce-checkout h1,
body.woocommerce-checkout h2,
body.woocommerce-checkout h3,
body.single-product h1,
body.single-product h2,
body.single-product h3,
body.single-product .product_title,
.woocommerce-products-header__title,
.entry-title {
  color: var(--black) !important;
}

/* Restores default page template heading color for non-WooCommerce pages */
body:not(.woocommerce):not(.woocommerce-page) .entry-title {
  color: var(--black) !important;
}

/* Breadcrumbs & Metadata */
body.woocommerce .woocommerce-breadcrumb,
body.woocommerce-page .woocommerce-breadcrumb,
body.woocommerce-cart .woocommerce-breadcrumb,
body.woocommerce-checkout .woocommerce-breadcrumb,
body.single-product .woocommerce-breadcrumb,
body.woocommerce .woocommerce-breadcrumb a,
body.woocommerce-page .woocommerce-breadcrumb a,
body.woocommerce-cart .woocommerce-breadcrumb a,
body.woocommerce-checkout .woocommerce-breadcrumb a,
body.single-product .woocommerce-breadcrumb a,
body.woocommerce .product_meta,
body.woocommerce-page .product_meta,
body.single-product .product_meta,
body.woocommerce .product_meta a,
body.woocommerce-page .product_meta a,
body.single-product .product_meta a,
body.woocommerce .product_meta span,
body.woocommerce-page .product_meta span,
body.single-product .product_meta span {
  color: rgba(0, 0, 0, 0.6) !important;
}

body.woocommerce .woocommerce-breadcrumb a:hover,
body.woocommerce-page .woocommerce-breadcrumb a:hover,
body.woocommerce-cart .woocommerce-breadcrumb a:hover,
body.woocommerce-checkout .woocommerce-breadcrumb a:hover,
body.single-product .woocommerce-breadcrumb a:hover,
body.woocommerce .product_meta a:hover,
body.woocommerce-page .product_meta a:hover,
body.single-product .product_meta a:hover {
  color: var(--red) !important;
}

.wc-block-cart__submit-button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
  color: var(--white) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 16px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3) !important;
}

/* Main Area Card Wrappers */
body.woocommerce-cart .wc-block-components-main.wc-block-cart__main,
body.woocommerce-checkout .wc-block-checkout__main,
body.single-product div.product {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
}

body.woocommerce-cart .wc-block-cart__sidebar,
body.woocommerce-checkout .wc-block-checkout__sidebar {
  background: var(--cream-dark) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
}

/* Inputs & Form Fields */
body.woocommerce-cart input[type="text"],
body.woocommerce-cart input[type="email"],
body.woocommerce-cart input[type="number"],
body.woocommerce-cart select,
body.woocommerce-cart textarea,
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="number"],
body.woocommerce-checkout select,
body.woocommerce-checkout textarea,
body.single-product input[type="text"],
body.single-product input[type="email"],
body.single-product input[type="number"],
body.single-product select,
body.single-product textarea,
body.woocommerce-cart .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-combobox input,
body.woocommerce-checkout .wc-block-components-combobox select {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  color: var(--black) !important;
}

body.woocommerce-cart input:focus,
body.woocommerce-checkout input:focus,
body.single-product input:focus {
  border-color: var(--red) !important;
}

body.woocommerce-cart label,
body.woocommerce-checkout label,
body.single-product label {
  color: rgba(0, 0, 0, 0.7) !important;
}

/* Prices */
body.woocommerce-cart .woocommerce-Price-amount,
body.woocommerce-checkout .woocommerce-Price-amount,
body.single-product p.price,
body.single-product span.price,
body.single-product .woocommerce-Price-amount,
body.woocommerce-cart .wc-block-components-product-price__value,
body.woocommerce-checkout .wc-block-components-product-price__value,
body.woocommerce-cart .wc-block-components-product-price__value.is-discounted {
  color: var(--red) !important;
}

body.single-product p.price del,
body.single-product p.price del .woocommerce-Price-amount,
body.woocommerce-cart .wc-block-components-product-price__regular {
  color: rgba(0, 0, 0, 0.4) !important;
}

body.single-product p.price ins,
body.single-product p.price ins .woocommerce-Price-amount {
  color: var(--red) !important;
}

/* Quantity Selectors */
body.single-product form.cart .quantity,
body.woocommerce-cart .wc-block-components-quantity-selector {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

body.single-product form.cart .quantity input.qty,
body.woocommerce-cart .wc-block-components-quantity-selector__input {
  color: var(--black) !important;
}

body.woocommerce-cart .wc-block-components-quantity-selector__button {
  color: var(--black) !important;
}

body.woocommerce-cart .wc-block-components-quantity-selector__button:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.05) !important;
}

/* Remove button on Cart */
body.woocommerce-cart .wc-block-cart-item__remove-link {
  color: rgba(0, 0, 0, 0.4) !important;
}

body.woocommerce-cart .wc-block-cart-item__remove-link:hover {
  background: rgba(200, 16, 46, 0.1) !important;
  color: var(--red) !important;
}

/* Coupon section on block cart */
body.woocommerce-cart .wc-block-components-panel__button {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  color: var(--black) !important;
}

body.woocommerce-cart .wc-block-components-panel__button:hover {
  background: rgba(0, 0, 0, 0.03) !important;
}

body.woocommerce-cart .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-item__label {
  color: rgba(0, 0, 0, 0.6) !important;
}

body.woocommerce-cart .wc-block-components-totals-footer-item-tax-value,
body.woocommerce-checkout .wc-block-components-totals-footer-item-tax-value {
  color: var(--red) !important;
}

/* Cart Item Product Names */
body.woocommerce-cart .wc-block-components-product-name {
  color: var(--black) !important;
}

body.woocommerce-cart .wc-block-components-product-metadata__description p {
  color: rgba(0, 0, 0, 0.6) !important;
}

/* Radio Shipping/Payment Options on Checkout */
body.woocommerce-checkout .wc-block-components-radio-control__option {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option:hover {
  background: rgba(0, 0, 0, 0.02) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__option-checked {
  background: rgba(200, 16, 46, 0.03) !important;
  border-color: var(--red) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__label {
  color: var(--black) !important;
}

body.woocommerce-checkout .wc-block-components-radio-control__description {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* Single Product Tabs */
body.single-product .woocommerce-tabs ul.tabs {
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

body.single-product .woocommerce-tabs ul.tabs li.active a {
  color: var(--black) !important;
}

body.single-product .woocommerce-tabs ul.tabs li.active a::after {
  background: var(--red) !important;
}

body.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
  color: rgba(0, 0, 0, 0.75) !important;
}

/* Review Comments on Product Page */
body.single-product #reviews #comments ol.commentlist li,
body.single-product .comment-respond {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: var(--black) !important;
}

body.single-product .comment-form input[type="submit"] {
  background: var(--red) !important;
  color: var(--white) !important;
}

body.single-product .comment-form input[type="submit"]:hover {
  background: var(--red-dark) !important;
}

/* Related Products inside Product Page */
body.single-product .related.products {
  border-top-color: rgba(0, 0, 0, 0.08) !important;
}

body.single-product .related.products h2 {
  color: var(--black) !important;
}

body.single-product .related.products ul.products li.product {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02) !important;
}

body.single-product .related.products ul.products li.product h2.woocommerce-loop-product__title {
  color: var(--black) !important;
}

body.single-product .related.products ul.products li.product span.price {
  color: var(--red) !important;
}

body.single-product .related.products ul.products li.product a.button {
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: var(--white) !important;
}

/* Classic layout table fallbacks */
body.woocommerce-cart table.shop_table,
body.woocommerce-checkout table.shop_table {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-checkout table.shop_table th {
  background: var(--cream-dark) !important;
  color: rgba(0, 0, 0, 0.6) !important;
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

body.woocommerce-cart table.shop_table td,
body.woocommerce-checkout table.shop_table td {
  color: var(--black) !important;
  border-bottom-color: rgba(0, 0, 0, 0.06) !important;
}

body.woocommerce-cart .cart_totals,
body.woocommerce-checkout #payment {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  color: var(--black) !important;
}

body.woocommerce-cart .cart_totals h2 {
  color: var(--black) !important;
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

body.woocommerce-checkout #payment div.payment_box {
  background: var(--cream-dark) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
  color: rgba(0, 0, 0, 0.7) !important;
}

body.woocommerce-checkout #payment ul.payment_methods li label {
  color: var(--black) !important;
}

body.woocommerce-cart table.shop_table td.actions .input-text {
  background: var(--white) !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  color: var(--black) !important;
}

/* Notices and Messages */
body.woocommerce-cart .woocommerce-message,
body.woocommerce-checkout .woocommerce-message,
body.single-product .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-checkout .woocommerce-info,
body.single-product .woocommerce-info {
  background: var(--white) !important;
  color: var(--black) !important;
  border-top-color: var(--red) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

/* ==========================================================================
   WOOCOMMERCE GUBENBERG BLOCK PRODUCT GRID (NEW IN STORE, ETC.)
   ========================================================================== */

.wc-block-grid ul.wc-block-grid__products {
  clear: both !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 24px !important;
  padding: 0 !important;
  margin: 30px 0 !important;
  list-style: none !important;
}

@media (max-width: 768px) {
  .wc-block-grid ul.wc-block-grid__products {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
    gap: 16px !important;
  }
}

.wc-block-grid li.wc-block-grid__product {
  background: var(--white) !important;
  border: 1px solid rgb(200 16 46 / 21%) !important;
  border-radius: 12px !important;
  padding: 6px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  position: relative !important;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
  max-width: 100% !important;
  flex: 1 1 auto !important;
}

.wc-block-grid li.wc-block-grid__product:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(200, 16, 46, 0.2) !important;
  box-shadow: 0 15px 35px rgba(200, 16, 46, 0.08) !important;
  background: var(--white) !important;
}

.wc-block-grid li.wc-block-grid__product a.wc-block-grid__product-link {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  text-decoration: none !important;
}



.wc-block-grid li.wc-block-grid__product .wc-block-grid__product-image img {
  border-radius: 8px !important;
  /* margin-bottom: 15px !important; */
  transition: transform 0.4s ease !important;
  width: 100% !important;
  aspect-ratio: 1/1 !important;
  object-fit: cover !important;
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  margin: auto !important;
}

.wc-block-grid li.wc-block-grid__product:hover .wc-block-grid__product-image img {
  transform: scale(1.03) !important;
}

.wc-block-grid li.wc-block-grid__product .wc-block-grid__product-onsale {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  z-index: 5 !important;
  margin: 0 !important;
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  padding: 6px 14px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 10px rgba(200, 16, 46, 0.3) !important;
  line-height: 1 !important;
}

.wc-block-grid li.wc-block-grid__product .wc-block-grid__product-title {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--black) !important;
  margin: 10px 0 8px 0 !important;
  line-height: 1.35 !important;
  transition: color 0.2s ease !important;
  letter-spacing: 0.2px !important;
  padding: 0 !important;
}

.wc-block-grid li.wc-block-grid__product:hover .wc-block-grid__product-title {
  color: var(--red) !important;
}

.wc-block-grid li.wc-block-grid__product .wc-block-grid__product-price {
  color: var(--red) !important;
  font-size: 15px !important;
  margin-bottom: 16px !important;
  display: block !important;
  font-weight: 600 !important;
}

.wc-block-grid li.wc-block-grid__product .wc-block-grid__product-price del {
  color: rgba(0, 0, 0, 0.4) !important;
  font-size: 13px !important;
  margin-right: 6px !important;
}

.wc-block-grid li.wc-block-grid__product .wc-block-grid__product-price ins {
  text-decoration: none !important;
  color: var(--red) !important;
  font-weight: 700 !important;
}

.wc-block-grid li.wc-block-grid__product .wc-block-grid__product-add-to-cart {
  margin-top: auto !important;
  margin-bottom: 0 !important;
}

.wc-block-grid li.wc-block-grid__product .wc-block-grid__product-add-to-cart a {
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  border: none !important;
  text-decoration: none !important;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2) !important;
}

.wc-block-grid li.wc-block-grid__product .wc-block-grid__product-add-to-cart a:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.4) !important;
  background: linear-gradient(135deg, var(--red-dark), #b80d27) !important;
}
/* ==========================================================================
   LUXURY CARD OVERRIDES (ENFORCE LEGIBILITY OF DARK CARDS INSIDE LIGHT SECTIONS)
   ========================================================================== */
body .bundles-section .bundle-card,
body .bundles-section .bundle-card * {
  color: var(--white) !important;
}
body .bundles-section .bundle-card .price-save {
  color: #4ade80 !important;
}
body .bundles-section .bundle-card .bundle-badge {
  color: var(--white) !important;
}
body .bundles-section .bundle-card .bundle-badge.gold {
  color: var(--black) !important;
}

body .events-section .event-card,
body .events-section .event-card * {
  color: var(--white) !important;
}
body .events-section .event-card .event-location {
  color: var(--gold) !important;
}
body .events-section .event-card .event-date-badge {
  color: var(--white) !important;
}

body .collections-section .collection-card,
body .collections-section .collection-card * {
  color: var(--white) !important;
}
body .collections-section .collection-card .collection-tag {
  color: var(--gold-light) !important;
}

body .sub-section .sub-card,
body .sub-section .sub-card * {
  color: var(--white) !important;
}
body .sub-section .sub-card .sub-price {
  color: var(--red) !important;
}

body .experience-gateway-section .exp-card,
body .experience-gateway-section .exp-card * {
  color: var(--white) !important;
}
body .experience-gateway-section .exp-card .exp-eyebrow {
  color: var(--gold) !important;
}

/* ─── ADD TO CART / WOO BUTTON TEXT COLOR FIX ─── */
/* Overrides WooCommerce theme stylesheets that might reset link/button color */
.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:active,
a.btn-primary,
button.btn-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input[type="submit"],
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  color: #ffffff !important;
}

.btn-primary:hover,
a.btn-primary:hover {
  color: #ffffff !important;
}

/* Product page add-to-cart link specifically */
.single-product-grid a.btn-primary,
.single-product-grid a.btn-primary:visited,
.single-product-grid a.btn-primary:hover {
  color: #ffffff !important;
}

/* ─── WELCOMING RED / WHITE / BLACK COLOR REINFORCEMENT ─── */
/* Announcement bar — keep brand red accent feel */
.announcement-bar {
  background: var(--red) !important;
  border-bottom: 1px solid rgba(0,0,0,0.15) !important;
}

.ticker-item {
  color: #ffffff !important;
}

.ticker-sep {
  color: rgba(255,255,255,0.5) !important;
}

/* Hero section — keep dark but reinforce red CTA pill and headline */
.hero .hero-eyebrow {
  color: var(--red) !important;
}

.hero .pill.red {
  background: var(--red) !important;
  color: #ffffff !important;
}

/* Navigation CTA uses Red (welcoming) */
.nav-cta {
  background: var(--red) !important;
  color: #ffffff !important;
}

/* Ensure float bar button stays red/white */
.float-btn {
  background: var(--red) !important;
  color: #ffffff !important;
}

/* ─── FONT VARIABLES CONFIRMATION (explicit fallback) ─── */
/* Already declared in :root, but make these explicit for older browser compat */
body {
  font-family: 'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
}



