/* CODIA_HYBRID_LAYOUT_KERNEL_START */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #0C0C0C;
  font-family: 'Sakire', sans-serif;
  overflow-x: hidden;
}

/* App Shell */
.app-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===================== NAV ===================== */
.nav {
    position: relative;
    width: 100%;
    height: 61px;
    background: linear-gradient(90deg, #090A0A 0%, #1a1a1a 50%, #090A0A 100%);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 32px;
    flex-shrink: 0;
    border-bottom: 1px solid #2a2a2a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 26px;
  height: 33px;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 500;
  color: #CBCBCB;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(122, 0, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-item:hover::before {
  left: 100%;
}

.nav-item:hover {
  background: rgba(122, 0, 0, 0.1);
  border: 1px solid rgba(122, 0, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 0, 0, 0.2);
}

.nav-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.nav-item-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.nav-item-label.active { 
  color: #7A0000; 
  text-shadow: 0 0 10px rgba(122, 0, 0, 0.5);
}
.nav-item-label.inactive { 
  color: #676767; 
}
.nav-item-label.inactive:hover { 
  color: #CBCBCB;
}
.nav-item-label.inactive-dim { color: #696969; }
.nav-item-label.inactive-org { color: #686868; }
.nav-item-label.inactive-shop { color: #676767; }
.nav-item-label.inactive-partners { color: #656565; }

.nav-cta {
    margin-left: auto;
    width: 108px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff2b2b;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 0 14px rgba(255, 43, 43, 0.6);
    transition: 0.2s ease;
    overflow: hidden;
  }
  
  .nav-cta-label {
    font-size: 9px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.06em;
    white-space: nowrap;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  }
  
  .nav-cta:hover {
    background: #ff0000;
    box-shadow: 0 0 22px rgba(255, 0, 0, 0.9);
    transform: scale(1.05);
  }

.nav-cta-bg {
    background: #ff2b2b;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(255, 43, 43, 0.5);
  }

.nav-cta-label {
  position: absolute;
  font-size: 10px;
  font-weight: 700;
  color: #563B00;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 650px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  filter: brightness(0.7) contrast(1.1);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(122, 0, 0, 0.3) 0%, 
    rgba(0, 0, 0, 0.7) 50%, 
    rgba(122, 0, 0, 0.3) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: white;
}

.hero-subtitle {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.subtitle-line {
  font-size: 1.2rem;
  font-weight: 400;
  color: #cccccc;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

.subtitle-line:nth-child(2) {
  animation-delay: 0.8s;
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1s;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #7A0000, #9a0000);
  color: white;
  box-shadow: 0 4px 15px rgba(122, 0, 0, 0.3);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(122, 0, 0, 0.4);
}

.hero-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid #7A0000;
}

.hero-btn.secondary:hover {
  background: rgba(122, 0, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(122, 0, 0, 0.2);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
  transform: translateX(4px);
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-element {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #7A0000;
  border-radius: 50%;
  opacity: 0.6;
  animation: float var(--duration) infinite ease-in-out;
  animation-delay: var(--delay);
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 15%;
}

.floating-element:nth-child(3) {
  bottom: 30%;
  left: 20%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(10px) translateX(-10px);
  }
  75% {
    transform: translateY(-15px) translateX(5px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Right stats column */
.hero-stats {
  position: absolute;
  right: 40px;
  top: 283px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 12px;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
  color: #7A0000;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.stat-label.titles { color: #404242; }
.stat-label.wins   { color: #3F4141; }
.stat-label.members { color: #626251; }

/* Left hero text */
.hero-content {
  position: absolute;
  left: 48px;
  top: 282px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-welcome {
  font-size: 10px;
  color: #e91b00;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 4px;
}

.hero-title-top {
  font-family: 'Oswald', sans-serif;
  font-size: 100px;
  font-weight: 700;
  color: #EFEEF0;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero-title-bottom {
  font-family: 'EB Garamond', serif;
  font-size: 100px;
  font-weight: 400;
  color: #7A0000;
  line-height: 1;
  margin-top: 4px;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 48px;
  margin-top: 32px;
  text-decoration: none;
  flex-shrink: 0;
}

.hero-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.hero-cta-label {
  position: relative;
  font-size: 10px;
  font-weight: 700;
  color: #473201;
  letter-spacing: 0.1em;
  white-space: nowrap;
  z-index: 1;
}

/* Bottom-left icon */
.hero-bottom-icon {
  position: absolute;
  left: 40px;
  bottom: 42px;
  width: 22px;
  height: 25px;
  object-fit: contain;
}

/* Right vertical border graphic */
.hero-border-right {
  position: absolute;
  right: 4px;
  top: 2.5%;
  width: 3px;
  height: 302px;
  object-fit: contain;
}

/* Bottom icon near lower-left */
.hero-icon-bottom-left {
  position: absolute;
  left: 40px;
  bottom: 42px;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ===================== HERO ===================== */

/* ===================== TICKER ===================== */
.ticker-bar {
  width: 100%;
  height: 41px;
  background: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
  will-change: transform;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
}

.ticker-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.ticker-dot {
  width: 6px;
  height: 5px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================== BOTTOM STRIP ===================== */
.bottom-strip {
  width: 100%;
  height: 2px;
  background: #0C0C0C;
  flex-shrink: 0;
}

/* CODIA_HYBRID_LAYOUT_KERNEL_END */

/* CODIA_ENFORCED_SHARED_RAIL_OWNERSHIP_START */
[data-codia-role="shared_rail"]{padding-left:0px!important;padding-right:0px!important;box-sizing:border-box!important;}
[data-codia-role="shared_rail"]>*{width:100%!important;max-width:none!important;box-sizing:border-box!important;margin-left:0!important;margin-right:0!important;}
[data-codia-role="shared_rail"]>:nth-child(1)>:nth-child(1){width:100%!important;max-width:none!important;box-sizing:border-box!important;margin-left:0!important;margin-right:0!important;}
[data-codia-role="shared_rail"]>:nth-child(1)>:nth-child(2){width:100%!important;max-width:none!important;box-sizing:border-box!important;margin-left:0!important;margin-right:0!important;}
/* CODIA_ENFORCED_SHARED_RAIL_OWNERSHIP_END */

/* CODIA_ENFORCED_FRAME_DRIVEN_SPLIT_SLOT_START */
/* (unchanged — your huge codia block stays exactly as is) */
/* CODIA_ENFORCED_FRAME_DRIVEN_SPLIT_SLOT_END */


/* ===================== HERO LAYOUT FIX ===================== */

.hero-content {
  position: absolute !important;
  left: 48px !important;
  right: 48px !important;
  top: 220px !important;

  width: auto !important;

  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;

  z-index: 5;
}

/* LEFT SIDE */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* RIGHT SIDE */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 500px;
  margin-top: 20px;
}

/* WELCOME TEXT */
.hero-welcome {
  font-size: 10px;
  color: #e91b00;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* MAIN TITLE */
.hero-title-top {
  font-family: 'Oswald', sans-serif;
  font-size: 95px;
  font-weight: 700;
  color: #EFEEF0;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-title-bottom {
  font-family: 'EB Garamond', serif;
  font-size: 95px;
  font-weight: 400;
  color: #7A0000;
  line-height: 0.9;
  margin-top: 6px;
}

/* RIGHT SIDE TEXT */
.hero-subtitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 32px;
}

.subtitle-line {
  font-size: 15px;
  font-weight: 500;
  color: #cccccc;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 170px;
  height: 52px;

  padding: 0 28px;

  border-radius: 8px;
  text-decoration: none;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: all 0.25s ease;
}

/* PRIMARY BUTTON */
.hero-btn.primary {
  background: linear-gradient(135deg, #7A0000, #a00000);
  color: #ffffff;
  border: none;

  box-shadow: 0 0 20px rgba(122, 0, 0, 0.4);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #9c0000, #c40000);
  box-shadow: 0 0 28px rgba(122, 0, 0, 0.7);
}

/* SECONDARY BUTTON */
.hero-btn.secondary {
  background: transparent;
  color: #ffffff;

  border: 2px solid #7A0000;
}

.hero-btn.secondary:hover {
  background: rgba(122, 0, 0, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(122, 0, 0, 0.35);
}

/* FORCE TEXT ALIGNMENT */
.hero-content * {
  text-align: inherit !important;
}

/* ================= FIX GLITCH LINE ================= */

.nav,
.ticker-bar {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.nav {
    background: #090A0A !important;
  }

/* ===================== CONTENT SECTIONS ===================== */
.content-section {
  padding: 80px 8%;
  background: #0C0C0C;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #EFEEF0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-header h2 span {
  color: #7A0000;
  font-family: 'EB Garamond', serif;
}

/* ===================== FILTER ===================== */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  border-top: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
  margin-bottom: 20px;
}

.filter-left {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
  font-weight: 600;
}

.filters {
  display: flex;
  gap: 20px;
}

.filters button {
  background: transparent;
  border: none;
  color: #777;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.filters .active {
  color: #7A0000;
  border-bottom: 2px solid #7A0000;
  padding-bottom: 6px;
}

.filters button:hover {
  color: #CBCBCB;
  background: rgba(122, 0, 0, 0.1);
}

/* ===================== PRODUCTS GRID ===================== */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #151515;
  padding: 20px;
  border: 1px solid #1f1f1f;
  transition: 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* BADGE */
.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #7A0000;
  color: black;
  font-size: 10px;
  font-weight: 900;
  padding: 5px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  margin-bottom: 15px;
}

.info {
  margin-top: 15px;
}

.type {
  font-size: 10px;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.info h3 {
  margin-top: 5px;
  font-size: 16px;
  color: #EFEEF0;
  font-weight: 600;
}

.bottom {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.price {
  color: #7A0000;
  font-weight: 900;
}

/* ===================== SOCIAL SECTION ===================== */
.social-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.social-card {
  background: #151515;
  padding: 30px;
  border: 1px solid #1f1f1f;
  text-align: center;
  transition: 0.3s;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.social-card h3 {
  font-size: 18px;
  color: #EFEEF0;
  margin-bottom: 15px;
  font-weight: 600;
}

.social-card p {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.social-link {
  color: #7A0000;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: 0.2s ease;
}

.social-link:hover {
  color: #ff0000;
}

/* Social Grid Layout */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.social-post-card {
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.post-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.profile-pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}

.post-info {
  flex: 1;
}

.username {
  display: block;
  color: #EFEEF0;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.platform {
  color: #888;
  font-size: 12px;
}

.timestamp {
  color: #7A0000;
  font-size: 12px;
  font-weight: 600;
}

.post-content {
  margin-bottom: 12px;
}

.post-text {
  color: #CBCBCB;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.view-on-x {
  display: inline-block;
  color: #7A0000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.view-on-x:hover {
  color: #ff0000;
}

/* ===================== SMOOTH SCROLL ===================== */
html {
  scroll-behavior: smooth;
}

/* ===================== WELCOME SECTION ===================== */
.welcome-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.welcome-text {
  color: #CBCBCB;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cta-button.primary {
  background: #7A0000;
  color: white;
  border: 2px solid #7A0000;
}

.cta-button.primary:hover {
  background: transparent;
  color: #7A0000;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  color: #CBCBCB;
  border: 2px solid #2a2a2a;
}

.cta-button.secondary:hover {
  background: #2a2a2a;
  color: #EFEEF0;
  transform: translateY(-2px);
}

/* Enhanced Welcome Section CSS */
.content-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(122, 0, 0, 0.9));
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7A0000;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header span {
  color: #ffffff;
}

.section-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7A0000, #ffffff);
  margin: 0 auto;
  border-radius: 2px;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.welcome-text-section {
  text-align: left;
}

.welcome-text {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.welcome-subtext {
  font-size: 1rem;
  color: #999999;
  line-height: 1.6;
  margin: 0;
}

.welcome-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(122, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(122, 0, 0, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7A0000;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button.primary {
  background: linear-gradient(135deg, #7A0000, #9a0000);
  color: white;
  box-shadow: 0 4px 15px rgba(122, 0, 0, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(122, 0, 0, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid #7A0000;
}

.cta-button.secondary:hover {
  background: rgba(122, 0, 0, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(122, 0, 0, 0.2);
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

.button-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 1rem;
}

/* ===================== LEGAL CONTENT ===================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  color: #CBCBCB;
  line-height: 1.6;
}

.last-updated {
  color: #7A0000;
  font-weight: 600;
  margin-bottom: 30px;
  font-size: 14px;
}

.legal-content h3 {
  color: #EFEEF0;
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
}

.legal-content p {
  margin-bottom: 15px;
  font-size: 14px;
}

.legal-content br {
  display: block;
  margin: 5px 0;
}

/* ===================== PRODUCT DETAIL ===================== */
.product-detail-section {
  padding: 80px 8%;
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-image-section {
  position: sticky;
  top: 100px;
}

.main-product-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.product-info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-title {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #EFEEF0;
  margin-bottom: 10px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #7A0000;
  margin-bottom: 20px;
}

.product-features {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
}

.product-features h3 {
  font-size: 18px;
  font-weight: 600;
  color: #EFEEF0;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  color: #CBCBCB;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.features-list li:before {
  content: "•";
  color: #7A0000;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.shipping-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
}

.shipping-info p {
  color: #EFEEF0;
  font-size: 14px;
  margin: 5px 0;
}

.shipping-info strong {
  color: #7A0000;
}

.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-image-section {
  position: sticky;
  top: 100px;
}

.main-product-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.product-info-section h1 {
  color: #EFEEF0;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
}

.product-price {
  color: #7A0000;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.product-options h3 {
  color: #EFEEF0;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.size-options {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.size-btn {
  background: #151515;
  border: 1px solid #2a2a2a;
  color: #CBCBCB;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 14px;
}

.size-btn:hover {
  background: #2a2a2a;
  border-color: #7A0000;
}

.size-btn.selected {
  background: #7A0000;
  color: white;
  border-color: #7A0000;
}

.customization {
  margin-bottom: 30px;
}

.custom-inputs {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.name-input, .number-input {
  background: #151515;
  border: 1px solid #2a2a2a;
  color: #EFEEF0;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  flex: 1;
}

.name-input:focus, .number-input:focus {
  outline: none;
  border-color: #7A0000;
}

.character-count {
  color: #888;
  font-size: 12px;
  margin-bottom: 20px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.quantity-btn {
  background: #151515;
  border: 1px solid #2a2a2a;
  color: #CBCBCB;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
}

.quantity-btn:hover {
  background: #2a2a2a;
}

.quantity-value {
  color: #EFEEF0;
  font-size: 18px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.purchase-section {
  margin: 40px 0;
}

.purchase-button {
  background: #7A0000;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  margin-bottom: 10px;
}

.purchase-button:hover {
  background: #ff0000;
  transform: translateY(-2px);
}

.more-payment {
  color: #888;
  font-size: 12px;
  text-align: center;
  margin: 0;
}

.product-features {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #2a2a2a;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.features-list li {
  color: #CBCBCB;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.features-list li:before {
  content: "•";
  color: #7A0000;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.shipping-info {
  margin-top: 20px;
}

.shipping-info p {
  color: #EFEEF0;
  font-size: 14px;
  margin: 5px 0;
}

/* ===================== SHOPPING CART ===================== */
.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 20px;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.cart-icon:hover {
  background: rgba(122, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: #7A0000;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 50%;
  min-width: 16px;
  text-align: center;
}

.buy-now-button {
  background: #7A0000;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-block;
}

.buy-now-button:hover {
  background: #ff0000;
  transform: translateY(-2px);
}

.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.cart-content {
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #2a2a2a;
}

.cart-header h3 {
  color: #EFEEF0;
  font-size: 18px;
  margin: 0;
}

.close-cart {
  color: #888;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-cart:hover {
  color: #7A0000;
}

.cart-items {
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-name {
  color: #EFEEF0;
  font-size: 14px;
  flex: 1;
}

.cart-item-price {
  color: #7A0000;
  font-size: 14px;
  margin: 0 10px;
}

.cart-item-quantity {
  color: #888;
  font-size: 12px;
  margin: 0 10px;
}

.remove-item {
  background: transparent;
  border: none;
  color: #ff0000;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.remove-item:hover {
  background: rgba(255, 0, 0, 0.1);
}

.cart-footer {
  border-top: 1px solid #2a2a2a;
  padding-top: 15px;
}

.cart-total {
  color: #EFEEF0;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: right;
}

.checkout-button {
  background: #7A0000;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
}

.checkout-button:hover {
  background: #ff0000;
  transform: translateY(-2px);
}

.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  background: #7A0000;
  color: white;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  z-index: 1001;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===================== FOOTER ===================== */
.footer {
  background: #090A0A;
  border-top: 1px solid #2a2a2a;
  padding: 60px 8% 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  color: #EFEEF0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-logo h3 {
  color: #EFEEF0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  font-family: 'Oswald', sans-serif;
}

.footer-description {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-motto {
  color: #7A0000;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  margin: 0;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #7A0000;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #2a2a2a;
}

.footer-bottom p {
  color: #666;
  font-size: 12px;
  margin: 0;
  letter-spacing: 0.05em;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1000px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .section-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .products {
    grid-template-columns: 1fr;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer {
    padding: 40px 5% 20px;
    margin-top: 60px;
  }
  
  .content-section {
    padding: 60px 5%;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
}