/* =====================================================================
   ROCKSDOOR GMBH — DESIGN SYSTEM
   css/style.css
   ===================================================================== */

/* ==============================
   1. GOOGLE FONTS
   ============================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500;600&display=swap');

/* ==============================
   2. CSS RESET & ROOT VARIABLES
   ============================== */
:root {
  /* Colors */
  --gold:        #C9A84C;
  --gold-light:  #E8C96B;
  --gold-dark:   #A8863A;
  --black:       #0D0D0D;
  --dark:        #1A1A1A;
  --mid:         #2F2F2F;
  --gray:        #888888;
  --light-gray:  #F4F4F2;
  --white:       #FFFFFF;

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  /* Misc */
  --radius:    8px;
  --radius-sm: 6px;
  --shadow:    0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
  --border:    #E5E5E5;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

ul { list-style: none; }

/* ==============================
   3. TYPOGRAPHY
   ============================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
h2 { font-size: 2.2rem; margin-bottom: 0.5rem; }
h3 { font-size: 1.3rem; }

/* ==============================
   4. UTILITY CLASSES
   ============================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==============================
   5. BUTTONS
   ============================== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--white);
  transition: background 0.3s, color 0.3s, transform 0.2s;
  text-align: center;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.btn-ghost {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.btn-ghost:hover { opacity: 0.75; }

.btn-submit {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-nav {
  padding: 0.6rem 1.5rem;
  font-size: 0.88rem;
}

/* ==============================
   6. NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar.scrolled {
  background: var(--white);
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .navbar-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after { width: 100%; }
.nav-links li a:hover { color: var(--gold); }

.navbar.scrolled .nav-links li a { color: var(--dark); }
.navbar.scrolled .nav-links li a:hover { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switch */
.lang-switch {
  display: flex;
  gap: 4px;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}

.lang-btn:hover,
.lang-btn.active {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
}

.navbar.scrolled .lang-btn {
  border-color: #ddd;
  color: var(--dark);
}

.navbar.scrolled .lang-btn:hover,
.navbar.scrolled .lang-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.navbar.scrolled .btn-primary.btn-nav {
  background: var(--gold);
  color: var(--black);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}

.navbar.scrolled .hamburger span {
  background: var(--dark);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu ul li a,
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-menu ul li a:hover,
.mobile-menu a:hover { color: var(--gold); }

.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
}

.mobile-lang .lang-btn {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.mobile-lang .lang-btn.active,
.mobile-lang .lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-menu .btn-primary {
  margin-top: 1rem;
}

/* ==============================
   7. HERO
   ============================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-arrow svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255, 255, 255, 0.5);
  fill: none;
  stroke-width: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ==============================
   8. SECTION GENERAL
   ============================== */
.section {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.bg-light {
  background: var(--light-gray);
}

/* ==============================
   9. ÜBER UNS (About)
   ============================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 1.25rem;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card {
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  background: var(--light-gray);
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-left-color 0.3s;
}

.feature-card:hover {
  border-left-color: var(--gold-dark);
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ==============================
   10. STATS
   ============================== */
.stats-section {
  background: var(--dark);
  color: var(--white);
  padding: clamp(4rem, 8vw, 6rem) 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-unit {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==============================
   11. SORTIMENT (Collection)
   ============================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 2rem 1.5rem;
}

.category-title {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.category-link {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.category-link:hover { opacity: 0.75; }

/* ==============================
   12. CAROUSEL
   ============================== */
.carousel-section {
  margin-top: 2rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel {
  display: flex;
  gap: 16px;
  padding: 1.5rem 0;
  transition: transform 0.8s ease;
  will-change: transform;
}

.carousel img {
  flex: 0 0 auto;
  width: 220px;
  height: 165px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: all 0.5s ease;
  cursor: pointer;
}

.carousel img.center {
  width: 420px;
  height: 315px;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  z-index: 2;
  transition: background 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--dark);
}

/* ==============================
   13. AUSSTELLUNG (Gallery)
   ============================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.gallery-item:first-child {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:first-child img {
  height: 260px;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:hover {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.showroom-desc {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.showroom-info {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}

.showroom-info span {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ==============================
   14. KONTAKT (Contact)
   ============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow);
}

.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.info-row:last-of-type {
  margin-bottom: 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-gray);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.info-row strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
  color: var(--dark);
}

.info-row span,
.info-row a {
  font-size: 0.95rem;
  color: var(--gray);
}

.info-row a:hover { color: var(--gold); }

.contact-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 1rem;
  font-style: italic;
}

#form-success {
  background: #d4edda;
  color: #155724;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: 0.9rem;
}

#form-error {
  background: #f8d7da;
  color: #721c24;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Map */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
}

.map-wrapper iframe { display: block; }

/* ==============================
   15. SOCIAL ICONS
   ============================== */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 1.25rem;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-icons a:hover svg { fill: var(--white); }

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: var(--gray);
  transition: fill 0.3s;
}

.social-icons a i {
  font-size: 18px;
  color: var(--gray);
  transition: color 0.3s;
  line-height: 1;
}

.social-icons a:hover i {
  color: var(--white);
}

/* Social icons in contact card (dark text context) */
.contact-info-card .social-icons a {
  border-color: #ddd;
}

.contact-info-card .social-icons a i {
  color: #555;
}

.contact-info-card .social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-info-card .social-icons a:hover svg {
  fill: var(--black);
}

.contact-info-card .social-icons a:hover i {
  color: var(--white);
}

/* ==============================
   16. FOOTER
   ============================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  height: 36px;
  margin-bottom: 1rem;
  filter: invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-social .social-icons {
  margin-top: 0;
}

.footer-social .social-icons a {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-social .social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social .social-icons svg {
  fill: rgba(255, 255, 255, 0.7);
}

.footer-social .social-icons a:hover svg {
  fill: var(--black);
}

.footer-social .social-icons a i {
  color: rgba(255, 255, 255, 0.7);
}

.footer-social .social-icons a:hover i {
  color: var(--black);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--gold); }

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

/* ==============================
   17. MODALS
   ============================== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-backdrop.open { display: flex; }

.modal {
  background: var(--white);
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
}

/* ==============================
   18. COOKIE BANNER
   ============================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  z-index: 3000;
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner span {
  font-size: 0.9rem;
}

.cookie-inner a {
  color: var(--gold);
  text-decoration: underline;
  margin-left: 0.5rem;
}

#cookie-accept {
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

#cookie-accept:hover { background: var(--gold-light); }

/* ==============================
   19. LIGHTBOX
   ============================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 5001;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--gold); }

/* ==============================
   20. LEGAL PAGES
   ============================== */
.legal-page {
  padding-top: 120px;
  padding-bottom: 4rem;
  min-height: 60vh;
}

.legal-page h1 {
  font-family: var(--font-heading);
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.legal-content {
  max-width: 800px;
  line-height: 1.8;
  color: var(--dark);
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--gray);
}

.legal-content a { color: var(--gold); }
.legal-content a:hover { text-decoration: underline; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--gold);
  transition: opacity 0.2s;
}

.breadcrumb a:hover { opacity: 0.75; }

/* ==============================
   21. RTL SUPPORT
   ============================== */
html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] .navbar .container {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-right {
  flex-direction: row-reverse;
}

html[dir="rtl"] .lang-switch {
  flex-direction: row-reverse;
}

html[dir="rtl"] .about-grid {
  direction: rtl;
}

html[dir="rtl"] .feature-card {
  border-left: none;
  border-right: 3px solid var(--gold);
  border-radius: var(--radius) 0 0 var(--radius);
}

html[dir="rtl"] .info-row {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .contact-grid {
  direction: rtl;
}

html[dir="rtl"] .footer-grid {
  direction: rtl;
}

html[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}

html[dir="rtl"] .breadcrumb {
  flex-direction: row-reverse;
}

html[dir="rtl"] .category-overlay {
  text-align: right;
}

html[dir="rtl"] .form-group {
  text-align: right;
}

/* ==============================
   22. FADE-IN ANIMATION
   ============================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: none;
}

/* ==============================
   23. RESPONSIVE — TABLET
   ============================== */
@media (max-width: 1199px) {
  .navbar .container {
    padding: 0 1rem;
  }

  .nav-links {
    gap: 1.5rem;
  }
}

/* ==============================
   24. RESPONSIVE — MOBILE
   ============================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .btn-primary.btn-nav { display: none; }
  .hamburger { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card img {
    height: 240px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid .gallery-item:first-child {
    grid-column: span 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .carousel img {
    width: 160px;
    height: 120px;
  }

  .carousel img.center {
    width: 280px;
    height: 210px;
  }

  .showroom-info {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==============================
   25. RESPONSIVE — SMALL MOBILE
   ============================== */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 280px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}
