:root {
  /* Core Colors - Exact Big-Wise Palette */
  --primary-color: #A020F0;
  --rgb-primary-color: 160, 32, 240;
  --accent-color: #A020F0;
  --rgb-accent-color: 160, 32, 240;
  --price-color: #00FF00;
  --accent-glow: rgba(160, 32, 240, 0.3);
  
  --secondary-color: #ffffff;
  --white: #ffffff;
  --black: #000000;
  
  --text-color: #ffffff;
  --text-muted: #888888;
  --title-color: #ffffff;
  
  --bg-color: #0b0510;
  --bg-dark: #000000;
  
  --card-bg: transparent;
  --card-radius: 0;
  
  --header-bg: #0b0510;
  --footer-bg: #000000;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --section-padding: 10rem;
  
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--title-color);
  font-style: normal; /* No slant */
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

/* Adaptive Header System */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem 0;
}

.site-header.transparent {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.transparent .nav-link,
.site-header.transparent .header-icon {
  color: #ffffff;
}

.site-header.sticky {
  background: var(--header-bg, #ffffff);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header.sticky .nav-link,
.site-header.sticky .header-icon {
  color: var(--header-text, #000000);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.header-transparent {
  background: transparent !important;
  border-bottom: none !important;
}

.site-header.header-sticky {
  background: rgba(11, 5, 16, 0.85) !important;
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff !important;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

.header-icon {
  color: #ffffff !important;
  transition: var(--transition);
}

.header-icon svg {
  stroke: #ffffff !important;
}

.header-icon:hover {
  color: var(--accent-color);
}

/* Hero Video Banner */
.hero-banner {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
  z-index: 5;
}

.hero-glow-cyan {
  text-shadow: 0 0 30px #BAE6FD;
  color: #ffffff;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(11, 5, 16, 0.4) 100%);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  line-height: 0.9;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s cubic-bezier(0.2, 0, 0.2, 1) forwards 0.5s;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.text-accent {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.text-accent::after {
  content: '';
  position: absolute;
  inset: -5px -15px;
  background: var(--accent-glow);
  filter: blur(25px);
  z-index: -1;
  opacity: 0.4;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 0.8s;
}

/* Buttons - Exact Big-Wise Specs */
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 40px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 9999px;
  transition: var(--transition);
  position: relative;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 20px 25px -5px var(--accent-glow);
}

.btn-primary:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-5px);
}

.btn-pill {
  border-radius: 50px;
  padding-left: 3rem;
  padding-right: 3rem;
}

/* Section Spacing */
.section-spacing {
  padding: var(--section-padding) 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

/* Swiper Navigation Custom */
.swiper-button-prev-custom, .swiper-button-next-custom {
  transition: var(--transition);
  cursor: pointer;
}

.swiper-button-prev-custom:hover, .swiper-button-next-custom:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* Product Card - Absolute Big-Wise Look */
.product-card {
  background: transparent;
  border: none;
  transition: var(--transition);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.1);
}

/* Sliding Add to Cart Button */
.product-add-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 85%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.product-card:hover .product-add-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.btn-pill-white {
  background: #ffffff;
  color: #000000;
  height: 48px;
  width: 100%;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-pill-white:hover {
  background: var(--accent-color);
  color: #ffffff;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: #ffffff;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  z-index: 5;
}

.product-info {
  padding: 1.5rem 0;
  text-align: left;
}

.product-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.product-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--title-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: capitalize;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.product-price {
  font-weight: 900;
  font-size: 1.25rem;
  color: #22C55E;
  letter-spacing: -0.02em;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #000;
}

.category-overlay-text {
  position: absolute;
  bottom: -0.1em;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(5rem, 12vw, 15rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  line-height: 0.8;
  pointer-events: none;
  z-index: 10;
  text-shadow: 0 10px 60px rgba(0,0,0,0.6);
  font-style: italic; /* Restored for Big-Wise flare */
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: var(--transition);
}

.category-card:hover img {
  transform: scale(1.1);
  opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.site-footer {
  background: var(--footer-bg, #111111);
  color: var(--footer-text, #ffffff);
  padding: 6rem 0 3rem;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  color: #ffffff;
}

.footer-link {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --section-padding: 3rem;
  }
  
  .site-header {
    padding: 1rem 0;
  }
  
  .nav-menu {
    display: none;
  }
  
  .product-actions {
    transform: translateY(0);
    position: relative;
    margin-top: 1rem;
  }
}
