/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Dark theme (default) */
  --bg-primary: #0f0f13;
  --bg-secondary: #1a1a24;
  --bg-card: #252532;
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b0;
  --accent: #d4af37;
  --accent-light: #e6c050;
  --accent-dark: #8b7500;
  --border: rgba(212, 175, 55, 0.2);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.5);
  --navbar-bg: rgba(15, 15, 19, 0.95);
  --video-overlay: rgba(0, 0, 0, 0.6);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* Light theme */
body.light-theme {
  --bg-primary: #f8f9fa;
  --bg-secondary: #ffffff;
  --bg-card: #f1f3f5;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --accent: #d4af37;
  --accent-light: #b8941f;
  --accent-dark: #8b7500;
  --border: rgba(212, 175, 55, 0.3);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
  --navbar-bg: rgba(255, 255, 255, 0.95);
  --video-overlay: rgba(0, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navbar-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== IMPROVED LOGO - TRONKREMLEVSKY77 ===== */
.logo-crest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.logo-crown {
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.6));
  animation: crownGlow 3s ease-in-out infinite;
}

@keyframes crownGlow {
  0%, 100% { 
    filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.4)); 
    transform: scale(1);
  }
  50% { 
    filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.8)); 
    transform: scale(1.05);
  }
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo-tron {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  position: relative;
}

.logo-tron::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.logo-kremlevsky {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  position: relative;
}

.logo-kremlevsky::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.logo-77 {
  color: var(--accent-light);
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.logo-77::before {
  content: '◆';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 0.5rem;
  opacity: 0.6;
}

/* Footer logo adjustments */
.footer-brand .logo-text {
  font-size: 1.1rem;
}

.footer-brand .logo-crown {
  font-size: 1.3rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.btn-nav {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--bg-primary);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-left: 16px;
}

.theme-toggle:hover {
  border-color: var(--accent);
  transform: rotate(15deg);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.sun-icon {
  display: none;
}

.moon-icon {
  display: block;
}

body.light-theme .sun-icon {
  display: block;
}

body.light-theme .moon-icon {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a1a24 0%, #0f0f13 100%);
  overflow: hidden;
}

body.light-theme .hero {
  background: linear-gradient(135deg, #f1f3f5 0%, #f8f9fa 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.jpg') center/cover;
  opacity: 0.1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-primary) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  display: block;
  font-size: 1.8rem;
  color: var(--text-secondary);
  margin-top: 8px;
  -webkit-text-fill-color: var(--text-secondary);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.1);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--bg-primary);
  border-radius: 6px;
  font-weight: 600;
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 0 auto 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--bg-secondary);
}

.about-content-full {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content-full h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
}

.about-content-full p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-features-wide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.feature-text p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-secondary);
}

/* ===== PRODUCTS SECTION ===== */
.products {
  background: var(--bg-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.product-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--bg-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.product-content {
  padding: 32px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-content h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.product-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.product-list {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.product-list li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.product-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

/* ===== VIDEO STYLES ===== */
.product-video video,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(212, 175, 55, 0.95);
  color: var(--bg-primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--bg-primary);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.gallery-item[data-type="video"]:hover .video-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-item[data-type="video"] {
  cursor: pointer;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  background: var(--bg-secondary);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-more {
  text-align: center;
  padding: 40px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.gallery-more p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* ===== DELIVERY SECTION ===== */
.delivery {
  background: var(--bg-secondary);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.delivery-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.delivery-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.delivery-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

.delivery-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--accent);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
}

.delivery-card > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.delivery-list {
  list-style: none;
  margin-bottom: 24px;
}

.delivery-list li {
  padding: 10px 0;
  color: var(--text-primary);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.delivery-list li:last-child {
  border-bottom: none;
}

.delivery-note {
  background: rgba(212, 175, 55, 0.1);
  padding: 16px;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 16px;
}

.delivery-note strong {
  color: var(--text-primary);
}

/* ===== PROCESS SECTION ===== */
.process {
  background: var(--bg-primary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.process-step {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.process-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.info-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CONTACTS SECTION ===== */
.contacts {
  background: var(--bg-secondary);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.contact-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.contact-icon.instagram svg {
  color: #e4405f;
}

.contact-icon.tiktok svg {
  color: #fe2c55;
}

.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.contact-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-link:hover {
  text-decoration: underline;
}

.contacts-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contacts-cta h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contacts-cta p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-crest {
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.footer-location {
  margin-top: 8px;
}

.footer-links h4,
.footer-legal h4,
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
  color: var(--text-secondary);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  color: var(--text-secondary);
  font-weight: 500;
}

.social-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-legal-text {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img,
.lightbox video {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 3rem;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.2);
  border: none;
  color: var(--accent);
  font-size: 2rem;
  padding: 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(212, 175, 55, 0.4);
}

.lightbox-prev {
  left: 32px;
}

.lightbox-next {
  right: 32px;
}

.lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-primary);
  font-size: 1.1rem;
  text-align: center;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  background: var(--bg-secondary);
  padding-top: 120px;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
}

.legal-date {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 48px;
  font-size: 0.95rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 32px 0 16px;
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ol,
.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-content a {
  color: var(--accent);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .btn-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .theme-toggle {
    margin-left: 12px;
    width: 40px;
    height: 40px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .about-features-wide {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .process-info {
    grid-template-columns: 1fr;
  }
  
  .delivery-grid {
    grid-template-columns: 1fr;
  }
  
  .delivery-card {
    padding: 28px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    display: none;
  }
  
  .nav-container {
    position: relative;
  }
  
  .theme-toggle {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .product-content {
    padding: 24px 20px 20px;
  }
  
  .product-footer {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .btn-small {
    width: 100%;
  }
  
  .logo-text {
    font-size: 1rem;
  }
  
  .logo-crown {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .gallery-filter {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-btn {
    width: 100%;
  }
  
  .product-content h3 {
    font-size: 1.4rem;
  }
  
  .product-price {
    font-size: 1.3rem;
  }
  
  .video-play-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .logo-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .logo-crown {
    font-size: 1rem;
  }
  
  .legal-content {
    padding: 32px 24px;
  }
  
  .legal-page h1 {
    font-size: 2rem;
  }
}