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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1f1f1f;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #fbbf24, #f97316);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #f59e0b, #ea580c);
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none !important;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }
  50% { box-shadow: 0 0 40px rgba(251, 191, 36, 0.6); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43% { transform: translateY(-30px); }
  70% { transform: translateY(-15px); }
  90% { transform: translateY(-4px); }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes countUp {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes heavySmoke {
  0% {
    opacity: 0;
    transform: translateY(20vh) scale(0.3) rotate(0deg);
  }
  10% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.8;
    transform: translateY(-30vh) scale(1.8) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-50vh) scale(3) rotate(360deg);
  }
}

@keyframes heavySmokeDrift {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  25% { transform: translateX(30px) rotate(90deg); }
  50% { transform: translateX(-20px) rotate(180deg); }
  75% { transform: translateX(40px) rotate(270deg); }
}

@keyframes centerSmoke {
  0% {
    opacity: 0;
    transform: translateY(30vh) translateX(-50px) scale(0.2);
  }
  20% {
    opacity: 0.7;
  }
  60% {
    opacity: 0.6;
    transform: translateY(-40vh) translateX(50px) scale(2.5);
  }
  100% {
    opacity: 0;
    transform: translateY(-60vh) translateX(-30px) scale(4);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-cart {
  display: flex;
  align-items: center;
}

.cart-toggle-btn {
  background: none;
  border: none;
  color: #d1d5db;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.cart-toggle-btn:hover {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ef4444;
  color: #ffffff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.nav-logo .logo-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-logo .logo-btn:hover {
  transform: scale(1.05);
}

.nav-desktop {
  display: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: #d1d5db;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-link.active {
  color: #fbbf24;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn:hover {
  color: #ffffff;
}

.menu-icon,
.close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  margin: 0.5rem;
}

.mobile-menu-content {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  background: none;
  border: none;
  color: #d1d5db;
  font-weight: 500;
  padding: 0.75rem;
  text-align: left;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link.active {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  
  .nav-mobile {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-image.active {
  opacity: 1;
}

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

/* Smoke Effects */
.smoke-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.yolo2-image.active + * + * + * + * + * + .smoke-effects {
  opacity: 1;
}

.hero-image.yolo2-image.active ~ .smoke-effects,
.hero-image.yolo11-image.active ~ .smoke-effects,
.hero-image.yolo7-image.active ~ .smoke-effects,
.hero-image.image-35.active ~ .smoke-effects {
  opacity: 1;
}

.smoke-left,
.smoke-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 300px;
}

.smoke-left {
  left: -100px;
}

.smoke-right {
  right: -100px;
}

.smoke-center {
  position: absolute;
  top: 0;
  height: 100%;
  width: 400px;
  left: 50%;
  transform: translateX(-50%);
}

.smoke-particle {
  position: absolute;
  border-radius: 50%;
  bottom: 10%;
  background: radial-gradient(circle, 
    rgba(200, 200, 200, 0.8) 0%, 
    rgba(150, 150, 150, 0.6) 25%, 
    rgba(100, 100, 100, 0.4) 50%, 
    rgba(80, 80, 80, 0.2) 75%, 
    transparent 100%);
  filter: blur(2px);
}

.smoke-particle.small {
  width: 40px;
  height: 40px;
  animation: heavySmoke 3s infinite ease-out, heavySmokeDrift 4s infinite linear;
}

.smoke-particle.medium {
  width: 80px;
  height: 80px;
  animation: heavySmoke 4s infinite ease-out, heavySmokeDrift 5s infinite linear;
}

.smoke-particle.large {
  width: 120px;
  height: 120px;
  animation: heavySmoke 5s infinite ease-out, heavySmokeDrift 6s infinite linear;
}

.smoke-particle.xlarge {
  width: 180px;
  height: 180px;
  animation: centerSmoke 6s infinite ease-out;
  background: radial-gradient(circle, 
    rgba(220, 220, 220, 0.9) 0%, 
    rgba(180, 180, 180, 0.7) 30%, 
    rgba(120, 120, 120, 0.5) 60%, 
    rgba(80, 80, 80, 0.3) 80%, 
    transparent 100%);
}

/* Left side smoke particles */
.smoke-left .smoke-particle:nth-child(1) { left: 50px; animation-delay: 0s; }
.smoke-left .smoke-particle:nth-child(2) { left: 120px; animation-delay: 0.5s; }
.smoke-left .smoke-particle:nth-child(3) { left: 80px; animation-delay: 1s; }
.smoke-left .smoke-particle:nth-child(4) { left: 150px; animation-delay: 1.5s; }
.smoke-left .smoke-particle:nth-child(5) { left: 100px; animation-delay: 2s; }
.smoke-left .smoke-particle:nth-child(6) { left: 180px; animation-delay: 2.5s; }
.smoke-left .smoke-particle:nth-child(7) { left: 60px; animation-delay: 3s; }
.smoke-left .smoke-particle:nth-child(8) { left: 140px; animation-delay: 3.5s; }
.smoke-left .smoke-particle:nth-child(9) { left: 90px; animation-delay: 4s; }
.smoke-left .smoke-particle:nth-child(10) { left: 160px; animation-delay: 4.5s; }

/* Right side smoke particles */
.smoke-right .smoke-particle:nth-child(1) { right: 50px; animation-delay: 0.3s; }
.smoke-right .smoke-particle:nth-child(2) { right: 120px; animation-delay: 0.8s; }
.smoke-right .smoke-particle:nth-child(3) { right: 80px; animation-delay: 1.3s; }
.smoke-right .smoke-particle:nth-child(4) { right: 150px; animation-delay: 1.8s; }
.smoke-right .smoke-particle:nth-child(5) { right: 100px; animation-delay: 2.3s; }
.smoke-right .smoke-particle:nth-child(6) { right: 180px; animation-delay: 2.8s; }
.smoke-right .smoke-particle:nth-child(7) { right: 60px; animation-delay: 3.3s; }
.smoke-right .smoke-particle:nth-child(8) { right: 140px; animation-delay: 3.8s; }
.smoke-right .smoke-particle:nth-child(9) { right: 90px; animation-delay: 4.3s; }
.smoke-right .smoke-particle:nth-child(10) { right: 160px; animation-delay: 4.8s; }

/* Center smoke particles */
.smoke-center .smoke-particle:nth-child(1) { left: 50px; animation-delay: 1s; }
.smoke-center .smoke-particle:nth-child(2) { left: 150px; animation-delay: 2s; }
.smoke-center .smoke-particle:nth-child(3) { left: 250px; animation-delay: 3s; }
.smoke-center .smoke-particle:nth-child(4) { left: 100px; animation-delay: 4s; }
.smoke-center .smoke-particle:nth-child(5) { left: 200px; animation-delay: 5s; }

.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
}

.particle-1 {
  top: 25%;
  left: 25%;
  width: 8px;
  height: 8px;
  background: #fbbf24;
  animation: pulse 2s infinite;
}

.particle-2 {
  top: 75%;
  right: 25%;
  width: 4px;
  height: 4px;
  background: #f97316;
  animation: ping 2s infinite;
}

.particle-3 {
  bottom: 25%;
  left: 33%;
  width: 12px;
  height: 12px;
  background: #ef4444;
  animation: bounce 2s infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-text {
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fbbf24, #f97316, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 3s infinite;
}

.hero-divider {
  height: 4px;
  width: 8rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  margin: 0 auto 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #d1d5db;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.hero-description {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #000000;
  box-shadow: 0 4px 14px 0 rgba(251, 191, 36, 0.25);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px 0 rgba(251, 191, 36, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-arrow {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(0.25rem);
}

.hero-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #fbbf24;
  transform: scale(1.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid #ffffff;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-wheel {
  width: 0.25rem;
  height: 0.75rem;
  background: #ffffff;
  border-radius: 0.125rem;
  animation: pulse 2s infinite;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 6rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  height: 4px;
  width: 6rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  margin: 0 auto 1.5rem;
}

.section-description {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 32rem;
  margin: 0 auto;
}

.subsection-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 4rem;
  }
}

/* Music Section */
.music-section {
  min-height: 100vh;
  background: linear-gradient(180deg, #000000 0%, #1f2937 50%, #000000 100%);
  padding: 5rem 0;
}

.featured-tracks {
  margin-bottom: 4rem;
}

.tracks-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.featured-track {
  background: linear-gradient(135deg, #374151, #1f2937);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
  cursor: pointer;
}

.featured-track:hover {
  transform: scale(1.05);
  border-color: rgba(251, 191, 36, 0.5);
}

.track-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.track-image-container {
  position: relative;
}

.track-image {
  width: 6rem;
  height: 6rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.track-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.featured-track:hover .track-play-overlay {
  opacity: 1;
}

.play-button {
  width: 2rem;
  height: 2rem;
  background: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #000000;
}

.track-info {
  flex: 1;
}

.track-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.track-artist {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.track-details {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.track-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.platform-btn-small {
  padding: 0.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.platform-btn-small.spotify {
  background: #1db954;
}

.platform-btn-small.apple {
  background: #374151;
}

.platform-btn-small.youtube {
  background: #ff0000;
}

.platform-btn-small:hover {
  transform: scale(1.1);
}

.all-tracks {
  margin-bottom: 4rem;
}

.tracks-list {
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid #374151;
  overflow: hidden;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #374151;
}

.track-item:last-child {
  border-bottom: none;
}

.track-item:hover {
  background: rgba(55, 65, 81, 0.5);
}

.track-number {
  width: 2rem;
  text-align: center;
  color: #9ca3af;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.track-small-image {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  object-fit: cover;
}

.track-main-info {
  flex: 1;
}

.track-small-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.track-small-artist {
  color: #9ca3af;
  font-size: 0.875rem;
}

.track-album {
  color: #9ca3af;
  font-size: 0.875rem;
  display: none;
}

.track-duration {
  color: #9ca3af;
  font-size: 0.875rem;
  font-family: 'Courier New', monospace;
}

.track-play-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: #fbbf24;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000000;
  font-size: 0.875rem;
}

.track-play-btn:hover {
  background: #f59e0b;
  transform: scale(1.1);
}

.streaming-platforms {
  text-align: center;
}

.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
}

.platform-btn.spotify {
  background: #1db954;
}

.platform-btn.apple {
  background: #374151;
}

.platform-btn.youtube {
  background: #ff0000;
}

.platform-btn.soundcloud {
  background: #f97316;
}

.platform-btn.tidal {
  background: #0ea5e9;
}

.platform-btn:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .tracks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .track-album {
    display: block;
  }
}

/* Videos Section */
.videos-section {
  min-height: 100vh;
  background: linear-gradient(180deg, #000000 0%, #1f2937 50%, #000000 100%);
  padding: 5rem 0;
}

.featured-video {
  margin-bottom: 4rem;
}

.featured-video-container {
  position: relative;
  background: linear-gradient(135deg, #374151, #1f2937);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #374151;
}

.featured-video-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.featured-video-item:hover {
  transform: scale(1.02);
}

.featured-video-thumbnail {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.featured-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-video-play {
  width: 4rem;
  height: 4rem;
  background: rgba(251, 191, 36, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000000;
  transition: all 0.3s ease;
}

.featured-video-item:hover .featured-video-play {
  background: #fbbf24;
  transform: scale(1.1);
}

.featured-video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: #ffffff;
}

.featured-video-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.featured-video-description {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.featured-video-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.video-categories {
  margin-bottom: 3rem;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 2px solid #374151;
  background: transparent;
  color: #d1d5db;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  border-color: #fbbf24;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
}

.videos-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.video-item {
  background: linear-gradient(135deg, #374151, #1f2937);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #374151;
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-item:hover {
  transform: scale(1.05);
  border-color: rgba(251, 191, 36, 0.5);
}

.video-thumbnail-container {
  position: relative;
}

.video-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-item:hover .video-play-overlay {
  opacity: 1;
}

.video-play-btn {
  width: 3rem;
  height: 3rem;
  background: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #000000;
}

.video-info {
  padding: 1.5rem;
}

.video-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.video-description {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
}

.video-category {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}

/* Bio Section */
.bio-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bio-background {
  position: absolute;
  inset: 0;
}

.bio-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.bio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(31, 41, 55, 0.9) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.bio-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bio-particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  opacity: 0.4;
}

.bio-particle.particle-1 {
  top: 15%;
  left: 10%;
  width: 24px;
  height: 24px;
  animation: float 4s ease-in-out infinite;
}

.bio-particle.particle-2 {
  top: 25%;
  right: 15%;
  width: 16px;
  height: 16px;
  animation: float 3s ease-in-out infinite reverse;
}

.bio-particle.particle-3 {
  bottom: 30%;
  left: 20%;
  width: 20px;
  height: 20px;
  animation: float 5s ease-in-out infinite;
}

.bio-particle.particle-4 {
  bottom: 20%;
  right: 10%;
  width: 12px;
  height: 12px;
  animation: float 3.5s ease-in-out infinite reverse;
}

.bio-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 5rem 0;
}

.bio-header {
  text-align: center;
  margin-bottom: 4rem;
}

.bio-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.bio-divider {
  height: 4px;
  width: 6rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.bio-subtitle {
  font-size: 1.5rem;
  color: #d1d5db;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bio-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

.bio-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bio-text-card {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.bio-text-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.bio-text-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bio-text-card p {
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.bio-text-card p:last-child {
  margin-bottom: 0;
}

.bio-stats {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(251, 191, 36, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  animation: scaleIn 0.6s ease-out;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fbbf24;
  margin-bottom: 0.25rem;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-card .stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f97316;
  display: inline-block;
}

.stat-card .stat-label {
  color: #d1d5db;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.awards-showcase {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
  animation: slideInRight 0.8s ease-out;
}

.awards-showcase h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1.5rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.awards-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  border: 1px solid rgba(251, 191, 36, 0.1);
  transition: all 0.3s ease;
}

.award-item:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.award-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.award-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.award-year {
  color: #9ca3af;
  font-size: 0.875rem;
}

.bio-mission {
  margin-top: 3rem;
}

.mission-card {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(251, 191, 36, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s ease-in-out infinite;
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.mission-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.mission-card p {
  color: #e5e7eb;
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 48rem;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.bio-read-more {
  margin-top: 2rem;
  text-align: center;
}

.bio-read-more .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

@media (min-width: 768px) {
  .bio-title {
    font-size: 5rem;
  }
  
  .bio-grid {
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .bio-title {
    font-size: 6rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tours Section */
.tours-section {
  min-height: 100vh;
  background: linear-gradient(180deg, #000000 0%, #1f2937 50%, #000000 100%);
  padding: 5rem 0;
}

.tour-dates {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

.tour-date {
  background: linear-gradient(135deg, #1f2937, #374151);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #374151;
  transition: all 0.3s ease;
}

.tour-date:hover {
  transform: scale(1.02);
  border-color: rgba(251, 191, 36, 0.5);
}

.tour-date-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tour-date-info {
  text-align: center;
}

.tour-date-calendar {
  background: linear-gradient(180deg, #fbbf24, #f97316);
  color: #000000;
  border-radius: 0.75rem;
  padding: 1rem;
  min-width: 5rem;
  display: inline-block;
}

.date-month {
  font-size: 0.75rem;
  font-weight: 700;
  display: block;
}

.date-day {
  font-size: 1.5rem;
  font-weight: 900;
  display: block;
}

.date-year {
  font-size: 0.75rem;
  display: block;
}

.tour-venue-info {
  flex: 1;
  text-align: center;
}

.venue-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.venue-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.venue-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #9ca3af;
}

.tour-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
}

.status-badge.on-sale {
  background: #10b981;
  color: #ffffff;
}

.status-badge.sold-out {
  background: #ef4444;
  color: #ffffff;
}

.ticket-btn {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ticket-btn.available {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #000000;
  box-shadow: 0 4px 14px 0 rgba(251, 191, 36, 0.25);
}

.ticket-btn.available:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px 0 rgba(251, 191, 36, 0.4);
}

.ticket-btn.unavailable {
  background: #6b7280;
  color: #9ca3af;
  cursor: not-allowed;
}

.tour-stats {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.tour-stat {
  text-align: center;
  padding: 2rem;
  background: rgba(17, 24, 39, 0.5);
  border-radius: 1rem;
  border: 1px solid #374151;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.tour-stat .stat-number {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.tour-stat .stat-number:nth-of-type(1) {
  color: #fbbf24;
}

.tour-stat .stat-number:nth-of-type(2) {
  color: #f97316;
}

.tour-stat .stat-number:nth-of-type(3) {
  color: #ef4444;
}

.tour-stat .stat-label {
  color: #d1d5db;
}

.vip-experience {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
  text-align: center;
}

.vip-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.vip-content p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .tour-date-content {
    flex-direction: row;
    align-items: center;
  }
  
  .tour-venue-info {
    text-align: left;
  }
  
  .venue-location,
  .venue-time {
    justify-content: flex-start;
  }
  
  .tour-actions {
    align-items: flex-end;
  }
  
  .tour-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact Section */
.contact-section {
  min-height: 100vh;
  background: linear-gradient(180deg, #000000 0%, #1f2937 50%, #000000 100%);
  padding: 5rem 0;
}

.contact-content {
  display: grid;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(17, 24, 39, 0.5);
  border-radius: 0.75rem;
  border: 1px solid #374151;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #000000;
}

.contact-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #9ca3af;
}

.social-media h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.social-platform {
  padding: 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  color: #ffffff;
}

.social-platform:hover {
  transform: scale(1.05);
}

.social-platform.instagram {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
}

.social-platform.twitter {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.social-platform.tiktok {
  background: linear-gradient(135deg, #000000, #ef4444);
}

.social-platform.youtube {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.platform-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.platform-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.platform-followers {
  font-size: 0.875rem;
  opacity: 0.8;
}

.contact-forms {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.newsletter-form,
.quick-links,
.location-info {
  background: linear-gradient(135deg, #1f2937, #374151);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #374151;
}

.newsletter-form h3,
.quick-links h3,
.location-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.newsletter-form p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1rem;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  outline: none;
  border-color: #fbbf24;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: none;
  border: none;
  color: #d1d5db;
  text-align: left;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  width: 100%;
}

.quick-link:hover {
  color: #ffffff;
  background: #374151;
}

.link-icon {
  font-size: 1.25rem;
}

.location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
}

.location-icon {
  font-size: 1.5rem;
}

.location-name {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.location-description {
  font-size: 0.875rem;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer */
.footer {
  background: #000000;
  border-top: 1px solid #374151;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  color: #9ca3af;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.footer-section h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fbbf24;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #374151;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: #fbbf24;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr 1fr;
    align-items: start;
  }
  
  .footer-social {
    justify-content: flex-end;
  }
}

/* Audio Player */
.audio-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid #374151;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.audio-player.show {
  transform: translateY(0);
}

.player-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.player-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player-track-image {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  object-fit: cover;
}

.player-track-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.player-track-artist {
  color: #9ca3af;
  font-size: 0.875rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.player-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.player-main-btn {
  background: #fbbf24;
  color: #000000;
  font-size: 1rem;
  width: 2.5rem;
  height: 2.5rem;
}

.player-main-btn:hover {
  background: #f59e0b;
}

.player-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-family: 'Courier New', monospace;
}

.progress-bar {
  position: relative;
  flex: 1;
  height: 4px;
  background: #374151;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s ease;
}

.progress-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.player-close {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.player-close:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .player-content {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .player-progress {
    order: -1;
  }
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.show {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-bottom: 0;
  background: #000000;
  border-radius: 0;
  overflow: hidden;
}

#video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}

.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 20;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-close:hover {
  color: #fbbf24;
}

/* YouTube Player Container */
#youtube-player-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#youtube-player-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}

/* Video Info Overlay */
.video-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 3rem 2rem 2rem;
  color: #ffffff;
  z-index: 10;
  max-height: 30vh;
  overflow-y: auto;
}

.video-info-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.video-info-overlay p {
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.video-modal-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.video-modal-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-color: #10b981;
  background: #064e3b;
}

.toast.error {
  border-color: #ef4444;
  background: #7f1d1d;
}

.toast-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #ffffff;
}

.toast-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0;
  line-height: 1;
}

.toast-close:hover {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .subsection-title {
    font-size: 1.5rem;
  }
  
  .bio-title {
    font-size: 3rem;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
button:focus,
input:focus,
a:focus {
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}

/* AOS Animation Styles */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

/* Bio Page Specific Styles */
.bio-page {
  background: #000000;
}

/* Bio Page Header */
.bio-page-header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bio-cinematic-background {
  position: absolute;
  inset: 0;
}

.bio-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 10%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.bio-bg-image.bio-bg-1 {
  opacity: 1;
  animation: bioImageRotate 15s infinite;
}

.bio-bg-image.bio-bg-2 {
  opacity: 0;
  animation: bioImageRotate 15s infinite 5s;
}

.bio-bg-image.bio-bg-3 {
  opacity: 0;
  animation: bioImageRotate 15s infinite 10s;
}

@keyframes bioImageRotate {
  0%, 20% { opacity: 0; }
  25%, 75% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

.bio-floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: bioFloat 6s ease-in-out infinite;
}

.floating-element.element-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.floating-element.element-2 {
  top: 60%;
  right: 20%;
  animation-delay: 1s;
}

.floating-element.element-3 {
  bottom: 30%;
  left: 25%;
  animation-delay: 2s;
}

.floating-element.element-4 {
  top: 40%;
  right: 15%;
  animation-delay: 3s;
}

.floating-element.element-5 {
  bottom: 20%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes bioFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(-40px) rotate(180deg); }
  75% { transform: translateY(-20px) rotate(270deg); }
}

.bio-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(31, 41, 55, 0.9) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.bio-page-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.bio-page-title {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fbbf24, #f97316, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
  animation: pulse 3s infinite;
}

.bio-page-divider {
  height: 4px;
  width: 8rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.bio-page-subtitle {
  font-size: 1.8rem;
  color: #d1d5db;
  margin-bottom: 1rem;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bio-page-description {
  font-size: 1.25rem;
  color: #9ca3af;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Bio Detailed Content */
.bio-detailed-content {
  padding: 5rem 0;
  background: linear-gradient(180deg, #000000 0%, #1f2937 50%, #000000 100%);
}

.bio-section {
  margin-bottom: 6rem;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.bio-section:nth-child(2) { animation-delay: 0.2s; }
.bio-section:nth-child(3) { animation-delay: 0.4s; }
.bio-section:nth-child(4) { animation-delay: 0.6s; }
.bio-section:nth-child(5) { animation-delay: 0.8s; }

.bio-section-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.bio-section-grid.full-width {
  grid-template-columns: 1fr;
}

.bio-section.reverse .bio-section-grid {
  direction: rtl;
}

.bio-section.reverse .bio-text-content {
  direction: ltr;
}

.bio-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-icon {
  font-size: 2rem;
}

.bio-text-card.enhanced {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bio-text-card.enhanced.large {
  padding: 3rem;
  max-width: 60rem;
  margin: 0 auto;
}

.bio-text-card.enhanced.centered {
  text-align: center;
}

.bio-text-card.enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.bio-text-card.enhanced p {
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.bio-text-card.enhanced p:last-child {
  margin-bottom: 0;
}

.bio-text-content.centered {
  text-align: center;
}

.bio-feature-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.bio-feature-image:hover {
  transform: scale(1.05);
}

.feature-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bio-feature-image:hover .feature-img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 2rem;
  color: #ffffff;
}

.overlay-text {
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Achievements Section */
.bio-achievements-section {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
  border-radius: 2rem;
  padding: 4rem 2rem;
  margin: 4rem 0;
  text-align: center;
}

.achievements-title {
  font-size: 3rem;
  font-weight: 900;
  color: #fbbf24;
  margin-bottom: 3rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.achievements-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.achievement-card {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card:hover {
  transform: translateY(-10px);
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.achievement-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fbbf24;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.achievement-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.achievement-description {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Philosophy Section */
.bio-philosophy-section {
  background: rgba(0, 0, 0, 0.9);
  border-radius: 2rem;
  padding: 4rem 2rem;
  margin: 4rem 0;
  text-align: center;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.philosophy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.philosophy-card {
  background: rgba(31, 41, 55, 0.5);
  border-radius: 1rem;
  padding: 3rem;
  margin-bottom: 3rem;
  border-left: 4px solid #fbbf24;
}

.philosophy-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: #e5e7eb;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}

.philosophy-quote::before {
  content: '"';
  font-size: 4rem;
  color: #fbbf24;
  position: absolute;
  top: -1rem;
  left: -1rem;
}

.philosophy-quote::after {
  content: '"';
  font-size: 4rem;
  color: #fbbf24;
  position: absolute;
  bottom: -2rem;
  right: -1rem;
}

.quote-author {
  font-weight: 700;
  color: #fbbf24;
  font-size: 1.1rem;
}

.future-vision {
  text-align: left;
  max-width: 50rem;
  margin: 0 auto;
}

.future-vision h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1.5rem;
  text-align: center;
}

.future-vision p {
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Responsive Design for Bio Page */
@media (min-width: 768px) {
  .bio-section-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .bio-page-title {
    font-size: 6rem;
  }
  
  .achievements-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .bio-page-title {
    font-size: 7rem;
  }
  
  .achievements-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .bio-page-title {
    font-size: 3rem;
  }
  
  .bio-page-subtitle {
    font-size: 1.4rem;
  }
  
  .bio-section-title {
    font-size: 2rem;
  }
  
  .achievements-title {
    font-size: 2rem;
  }
  
  .philosophy-quote {
    font-size: 1.2rem;
  }
}

/* Shop Page Specific Styles */
.shop-page {
  background: #000000;
}

/* Shop Page Header */
.shop-page-header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-cinematic-background {
  position: absolute;
  inset: 0;
}

.shop-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
}

.shop-floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shop-float-item {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.6;
  animation: shopFloat 8s ease-in-out infinite;
}

.shop-float-item.item-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shop-float-item.item-2 {
  top: 70%;
  right: 15%;
  animation-delay: 1.5s;
}

.shop-float-item.item-3 {
  bottom: 25%;
  left: 20%;
  animation-delay: 3s;
}

.shop-float-item.item-4 {
  top: 40%;
  right: 25%;
  animation-delay: 4.5s;
}

.shop-float-item.item-5 {
  bottom: 15%;
  right: 40%;
  animation-delay: 6s;
}

@keyframes shopFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-30px) rotate(90deg); }
  50% { transform: translateY(-60px) rotate(180deg); }
  75% { transform: translateY(-30px) rotate(270deg); }
}

.shop-page-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(31, 41, 55, 0.9) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.shop-page-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.shop-page-title {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fbbf24, #f97316, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
  animation: pulse 3s infinite;
}

.shop-page-divider {
  height: 4px;
  width: 8rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.shop-page-subtitle {
  font-size: 1.8rem;
  color: #d1d5db;
  margin-bottom: 1rem;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.shop-page-description {
  font-size: 1.25rem;
  color: #9ca3af;
  max-width: 40rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.shop-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.shop-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.shop-stat .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.shop-stat .stat-label {
  color: #d1d5db;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Shop Filters */
.shop-filters-section {
  padding: 3rem 0;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* MODERN SHOP FILTERS */
.modern-filters {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.primary-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(31, 41, 55, 0.8);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 0.75rem;
  color: #e5e7eb;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  justify-content: center;
}

.filter-btn:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.6);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border-color: #fbbf24;
  color: #000;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.filter-count {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  min-width: 1.5rem;
  text-align: center;
}

.filter-btn.active .filter-count {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.secondary-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-btn.secondary {
  min-width: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: rgba(17, 24, 39, 0.8);
  border-color: rgba(156, 163, 175, 0.3);
}

.filter-btn.secondary:hover {
  background: rgba(75, 85, 99, 0.8);
  border-color: rgba(156, 163, 175, 0.6);
}

.filter-btn.secondary.active {
  background: rgba(251, 191, 36, 0.2);
  border-color: #fbbf24;
  color: #fbbf24;
}

.filter-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.view-toggle {
  display: flex;
  background: rgba(31, 41, 55, 0.8);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.view-btn {
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
}

.view-btn.active {
  background: #fbbf24;
  color: #000;
}

.sort-dropdown select {
  padding: 0.75rem 1rem;
  background: rgba(31, 41, 55, 0.8);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 0.5rem;
  color: #e5e7eb;
  font-weight: 500;
  cursor: pointer;
  min-width: 180px;
}

.sort-dropdown select:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

/* PRODUCTS DISPLAY CONTROLS */
.products-display-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.display-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toggle-label {
  color: #e5e7eb;
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(75, 85, 99, 0.8);
  transition: 0.4s;
  border-radius: 30px;
  border: 2px solid rgba(251, 191, 36, 0.3);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #9ca3af;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: rgba(251, 191, 36, 0.3);
  border-color: #fbbf24;
}

input:checked + .toggle-slider:before {
  transform: translateX(30px);
  background-color: #fbbf24;
}

.learn-more-section {
  display: flex;
  align-items: center;
}

.learn-more-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
  border: 2px solid rgba(251, 191, 36, 0.4);
  border-radius: 0.75rem;
  color: #fbbf24;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
  border-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.hidden-count {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ENHANCED PRODUCT CARDS */
.product-card {
  background: rgba(31, 41, 55, 0.8);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(251, 191, 36, 0.3);
}

.product-card.featured {
  border-color: #fbbf24;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.product-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  z-index: 1;
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}

.product-badge.featured {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #000;
}

.product-badge.out-of-stock {
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-quick-view,
.product-add-to-cart {
  padding: 0.5rem 1rem;
  border: 2px solid #fbbf24;
  border-radius: 0.5rem;
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-quick-view:hover,
.product-add-to-cart:hover {
  background: #fbbf24;
  color: #000;
}

.product-info {
  padding: 1.5rem;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fbbf24;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.product-description {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fbbf24;
  font-size: 0.9rem;
}

.rating-number {
  color: #9ca3af;
  font-weight: 600;
}

.product-colors {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.color-more {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-left: 0.25rem;
}

/* LIST VIEW */
.shop-products-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.shop-products-list .product-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
}

.shop-products-list .product-image {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  margin-right: 2rem;
}

.shop-products-list .product-info {
  flex: 1;
  padding: 0;
}

/* NO PRODUCTS STATE */
.no-products {
  text-align: center;
  padding: 4rem 2rem;
  color: #9ca3af;
}

.no-products i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-products h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #e5e7eb;
}

/* MODERN DROPDOWN CART */
.nav-cart {
  position: relative;
}

.cart-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(31, 41, 55, 0.8);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 0.75rem;
  color: #e5e7eb;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.cart-toggle-btn:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
  transform: translateY(-2px);
}

.cart-toggle-btn.has-items {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
  border-color: #fbbf24;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.cart-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  position: absolute;
  top: -8px;
  right: -8px;
}

.cart-total-display {
  font-size: 0.9rem;
  color: #fbbf24;
  font-weight: 700;
  margin-left: 0.5rem;
}

/* CART DROPDOWN */
.cart-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  width: 380px;
  max-width: 90vw;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cart-dropdown-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-dropdown-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.cart-items-count {
  color: #9ca3af;
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-dropdown-content {
  max-height: 300px;
  overflow-y: auto;
  padding: 0;
}

.cart-dropdown-items {
  padding: 0.5rem;
}

/* CART DROPDOWN ITEMS */
.cart-dropdown .cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(31, 41, 55, 0.5);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.cart-dropdown .cart-item:hover {
  background: rgba(31, 41, 55, 0.8);
  border-color: rgba(251, 191, 36, 0.3);
}

.cart-dropdown .cart-item:last-child {
  margin-bottom: 0;
}

.cart-dropdown .cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 0.5rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-dropdown .cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-dropdown .cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-dropdown .cart-item-details {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.cart-dropdown .cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.cart-dropdown .quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-dropdown .qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(251, 191, 36, 0.4);
  background: rgba(31, 41, 55, 0.8);
  color: #fbbf24;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.75rem;
}

.cart-dropdown .qty-btn:hover {
  background: rgba(251, 191, 36, 0.2);
  border-color: #fbbf24;
}

.cart-dropdown .qty-display {
  min-width: 30px;
  text-align: center;
  color: #e5e7eb;
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-dropdown .remove-btn {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

.cart-dropdown .remove-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}

.cart-dropdown-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 24, 39, 0.8);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.subtotal-label {
  color: #e5e7eb;
}

.subtotal-amount {
  color: #fbbf24;
}

.cart-dropdown-actions {
  display: flex;
  gap: 0.75rem;
}

.view-cart-btn,
.cart-dropdown .checkout-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.view-cart-btn {
  background: rgba(31, 41, 55, 0.8);
  color: #e5e7eb;
  border: 2px solid rgba(251, 191, 36, 0.3);
}

.view-cart-btn:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
  color: #fbbf24;
}

.cart-dropdown .checkout-btn {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #000;
  border: none;
  font-weight: 700;
}

.cart-dropdown .checkout-btn:hover {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.cart-dropdown .checkout-btn:disabled {
  background: rgba(75, 85, 99, 0.5);
  color: #9ca3af;
  cursor: not-allowed;
}

/* EMPTY CART STATE */
.cart-dropdown .cart-empty {
  text-align: center;
  padding: 3rem 2rem;
  color: #9ca3af;
}

.cart-dropdown .cart-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-dropdown .cart-empty h4 {
  color: #e5e7eb;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cart-dropdown .cart-empty p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ENHANCED CART SIDEBAR */
.cart-summary {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.cart-items-count {
  color: #9ca3af;
  font-size: 0.9rem;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.primary-btn {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #000;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.primary-btn:hover {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.continue-shopping-btn {
  background: rgba(31, 41, 55, 0.8);
  color: #e5e7eb;
  border: 2px solid rgba(251, 191, 36, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.continue-shopping-btn:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
}

.danger-btn {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 2px solid rgba(239, 68, 68, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.danger-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}

/* PRODUCT MODAL */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  background: rgba(17, 24, 39, 0.95);
  border-radius: 1rem;
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: flex-end;
}

.modal-close {
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 50%;
  color: #ef4444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  max-height: calc(90vh - 200px);
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-details .product-image {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-details .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details .product-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.product-details .product-info p {
  color: #9ca3af;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-details .product-price {
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 2rem;
}

.product-options {
  margin-bottom: 2rem;
}

.option-group {
  margin-bottom: 1.5rem;
}

.option-group label {
  display: block;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.option-btn {
  padding: 0.75rem 1.25rem;
  background: rgba(31, 41, 55, 0.8);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 0.5rem;
  color: #e5e7eb;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-btn:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
}

.option-btn.selected {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border-color: #fbbf24;
  color: #000;
}

.add-to-cart-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border: none;
  border-radius: 0.75rem;
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.add-to-cart-btn:disabled {
  background: rgba(75, 85, 99, 0.5);
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* MODAL RESPONSIVE */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 95vh;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .product-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .product-details .product-info h2 {
    font-size: 1.5rem;
  }
  
  .product-details .product-price {
    font-size: 1.5rem;
  }
}

/* ENHANCED CART */
.cart-empty {
  text-align: center;
  padding: 3rem 2rem;
  color: #9ca3af;
}

.cart-empty h4 {
  color: #e5e7eb;
  margin: 1rem 0 0.5rem 0;
  font-size: 1.25rem;
}

.cart-empty button {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border: none;
  border-radius: 0.5rem;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.qty-btn,
.remove-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  background: rgba(31, 41, 55, 0.8);
  color: #fbbf24;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
}

.remove-btn {
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.remove-btn:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}

.qty-display {
  min-width: 40px;
  text-align: center;
  color: #e5e7eb;
  font-weight: 600;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .modern-filters {
    gap: 1rem;
  }
  
  .primary-filters {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .filter-btn {
    min-width: auto;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .filter-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .products-display-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .shop-products-list .product-card {
    flex-direction: column;
    text-align: center;
  }
  
  .shop-products-list .product-image {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 200px;
    height: 200px;
    align-self: center;
  }
  
  /* MOBILE CART DROPDOWN */
  .cart-dropdown {
    width: 95vw;
    right: 2.5vw;
    left: 2.5vw;
  }
  
  .cart-dropdown .cart-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .cart-dropdown .cart-item-image {
    width: 50px;
    height: 50px;
  }
  
  .cart-dropdown-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .view-cart-btn,
  .cart-dropdown .checkout-btn {
    padding: 1rem;
  }
  
  .cart-toggle-btn {
    padding: 0.5rem 0.75rem;
  }
  
  .cart-total-display {
    display: none;
  }
}

.shop-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.shop-filter-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  background: rgba(31, 41, 55, 0.8);
  border: 2px solid transparent;
  border-radius: 1rem;
  color: #d1d5db;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.shop-filter-btn:hover,
.shop-filter-btn.active {
  border-color: #fbbf24;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  transform: translateY(-2px);
}

.shop-filter-btn i {
  font-size: 1.5rem;
}

/* Products Section */
.shop-products-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #000000 0%, #1f2937 50%, #000000 100%);
}

.shop-products-header {
  text-align: center;
  margin-bottom: 4rem;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  background: linear-gradient(135deg, #1f2937, #374151);
  border-radius: 1rem;
  border: 1px solid #374151;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
}

.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-quick-view {
  background: #fbbf24;
  color: #000000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-quick-view:hover {
  background: #f59e0b;
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.product-description {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-category {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-rating {
  color: #fbbf24;
  font-size: 0.9rem;
}

.shop-load-more {
  text-align: center;
}

.load-more-btn {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border: none;
  color: #000000;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Shop Features */
.shop-features-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.9));
}

.shop-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.shop-feature-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(251, 191, 36, 0.2);
  transition: all 0.3s ease;
}

.shop-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 191, 36, 0.5);
}

.shop-feature-card .feature-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #000000;
}

.shop-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.shop-feature-card p {
  color: #9ca3af;
  line-height: 1.6;
}

/* Chat Widget Styles */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.chat-toggle {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
}

.chat-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: #ef4444;
  color: #ffffff;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.chat-window {
  position: absolute;
  bottom: 5rem;
  right: 0;
  width: 350px;
  height: 500px;
  background: linear-gradient(135deg, #1f2937, #374151);
  border-radius: 1rem;
  border: 1px solid #374151;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transform: scale(0);
  transform-origin: bottom right;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.chat-window.show {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.chat-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #374151;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

.chat-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.chat-status {
  font-size: 0.8rem;
  color: #10b981;
  font-weight: 600;
}

.chat-minimize {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  margin-left: auto;
}

.chat-minimize:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.chat-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  display: flex;
  gap: 0.75rem;
  max-width: 80%;
}

.message.received {
  align-self: flex-start;
}

.message.sent {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.message.received .message-avatar {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #000000;
}

.message.sent .message-avatar {
  background: linear-gradient(135deg, #374151, #4b5563);
  color: #ffffff;
}

.message-content {
  background: rgba(31, 41, 55, 0.8);
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  position: relative;
}

.message.sent .message-content {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #000000;
}

.message-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.message-time {
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 0.25rem;
  opacity: 0.8;
}

.message.sent .message-time {
  color: rgba(0, 0, 0, 0.6);
  text-align: right;
}

.chat-input {
  padding: 1rem 1.5rem;
  border-top: 1px solid #374151;
  display: flex;
  gap: 0.5rem;
}

.chat-input input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(31, 41, 55, 0.8);
  border: 1px solid #374151;
  border-radius: 2rem;
  color: #ffffff;
  font-size: 0.9rem;
}

.chat-input input:focus {
  outline: none;
  border-color: #fbbf24;
}

.chat-input input::placeholder {
  color: #9ca3af;
}

.chat-input button {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  border: none;
  border-radius: 50%;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chat-input button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

/* Responsive Design for Shop */
@media (max-width: 768px) {
  .shop-page-title {
    font-size: 3rem;
  }
  
  .shop-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .shop-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .product-details {
    grid-template-columns: 1fr;
  }
  
  .chat-window {
    width: calc(100vw - 2rem);
    height: 400px;
    right: -1rem;
  }
  
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 640px) {
  .shop-page-title {
    font-size: 2.5rem;
  }
  
  .shop-filters {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .shop-features-grid {
    grid-template-columns: 1fr;
  }
}
