@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;600;700;900&display=swap');

:root {
  --red: #D32F2F;
  --red-dark: #8B0000;
  --red-light: #EF5350;
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --gold: #FFD700;
  --gold-dark: #B8960F;
  --gold-light: #FFE44D;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: block;
  line-height: 0;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

header nav {
  display: flex;
  gap: 4px;
}

header nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 8px 14px;
  color: var(--gray-light);
  transition: 0.3s;
  position: relative;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

header nav a:hover,
header nav a.active {
  color: var(--gold);
}

header nav a:hover::after,
header nav a.active::after {
  width: 70%;
}

/* ===== PAGES ===== */
.page {
  min-height: 100vh;
  padding: calc(var(--header-h) + 40px) 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  letter-spacing: 4px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.page-title-right {
  text-align: right;
  display: block;
  margin-top: 60px;
}

.page-title-right::after {
  left: auto;
  right: 0;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

/* ===== HOME HERO ===== */
#home {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding: var(--header-h) 0 0;
  display: flex;
  align-items: center;
  background: url('../assets/images/sfondohome.png') center/cover no-repeat;
}

#home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  pointer-events: none;
  z-index: 0;
}

#home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(211, 47, 47, 0.15) 0%, transparent 70%),
              repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(211, 47, 47, 0.03) 40px, rgba(211, 47, 47, 0.03) 41px);
  pointer-events: none;
  z-index: 0;
}

.home-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 64px;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.home-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 60px;
}

.hero-logo {
  max-width: 70%;
  width: auto;
  max-height: 300px;
  height: auto;
  display: block;
  margin-bottom: 24px;
  margin-left: -8px;
  filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.2));
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--gray-light);
  letter-spacing: 4px;
  font-weight: 300;
  margin: 0 0 6px;
  text-align: left;
}

.hero-sub strong {
  color: var(--gold);
  font-weight: 700;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--red);
  letter-spacing: 10px;
  font-weight: 700;
  margin-top: 2px;
  text-align: left;
}

.hero-cta {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(211, 47, 47, 0.4);
}

.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(211, 47, 47, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

.home-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  min-width: 360px;
}

.dynamic-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  background: rgba(10, 10, 10, 0.7);
  border: 1.5px solid rgba(255, 215, 0, 0.15);
  border-right: 3px solid var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  border-radius: 60px 8px 8px 60px;
  min-width: 280px;
}

.dynamic-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), rgba(211, 47, 47, 0.3));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.dynamic-btn:hover::before {
  width: 100%;
}

.dynamic-btn:hover {
  border-color: var(--gold);
  border-right-color: var(--gold);
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.1);
}

.dynamic-btn:nth-child(1) { margin-right: 0; }
.dynamic-btn:nth-child(2) { margin-right: 20px; }
.dynamic-btn:nth-child(3) { margin-right: 40px; }
.dynamic-btn:nth-child(4) { margin-right: 60px; }
.dynamic-btn:nth-child(5) { margin-right: 80px; }
.dynamic-btn:nth-child(6) { margin-right: 100px; }

.dyn-icon {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dyn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.dyn-label {
  position: relative;
  z-index: 1;
  flex: 1;
}

.dyn-arrow {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-12px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dynamic-btn:hover .dyn-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== PARTICLE BACKGROUND ===== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ===== TITOLI ===== */
.titles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.title-card {
  background: var(--black-2);
  border: 1px solid rgba(211, 47, 47, 0.3);
  padding: 32px 20px;
  text-align: center;
  transition: 0.3s;
}

.title-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.title-belt {
  width: 100%;
  height: 180px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black-3);
}

.title-belt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.title-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.title-champion {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.title-desc {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .titles-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CHI SIAMO ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  color: var(--gray-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 24px 0 12px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--black-2);
  border: 1px solid rgba(211, 47, 47, 0.3);
  padding: 28px 20px;
  text-align: center;
  transition: 0.3s;
}

.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.img-card {
  padding: 0;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-3);
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-stats {
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 4px;
  letter-spacing: 1px;
}

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.news-card {
  background: var(--black-2);
  border: 1px solid rgba(255, 215, 0, 0.1);
  overflow: hidden;
  transition: 0.3s;
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.news-img {
  width: 100%;
  height: 200px;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--red);
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body {
  padding: 20px;
}

/* ===== ARTICOLI NEWS ===== */
.btn-back {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: 0.3s;
}

.btn-back:hover {
  color: var(--red);
  transform: translateX(-4px);
}

.article-subtitle {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 24px;
}

.article-content {
  margin-top: 20px;
}

.article-img {
  width: 100%;
  max-width: 700px;
  height: 300px;
  overflow: hidden;
  background: var(--black-3);
  margin-bottom: 28px;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content p {
  color: var(--gray-light);
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 800px;
}

.news-date {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1px;
  font-weight: 600;
}

.news-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin: 8px 0;
}

.news-body p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===== PUNTATE ===== */
.episode-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.episode-item {
  background: var(--black-2);
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: 0.3s;
  cursor: pointer;
}

.episode-item:hover {
  border-left-color: var(--gold);
  background: var(--black-3);
  transform: translateX(8px);
}

.episode-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  min-width: 70px;
  text-align: center;
  line-height: 1;
}

.episode-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.episode-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

.episode-date {
  margin-left: auto;
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ===== ROSTER ===== */
.roster-subtitle {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 4px;
  margin: 40px 0 32px;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.roster-auth {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 580px;
  margin: 0 auto 40px;
}

.roster-fighters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.roster-card {
  text-align: center;
  padding: 24px 16px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.roster-card.auth-card {
  background: rgba(180, 30, 30, 0.25);
  border: 1px solid rgba(211, 47, 47, 0.35);
}

.roster-card.fighter-card {
  background: var(--black-2);
  border: 1px solid rgba(211, 47, 47, 0.2);
}

.roster-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: 0.3s;
}

.roster-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.roster-link:hover .roster-avatar {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.roster-card:has(.roster-link:hover)::after {
  transform: scaleX(1);
}

.roster-card:has(.roster-link:hover) {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.roster-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--black-3);
  border: 4px solid var(--red);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  transition: 0.3s;
  overflow: hidden;
}

.roster-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roster-avatar-img-wide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
}

.roster-avatar-img-lukas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.4) translateX(-8px);
}

.roster-avatar-img-cerberus {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.4);
}

.roster-avatar-img-hugh {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.4) translateX(-12px);
}

.roster-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.roster-card .role {
  color: #fff;
  font-size: 0.9rem;
  margin: 2px 0 14px;
  min-height: 1.2em;
}

.roster-card .role:empty {
  display: none;
}

.roster-info {
  text-align: left;
  padding: 0 8px;
  margin-bottom: 14px;
}

.roster-info p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.7;
}

.roster-info p strong {
  color: #ccc;
}

.roster-quote {
  color: var(--gold);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 16px;
  opacity: 0.8;
}

.roster-social-group {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}

.roster-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--black-3);
  border: 1px solid var(--red);
  color: var(--gold);
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
}

.roster-card > .roster-social-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.roster-social-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roster-social-btn:hover {
  background: var(--red);
  border-color: var(--gold);
  color: #fff;
}

/* ===== MERCHANDISE ===== */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  position: relative;
}

.coming-soon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 8px;
}
.coming-soon-inner {
  text-align: center;
  padding: 20px;
}
.coming-soon-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  letter-spacing: 6px;
  line-height: 1;
  color: var(--gold);
  display: block;
  text-transform: uppercase;
}
.coming-soon-sub {
  display: block;
  color: var(--gray-light);
  font-size: 1rem;
  margin-top: 14px;
  font-family: var(--font-body);
}

.merch-card {
  background: var(--black-2);
  border: 1px solid rgba(255, 215, 0, 0.1);
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.merch-card .merch-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.merch-card .merch-body p {
  flex: 1;
}

.merch-card .merch-body .btn-small {
  align-self: flex-start;
  margin-top: auto;
  margin-bottom: 0;
}

.merch-brand-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.merch-brand-link .merch-img img,
.merch-card .merch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merch-brand-link .merch-img img.merch-img-smaller {
  object-fit: cover;
  transform: scale(1.5);
}

.merch-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.merch-img {
  height: 220px;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--red);
}

.merch-body {
  padding: 20px;
}

.merch-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  min-height: 3em;
}

.merch-body .price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  margin: 8px 0;
}

.merch-body .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.merch-body .size-select {
  background: var(--black-3);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 6px 10px;
  cursor: pointer;
}

.merch-body .size-select:focus {
  outline: none;
  border-color: var(--red);
}

.merch-body p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.btn-small {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 10px 24px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-small:hover {
  background: var(--red-light);
}

/* ===== CONTATTI ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gray-light);
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: var(--black-2);
  border: 1px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  width: 48px;
  height: 48px;
  background: var(--black-2);
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: 0.3s;
}

.social-links a:hover {
  border-color: var(--gold);
  background: var(--black-3);
  transform: translateY(-3px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  background: var(--black-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #aaa;
  cursor: pointer;
}

.privacy-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
}

.privacy-check a {
  color: var(--gold);
  text-decoration: underline;
}

.contact-social-section {
  margin-top: 48px;
  text-align: center;
}

.contact-social-section h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-social-section p {
  color: var(--gray);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-social-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-social-text {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--gray-light);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: 0.3s;
  background: transparent;
}

.btn-social-text:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 215, 0, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

/* ===== MODALE ARTICOLO ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: var(--black-2);
  border: 1px solid rgba(255, 215, 0, 0.15);
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1;
  line-height: 1;
}

.modal-close:hover {
  background: var(--gold);
  color: var(--black-1);
}

.merch-lightbox .merch-lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80vw;
  max-width: 900px;
  height: 80vh;
  max-height: 650px;
}

.merch-lightbox .merch-lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.merch-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--gold);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 9999;
}

.merch-lightbox-nav:hover {
  background: var(--gold);
  color: var(--black-1);
}

.merch-lightbox-nav.prev {
  left: 20px;
}

.merch-lightbox-nav.next {
  right: 20px;
}

.modal-article-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--black-3);
  margin-bottom: 24px;
}

.modal-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-article-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.modal-article-date {
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.modal-article-sub {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 20px;
}

.modal-content p {
  color: var(--gray-light);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 16px;
  }
  .modal-content {
    padding: 24px;
  }
  .modal-article-title {
    font-size: 1.6rem;
  }
  .modal-article-img {
    height: 180px;
  }
}

/* ===== LEGAL PAGES ===== */
.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 32px 0 12px;
}

.legal-content p,
.legal-content li {
  color: var(--gray);
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 6px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black-2);
  border-top: 2px solid var(--red);
  padding: 40px 48px 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-social-label {
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 600;
}

.footer-social-icons {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--gray-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s;
  font-family: var(--font-heading);
  overflow: hidden;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-icon img.sm,
.roster-social-btn img.sm,
.social-profile-icon img.sm {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 215, 0, 0.05);
  transform: translateY(-2px);
}

.footer-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-right a {
  color: var(--gray);
  font-size: 0.82rem;
  transition: 0.3s;
  letter-spacing: 0.5px;
}

.footer-right a:hover {
  color: var(--gold);
}

footer .copyright {
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 24px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== LOADING SCREEN ===== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-ring {
  width: 80px;
  height: 80px;
  border: 4px solid var(--black-3);
  border-top-color: var(--red);
  border-right-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 4px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--black-3);
  margin-top: 12px;
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  animation: loadBar 1.2s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes loadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ===== WRESTLER PROFILE ===== */
.wrestler-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.btn-back-roster {
  display: inline-block;
  color: var(--gray-light);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: 0.3s;
}

.btn-back-roster:hover {
  color: var(--gold);
}

.profile-left .wrestler-name {
  font-family: var(--font-heading);
  font-size: 4rem;
  letter-spacing: 6px;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  margin-bottom: 32px;
  line-height: 1;
}

.profile-details {
  margin-bottom: 40px;
}

.profile-details p {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 2.2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px 0;
}

.profile-details p strong {
  color: var(--white);
  font-weight: 600;
  display: inline-block;
  min-width: 140px;
}

.presenza-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.presenza-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.europe-map {
  background: rgba(0, 50, 80, 0.15);
  border: 1px solid rgba(0, 150, 255, 0.2);
  padding: 20px;
  max-width: 100%;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flag-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 110px;
}

.flag-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
}

.flag-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--white);
}

.euro-map-img {
  width: 100%;
  height: auto;
  transform: scale(1.3);
}

.profile-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.silhouette-container {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.silhouette-container svg,
.sagoma-img {
  width: 100%;
  height: auto;
  display: block;
}

.stat-line {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--white);
  white-space: nowrap;
  right: -60px;
}

.stat-line .line {
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
  margin-right: 10px;
}

.stat-line .label {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-right: 6px;
  line-height: 1;
}

.stat-line .value {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1;
}

/* Stat vertical positions and line lengths */
.stat-height {
  top: 3%;
  right: -100px;
}

.stat-height .line {
  width: 160px;
}

.stat-wl {
  top: 35%;
  right: -110px;
}

.stat-wl .line {
  width: 150px;
}

.stat-debut {
  top: 57%;
  right: -120px;
}

.stat-debut .line {
  width: 110px;
}

.stat-weight {
  top: 82%;
}

.stat-weight .line {
  width: 80px;
}

@media (max-width: 900px) {
  .wrestler-profile {
    grid-template-columns: 1fr;
  }

  .presenza-content {
    flex-direction: column;
    align-items: center;
  }

  .flag-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-height,
  .stat-weight,
  .stat-wl,
  .stat-debut {
    right: -20px;
  }

  .stat-height .line { width: 80px; }
  .stat-wl .line { width: 60px; }
  .stat-debut .line { width: 50px; }
  .stat-weight .line { width: 40px; }
}

/* ===== PROFILE EXTRAS (Championship + Moveset) ===== */
.profile-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  margin-top: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
}

.championship-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.championship-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.1);
  padding: 14px 18px;
}

.champ-belt {
  font-size: 2rem;
  flex-shrink: 0;
}

.champ-info {
  display: flex;
  flex-direction: column;
}

.champ-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--white);
}

.champ-date {
  font-size: 0.8rem;
  color: var(--gray);
}

.moveset-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.moveset-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
}

.moveset-label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--white);
  min-width: 110px;
}

.moveset-text {
  color: var(--gray-light);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.bio-section .bio-text {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.trivia-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trivia-list li {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.trivia-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-bar-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
}

.stat-bar-label {
  color: var(--gray-light);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.stat-bar-track {
  width: 180px;
  height: 8px;
  background: var(--black-3);
  border: 1px solid rgba(255, 215, 0, 0.15);
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: width 0.6s ease;
}

.stat-bar-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 1px;
  min-width: 30px;
  text-align: right;
}

.social-profiles-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-profile-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-profile-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.social-profile-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-profile-handle {
  color: var(--gray-light);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.social-profile-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

@media (max-width: 900px) {
  .profile-extras {
    grid-template-columns: 1fr;
  }

  .stat-bar-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "value"
      "track";
    gap: 6px;
  }

  .stat-bar-label {
    grid-area: label;
  }

  .stat-bar-value {
    grid-area: value;
    font-size: 0.8rem;
    text-align: left;
    min-width: 0;
  }

  .stat-bar-track {
    grid-area: track;
    width: 100%;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .episode-item {
    flex-wrap: wrap;
  }

  .episode-date {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 768px) {
  header nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    transform: translateY(-120%);
    transition: 0.4s;
    border-bottom: 2px solid var(--red);
  }

  header nav.open {
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .home-split {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
    gap: 48px;
  }

  .home-left {
    align-items: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .home-right {
    width: 100%;
    min-width: 0;
    align-items: center;
  }

  .dynamic-btn {
    padding: 16px 24px;
    font-size: 1rem;
    min-width: 240px;
    border-radius: 40px 8px 8px 40px;
  }

  .dynamic-btn:nth-child(1) { margin-right: 0; }
  .dynamic-btn:nth-child(2) { margin-right: 12px; }
  .dynamic-btn:nth-child(3) { margin-right: 24px; }
  .dynamic-btn:nth-child(4) { margin-right: 36px; }
  .dynamic-btn:nth-child(5) { margin-right: 48px; }
  .dynamic-btn:nth-child(6) { margin-right: 60px; }

  .dyn-icon {
    font-size: 1.3rem;
    width: 28px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0 12px;
  }

  .page {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-title {
    font-size: 2rem;
  }

  .home-split {
    padding: 32px 16px;
    gap: 36px;
  }

  .hero-logo {
    max-height: 160px;
  }

  .home-right {
    gap: 10px;
  }

  .dynamic-btn {
    padding: 13px 18px;
    font-size: 0.85rem;
    gap: 10px;
    min-width: 200px;
    border-radius: 30px 6px 6px 30px;
  }

  .dynamic-btn:nth-child(1) { margin-right: 0; }
  .dynamic-btn:nth-child(2) { margin-right: 8px; }
  .dynamic-btn:nth-child(3) { margin-right: 16px; }
  .dynamic-btn:nth-child(4) { margin-right: 24px; }
  .dynamic-btn:nth-child(5) { margin-right: 32px; }
  .dynamic-btn:nth-child(6) { margin-right: 40px; }

  .dyn-icon {
    font-size: 1rem;
    width: 22px;
  }

  .news-grid,
  .roster-auth,
  .roster-fighters,
  .merch-grid {
    grid-template-columns: 1fr;
  }

  .merch-grid {
    background: rgba(0, 0, 0, 0.45);
    padding: 16px;
    border-radius: 12px;
  }

  .merch-card {
    border: 1px solid rgba(255, 215, 0, 0.3);
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
  }

  .footer-right {
    justify-content: center;
  }
}

/* ===== CART WIDGET ===== */
.cart-hidden {
  display: none !important;
}

.cart-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: var(--red);
  padding: 0;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-fab:hover {
  transform: scale(1.05);
}
.cart-fab img {
  width: 55%;
  height: 55%;
  object-fit: contain;
}
.cart-fab-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black-2);
}

.cart-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 340px;
  max-width: calc(100vw - 32px);
  max-height: 70vh;
  background: var(--black-2);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-top: 3px solid var(--red);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.cart-popup.open {
  display: flex;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--black-3);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}
.cart-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--gold);
}
.cart-actions {
  display: flex;
  gap: 8px;
}
.cart-icon-btn {
  background: none;
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--gold);
  font-size: 1.1rem;
  width: 30px;
  height: 30px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
}
.cart-icon-btn:hover {
  background: var(--gold);
  color: var(--black-1);
}

.cart-items {
  padding: 10px 16px;
  overflow-y: auto;
  flex: 1;
}
.cart-empty {
  color: var(--gray);
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 215, 0, 0.15);
  font-size: 0.85rem;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cart-item-name {
  color: var(--gray-light);
}
.cart-size {
  color: var(--gold);
}
.cart-item-qty {
  color: var(--gray);
  font-size: 0.75rem;
  margin-top: 2px;
}
.cart-item-price {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1rem;
  white-space: nowrap;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--red-light);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 2px;
  transition: 0.3s;
}
.cart-item-remove:hover {
  color: var(--red);
}

.cart-footer {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  background: var(--black-3);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--gray-light);
  margin-bottom: 10px;
}
.cart-total-row #cart-total {
  color: var(--gold);
}
#cart-checkout {
  width: 100%;
  text-align: center;
}
.cart-msg {
  text-align: center;
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 10px;
  min-height: 1em;
}
