:root {
  --cc-bg: rgba(10, 10, 10, 0.96);
  --cc-panel: #141414;
  --cc-panel-2: #1b1b1b;
  --cc-text: #f5f5f5;
  --cc-muted: #b5b5b5;
  --cc-border: rgba(255,255,255,0.1);
  --cc-accent: #d72626;
  --cc-accent-hover: #ef2f2f;
  --cc-accent-dark: #a61d1d;
  --cc-secondary: #232323;
  --cc-secondary-hover: #2e2e2e;
  --cc-shadow: 0 18px 50px rgba(0,0,0,0.45);
  --cc-radius: 14px;
  --cc-z: 999999;
}
.cc-hidden {
  display: none !important;
}
#cc-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: calc(var(--cc-z) - 1);
  backdrop-filter: blur(2px);
}
#cc-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 1180px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(215,38,38,0.12), rgba(215,38,38,0) 32%),
    var(--cc-bg);
  color: var(--cc-text);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  box-shadow: var(--cc-shadow);
  z-index: var(--cc-z);
  overflow: hidden;
}
#cc-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--cc-accent), var(--cc-accent-dark));
}
.cc-banner-inner {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 22px 28px;
  flex-wrap: wrap;
}
.cc-copy {
  flex: 1 1 560px;
  min-width: 260px;
}
.cc-copy h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.cc-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--cc-muted);
}
.cc-copy a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}
.cc-copy a:hover {
  border-bottom-color: var(--cc-accent);
  color: #fff;
}
.cc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cc-btn,
.cc-modal-btn {
  appearance: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.18s ease;
}
.cc-btn {
  border: 1px solid transparent;
}
.cc-btn-primary {
  background: linear-gradient(180deg, var(--cc-accent-hover), var(--cc-accent));
  color: #fff;
  border-color: var(--cc-accent);
  box-shadow: 0 8px 22px rgba(215,38,38,0.28);
}
.cc-btn-primary:hover {
  background: linear-gradient(180deg, #ff3a3a, var(--cc-accent-hover));
  transform: translateY(-1px);
}
.cc-btn-secondary {
  background: var(--cc-secondary);
  color: #fff;
  border-color: rgba(255,255,255,0.14);
}
.cc-btn-secondary:hover {
  background: var(--cc-secondary-hover);
  border-color: rgba(255,255,255,0.22);
}
.cc-btn-ghost {
  background: transparent;
  color: #ddd;
  border-color: rgba(255,255,255,0.14);
}
.cc-btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}
#cc-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100% - 32px));
  background: var(--cc-panel);
  color: var(--cc-text);
  border: 1px solid var(--cc-border);
  border-radius: 16px;
  box-shadow: var(--cc-shadow);
  z-index: var(--cc-z);
  overflow: hidden;
}
.cc-modal-header,
.cc-modal-footer {
  padding: 22px 24px;
}
.cc-modal-header {
  border-bottom: 1px solid var(--cc-border);
  background:
    linear-gradient(135deg, rgba(215,38,38,0.10), rgba(215,38,38,0) 40%),
    var(--cc-panel-2);
}
.cc-modal-footer {
  border-top: 1px solid var(--cc-border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: #111;
}
.cc-modal-header h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.cc-modal-header p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 14px;
  line-height: 1.65;
}
.cc-modal-body {
  padding: 10px 24px 22px;
  background: var(--cc-panel);
}
.cc-option {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cc-border);
}
.cc-option:last-child {
  border-bottom: none;
}
.cc-option-text h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.cc-option-text p {
  margin: 0;
  color: var(--cc-muted);
  font-size: 14px;
  line-height: 1.6;
}
.cc-switch {
  position: relative;
  width: 54px;
  height: 30px;
  flex: 0 0 auto;
}
.cc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cc-slider {
  position: absolute;
  inset: 0;
  background: #3a3a3a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  transition: 0.2s ease;
}
.cc-slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.cc-switch input:checked + .cc-slider {
  background: var(--cc-accent);
  border-color: var(--cc-accent);
}
.cc-switch input:checked + .cc-slider::before {
  transform: translateX(24px);
}
.cc-switch input:disabled + .cc-slider {
  opacity: 0.65;
}
.cc-modal-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cc-modal-btn {
  border: 1px solid rgba(255,255,255,0.14);
  background: #232323;
  color: #fff;
}
.cc-modal-btn:hover {
  background: #2e2e2e;
}
.cc-modal-btn-primary {
  background: linear-gradient(180deg, var(--cc-accent-hover), var(--cc-accent));
  color: #fff;
  border-color: var(--cc-accent);
  box-shadow: 0 8px 22px rgba(215,38,38,0.25);
}
.cc-modal-btn-primary:hover {
  background: linear-gradient(180deg, #ff3a3a, var(--cc-accent-hover));
}
@media (max-width: 640px) {
  #cc-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cc-banner-inner,
  .cc-modal-header,
  .cc-modal-body,
  .cc-modal-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cc-option {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*
 * ============================================================
 *  MINARELLI TUNING — Global Nav, Side Menu & Footer v8
 * ============================================================
 */

/* ── MAIN NAV LINKS ──────────────────────────────────────────── */
.sticky .main-menu > li > a,
.sticky .menu.main-menu > li > a {
  font-size: 15px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: rgba(190, 190, 190, 0.88) !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  border-bottom: 1.5px solid transparent !important;
  transition: color 0.2s, border-color 0.2s !important;
}
.sticky .main-menu > li > a:hover,
.sticky .menu.main-menu > li > a:hover {
  color: rgba(232, 228, 216, 1) !important;
}
.sticky .main-menu > li > a:before,
.sticky .menu.main-menu > li > a:before {
  display: none !important;
}
.sticky .main-menu > li > a.mt-current,
.sticky .menu.main-menu > li > a.mt-current {
  color: rgb(220, 53, 42) !important;
  border-bottom-color: rgba(220, 53, 42, 0.6) !important;
}

/* ── SIDE MENU NAV LINKS ─────────────────────────────────────── */
#side-menu-push .main-menu > li > a,
.side-menu .main-menu > li > a {
  font-size: 16px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: rgba(190, 190, 190, 0.86) !important;
  padding: 14px 24px !important;
  border-left: 1.5px solid transparent !important;
  border-bottom: none !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  transition: color 0.2s, border-color 0.2s, background 0.2s !important;
}
#side-menu-push .main-menu > li > a:hover,
.side-menu .main-menu > li > a:hover {
  color: rgba(232, 228, 216, 1) !important;
}
#side-menu-push .main-menu > li > a:before,
.side-menu .main-menu > li > a:before {
  display: none !important;
}
#side-menu-push .main-menu > li > a.mt-current,
.side-menu .main-menu > li > a.mt-current {
  color: rgb(220, 53, 42) !important;
  border-left-color: rgb(220, 53, 42) !important;
  background: rgba(220, 53, 42, 0.04) !important;
}

/* ── SIDE MENU SOCIAL ICON BUTTONS ──────────────────────────── */
#side-menu-push .side-menu-button,
.side-menu .side-menu-button {
  width: 40px !important;
  height: 40px !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(205, 205, 205, 0.78) !important;
  padding: 0 !important;
  margin: 0 4px 0 0 !important;
  transition: color 0.2s !important;
}
#side-menu-push .side-menu-button:hover,
.side-menu .side-menu-button:hover {
  color: rgb(220, 53, 42) !important;
  background: transparent !important;
  border: none !important;
}
#side-menu-push .side-menu-button .fa,
#side-menu-push .side-menu-button .fab,
.side-menu .side-menu-button .fa,
.side-menu .side-menu-button .fab {
  font-size: 20px !important;
  line-height: 1 !important;
  margin: 0 !important;
  width: auto !important;
}

/* ── FOOTER SOCIAL ICON BUTTONS — no border ─────────────────── */
.mainbackground a.btn-second,
.mainbackground a.button.btn-second {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  width: 40px !important;
  height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 4px 4px 0 !important;
  color: rgba(205, 205, 205, 0.78) !important;
  transition: color 0.2s !important;
}
.mainbackground a.btn-second:hover,
.mainbackground a.button.btn-second:hover {
  color: rgb(220, 53, 42) !important;
  background: transparent !important;
  border: none !important;
}
.mainbackground a.btn-second .fab,
.mainbackground a.btn-second .fa,
.mainbackground a.button.btn-second .fab,
.mainbackground a.button.btn-second .fa {
  font-size: 20px !important;
  line-height: 1 !important;
  margin: 0 !important;
  width: auto !important;
}

/* ── CTA BUTTONS — Shop Now, Join Now ───────────────────────── */
/* Same style as Add to Cart button */
a.button.hollow.btn-second.mono,
a.button.rounded.btn-second.mono {
  background: linear-gradient(135deg, #2a2420 0%, #1a1510 40%, #2e2820 70%, #1a1510 100%) !important;
  color: rgb(232, 228, 216) !important;
  border: 0.5px solid rgba(220, 53, 42, 0.6) !important;
  border-radius: 2px !important;
  box-shadow: 0 0 12px rgba(220, 53, 42, 0.15), inset 0 0.5px 0 rgba(255,255,255,0.06) !important;
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 5px !important;
  text-transform: uppercase !important;
  padding: 18px 40px !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s !important;
}
a.button.hollow.btn-second.mono:hover,
a.button.rounded.btn-second.mono:hover {
  box-shadow: 0 0 24px rgba(220, 53, 42, 0.3), inset 0 0.5px 0 rgba(255,255,255,0.08) !important;
  border-color: rgba(220, 53, 42, 0.9) !important;
  background: linear-gradient(135deg, #2e2622 0%, #1e1812 40%, #322c22 70%, #1e1812 100%) !important;
  color: rgb(232, 228, 216) !important;
}

/* ── FOOTER MAIN TEXT ────────────────────────────────────────── */

/* Tagline — first cell in footer grid */
.mainbackground .grid-margin-y .cell:first-child h5.alt {
  font-style: italic !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px !important;
  color: rgba(215, 215, 215, 0.9) !important;
  line-height: 1.75 !important;
  font-weight: 300 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

/* "Contacts" heading and other h3 in footer — NO border */
.mainbackground .grid-margin-y h3.alt {
  font-size: 22px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: rgba(235, 95, 82, 0.95) !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  margin-bottom: 12px !important;
}

/* Contact links / body text */
.mainbackground .grid-margin-y h5.alt {
  font-size: 18px !important;
  color: rgba(215, 215, 215, 0.88) !important;
  line-height: 1.85 !important;
  font-weight: 300 !important;
}

/* ── FOOTER BOTTOM BAR ───────────────────────────────────────── */
.mainbackground p.alt {
  font-size: 14px !important;
  color: rgba(190, 190, 190, 0.72) !important;
  line-height: 1.7 !important;
}
.disclaimer,
.disclaimer p.alt {
  font-size: 13px !important;
  color: rgba(190, 190, 190, 0.55) !important;
}
@media screen and (min-width: 40em) {
  .disclaimer,
  .disclaimer p.alt { text-align: right !important; }
}

/* ── MOBILE ──────────────────────────────────────────────────── */
@media screen and (max-width: 63.9375em) {
  .mainbackground .grid-margin-y h3.alt { font-size: 18px !important; }
  .mainbackground .grid-margin-y h5.alt { font-size: 16px !important; }
  .mainbackground .grid-margin-y .cell:first-child h5.alt { font-size: 18px !important; }
}



/* ── FOOTER BOTTOM — small screen text size ──────────────────── */
@media screen and (max-width: 39.9375em) {
  .mainbackground p.alt {
    font-size: 11px !important;
  }
  .disclaimer,
  .disclaimer p.alt {
    font-size: 10px !important;
    text-align: center !important;
  }

  /* Join Now button — prevent line break */
  a.button.hollow.btn-second.mono,
  a.button.rounded.btn-second.mono {
    font-size: 10px !important;
    letter-spacing: 2px !important;
    padding: 12px 20px !important;
    white-space: nowrap !important;
  }
}

/* ── VIDEO HERO — fix button clickability ────────────────────── */
.vast_video_tint,
.vast_video_slice,
.vast_video_background {
  pointer-events: none !important;
}