:root {
  --bg-dark: #090a1f;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.2);
  --text: #f3f1fb;
  --text-muted: #c8c2e0;
  --border: rgba(255, 255, 255, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.16), transparent 22%),
              radial-gradient(circle at bottom right, rgba(112, 74, 217, 0.14), transparent 25%),
              linear-gradient(180deg, #090a1f 0%, #10122f 100%);
  min-height: 100vh;
  overflow-x: hidden;
  animation: bgShift 20s ease infinite alternate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.05), transparent 40%, rgba(98, 48, 187, 0.08));
  pointer-events: none;
  z-index: -1;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 280px;
  padding: 34px 24px;
  background: linear-gradient(180deg, #111127 0%, #171a39 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 10;
}

.logo-container {
  text-align: center;
  margin-bottom: 28px;
}

.logo-icon {
  color: var(--accent);
  font-size: 24px;
  letter-spacing: 10px;
}

.logo {
  font-size: 28px;
  margin-top: 10px;
  letter-spacing: 2px;
  font-weight: 800;
}

.menu ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.menu-link {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  color: #dcd9e5;
  transition: background 0.25s ease, transform 0.25s ease;
}

.menu-link:hover,
.menu-link.active {
  background: rgba(212, 175, 55, 0.18);
  color: #fff;
  transform: translateX(6px);
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.main-content {
  margin-left: 280px;
  padding: 42px 40px 60px;
  position: relative;
  min-height: 100vh;
}

.page-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.06), transparent 20%),
              radial-gradient(circle at bottom left, rgba(146, 97, 225, 0.12), transparent 16%);
  pointer-events: none;
  z-index: 0;
}

.hero,
.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy,
.about-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h2,
.about-copy h2 {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.05;
}

.hero-copy p,
.about-copy p,
.page-header p {
  max-width: 680px;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #f5dd88 100%);
  color: #13121f;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.btn-add {
  background: rgba(212, 175, 55, 0.14);
  color: #fff;
  width: 100%;
  margin-top: 16px;
}

.btn:hover {
  transform: translateY(-2px);
}

.image-card {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 36px 60px rgba(0, 0, 0, 0.24);
  position: relative;
  min-height: 520px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-features,
.delivery-banner {
  display: grid;
  gap: 14px;
}

.hero-features div,
.delivery-banner div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #edeaf7;
}

.services-section,
.stats-section,
.values-grid,
.team-grid,
.perfume-grid,
.gallery-grid,
.locations-grid {
  display: grid;
  gap: 22px;
}

.services-section {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  margin: 42px 0;
}

.service-card,
.product-card,
.gallery-card,
.stat-card,
.value-card,
.team-card,
.location-card,
.map-card,
.contact-general {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}

.service-card {
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(212, 175, 55, 0.16);
  font-size: 1.4rem;
  color: #fff;
}

.service-card h3,
.value-card h3,
.team-card h3,
.location-card h3,
.map-card h3,
.contact-general h3 {
  margin-bottom: 14px;
  color: #fff;
}

.service-card p,
.value-card p,
.team-card p,
.location-card p,
.contact-general p,
.page-header p {
  color: var(--text-muted);
  line-height: 1.8;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: 2.4rem;
  color: #fff;
}

.product-card,
.gallery-card {
  overflow: hidden;
}

.product-card img,
.gallery-card img {
  height: 320px;
  object-fit: cover;
}

.product-copy,
.gallery-copy {
  padding: 22px;
}

.product-copy h4,
.gallery-copy h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.product-price {
  color: var(--accent);
  font-weight: 700;
}

.stats-section {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  margin-top: 32px;
}

.stat-card h3 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.stat-card p {
  color: var(--text-muted);
}

.page-header {
  margin-bottom: 26px;
}

.page-header h2 {
  font-size: 2.4rem;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.delivery-banner {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  margin-bottom: 30px;
}

.about-hero {
  grid-template-columns: 1.1fr 0.9fr;
  margin-bottom: 40px;
}

.about-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.values-section,
.team-section {
  margin-bottom: 40px;
}

.values-section h2,
.team-section h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}

.values-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.team-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.team-card {
  text-align: center;
  padding-bottom: 32px;
}

.team-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: rgba(212, 175, 55, 0.18);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}

.map-card {
  margin-bottom: 30px;
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: none;
  border-radius: 20px;
}

.contact-general {
  padding: 28px;
}

.footer {
  margin-left: 280px;
  padding: 24px 40px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes bgShift {
  0% {
    background-position: 0% 0%, 100% 100%, 0% 0%;
  }
  100% {
    background-position: 20% 10%, 80% 90%, 100% 100%;
  }
}

@media (max-width: 1100px) {
  .main-content {
    margin-left: 0;
    padding: 30px 24px 50px;
  }
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
  }
  .hero,
  .about-hero {
    grid-template-columns: 1fr;
  }
  .services-section,
  .stats-section,
  .values-grid,
  .team-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-copy h2,
  .about-copy h2 {
    font-size: 2rem;
  }
  .image-card {
    min-height: 320px;
  }
  .hero-features,
  .delivery-banner {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
}