:root {
  --surface: rgba(17, 17, 17, 0.84);
  --surface-soft: rgba(20, 20, 20, 0.72);
  --text: #f6eac4;
  --muted: #c7b97a;
  --accent: #d4af37;
  --border: rgba(212, 175, 55, 0.2);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #0a0a0a;
}

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

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

.page-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
  min-height: 100vh;
  background: #0a0a0a;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 16px;
  z-index: 20;
}

.logo,
.section-heading h2,
.contact-box h2,
.category-head h3 {
  font-family: "Cinzel", "Times New Roman", serif;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #f5d66d;
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.18);
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.logo span {
  max-width: none;
  line-height: 1.15;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a.is-active {
  color: #fff4cf;
  position: relative;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4af37, #22c55e);
}

.lang-switcher {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-button {
  min-width: 52px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-button:hover {
  color: #fff;
}

.lang-button.active {
  background: var(--accent);
  color: #111;
}

.section {
  padding: 42px 0;
  display: none;
}

.section.is-active {
  display: block;
}

main {
  min-height: 72vh;
  background: #0a0a0a;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: #f5d66d;
  letter-spacing: 0.015em;
}

.eyebrow,
.category-badge {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.section-text,
.about-box p,
.contact-box p,
.contact-item p,
.product-card p,
.feature-list li {
  color: var(--muted);
  line-height: 1.75;
}

.about-box,
.contact-box,
.product-category {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  border-radius: 34px;
}

.about-box,
.contact-box {
  padding: 30px;
}

.about-box p {
  margin: 0 0 18px;
  font-size: 1.02rem;
}

.about-box p:last-child,
.contact-item p:last-child {
  margin-bottom: 0;
}

.catalog-groups {
  display: grid;
  gap: 22px;
}

.shops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.shop-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.shop-photo-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.16), transparent 38%),
    linear-gradient(180deg, #181818 0%, #101010 100%);
  padding: 24px;
}

.shop-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.shop-photo-wrap-gallery {
  padding: 14px;
}

.shop-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  height: 100%;
}

.shop-gallery img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  cursor: zoom-in;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.shop-gallery img:hover,
.shop-gallery img:focus-visible {
  transform: scale(1.02);
  border-color: rgba(212, 175, 55, 0.34);
  outline: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55);
}

.image-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.78);
  color: #f5d66d;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.14);
  outline: none;
}

.shop-content {
  display: grid;
  gap: 10px;
}

.shop-content h3 {
  margin: 0;
  font-size: 1.5rem;
}

.shop-content p {
  margin: 0;
}

.shop-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.shop-location:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.48);
  background: rgba(212, 175, 55, 0.08);
}

.product-category {
  padding: 26px;
}

.category-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.category-head h3 {
  margin: 0;
  font-size: 1.7rem;
  color: #f5d66d;
  letter-spacing: 0.02em;
}

.category-badge {
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  height: 100%;
  padding: 16px;
  border-radius: 26px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.product-card-premium {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-image-wrap {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.14), transparent 38%),
    linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
  padding: 10px;
  aspect-ratio: 4 / 5;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.product-image-tall {
  aspect-ratio: 3 / 4.2;
}

.product-content {
  display: grid;
  gap: 12px;
}

.product-card h4 {
  margin: 14px 0 8px;
  font-size: 1.08rem;
  color: #fff4cf;
}

.product-card p {
  margin: 0;
  font-size: 0.95rem;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.review-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: #22c55e;
  color: #08110b;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.24);
  border: 0;
  cursor: pointer;
  font: inherit;
}

.review-form-wrap {
  margin-bottom: 22px;
}

.review-form {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.review-form h3 {
  margin: 0 0 18px;
  color: #fff4cf;
  font-size: 1.35rem;
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 600;
}

.review-field input,
.review-field textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 14px 16px;
  font: inherit;
  resize: vertical;
}

.review-field input::placeholder,
.review-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.review-field input:focus,
.review-field textarea:focus {
  outline: none;
  border-color: rgba(34, 197, 94, 0.72);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.14);
}

.review-rating {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.review-rating legend {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

.review-rating-stars {
  display: inline-flex;
  gap: 8px;
}

.rating-star {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.32);
  transition: transform 0.18s ease, color 0.18s ease;
}

.rating-star.is-active,
.rating-star:hover {
  color: #d4af37;
}

.rating-star:hover {
  transform: translateY(-1px);
}

.review-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.review-submit {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #22c55e;
  color: #08110b;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.review-form-note {
  margin: 0;
  color: var(--muted);
}

.review-form-note.is-error {
  color: #fca5a5;
}

.review-form-note.is-success {
  color: #86efac;
}

.reviews-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.reviews-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 12px);
  gap: 18px;
  transition: transform 0.32s ease;
}

.review-card {
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.34);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.review-stars {
  color: #d4af37;
  letter-spacing: 0.2em;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.review-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
}

.review-city {
  margin: 8px 0 14px;
  color: #22c55e;
  font-weight: 700;
}

.review-text {
  margin: 0;
  color: #f5f5f5;
  line-height: 1.8;
}

.reviews-nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.03);
  color: #d4af37;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.reviews-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(34, 197, 94, 0.08);
}

.contact-item {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.contact-item h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.contact-item p {
  margin-bottom: 10px;
}

.contact-item a {
  color: var(--accent);
}

@media (max-width: 900px) {
  .site-header,
  .shops-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .reviews-track {
    grid-auto-columns: calc(50% - 9px);
  }

  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
    top: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .category-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1220px);
  }

  .about-box,
  .contact-box,
  .product-category {
    padding: 22px;
    border-radius: 24px;
  }

  .logo span {
    max-width: 180px;
    font-size: 0.95rem;
  }

  .product-card {
    padding: 14px;
    border-radius: 22px;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
  }

  .reviews-track {
    grid-auto-columns: 100%;
  }

  .reviews-nav {
    display: none;
  }

  .review-form {
    padding: 20px;
    border-radius: 22px;
  }

  .product-image-wrap {
    border-radius: 18px;
  }

  .lang-switcher {
    width: 100%;
    justify-content: center;
  }
}
