:root {
  --header-h: 72px;
  --bg-color: #070708;
  --text-color: #e8e8ea;
  --text-muted: #9a9aa3;
  --primary-neon: #e040e8;
  --secondary-neon: #2dd4d4;
  --accent-neon: #5ee85e;
  --panel-bg: rgba(18, 18, 22, 0.92);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-neon: rgba(224, 64, 232, 0.35);
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Rajdhani", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
.logo,
.section-title,
.btn {
  font-family: var(--font-display);
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: var(--primary-neon);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.35rem;
  background: transparent;
  color: var(--primary-neon);
  border: 1px solid var(--primary-neon);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: rgba(224, 64, 232, 0.12);
  box-shadow: 0 0 0 1px rgba(224, 64, 232, 0.25);
}

.btn-secondary {
  color: var(--secondary-neon);
  border-color: var(--secondary-neon);
}

.btn-secondary:hover {
  background: rgba(45, 212, 212, 0.1);
  box-shadow: 0 0 0 1px rgba(45, 212, 212, 0.25);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-h);
  height: auto;
  background: rgba(7, 7, 8, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 5%);
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(224, 64, 232, 0.35);
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(420px, 46vw);
}

.logo svg {
  flex-shrink: 0;
}

.logo span {
  line-height: 1.2;
}

@media (min-width: 992px) {
  .logo {
    flex: 0 1 auto;
    max-width: min(600px, 50vw);
  }

  .logo span {
    white-space: normal;
  }
}

.nav-main {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-main a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav-main a:hover {
  border-bottom-color: rgba(224, 64, 232, 0.5);
  text-shadow: none;
}

.header-tray {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  color: var(--text-color);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(224, 64, 232, 0.4);
  background: rgba(224, 64, 232, 0.08);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--secondary-neon);
  outline-offset: 2px;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}

.nav-toggle-line {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.icon-btn:hover {
  color: var(--secondary-neon);
  background: rgba(45, 212, 212, 0.08);
}

.ui-icon {
  display: block;
  flex-shrink: 0;
  color: inherit;
}

.ui-icon use {
  pointer-events: none;
}

.icon-btn .ui-icon {
  width: 22px;
  height: 22px;
}

.ui-icon--narrow {
  width: 20px;
  height: 20px;
}

.ui-icon--feature {
  width: 32px;
  height: 32px;
  color: var(--secondary-neon);
}

.feature-tile__icon {
  margin-bottom: 0.85rem;
  line-height: 0;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  vertical-align: middle;
}

.review-star {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent-neon);
}

.review-star--empty {
  color: rgba(255, 255, 255, 0.22);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--primary-neon);
  color: #0a0a0b;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 9px;
}

.nav-backdrop {
  display: none;
}

@media (max-width: 991px) {
  :root {
    --header-h: 78px;
  }

  .site-header {
    gap: 0.5rem;
    padding: 0.45rem clamp(0.65rem, 3vw, 1.25rem);
    align-items: center;
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100vw - 6rem);
    font-size: clamp(0.7rem, 2vw, 0.95rem);
    letter-spacing: 0.02em;
  }

  .logo svg {
    width: 34px;
    height: 34px;
  }

  .logo span {
    white-space: normal;
    overflow: visible;
    word-break: break-word;
    hyphens: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-main {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    bottom: auto;
    box-sizing: border-box;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 1.25rem clamp(1rem, 4vw, 5%) calc(2rem + env(safe-area-inset-bottom, 0px));
    background: rgba(7, 7, 8, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-subtle);
    z-index: 101;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.32s ease, visibility 0.32s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .nav-main.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-main a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 1.05rem;
  }

  .nav-main a:hover {
    border-bottom-color: var(--border-subtle);
    padding-left: 0.25rem;
    color: var(--primary-neon);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    bottom: auto;
    z-index: 99;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header .header-tray {
    position: relative;
    z-index: 102;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem 1rem 3rem;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.15);
}

.section-video-band {
  overflow: hidden;
  line-height: 0;
}

.section-video-band__media {
  display: block;
  width: 100%;
  height: min(400px, 55vh);
  object-fit: cover;
  filter: brightness(0.7) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 30%, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.82) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  margin-bottom: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 0 24px rgba(45, 212, 212, 0.25);
}

.section {
  padding: clamp(3rem, 8vw, 6.25rem) clamp(1rem, 4vw, 5%);
}

.section-title {
  text-align: left;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(224, 64, 232, 0.35);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: none;
  letter-spacing: 0.02em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.25rem, 3vw, 1.875rem);
  max-width: 1200px;
  margin: 0 auto;
}

.card-product {
  background: var(--panel-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border-color: var(--border-neon);
}

.card-product .thumb {
  position: relative;
}

.card-product .thumb-link {
  display: block;
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.card-product .thumb img {
  width: 100%;
  height: min(300px, 55vw);
  object-fit: cover;
  display: block;
}

.favorite-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(7, 7, 8, 0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.favorite-btn > svg {
  grid-area: 1 / 1;
}

.favorite-btn__heart--fill {
  display: none;
}

.favorite-btn.is-favorite .favorite-btn__heart--outline {
  display: none;
}

.favorite-btn.is-favorite .favorite-btn__heart--fill {
  display: block;
}

.favorite-btn:hover {
  background: rgba(224, 64, 232, 0.2);
  border-color: rgba(224, 64, 232, 0.45);
  color: var(--primary-neon);
}

.favorite-btn.is-favorite {
  background: rgba(224, 64, 232, 0.25);
  border-color: var(--primary-neon);
  color: var(--primary-neon);
}

.favorite-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

.card-product__link {
  color: inherit;
  text-decoration: none;
}

.card-product__link:hover h3 {
  color: var(--primary-neon);
}

.card-body {
  padding: 1.25rem 1.35rem;
  text-align: left;
}

.card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.price {
  font-size: 1.1rem;
  color: var(--accent-neon);
  margin-bottom: 1rem;
  font-weight: 600;
}

.cart-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  max-width: min(100%, 100vw);
  height: 100vh;
  height: 100dvh;
  background: #0e0e10;
  border-left: 1px solid var(--border-neon);
  z-index: 1001;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
}

.cart-drawer.active {
  right: 0;
}

.cart-header,
.cart-footer {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

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

.cart-header h2 {
  font-size: 1.25rem;
}

.cart-wishlist {
  padding: 0.75rem 1.25rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  max-height: 38vh;
  overflow-y: auto;
  flex-shrink: 0;
  -webkit-overflow-scrolling: touch;
}

.cart-wishlist__title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-neon);
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
}

.wishlist-empty {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.wishlist-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wishlist-item:last-child {
  border-bottom: none;
}

.wishlist-item__link img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.wishlist-item__meta {
  min-width: 0;
}

.wishlist-item__title {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  color: var(--text-color);
  margin-bottom: 0.2rem;
}

.wishlist-item__title:hover {
  color: var(--primary-neon);
}

.wishlist-item__price {
  font-size: 0.85rem;
  color: var(--accent-neon);
  display: block;
  margin-bottom: 0.35rem;
}

.wishlist-remove-btn {
  font-size: 0.75rem;
  color: #f87171;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn--wishlist-add {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  width: 100%;
  font-size: 0.72rem;
  padding: 0.45rem 0.65rem;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.25rem;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item-details { flex: 1; }
.cart-item-title { font-weight: 600; margin-bottom: 0.35rem; }
.cart-item-price { color: var(--accent-neon); }
.remove-btn {
  color: #f87171;
  cursor: pointer;
  font-size: 0.85rem;
  background: none;
  border: none;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.site-footer {
  background: #050506;
  padding: clamp(2.5rem, 6vw, 3.75rem) clamp(1rem, 4vw, 5%) 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--secondary-neon);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 0.5rem; }

.footer-map {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  height: 0;
  padding-bottom: 16.25%;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #1a1a1c;
}

.footer-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: brightness(0.94) contrast(1.03);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.chat-widget {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 997;
}

.chat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary-neon);
  color: #0a0a0b;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(45, 212, 212, 0.35);
  transition: transform 0.2s ease;
}

.chat-btn .ui-icon--chat-btn {
  width: 24px;
  height: 24px;
  color: #0a0a0b;
}

.chat-btn:hover { transform: scale(1.05); }

.chat-window {
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  width: min(300px, calc(100vw - 2rem));
  background: var(--panel-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 212, 212, 0.35);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.chat-window.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chat-header {
  background: rgba(45, 212, 212, 0.12);
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-body {
  min-height: 200px;
  height: min(280px, 42vh);
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chat-msg {
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  max-width: 85%;
  font-size: 0.875rem;
}

.msg-bot { background: rgba(255, 255, 255, 0.06); align-self: flex-start; }
.msg-user { background: rgba(45, 212, 212, 0.18); align-self: flex-end; color: #fff; }

.chat-input {
  display: flex;
  padding: 0.65rem;
  border-top: 1px solid var(--border-subtle);
}

.chat-input input {
  flex: 1;
  padding: 0.5rem 0.65rem;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 6px;
  outline: none;
  font-family: inherit;
  font-size: 0.9rem;
}

.chat-input button {
  background: var(--secondary-neon);
  color: #0a0a0b;
  border: none;
  padding: 0 1rem;
  margin-left: 0.35rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
}

.cookie-banner {
  position: fixed;
  bottom: -120%;
  left: 0;
  right: 0;
  background: #0e0e10;
  border-top: 1px solid rgba(94, 232, 94, 0.35);
  padding: 1rem clamp(1rem, 4vw, 5%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  z-index: 1002;
  transition: bottom 0.35s ease;
}

.cookie-banner.active { bottom: 0; }

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.active { opacity: 1; pointer-events: auto; }

.popup-content {
  background: var(--bg-color);
  border: 1px solid var(--border-neon);
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  transform: scale(0.96);
  transition: transform 0.25s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.popup-overlay.active .popup-content { transform: scale(1); }

.popup-content h3 {
  margin-bottom: 0.75rem;
  color: var(--secondary-neon);
}

form.band-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 500px;
  margin: 0 auto;
}

form.band-form input,
form.band-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #fff;
  border-radius: 6px;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

form.band-form input:focus,
form.band-form textarea:focus { border-color: rgba(224, 64, 232, 0.5); }

.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 3.75rem);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-photo-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-photo-frame img {
  width: 100%;
  display: block;
  border-radius: 11px;
  transition: transform 0.25s ease, border-color 0.25s ease;
  object-fit: cover;
}

.product-photo-frame:hover {
  border-color: var(--border-neon);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 20px rgba(224, 64, 232, 0.12);
}

.product-photo-frame:hover img {
  transform: scale(1.01);
}

.product-info {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: var(--panel-bg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.product-info h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text-color);
  margin-bottom: 0.5rem;
  line-height: 1.15;
  text-shadow: none;
}

.product-info .price {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--accent-neon);
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-shadow: none;
}

.product-info p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  opacity: 0.92;
  line-height: 1.75;
}

.product-info ul {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem 1.25rem 1.25rem 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 3px solid rgba(224, 64, 232, 0.45);
}

.product-info ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.product-info ul li:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-info {
    position: relative;
    top: 0;
  }

  .chat-widget {
    bottom: max(5.5rem, calc(env(safe-area-inset-bottom) + 4rem));
  }

  body:has(.cookie-banner.active) .chat-widget {
    bottom: max(7rem, calc(env(safe-area-inset-bottom) + 5.5rem));
  }
}

.about-page-main {
  padding-top: calc(var(--header-h) + 1.25rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.about-page-section {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.about-container {
  max-width: 880px;
  margin: 0 auto;
}

.about-page-section .about-section-title.section-title {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.about-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-color);
  opacity: 0.92;
  max-width: 100%;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.about-gallery__item {
  margin: 0;
  background: var(--panel-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}

.about-gallery__photo {
  position: relative;
  line-height: 0;
}

.about-gallery__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.about-gallery__item figcaption {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.about-sections {
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.about-card {
  background: var(--panel-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
}

.about-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--secondary-neon);
  margin-bottom: 0.65rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-card p {
  margin-bottom: 0.75rem;
  line-height: 1.75;
  color: var(--text-color);
  opacity: 0.9;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-card ul {
  margin: 0.35rem 0 0 1.15rem;
  line-height: 1.65;
  opacity: 0.9;
}

.about-card li {
  margin-bottom: 0.35rem;
}

.home-estimate-section .home-estimate-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.home-estimate-section .about-advantages {
  margin-top: 0;
  width: 100%;
}

.about-advantages {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: clamp(1.5rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  max-width: 40rem;
}

.about-advantages__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.about-advantages__tags {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1rem;
  opacity: 0.92;
}

.about-advantages__note {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-advantages__cta {
  width: 100%;
  max-width: 22rem;
  text-align: center;
  box-sizing: border-box;
}

.estimate-overlay .estimate-popup {
  position: relative;
  max-width: 420px;
  text-align: left;
}

.estimate-popup__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  min-width: auto;
  color: var(--text-muted);
}

.estimate-popup__close:hover {
  color: var(--primary-neon);
}

.estimate-popup .estimate-popup__lead {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.estimate-region-line {
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  line-height: 1.45;
}

.estimate-actions {
  margin-bottom: 0.5rem;
}

.estimate-geo-hint {
  font-size: 0.8rem;
  color: var(--secondary-neon);
  min-height: 1.25em;
  margin-bottom: 1rem;
}

.estimate-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.estimate-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.estimate-label input,
.estimate-label select {
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
}

.estimate-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
  color: var(--text-color);
}

.estimate-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.estimate-submit {
  width: 100%;
  margin-bottom: 1rem;
}

.estimate-result {
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}

.estimate-result__range {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-neon);
  margin-bottom: 0.65rem;
}

.estimate-result__note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.estimate-result__note a {
  color: var(--secondary-neon);
}

.about-cta {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.about-cta__btn {
  flex: 0 1 auto;
  min-width: min(100%, 11rem);
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .about-cta__btn {
    width: 100%;
    min-width: 0;
  }
}

.nav-main a[aria-current="page"] {
  color: var(--primary-neon);
  border-bottom-color: rgba(224, 64, 232, 0.45);
}

.checkout-page-main {
  padding-top: calc(var(--header-h) + 1.25rem);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.panel-like {
  background: var(--panel-bg);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
}

.checkout-subheading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--secondary-neon);
  letter-spacing: 0.03em;
}

.checkout-line-items {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.checkout-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem 1rem;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.checkout-line-title {
  font-weight: 500;
}

.checkout-line-meta {
  color: var(--text-muted);
}

.checkout-line-price {
  font-weight: 600;
  text-align: right;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.checkout-empty {
  text-align: center;
  padding: clamp(2rem, 6vw, 4rem) 1rem;
  max-width: 28rem;
  margin: 0 auto;
}

.checkout-empty-text {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.checkout-form.checkout-form {
  max-width: none;
  margin: 0;
  gap: 0.65rem;
}

.checkout-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.checkout-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.checkout-success-msg {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-line {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .checkout-line-price {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 5.5rem;
  }

  .card-product .thumb img {
    height: 220px;
  }
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--panel-bg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 8px;
  border: 1px solid var(--border-neon);
}

.policy-content h2 {
  color: var(--primary-neon);
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}

.policy-content .policy-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.policy-content .policy-meta.policy-meta--intro {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1rem;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.35rem;
}

.policy-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--secondary-neon);
}

.policy-back:hover {
  color: var(--primary-neon);
}

.policy-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.policy-index-list > li {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.policy-index-list > li:hover {
  border-color: var(--border-neon);
}

.policy-index-list a {
  display: block;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.policy-index-list > li:hover a {
  color: var(--primary-neon);
}
