@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg-dark: #0a0a0a;
  --bg-card: #151515;
  --bg-card-hover: #1f1f1f;
  --text-main: #f5f5f5;
  --text-muted: #a0a0a0;
  --accent-gold: #d4af37;
  --accent-gold-dark: #b5952f;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.3);
  --shadow-md: 0 10px 15px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.2);
  
  --transition: all 0.3s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
.h1, .h2, .h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-main);
}

.h1 { font-size: 3rem; }
.h2 { font-size: 2.25rem; }
.h3 { font-size: 1.5rem; }

.text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

.kicker {
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: var(--spacing-sm);
  display: block;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-xxl) 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--text-muted);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--text-main);
}

.btn-outline:hover {
  background: var(--text-main);
  color: var(--bg-dark);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
  color: var(--bg-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 100%);
}

.btn-full {
  width: 100%;
  display: block;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--accent-gold);
  color: var(--bg-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: var(--spacing-sm);
}

/* Affiliate Bar */
.affiliate-bar {
  background: var(--bg-card);
  color: var(--text-muted);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.75rem;
  border-bottom: 1px solid #222;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  padding: 1.5rem 0;
}

.header.scrolled {
  padding: 1rem 0;
  border-bottom: 1px solid #222;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
}

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

.nav a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--accent-gold);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at center, #1a1a1a 0%, var(--bg-dark) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: var(--spacing-xl);
}

.feature-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid #222;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--accent-gold);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  filter: grayscale(20%);
}

.gallery-item:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* CTA Block */
.cta-block {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid #333;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Footer */
.footer {
  background: #050505;
  padding: 4rem 0 2rem;
  border-top: 1px solid #222;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
}

.footer-col a, .footer-col p {
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--text-main);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #222;
  color: #666;
  font-size: 0.75rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid #333;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.contact-info {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid #222;
}

.contact-info p {
  margin-bottom: 1rem;
}

/* Review layout */
.review-article {
  max-width: 800px;
  margin: 0 auto;
}

.review-article img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.verdict-box {
  background: rgba(212,175,55,0.1);
  border-left: 4px solid var(--accent-gold);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Order Layout */
.order-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

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

.main-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
  object-fit: cover;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.order-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  opacity: 0.7;
}

.order-thumb:hover, .order-thumb.active {
  opacity: 1;
  border-color: var(--accent-gold);
}

.price-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid #222;
  position: sticky;
  top: 100px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.specs-table th, .specs-table td {
  padding: 1rem 0;
  border-bottom: 1px solid #333;
  text-align: left;
}

.specs-table th {
  color: var(--text-muted);
  font-weight: normal;
  width: 40%;
}

.specs-table td {
  color: var(--text-main);
  font-weight: 700;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content .h2 {
  margin-top: 2rem;
}

.legal-content ul {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  border-top-color: var(--accent-gold);
  animation: spin 1s ease-in-out infinite;
}

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

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  padding: 1.5rem;
  border-top: 1px solid var(--accent-gold);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  z-index: 9998;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom 0.5s ease;
}

#cookie-banner.show {
  bottom: 0;
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 800px;
}

.cookie-text a {
  color: var(--accent-gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .contact-grid, .order-grid {
    grid-template-columns: 1fr;
  }
  
  .h1 { font-size: 2.5rem; }
  
  .price-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    box-shadow: var(--shadow-md);
  }
  
  .nav.active {
    display: flex;
  }
  
  .features-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  #cookie-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
