/* ============================================
   CRUIZE AFRICA — MASTER STYLESHEET
   Dark Luxury 3D E-Commerce Gallery
   ============================================ */

/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Space+Mono:wght@400;700&display=swap');

/* ============================================
   ROOT VARIABLES & GLOBAL STYLES
   ============================================ */

:root {
  --bg-dark: #050A05;
  --accent-green: #00FF88;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-disabled: rgba(255, 255, 255, 0.3);
  --border-glow: rgba(0, 255, 136, 0.15);
  --surface-card: rgba(255, 255, 255, 0.03);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-glow: 0 0 40px rgba(0, 255, 136, 0.3);
  --shadow-glow-strong: 0 0 60px rgba(0, 255, 136, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Mono', monospace;
  background-color: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.02) 0%, var(--bg-dark) 80%, var(--bg-dark) 100%);
}

/* CUSTOM CURSOR */
body {
  cursor: none;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 10px var(--accent-green);
}

.cursor-ring {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.7;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3 {
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
}

h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--accent-green);
  text-shadow: 0 0 30px rgba(5, 10, 5, 0.6);
}

h2 {
  font-size: 3rem;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 25px rgba(5, 10, 5, 0.5);
}

h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}

h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
}

p {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  color: #E8D9C8;
  line-height: 1.8;
  text-shadow: 0 0 12px rgba(5, 10, 5, 0.4);
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.label {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   BUTTONS & INTERACTIVE ELEMENTS
   ============================================ */

button, a.btn, input[type="button"], input[type="submit"] {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  padding: 12px 28px;
  border-radius: 2px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--accent-green);
  color: var(--bg-dark);
  border: 2px solid var(--accent-green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
}

.btn-secondary:hover {
  background-color: var(--accent-green);
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow-strong);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--bg-dark);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.btn-ghost {
  background-color: transparent;
  color: var(--accent-green);
  border: none;
  padding: 8px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-ghost:hover {
  color: var(--white);
}

a.link {
  color: var(--accent-green);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-green);
  transition: var(--transition-smooth);
}

a.link:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  backdrop-filter: blur(0px);
  z-index: 1000;
  transition: var(--transition-smooth);
}

nav.scrolled {
  background-color: rgba(5, 10, 5, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glow);
}

.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-green);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-green);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-green);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: var(--accent-green);
  color: var(--bg-dark);
  font-size: 0.7rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--accent-green);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.02) 0%, rgba(5, 10, 5, 0.9) 50%, var(--bg-dark) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: 1;
}

#canvas-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* HERO CAROUSEL */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: rotateArtifact 8s linear infinite;
}

.carousel-item.active {
  opacity: 0.4;
  animation: rotateArtifact 8s linear infinite;
}

.carousel-item.fade-in {
  opacity: 0.35;
  animation: fadeInArtifact 1.5s ease-in-out forwards, rotateArtifact 8s linear infinite;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 5, 0.65);
  z-index: 1;
}

@keyframes rotateArtifact {
  0% {
    transform: rotateY(0deg) scale(1);
  }
  50% {
    transform: rotateY(45deg) scale(1.05);
  }
  100% {
    transform: rotateY(0deg) scale(1);
  }
}

@keyframes fadeInArtifact {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.35;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-eyebrow {
  color: #E8D9C8;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  text-shadow: 0 0 15px rgba(5, 10, 5, 0.6);
}

.hero-title {
  font-size: 5.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  text-shadow: 0 0 40px rgba(5, 10, 5, 0.8), 0 0 60px rgba(0, 255, 136, 0.2);
}

.hero-title-accent {
  color: var(--accent-green);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #E8D9C8;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 20px rgba(5, 10, 5, 0.7);
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

.scroll-indicator p {
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E8D9C8;
  text-shadow: 0 0 15px rgba(5, 10, 5, 0.8);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ============================================
   3D ARTIFACT CARD
   ============================================ */

.artifact-frame {
  perspective: 1000px;
  will-change: transform;
}

.artifact-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(20px);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
  transform-style: preserve-3d;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.artifact-card:hover {
  border-color: var(--accent-green);
  box-shadow: var(--shadow-glow);
  transform: translateY(-8px);
}

.artifact-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.artifact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.artifact-card:hover .artifact-image img {
  transform: scale(1.05);
}

.artifact-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--accent-green);
  font-size: 2rem;
}

.artifact-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  padding: 4px 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  z-index: 5;
}

.artifact-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
  z-index: 5;
}

.artifact-wishlist:hover {
  background-color: rgba(0, 255, 136, 0.2);
  border-color: var(--accent-green);
}

.artifact-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.artifact-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.artifact-origin {
  font-size: 0.8rem;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.artifact-price {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: auto;
  margin-top: 0.5rem;
}

.artifact-cta {
  padding: 10px 16px;
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ============================================
   FEATURED COLLECTION SECTION
   ============================================ */

.featured-section {
  padding: 5rem 3rem;
  position: relative;
  z-index: 10;
  background: var(--bg-dark);
}

.featured-title {
  text-align: center;
  margin-bottom: 3rem;
}

.featured-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.featured-scroll::-webkit-scrollbar {
  height: 6px;
}

.featured-scroll::-webkit-scrollbar-track {
  background: rgba(0, 255, 136, 0.05);
}

.featured-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-green);
  border-radius: 3px;
}

.featured-card {
  flex-shrink: 0;
  width: 280px;
  min-width: 280px;
}

.view-all-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.view-all-link:hover {
  gap: 10px;
}

/* ============================================
   GALLERY GRID
   ============================================ */

.gallery-container {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-dark);
  margin-top: 80px;
}

.gallery-filters {
  flex-shrink: 0;
  width: 250px;
  background: var(--surface-card);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  padding: 2rem;
  height: fit-content;
  position: sticky;
  top: 100px;
  backdrop-filter: blur(20px);
}

.filter-group {
  margin-bottom: 2.5rem;
}

.filter-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.filter-option {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.filter-option:hover,
.filter-option.active {
  color: var(--accent-green);
}

.price-range-slider {
  width: 100%;
  margin-top: 1rem;
}

.gallery-grid {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   MODAL / QUICK VIEW
   ============================================ */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 10, 5, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: var(--surface-card);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--accent-green);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 2001;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 0, 0, 0.3));
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  display: flex;
  flex-direction: column;
}

.modal-details h2 {
  margin-bottom: 1rem;
}

.modal-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.modal-badge {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.modal-price {
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.modal-description {
  margin-bottom: 2rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
}

.modal-actions button {
  flex: 1;
}

/* ============================================
   FULL-PAGE IMAGE LIGHTBOX
   ============================================ */

.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 5, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.image-lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--accent-green);
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10001;
  padding: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.2);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.lightbox-image {
  width: 100%;
  height: 80%;
  object-fit: contain;
  border: 2px solid #C9A84C;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0, 255, 136, 0.3);
}

.lightbox-info {
  text-align: center;
  color: #E8D9C8;
  animation: slideUp 0.5s ease;
}

.lightbox-title {
  font-size: 2rem;
  color: #C9A84C;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.lightbox-origin {
  font-size: 1rem;
  color: #00FF88;
  margin-bottom: 0.5rem;
}

.lightbox-price {
  font-size: 1.5rem;
  color: #C9A84C;
  font-weight: 700;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.product-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding: 4rem 3rem;
  margin-top: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-dark);
  min-height: calc(100vh - 80px);
}

.product-viewer {
  position: relative;
}

.product-image-large {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 0, 0, 0.3));
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: float 8s ease-in-out infinite;
}

.product-thumbnails {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}

.product-thumbnail {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 0, 0, 0.3));
  border: 2px solid var(--border-glow);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.product-thumbnail:hover,
.product-thumbnail.active {
  border-color: var(--accent-green);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-panel {
  display: flex;
  flex-direction: column;
}

.product-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 0.8rem;
  width: fit-content;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.product-name {
  font-size: 2.5rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.product-meta {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.product-description {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.product-details-table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
}

.product-details-table tr {
  border-bottom: 1px solid var(--border-glow);
}

.product-details-table td {
  padding: 0.8rem 0;
  font-size: 0.95rem;
}

.product-details-table td:first-child {
  color: var(--text-secondary);
  font-weight: 700;
  width: 40%;
}

.product-details-table td:last-child {
  color: var(--white);
}

.product-price {
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: auto;
}

.product-quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-glow);
  border-radius: 2px;
}

.quantity-selector button {
  background: transparent;
  border: none;
  color: var(--accent-green);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.quantity-selector button:hover {
  background-color: rgba(0, 255, 136, 0.1);
}

.quantity-input {
  width: 50px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
}

.product-add-cart {
  width: 100%;
  padding: 16px;
  margin-bottom: 1rem;
}

.product-related {
  padding: 4rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.related-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.related-card {
  flex-shrink: 0;
  width: 250px;
}

/* ============================================
   CHECKOUT / CART PAGE
   ============================================ */

.checkout-container {
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 3rem;
  background: var(--bg-dark);
  min-height: calc(100vh - 100px);
}

.checkout-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
}

.checkout-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-glow);
  z-index: 1;
}

.progress-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.progress-number {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5rem;
  background: var(--bg-dark);
  border: 2px solid var(--border-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.progress-step.active .progress-number {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow);
}

.progress-step.completed .progress-number {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--bg-dark);
}

.progress-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checkout-step {
  display: none;
}

.checkout-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.cart-items {
  background: var(--surface-card);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  padding: 2rem;
  backdrop-filter: blur(20px);
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-glow);
  align-items: center;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 0, 0, 0.3));
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.cart-item-origin {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.cart-item-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.cart-item-remove:hover {
  color: var(--accent-green);
}

.order-summary {
  background: var(--surface-card);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  padding: 2rem;
  height: fit-content;
  backdrop-filter: blur(20px);
  position: sticky;
  top: 100px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.summary-row.total {
  border-top: 2px solid var(--border-glow);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.summary-row.total .label {
  color: var(--accent-green);
}

.summary-row.total .value {
  color: var(--gold);
}

.summary-value {
  color: var(--text-secondary);
}

.promo-code {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.promo-code input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glow);
  color: var(--white);
  padding: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.promo-code input:focus {
  outline: none;
  border-color: var(--accent-green);
  background: rgba(0, 255, 136, 0.05);
}

.checkout-form {
  background: var(--surface-card);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  padding: 2rem;
  backdrop-filter: blur(20px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glow);
  color: var(--white);
  padding: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-green);
  background: rgba(0, 255, 136, 0.05);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.confirmation-screen {
  text-align: center;
  padding: 4rem 2rem;
}

.confirmation-icon {
  font-size: 5rem;
  color: var(--accent-green);
  margin-bottom: 2rem;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation-message {
  font-size: 2rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.confirmation-order-id {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.confirmation-next {
  margin-top: 2rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 255, 136, 0.02) 0%, rgba(5, 10, 5, 0.8) 50%, transparent 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.about-hero-content h1 {
  color: #F5E6D3;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.about-hero-content p {
  color: #E8D9C8;
}

.section {
  padding: 4rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-dark);
}

.section h2 {
  color: #C9A84C;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
}

.section p {
  color: #E8D9C8;
}

.section-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(0, 255, 136, 0.1));
  border: 2px solid #C9A84C;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  background: #1a2332;
  padding: 2rem;
  border-radius: 8px;
}

.stat-card {
  text-align: center;
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid #C9A84C;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  border-color: #00FF88;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.2);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  color: #C9A84C;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #E8D9C8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline {
  position: relative;
  padding: 2rem 0;
  background: var(--bg-dark);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #C9A84C, #00FF88);
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
  animation: slideInFromLeft 0.6s ease;
}

.timeline-item:nth-child(odd) {
  text-align: right;
  padding-right: 51%;
}

.timeline-item:nth-child(even) {
  text-align: left;
  padding-left: 51%;
  animation-name: slideInFromRight;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--accent-green);
  border: 4px solid var(--bg-dark);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.timeline-content {
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.9), rgba(15, 20, 25, 0.95));
  border: 2px solid #C9A84C;
  border-radius: 8px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.1);
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  border-color: #00FF88;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.timeline-title {
  color: #C9A84C;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
}

.timeline-content p {
  color: #E8D9C8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background: linear-gradient(135deg, rgba(26, 35, 50, 0.9), rgba(15, 20, 25, 0.95));
  border: 2px solid #C9A84C;
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.team-card:hover {
  border-color: #00FF88;
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.3);
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(0, 255, 136, 0.1));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #C9A84C;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  color: #C9A84C;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.2);
}

.team-role {
  font-size: 0.85rem;
  color: #00FF88;
  margin-bottom: 1rem;
  font-weight: 600;
}

.team-bio {
  font-size: 0.9rem;
  color: #E8D9C8;
}

.certifications {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
  background: var(--bg-dark);
  border-radius: 8px;
  border: 1px solid #C9A84C;
}

.certification-badge {
  text-align: center;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.certification-badge:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.4));
}

.contact-section {
  background: var(--surface-card);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  margin: 4rem 3rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-label {
  min-width: 100px;
  color: var(--accent-green);
  font-weight: 700;
}

.contact-value {
  color: var(--text-secondary);
}

.contact-value a {
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-value a:hover {
  color: var(--accent-green);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
  transform: translateX(2px);
}

.contact-value a svg {
  transition: var(--transition-smooth);
}

.contact-value a:hover svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glow);
  color: var(--white);
  padding: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  background: rgba(0, 255, 136, 0.05);
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: 3rem;
  background: var(--surface-card);
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
}

.testimonials-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0;
}

.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  color: var(--accent-green);
  font-weight: 700;
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
  padding: 4rem 3rem;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.02) 0%, transparent 70%);
  position: relative;
}

.newsletter-title {
  margin-bottom: 1rem;
}

.newsletter-subtitle {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glow);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-green);
  background: rgba(0, 255, 136, 0.05);
}

.newsletter-form button {
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--border-glow);
  padding: 3rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  color: var(--accent-green);
}

.footer-section a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-section a:hover {
  color: var(--accent-green);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  border-top: 1px solid var(--border-glow);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .product-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .section-two-column {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 10, 5, 0.95);
    border-bottom: 1px solid var(--border-glow);
    padding: 2rem;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group button {
    width: 100%;
  }

  .gallery-container {
    flex-direction: column;
  }

  .gallery-filters {
    width: 100%;
    position: static;
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item {
    text-align: left;
    padding-left: 50px !important;
    padding-right: 0 !important;
  }

  .timeline-dot {
    left: 0;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 1rem;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero {
    height: auto;
    padding: 80px 1rem 2rem;
    min-height: 100vh;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .featured-section {
    padding: 2rem 1rem;
  }

  .featured-card {
    width: 200px;
    min-width: 200px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-filters {
    padding: 1rem;
  }

  .product-container {
    padding: 2rem 1rem;
  }

  .checkout-container {
    padding: 1rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-content {
    padding: 1.5rem;
  }
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  animation: fadeOut 0.5s ease 1.5s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    pointer-events: none;
  }
}

.loading-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 3rem;
  color: var(--accent-green);
  font-weight: 900;
  animation: slideUp 1s ease;
  text-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
