:root {
  --bg: #030616;
  --panel: #2a2a31;
  --panel-2: #33333a;
  --accent: #0f7fc9;
  --accent-2: #f1c84c;
  --text: #f2f3f6;
  --muted: #b4b7c2;
  --glow: rgba(15, 127, 201, 0.35);
  --glow-2: rgba(241, 200, 76, 0.28);
  --glass: rgba(12, 18, 36, 0.72);
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #edf3fb;
  --panel: #ffffff;
  --panel-2: #edf2f9;
  --accent: #1d7fcc;
  --accent-2: #b38317;
  --text: #122033;
  --muted: #5f6d82;
  --glow: rgba(29, 127, 204, 0.2);
  --glow-2: rgba(179, 131, 23, 0.16);
  --glass: rgba(255, 255, 255, 0.72);
  color-scheme: light;
}

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

html,
body {
  font-family: "Manrope", sans-serif;
  background:
    url("./images/IMG_3759.JPG") center center / cover no-repeat fixed,
    #02050f;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

html[data-theme="light"] body {
  background:
    url("./images/IMG_3759.JPG") center center / cover no-repeat fixed,
    #edf3fb;
}

#root,
.page-shell {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
}

.page-shell {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

.page-main {
  flex: 1 0 auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 18, 0.4) 0%, rgba(3, 6, 22, 0.48) 55%, rgba(2, 4, 12, 0.62) 100%),
    radial-gradient(circle at 15% 15%, rgba(15, 127, 201, 0.12), transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(12, 36, 70, 0.22), transparent 40%),
    radial-gradient(circle at 55% 80%, rgba(241, 200, 76, 0.08), transparent 46%);
  filter: brightness(0.72) saturate(0.88);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 3, 10, 0.08), rgba(1, 3, 10, 0.24));
  z-index: 0;
  pointer-events: none;
}

html[data-theme="light"] body::before {
  background:
    linear-gradient(180deg, rgba(244, 247, 252, 0.58) 0%, rgba(238, 243, 249, 0.64) 55%, rgba(228, 236, 246, 0.72) 100%),
    radial-gradient(circle at 15% 15%, rgba(29, 127, 204, 0.1), transparent 42%),
    radial-gradient(circle at 85% 10%, rgba(70, 112, 173, 0.12), transparent 40%),
    radial-gradient(circle at 55% 80%, rgba(179, 131, 23, 0.08), transparent 46%);
  filter: brightness(1.02) saturate(0.9);
}

html[data-theme="light"] body::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(241, 245, 251, 0.22));
}

h1, h2, h3 {
  font-family: "Orbitron", "Anton", sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

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

.hero {
  padding: 36px 7vw 80px;
  background: linear-gradient(135deg, rgba(5, 10, 28, 0.72) 20%, rgba(10, 20, 48, 0.58) 70%, rgba(11, 26, 60, 0.64) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(circle, rgba(15, 127, 201, 0.35), transparent 60%);
  filter: blur(40px);
  opacity: 0.7;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 50%;
  background: radial-gradient(circle, rgba(241, 200, 76, 0.18), transparent 70%);
  filter: blur(60px);
  opacity: 0.7;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 12px 0;
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.logo-image {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35), 0 0 18px var(--glow);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
  min-width: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 127, 201, 0.22);
  background: rgba(7, 14, 30, 0.72);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(241, 200, 76, 0.3);
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.22), 0 0 18px rgba(15, 127, 201, 0.14);
}

.theme-toggle-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(15, 127, 201, 0.14);
  color: var(--accent-2);
  font-size: 0.9rem;
  line-height: 1;
}

.theme-toggle-text {
  font-size: 0.9rem;
  font-weight: 700;
}

html[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(29, 127, 204, 0.16);
  box-shadow: 0 10px 18px rgba(29, 55, 92, 0.08);
}

.admin-link {
  width: auto;
  padding: 10px 18px;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent-2);
}

@media (max-width: 1180px) {
  .nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }
  .nav-links {
    order: 3;
    width: 100%;
    gap: 12px;
    padding: 8px 2px 4px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 127, 201, 0.45) transparent;
  }
  .nav-links::-webkit-scrollbar {
    height: 6px;
  }
  .nav-links::-webkit-scrollbar-thumb {
    background: rgba(15, 127, 201, 0.45);
    border-radius: 999px;
  }
  .nav-links a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(7, 14, 30, 0.72);
    border: 1px solid rgba(15, 127, 201, 0.16);
  }
  .nav .cta {
    width: auto;
    min-width: 150px;
  }
}

.cta {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  width: 200px;
  text-align: center;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(15, 127, 201, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(15, 127, 201, 0.35), 0 0 30px var(--glow);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.hero-grid > * {
  min-width: 0;
}

.hero p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.secondary:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  box-shadow: 0 0 16px var(--glow-2);
}

.hero-card {
  background: var(--glass);
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(15, 127, 201, 0.3);
  display: grid;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), inset 0 0 24px rgba(15, 127, 201, 0.08);
  backdrop-filter: blur(14px);
  animation: float 6s ease-in-out infinite;
}

html[data-theme="light"] .hero {
  background: linear-gradient(135deg, rgba(244, 248, 253, 0.86) 20%, rgba(230, 238, 248, 0.7) 70%, rgba(221, 232, 245, 0.78) 100%);
}

html[data-theme="light"] .hero-card,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .price-card,
html[data-theme="light"] .tour-card,
html[data-theme="light"] .membership-card,
html[data-theme="light"] .form-section,
html[data-theme="light"] .location-card,
html[data-theme="light"] .map-shell,
html[data-theme="light"] .gallery-stat,
html[data-theme="light"] .gallery-page-card,
html[data-theme="light"] .price-table,
html[data-theme="light"] .extra-card,
html[data-theme="light"] .program-card,
html[data-theme="light"] .coach-card,
html[data-theme="light"] .machine-detail-card,
html[data-theme="light"] .admin-card,
 html[data-theme="light"] .stat-card,
 html[data-theme="light"] .update-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(29, 127, 204, 0.16);
  box-shadow: 0 18px 34px rgba(29, 55, 92, 0.1);
  backdrop-filter: blur(14px);
}

html[data-theme="light"] .split,
html[data-theme="light"] .machines,
html[data-theme="light"] .cta-band,
html[data-theme="light"] .media-band,
html[data-theme="light"] .membership-success,
html[data-theme="light"] .footer,
html[data-theme="light"] .machine-detail,
html[data-theme="light"] .gallery-curation,
 html[data-theme="light"] .machine-spotlight,
 html[data-theme="light"] .updates-section {
  background: linear-gradient(145deg, rgba(245, 248, 253, 0.76), rgba(232, 239, 248, 0.84));
  border-color: rgba(29, 127, 204, 0.14);
}

html[data-theme="light"] .price-table th {
  background: rgba(230, 238, 248, 0.94);
}

html[data-theme="light"] .location-pill,
html[data-theme="light"] .membership-success-pill,
html[data-theme="light"] .gallery-chip {
  background: rgba(239, 244, 251, 0.92);
  border-color: rgba(29, 127, 204, 0.12);
}

html[data-theme="light"] .secondary {
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .partner-link,
html[data-theme="light"] .social-icons a {
  background: rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .section .section-header,
html[data-theme="light"] .membership-start .section-header {
  padding: 18px 22px 18px 0;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(244, 248, 253, 0.78) 0%, rgba(244, 248, 253, 0.58) 38%, rgba(244, 248, 253, 0.14) 72%, transparent 100%);
  backdrop-filter: blur(8px);
}

html[data-theme="light"] .section .section-header h2,
html[data-theme="light"] .membership-start .section-header h2 {
  color: #173455;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

html[data-theme="light"] .section .section-header p,
html[data-theme="light"] .membership-start .section-header p,
html[data-theme="light"] .section .lead,
html[data-theme="light"] .membership-start .lead {
  color: #334e6d;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

html[data-theme="light"] .section .eyebrow,
html[data-theme="light"] .membership-start .eyebrow {
  color: #a97814;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

html[data-theme="light"] .price-extra h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(244, 248, 253, 0.82), rgba(234, 241, 250, 0.56));
  color: #173455;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 24px rgba(29, 55, 92, 0.08);
}

html[data-theme="light"] .price-extra h3::before {
  content: "";
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

html[data-theme="light"] .admin-hero .hero-card,
html[data-theme="light"] .admin-editor,
html[data-theme="light"] .admin-list,
html[data-theme="light"] .submission-card,
html[data-theme="light"] .editor-item {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(29, 127, 204, 0.16);
  box-shadow: 0 18px 34px rgba(29, 55, 92, 0.1);
}

html[data-theme="light"] .admin-editor,
html[data-theme="light"] .admin-list,
html[data-theme="light"] .submission-card,
html[data-theme="light"] .editor-item,
html[data-theme="light"] .admin-editor h2,
html[data-theme="light"] .admin-editor h3,
html[data-theme="light"] .admin-list h2,
html[data-theme="light"] .submission-card h3,
html[data-theme="light"] .submission-card p,
html[data-theme="light"] .editor-item label,
html[data-theme="light"] .submission-actions label {
  color: #243d5a;
}

html[data-theme="light"] .submission-type,
html[data-theme="light"] .submission-time,
html[data-theme="light"] .admin-badge {
  color: #5a6f87;
}

html[data-theme="light"] .admin-editor input,
html[data-theme="light"] .admin-editor textarea,
html[data-theme="light"] .admin-editor select,
html[data-theme="light"] .submission-actions select,
html[data-theme="light"] .submission-actions textarea {
  background: rgba(247, 250, 254, 0.96);
  border-color: rgba(29, 127, 204, 0.18);
  color: #18314d;
}

html[data-theme="light"] .admin-editor input::placeholder,
html[data-theme="light"] .admin-editor textarea::placeholder {
  color: #7b8ca0;
}

.section {
  padding: 80px 7vw;
  position: relative;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.8rem;
}

.lead {
  color: var(--muted);
}

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

.feature-card {
  background: var(--glass);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 127, 201, 0.2);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
  background: linear-gradient(180deg, rgba(6, 10, 22, 0.7), rgba(10, 16, 36, 0.62));
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(15, 127, 201, 0.25), rgba(12, 18, 36, 0.8));
  border: 1px solid rgba(15, 127, 201, 0.25);
  border-radius: 24px;
  margin: 0 7vw 80px;
  padding: 32px 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.cta-band > div {
  text-align: center;
  width: 100%;
}

.section-header {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}
.sec{
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.machines {
  background: linear-gradient(180deg, rgba(42, 42, 49, 0.62), rgba(28, 28, 33, 0.72));
  border-top: 1px solid rgba(15, 127, 201, 0.15);
  border-bottom: 1px solid rgba(15, 127, 201, 0.15);
}

.carousel-scene {
  perspective: 1200px;
  display: grid;
  gap: 30px;
  margin-top: 260px;
}

.carousel-ring {
  position: relative;
  width: min(1120px, 94vw);
  height: 260px;
  margin: 0 auto;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  animation: spin 28s linear infinite;
}

.carousel-ring.paused {
  animation-play-state: paused;
}

.machine-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--i) * (360deg / var(--total)))) translateZ(390px) translate(-50%, -50%);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  cursor: pointer;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: none;
  display: grid;
  grid-template-rows: auto 1fr;
}

.machine-card img {
  width: 100%;
  display: block;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.65));
  transform: translateZ(30px);
}

.machine-card .info {
  padding: 0 8px;
  background: transparent;
  border-radius: 0;
  border: none;
  backdrop-filter: none;
  margin-top: 12px;
  min-height: 56px;
  display: grid;
  align-content: start;
  text-align: center;
}

.machine-card .info h3 {
  font-size: 0.86rem;
  line-height: 1.25;
  letter-spacing: 0.7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.machine-card.selected {
  transform: rotateY(calc(var(--i) * (360deg / var(--total)))) translateZ(455px) translate(-50%, -50%) scale(1.08);
  box-shadow: none;
  filter: brightness(1.1);
}

.machine-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 170px;
  width: 70%;
  height: 18px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.7), transparent 70%);
  transform: translateX(-50%);
  filter: blur(8px);
  z-index: 0;
}

.machine-card img,
.machine-card .info {
  position: relative;
  z-index: 1;
}

.machine-details {
  max-width: 900px;
  margin: 0 auto;
  background: var(--glass);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(15, 127, 201, 0.25);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.machine-detail-layout {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 20px;
  align-items: start;
}

.machine-detail-photo {
  background: rgba(10, 20, 44, 0.8);
  border: 1px solid rgba(15, 127, 201, 0.18);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  place-items: center;
}

.machine-detail-photo img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.45));
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.detail-box {
  background: rgba(10, 20, 44, 0.8);
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(15, 127, 201, 0.18);
}

.detail-box strong {
  color: var(--accent-2);
}

.programs {
  background: linear-gradient(180deg, rgba(7, 12, 28, 0.68), rgba(10, 16, 36, 0.62));
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.program-card {
  background: var(--glass);
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(15, 127, 201, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.coaches {
  background: linear-gradient(180deg, rgba(8, 12, 26, 0.68), rgba(12, 18, 40, 0.62));
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.coach-card {
  background: var(--glass);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(15, 127, 201, 0.2);
  display: grid;
  gap: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.coach-photo {
  width: 100%;
  height: 380px;
  margin-left: 0;
  border-radius: 16px;
  object-fit: cover;
  object-position: top;
}


.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  background: rgba(15, 127, 201, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #d9ecff;
}

.pricing {
  background: linear-gradient(135deg, rgba(8, 12, 26, 0.68), rgba(12, 20, 44, 0.62));
}

.location-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(15, 127, 201, 0.16), transparent 36%),
    radial-gradient(circle at 88% 80%, rgba(241, 200, 76, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(5, 10, 24, 0.68), rgba(9, 15, 34, 0.62));
}

.gallery-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(241, 200, 76, 0.08), transparent 30%),
    radial-gradient(circle at 82% 32%, rgba(15, 127, 201, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(7, 12, 28, 0.68), rgba(6, 12, 26, 0.62));
}

.updates-section {
  background:
    radial-gradient(circle at 14% 24%, rgba(15, 127, 201, 0.16), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(241, 200, 76, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(7, 12, 28, 0.7), rgba(9, 14, 32, 0.64));
}

.shop-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(241, 200, 76, 0.12), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(15, 127, 201, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(7, 12, 28, 0.7), rgba(8, 14, 30, 0.66));
}

.shop-hero {
  background:
    radial-gradient(circle at 18% 14%, rgba(241, 200, 76, 0.14), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(15, 127, 201, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(5, 10, 28, 0.7) 20%, rgba(10, 18, 42, 0.6) 70%, rgba(8, 18, 40, 0.66) 100%);
}

.shop-page-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(15, 127, 201, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(5, 10, 24, 0.68), rgba(7, 12, 26, 0.62));
}

.shop-curation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
  max-width: 760px;
}

.shop-curation-copy {
  background: linear-gradient(145deg, rgba(10, 18, 40, 0.74), rgba(6, 12, 26, 0.78));
  border: 1px solid rgba(15, 127, 201, 0.22);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  padding: 24px 26px;
}

.shop-curation-copy p {
  max-width: 56ch;
  color: rgba(242, 243, 246, 0.82);
}

.shop-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.shop-feature,
.shop-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 127, 201, 0.22);
  background: linear-gradient(145deg, rgba(10, 18, 40, 0.78), rgba(6, 12, 26, 0.82));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
}

.shop-feature {
  display: grid;
  grid-template-rows: minmax(320px, 420px) auto;
}

.shop-feature-media,
.shop-card-media {
  position: relative;
}

.shop-feature-image,
.shop-card-image,
.shop-image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-image-fallback {
  min-height: 220px;
  background:
    radial-gradient(circle at 25% 30%, rgba(241, 200, 76, 0.18), transparent 22%),
    radial-gradient(circle at 72% 24%, rgba(15, 127, 201, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(9, 16, 36, 0.96), rgba(15, 28, 56, 0.94));
}

.shop-jar-visual {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 70%, rgba(241, 200, 76, 0.22), transparent 28%),
    radial-gradient(circle at 24% 26%, rgba(15, 127, 201, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(11, 20, 44, 0.96), rgba(6, 12, 26, 0.98));
}

.shop-jar-visual-featured {
  min-height: 100%;
}

.shop-jar-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 127, 201, 0.22), transparent 68%);
  filter: blur(18px);
}

.shop-jar-shell {
  position: relative;
  width: 150px;
  height: 178px;
  z-index: 1;
}

.shop-jar-cap {
  width: 112px;
  height: 24px;
  margin: 0 auto;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, rgba(24, 30, 46, 0.96), rgba(7, 10, 18, 0.98));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
}

.shop-jar-body {
  margin-top: -3px;
  width: 150px;
  height: 154px;
  border-radius: 26px 26px 28px 28px;
  background: linear-gradient(180deg, rgba(18, 24, 42, 0.98), rgba(8, 14, 28, 1));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.34);
  display: grid;
  place-items: center;
}

.shop-jar-label {
  width: 116px;
  height: 94px;
  border-radius: 18px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(24, 39, 72, 0.96), rgba(14, 20, 32, 0.98)),
    linear-gradient(135deg, rgba(241, 200, 76, 0.12), rgba(15, 127, 201, 0.12));
  border: 1px solid rgba(241, 200, 76, 0.16);
  display: grid;
  align-content: space-between;
  justify-items: start;
  box-shadow: inset 0 0 20px rgba(15, 127, 201, 0.08);
}

.shop-jar-brand {
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: rgba(241, 200, 76, 0.72);
}

.shop-jar-name {
  font-family: "Orbitron", "Anton", sans-serif;
  font-size: 0.78rem;
  color: rgba(241, 245, 252, 0.94);
  line-height: 1.2;
}

.shop-jar-mark {
  justify-self: end;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15, 127, 201, 0.28), rgba(241, 200, 76, 0.22));
  color: rgba(241, 245, 252, 0.92);
  font-family: "Orbitron", "Anton", sans-serif;
  font-size: 0.68rem;
}

.shop-feature-image,
.shop-card-image {
  filter: brightness(0.64) saturate(0.94) contrast(1.02);
}

.shop-feature-glow,
.shop-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 6, 22, 0.12), rgba(3, 6, 22, 0.46) 42%, rgba(3, 6, 22, 0.88) 100%);
}

.shop-feature-copy,
.shop-card-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.shop-feature-copy {
  padding: 26px;
}

.shop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-category,
.shop-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.8px;
}

.shop-category {
  background: rgba(10, 20, 44, 0.62);
  border: 1px solid rgba(15, 127, 201, 0.22);
  color: rgba(236, 242, 252, 0.9);
}

.shop-category-float {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
}

.shop-tag {
  background: rgba(241, 200, 76, 0.16);
  border: 1px solid rgba(241, 200, 76, 0.28);
  color: var(--accent-2);
  text-transform: uppercase;
}

.shop-feature-copy p,
.shop-card-copy p,
.shop-note {
  color: rgba(236, 242, 252, 0.82);
}

.shop-feature-footer,
.shop-card-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

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

.shop-card {
  display: grid;
  grid-template-rows: 220px auto;
}

.shop-price {
  font-family: "Orbitron", "Anton", sans-serif;
  color: var(--accent-2);
  font-size: 1rem;
  white-space: nowrap;
}

html[data-theme="light"] .shop-feature,
html[data-theme="light"] .shop-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(29, 127, 204, 0.16);
  box-shadow: 0 18px 34px rgba(29, 55, 92, 0.1);
}

html[data-theme="light"] .shop-curation-copy {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(29, 127, 204, 0.16);
  box-shadow: 0 18px 34px rgba(29, 55, 92, 0.1);
}

html[data-theme="light"] .shop-feature-copy p,
html[data-theme="light"] .shop-card-copy p,
html[data-theme="light"] .shop-note,
html[data-theme="light"] .shop-curation-copy p {
  color: #40556f;
}

html[data-theme="light"] .shop-category {
  background: rgba(247, 250, 254, 0.96);
  border-color: rgba(29, 127, 204, 0.18);
  color: #294565;
}

html[data-theme="light"] .shop-jar-visual {
  background:
    radial-gradient(circle at 50% 70%, rgba(241, 200, 76, 0.16), transparent 28%),
    radial-gradient(circle at 24% 26%, rgba(15, 127, 201, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(239, 244, 251, 0.96), rgba(228, 236, 246, 0.98));
}

.shop-order-band {
  background:
    radial-gradient(circle at 12% 20%, rgba(15, 127, 201, 0.12), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(241, 200, 76, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(6, 12, 28, 0.74), rgba(8, 14, 30, 0.68));
}

.shop-order-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.shop-order-card {
  background: linear-gradient(145deg, rgba(10, 18, 40, 0.82), rgba(6, 12, 26, 0.88));
  border: 1px solid rgba(15, 127, 201, 0.22);
  border-radius: 26px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
  padding: 24px;
}

.shop-order-form {
  display: grid;
  gap: 18px;
}

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

.shop-order-product-list {
  display: grid;
  gap: 12px;
}

.shop-order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 14, 30, 0.76);
  border: 1px solid rgba(15, 127, 201, 0.16);
}

.shop-order-item-selected {
  border-color: rgba(241, 200, 76, 0.3);
  box-shadow: inset 0 0 22px rgba(241, 200, 76, 0.05);
}

.shop-order-item-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-order-item-main > div {
  display: grid;
  gap: 4px;
}

.shop-order-item-main span {
  color: var(--muted);
  font-size: 0.88rem;
}

.shop-order-item input[type="number"],
.shop-order-form textarea,
.shop-order-form input[type="text"],
.shop-order-form input[type="tel"] {
  background: rgba(9, 16, 36, 0.85);
  border: 1px solid rgba(15, 127, 201, 0.26);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 12px;
  outline: none;
  font-family: "Manrope", sans-serif;
}

.shop-order-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.shop-order-success {
  display: grid;
  gap: 14px;
}

.shop-order-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-order-summary span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(241, 200, 76, 0.12);
  border: 1px solid rgba(241, 200, 76, 0.22);
  color: var(--accent-2);
  font-size: 0.82rem;
}

html[data-theme="light"] .shop-order-card {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(29, 127, 204, 0.16);
  box-shadow: 0 18px 34px rgba(29, 55, 92, 0.1);
}

html[data-theme="light"] .shop-order-item {
  background: rgba(247, 250, 254, 0.96);
  border-color: rgba(29, 127, 204, 0.14);
}

html[data-theme="light"] .shop-order-item input[type="number"],
html[data-theme="light"] .shop-order-form textarea,
html[data-theme="light"] .shop-order-form input[type="text"],
html[data-theme="light"] .shop-order-form input[type="tel"] {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(29, 127, 204, 0.18);
  color: #18314d;
}

.updates-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.update-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(15, 127, 201, 0.22);
  background: linear-gradient(145deg, rgba(10, 18, 40, 0.78), rgba(6, 12, 26, 0.82));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
}

.update-card-featured {
  grid-row: span 2;
}

.update-media {
  position: relative;
  min-height: 210px;
}

.update-card-featured .update-media {
  min-height: 100%;
}

.update-image,
.update-image-fallback {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 210px;
  object-fit: cover;
}

.update-image {
  filter: brightness(0.62) saturate(0.92) contrast(1.02);
}

.update-image-fallback {
  background:
    radial-gradient(circle at 24% 30%, rgba(15, 127, 201, 0.28), transparent 24%),
    radial-gradient(circle at 78% 24%, rgba(241, 200, 76, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(8, 14, 30, 0.96), rgba(14, 26, 54, 0.92));
}

.update-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 6, 22, 0.08), rgba(3, 6, 22, 0.45) 42%, rgba(3, 6, 22, 0.88) 100%);
}

.update-badges {
  position: absolute;
  inset: 16px 16px auto 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 1;
}

.update-tag,
.update-date,
.update-status {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.8px;
}

.update-tag {
  background: rgba(241, 200, 76, 0.16);
  border: 1px solid rgba(241, 200, 76, 0.28);
  color: var(--accent-2);
  text-transform: uppercase;
}

.update-date,
.update-status {
  background: rgba(10, 20, 44, 0.62);
  border: 1px solid rgba(15, 127, 201, 0.2);
  color: rgba(236, 242, 252, 0.86);
}

.update-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.update-copy h3 {
  font-size: 1.05rem;
}

.update-copy p {
  color: rgba(236, 242, 252, 0.82);
}

.update-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

html[data-theme="light"] .update-copy p {
  color: #40556f;
}

html[data-theme="light"] .update-date,
html[data-theme="light"] .update-status {
  background: rgba(255, 255, 255, 0.8);
  color: #294565;
  border-color: rgba(29, 127, 204, 0.14);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: start;
}

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

.gallery-card,
.gallery-feature {
  background: var(--glass);
  border: 1px solid rgba(15, 127, 201, 0.22);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.gallery-card {
  position: relative;
  min-height: 280px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  filter: brightness(0.68) saturate(0.9) contrast(1.02);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, rgba(3, 6, 22, 0.08), rgba(3, 6, 22, 0.86) 38%, rgba(3, 6, 22, 0.97) 100%);
}

.gallery-overlay p {
  color: rgba(242, 243, 246, 0.8);
}

.gallery-feature {
  padding: 26px;
  display: grid;
  gap: 18px;
  position: sticky;
  top: 86px;
}

.gallery-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-links .cta,
.gallery-links .secondary {
  width: auto;
}

.gallery-note {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(8, 14, 30, 0.72);
  border: 1px solid rgba(241, 200, 76, 0.18);
}

.gallery-note strong {
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gallery-hero {
  background:
    radial-gradient(circle at 20% 15%, rgba(15, 127, 201, 0.24), transparent 36%),
    radial-gradient(circle at 80% 25%, rgba(241, 200, 76, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(5, 10, 28, 0.68) 20%, rgba(10, 18, 42, 0.58) 70%, rgba(8, 18, 40, 0.64) 100%);
}

.gallery-atmosphere {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.gallery-atmosphere span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(8, 14, 30, 0.62);
  border: 1px solid rgba(15, 127, 201, 0.2);
  color: rgba(242, 243, 246, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: lowercase;
  box-shadow: inset 0 0 14px rgba(15, 127, 201, 0.05);
}

.gallery-page-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(15, 127, 201, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(5, 10, 24, 0.68), rgba(7, 12, 26, 0.62));
}

.gallery-curation {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 20px;
  margin-bottom: 28px;
}

.gallery-curation-copy,
.gallery-stat {
  background: linear-gradient(145deg, rgba(10, 18, 40, 0.74), rgba(6, 12, 26, 0.78));
  border: 1px solid rgba(15, 127, 201, 0.22);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.gallery-curation-copy {
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
}

.gallery-curation-copy::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(15, 127, 201, 0.2), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.gallery-curation-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(241, 200, 76, 0.12);
  border: 1px solid rgba(241, 200, 76, 0.22);
  color: var(--accent-2);
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.gallery-curation-copy h3 {
  margin-bottom: 10px;
}

.gallery-curation-copy p {
  max-width: 56ch;
  color: rgba(242, 243, 246, 0.82);
}

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

.gallery-stat {
  padding: 20px 16px;
  display: grid;
  gap: 8px;
  align-content: center;
  text-align: center;
}

.gallery-stat strong {
  font-family: "Orbitron", "Anton", sans-serif;
  font-size: 1.5rem;
  color: var(--accent-2);
}

.gallery-stat span {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.gallery-page-card {
  grid-column: span 4;
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--glass);
  border: 1px solid rgba(15, 127, 201, 0.2);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  isolation: isolate;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.gallery-page-card-wide {
  grid-column: span 8;
}

.gallery-page-card-feature {
  grid-column: span 8;
  min-height: 420px;
}

.gallery-page-card-tall {
  min-height: 420px;
}

.gallery-page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 200, 76, 0.28);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42), 0 0 24px rgba(15, 127, 201, 0.12);
}

.gallery-page-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%, rgba(3, 6, 22, 0.08) 100%);
  pointer-events: none;
  z-index: 1;
}

.gallery-page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 24%, transparent 74%, rgba(241, 200, 76, 0.08));
  pointer-events: none;
  z-index: 1;
}

.gallery-page-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(0.44) saturate(0.82) contrast(1.06);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.gallery-page-card:hover .gallery-page-image {
  filter: brightness(0.5) saturate(0.86) contrast(1.06);
  transform: scale(1.025);
}

.gallery-page-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(180deg, rgba(3, 6, 22, 0.32), rgba(3, 6, 22, 0.9) 34%, rgba(3, 6, 22, 0.99) 100%);
  z-index: 2;
}

.gallery-page-overlay h3 {
  margin-bottom: 8px;
}

.gallery-chip {
  display: inline-flex;
  padding: 5px 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(241, 200, 76, 0.14);
  border: 1px solid rgba(241, 200, 76, 0.2);
  color: var(--accent-2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-page-overlay p {
  color: rgba(242, 243, 246, 0.82);
}

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 127, 201, 0.14), rgba(7, 12, 26, 0.62));
  border-top: 1px solid rgba(15, 127, 201, 0.2);
  border-bottom: 1px solid rgba(15, 127, 201, 0.2);
}

.media-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.media-band-actions .cta,
.media-band-actions .secondary {
  width: auto;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: stretch;
}

.location-card,
.map-shell {
  background: var(--glass);
  border: 1px solid rgba(15, 127, 201, 0.24);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.location-card {
  padding: 26px;
  display: grid;
  gap: 22px;
}

.location-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(241, 200, 76, 0.12);
  border: 1px solid rgba(241, 200, 76, 0.24);
  color: var(--accent-2);
  font-size: 0.78rem;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.location-copy h3 {
  margin-bottom: 8px;
}

.location-copy p {
  color: var(--muted);
}

.location-meta {
  display: grid;
  gap: 12px;
}

.location-pill {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(8, 14, 30, 0.76);
  border: 1px solid rgba(15, 127, 201, 0.16);
}

.location-pill strong {
  color: var(--accent-2);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.location-pill span {
  color: var(--text);
}

.map-shell {
  padding: 12px;
  position: relative;
  overflow: hidden;
}

.map-shell::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.location-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 18px;
  filter: saturate(0.9) contrast(1.02);
}

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

.price-card {
  background: var(--glass);
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(15, 127, 201, 0.2);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.price {
  font-size: 1.6rem;
  font-family: "Orbitron", "Anton", sans-serif;
  color: var(--accent-2);
}

.footer {
  padding: 25px 4vw;
  background: linear-gradient(180deg, rgba(6, 10, 24, 0.72), rgba(4, 8, 18, 0.78));
  border-top: 1px solid rgba(15, 127, 201, 0.25);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 16px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.footer-brand h3 {
  font-size: 1.1rem;
}

.footer-block {
  display: grid;
  gap: 4px;
}

.footer h4 {
  font-family: "Orbitron", "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--accent-2);
  margin-bottom: 6px;
}

.footer a {
  color: var(--muted);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-year-link {
  color: inherit;
}

.footer a:hover,
.footer a:focus {
  color: var(--accent-2);
  text-shadow: 0 0 12px rgba(241, 200, 76, 0.35);
}

.footer-social {
  gap: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(15, 127, 201, 0.25);
  background: rgba(10, 20, 44, 0.8);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-icons a:hover,
.social-icons a:focus {
  transform: translateY(-2px);
  border-color: var(--accent-2);
  box-shadow: 0 0 14px var(--glow-2);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-2);
}

.footer-partner {
  align-content: start;
}

.footer-partner .footer-partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.footer-partner .partner {
  text-align: left;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  min-width: 0;
  padding: 10px;
  border-radius: 16px;
  background: rgba(8, 14, 30, 0.48);
  border: 1px solid rgba(15, 127, 201, 0.14);
}

.partner-logo {
  width: 52px;
  height: auto;
  display: block;
  margin-left: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.partner-link {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 127, 201, 0.24);
  background: rgba(10, 20, 44, 0.62);
  color: var(--text);
  font-size: 0.72rem;
  line-height: 1.2;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.partner-link:hover,
.partner-link:focus {
  color: var(--accent-2);
  border-color: rgba(241, 200, 76, 0.35);
  box-shadow: 0 0 16px rgba(241, 200, 76, 0.16);
  transform: translateY(-1px);
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 8px;
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}

@keyframes spin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .updates-grid {
    grid-template-columns: 1fr;
  }
  .shop-grid,
  .shop-card-grid {
    grid-template-columns: 1fr;
  }
  .shop-order-shell {
    grid-template-columns: 1fr;
  }
  .update-card-featured {
    grid-row: auto;
  }
  .nav {
    align-items: center;
  }
  .nav-links {
    display: flex;
    gap: 10px;
    padding-bottom: 2px;
  }
  .nav .cta {
    min-width: 132px;
    padding-inline: 18px;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .gallery-grid,
  .media-band,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .gallery-curation {
    grid-template-columns: 1fr;
  }
  .shop-curation {
    grid-template-columns: 1fr;
  }
  .gallery-stats {
    grid-template-columns: 1fr;
  }
  .footer-partner {
    grid-column: auto;
  }
  .footer-partner .footer-partner-grid {
    grid-template-columns: 1fr;
  }
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }
  .gallery-feature {
    position: static;
  }
  .gallery-page-card,
  .gallery-page-card-wide {
    grid-column: auto;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .carousel-ring {
    height: 320px;
  }
  .machine-card {
    width: 190px;
    transform: rotateY(calc(var(--i) * (360deg / var(--total)))) translateZ(245px) translate(-50%, -50%);
  }
  .machine-card.selected {
    transform: rotateY(calc(var(--i) * (360deg / var(--total)))) translateZ(280px) translate(-50%, -50%) scale(1.06);
  }
  .machine-detail-layout {
    grid-template-columns: 1fr;
  }
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .location-map {
    min-height: 320px;
  }
  .membership-success {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
  .membership-success-copy {
    text-align: center;
    justify-items: center;
  }
  .membership-success-meta {
    grid-template-columns: 1fr;
  }
  .membership-success-actions {
    justify-content: center;
  }
  .nfc-preview-shell {
    min-height: 380px;
  }
  .nfc-card-rotator {
    width: min(100%, 320px);
    height: 206px;
  }
  .nfc-front-title {
    font-size: 1.75rem;
  }
  .nfc-front-mark {
    gap: 12px;
    padding-right: 10px;
  }
  .nfc-front-emblem {
    width: 62px;
    height: 62px;
  }
  .nfc-front-divider {
    height: 88px;
  }
  .nfc-front-mini {
    font-size: 0.62rem;
  }
  .nfc-front-sub {
    font-size: 0.52rem;
    letter-spacing: 2px;
  }
  .nfc-back-type {
    font-size: 0.8rem;
  }
  .nfc-back-type-local {
    font-size: 0.66rem;
  }
  .nfc-name-strip {
    min-height: 48px;
    padding: 8px 18px;
  }
  .nfc-name-strip-text {
    font-size: 0.76rem;
  }
}

.tour-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid rgba(15, 127, 201, 0.25);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.tour-form {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-field input {
  background: rgba(10, 20, 44, 0.8);
  border: 1px solid rgba(15, 127, 201, 0.25);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 12px;
  outline: none;
}

.form-field input:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 2px rgba(241, 200, 76, 0.2);
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.tour-confirm {
  text-align: center;
  display: grid;
  gap: 12px;
}

.membership-success {
  max-width: 1080px;
  margin: 0 auto;
  padding: 38px;
  border-radius: 28px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(8, 14, 32, 0.92), rgba(5, 10, 24, 0.94)),
    radial-gradient(circle at top right, rgba(15, 127, 201, 0.18), transparent 42%);
  border: 1px solid rgba(15, 127, 201, 0.22);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.44), inset 0 0 30px rgba(15, 127, 201, 0.06);
  overflow: hidden;
  position: relative;
}

.membership-success::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(15, 127, 201, 0.22), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.membership-success::after {
  content: "";
  position: absolute;
  inset: auto -8% -24% auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(241, 200, 76, 0.14), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.membership-success-copy,
.nfc-preview-shell {
  position: relative;
  z-index: 1;
}

.membership-success-copy {
  display: grid;
  gap: 18px;
}

.membership-success-copy h2 {
  max-width: 14ch;
}

.membership-success-copy p {
  max-width: 54ch;
  color: rgba(242, 243, 246, 0.82);
}

.membership-success-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.membership-success-pill {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 14, 30, 0.74);
  border: 1px solid rgba(15, 127, 201, 0.14);
}

.membership-success-pill strong {
  color: var(--accent-2);
  font-size: 0.74rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.membership-success-pill span {
  color: var(--text);
  font-size: 0.98rem;
}

.membership-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.membership-success-actions .cta,
.membership-success-actions .secondary {
  width: auto;
  min-width: 180px;
}

.nfc-preview-shell {
  min-height: 430px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.nfc-orbit-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(15, 127, 201, 0.22), transparent 56%),
    radial-gradient(circle at 65% 35%, rgba(241, 200, 76, 0.18), transparent 34%);
  filter: blur(12px);
  animation: pulseGlow 5.6s ease-in-out infinite;
}

.nfc-card-rotator {
  width: 360px;
  height: 228px;
  transform-style: preserve-3d;
  animation: cardRotate 12s ease-in-out infinite;
  position: relative;
}

.nfc-card-face {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 22px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(5, 8, 18, 0.99), rgba(9, 12, 24, 0.99));
  border: 1px solid rgba(116, 137, 207, 0.18);
  box-shadow:
    0 26px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 24px rgba(15, 127, 201, 0.06);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  position: absolute;
  inset: 0;
}

.nfc-card-face::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.035), transparent 24%),
    radial-gradient(circle at 30% 20%, rgba(16, 55, 137, 0.12), transparent 26%),
    radial-gradient(circle at 70% 74%, rgba(241, 200, 76, 0.08), transparent 22%);
  pointer-events: none;
}

.nfc-card-face::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.nfc-card-front {
  display: grid;
  place-items: center;
}

.nfc-card-back {
  transform: rotateY(180deg);
}

.nfc-front-mark,
.nfc-back-copy,
.nfc-card-cross {
  position: relative;
  z-index: 1;
}

.nfc-card-cross {
  position: absolute;
  width: 96px;
  height: 96px;
  opacity: 0.92;
}

.nfc-card-cross::before,
.nfc-card-cross::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(241, 200, 76, 0.8), rgba(90, 63, 10, 0.32));
  box-shadow: 0 0 10px rgba(241, 200, 76, 0.12);
}

.nfc-card-cross::before {
  width: 1px;
  height: 84px;
  left: 48px;
  top: 6px;
}

.nfc-card-cross::after {
  width: 84px;
  height: 1px;
  left: 6px;
  top: 48px;
}

.nfc-cross-top-left {
  top: 10px;
  left: 10px;
}

.nfc-cross-top-right {
  top: 8px;
  right: 10px;
}

.nfc-cross-bottom-left {
  bottom: 10px;
  left: 10px;
}

.nfc-cross-bottom-right {
  bottom: 8px;
  right: 10px;
}

.nfc-cross-top-right::before,
.nfc-cross-bottom-left::before,
.nfc-card-back .nfc-cross-top-left::before,
.nfc-card-back .nfc-cross-bottom-right::before {
  background: linear-gradient(180deg, rgba(88, 141, 255, 0.8), rgba(24, 54, 118, 0.28));
  box-shadow: 0 0 10px rgba(88, 141, 255, 0.14);
}

.nfc-cross-top-right::after,
.nfc-cross-bottom-left::after,
.nfc-card-back .nfc-cross-top-left::after,
.nfc-card-back .nfc-cross-bottom-right::after {
  background: linear-gradient(90deg, rgba(88, 141, 255, 0.8), rgba(24, 54, 118, 0.28));
  box-shadow: 0 0 10px rgba(88, 141, 255, 0.14);
}

.nfc-front-mark {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: center;
  justify-items: start;
  text-align: left;
  width: 100%;
  padding: 0 22px 0 12px;
}

.nfc-front-mini,
.nfc-front-sub,
.nfc-back-brand,
.nfc-back-type,
.nfc-back-type-local,
.nfc-back-phone {
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.nfc-front-mini {
  color: rgba(82, 102, 179, 0.82);
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0.8px;
}

.nfc-front-title {
  font-family: "Orbitron", "Anton", sans-serif;
  font-size: 2.15rem;
  line-height: 1;
  color: rgba(227, 183, 64, 0.96);
  text-shadow: 0 0 18px rgba(241, 200, 76, 0.08);
}

.nfc-front-sub {
  color: rgba(227, 183, 64, 0.84);
  font-size: 0.6rem;
  letter-spacing: 3px;
}

.nfc-front-emblem {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
}

.nfc-front-emblem-mark {
  position: relative;
  width: 50px;
  height: 50px;
}

.nfc-front-emblem-mark::before,
.nfc-front-emblem-mark::after {
  content: "";
  position: absolute;
}

.nfc-front-emblem-mark::before {
  inset: 10px 16px 0 16px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(72, 112, 238, 0.9), rgba(23, 46, 118, 0.5));
  box-shadow: 0 0 18px rgba(72, 112, 238, 0.18);
}

.nfc-front-emblem-mark::after {
  left: 8px;
  right: 8px;
  bottom: 4px;
  height: 22px;
  border-radius: 30px 30px 8px 8px;
  background: linear-gradient(180deg, rgba(72, 112, 238, 0.86), rgba(23, 46, 118, 0.32));
  clip-path: polygon(0 100%, 16% 50%, 38% 30%, 52% 0, 62% 22%, 100% 100%);
}

.nfc-front-divider {
  width: 3px;
  height: 112px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(227, 183, 64, 0.96), rgba(126, 82, 9, 0.42));
  box-shadow: 0 0 16px rgba(227, 183, 64, 0.12);
}

.nfc-front-copy {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.nfc-back-copy {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 12px 22px 16px;
}

.nfc-back-header {
  display: grid;
  align-content: start;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.nfc-back-brand {
  font-family: "Orbitron", "Anton", sans-serif;
  font-size: 1.1rem;
  color: rgba(227, 183, 64, 0.96);
}

.nfc-back-type {
  font-size: 0.92rem;
  color: rgba(227, 183, 64, 0.84);
}

.nfc-back-type-local {
  font-size: 0.74rem;
  color: rgba(227, 183, 64, 0.72);
}

.nfc-name-strip {
  align-self: center;
  width: 100%;
  max-width: 100%;
  justify-self: center;
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(247, 248, 252, 0.98), rgba(226, 231, 237, 0.96));
  display: grid;
  place-items: center;
  padding: 10px 26px;
  box-shadow: inset 0 0 0 1px rgba(22, 24, 28, 0.08), 0 10px 22px rgba(0, 0, 0, 0.2);
}

.nfc-name-strip-text {
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  line-height: 1.1;
  letter-spacing: 0.8px;
  color: #11141b;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nfc-back-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nfc-back-phone {
  color: rgba(227, 183, 64, 0.76);
  font-size: 0.62rem;
}

.nfc-card-state {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(241, 200, 76, 0.12);
  border: 1px solid rgba(241, 200, 76, 0.22);
  color: var(--accent-2);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes cardRotate {
  0% {
    transform: rotateY(-22deg) rotateX(8deg);
  }
  22% {
    transform: rotateY(0deg) rotateX(6deg);
  }
  48% {
    transform: rotateY(180deg) rotateX(4deg);
  }
  74% {
    transform: rotateY(180deg) rotateX(4deg);
  }
  100% {
    transform: rotateY(338deg) rotateX(8deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.68;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}


.form-error {
  color: #ffb3b3;
  font-size: 0.85rem;
}

.form-success {
  color: #9be7c4;
  font-size: 0.85rem;
}

.tour-form .cta[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.membership-card {
  max-width: 980px;
  margin: 0 auto;
  margin-bottom: 44px;
  background: linear-gradient(160deg, rgba(10, 18, 40, 0.85), rgba(6, 12, 28, 0.95));
  border: 1px solid rgba(15, 127, 201, 0.35);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), inset 0 0 30px rgba(15, 127, 201, 0.08);
  position: relative;
  overflow: hidden;
}

.membership-start {
  position: relative;
  padding: 90px 7vw 150px;
}

.membership-start::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 50%;
  background: radial-gradient(circle, rgba(15, 127, 201, 0.28), transparent 70%);
  filter: blur(50px);
  opacity: 0.7;
  pointer-events: none;
}

.membership-start::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 50%;
  background: radial-gradient(circle, rgba(241, 200, 76, 0.2), transparent 75%);
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}

.membership-start .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
}

.membership-start .section-header h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.membership-intro {
  text-align: center;
  align-items: center;
  gap: 18px;
  background: linear-gradient(145deg, rgba(10, 18, 40, 0.9), rgba(6, 12, 28, 0.95));
  border: 1px solid rgba(15, 127, 201, 0.4);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45), inset 0 0 34px rgba(15, 127, 201, 0.1);
}

.membership-intro .form-note {
  font-size: 1rem;
}

.membership-intro .cta {
  width: auto;
  min-width: 240px;
  font-size: 1rem;
  padding: 12px 26px;
  box-shadow: 0 16px 26px rgba(15, 127, 201, 0.35), 0 0 28px rgba(15, 127, 201, 0.25);
}

.membership-card::before {
  content: "";
  position: absolute;
  inset: -40% 40% auto -40%;
  height: 60%;
  background: radial-gradient(circle, rgba(15, 127, 201, 0.3), transparent 65%);
  filter: blur(40px);
  opacity: 0.7;
  pointer-events: none;
}

.membership-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -50% 30%;
  height: 55%;
  background: radial-gradient(circle, rgba(241, 200, 76, 0.18), transparent 70%);
  filter: blur(50px);
  opacity: 0.6;
  pointer-events: none;
}

.membership-form {
  display: grid;
  gap: 26px;
  position: relative;
  z-index: 1;
}

.form-section {
  background: linear-gradient(145deg, rgba(10, 18, 40, 0.82), rgba(6, 12, 26, 0.9));
  border: 1px solid rgba(15, 127, 201, 0.22);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 18px;
  box-shadow: inset 0 0 18px rgba(15, 127, 201, 0.08);
}

.form-section h3 {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-section h3::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(241, 200, 76, 0.35);
}

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

.form-inline {
  display: grid;
  gap: 10px;
}

.form-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.radio-group,
.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.radio-group label,
.check-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.membership-form select,
.membership-form input[type="text"],
.membership-form input[type="email"],
.membership-form input[type="tel"],
.membership-form input[type="date"] {
  background: rgba(9, 16, 36, 0.85);
  border: 1px solid rgba(15, 127, 201, 0.3);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.membership-form select:focus,
.membership-form input[type="text"]:focus,
.membership-form input[type="email"]:focus,
.membership-form input[type="tel"]:focus,
.membership-form input[type="date"]:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 2px rgba(241, 200, 76, 0.25), 0 0 20px rgba(241, 200, 76, 0.2);
  transform: translateY(-1px);
}

.membership-form input[type="file"] {
  background: rgba(9, 16, 36, 0.85);
  border: 1px dashed rgba(15, 127, 201, 0.45);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
}

.file-name {
  display: inline-block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.payment-box {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 127, 201, 0.2);
  background: rgba(6, 12, 26, 0.8);
}

.price-preview {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(241, 200, 76, 0.3);
  background: rgba(18, 18, 28, 0.7);
  display: grid;
  gap: 6px;
}

.price-preview strong {
  display: block;
  font-size: 1.4rem;
  color: var(--accent-2);
  font-family: "Orbitron", "Anton", sans-serif;
}

.price-preview-discount {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.92rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--glass);
  border: 1px solid rgba(15, 127, 201, 0.2);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.stat-card p {
  font-size: 1.6rem;
  font-family: "Orbitron", "Anton", sans-serif;
  color: var(--accent-2);
}

.admin-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid rgba(15, 127, 201, 0.25);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.admin-password-card {
  max-width: 720px;
}

.admin-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.admin-link-button {
  width: auto;
}

.admin-forgot {
  margin-top: 16px;
}

.admin-dashboard {
  display: grid;
  gap: 28px;
}

.admin-list {
  display: grid;
  gap: 16px;
}

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

.submission-card {
  background: rgba(8, 14, 30, 0.7);
  border: 1px solid rgba(15, 127, 201, 0.18);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.submission-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(15, 127, 201, 0.18), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.submission-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.submission-actions label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.submission-actions select,
.submission-actions textarea {
  background: rgba(10, 20, 44, 0.8);
  border: 1px solid rgba(15, 127, 201, 0.25);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 10px;
}

.admin-editor {
  display: grid;
  gap: 14px;
  background: var(--glass);
  border: 1px solid rgba(15, 127, 201, 0.25);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.editor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.editor-block {
  display: grid;
  gap: 8px;
}

.editor-list {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.editor-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.editor-item {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(8, 14, 30, 0.7);
  border: 1px solid rgba(15, 127, 201, 0.18);
  box-shadow: inset 0 0 18px rgba(15, 127, 201, 0.08);
}

.editor-item label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.inline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.price-table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(15, 127, 201, 0.2);
  border-radius: 18px;
  background: rgba(8, 14, 30, 0.7);
  box-shadow: inset 0 0 20px rgba(15, 127, 201, 0.12);
  -webkit-overflow-scrolling: touch;
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.price-table th,
.price-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15, 127, 201, 0.15);
  text-align: center;
  font-size: 0.9rem;
}

.price-table th {
  background: rgba(10, 20, 44, 0.9);
  color: var(--accent-2);
  font-weight: 600;
}

.price-extra {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.extra-card {
  background: rgba(8, 14, 30, 0.7);
  border: 1px solid rgba(15, 127, 201, 0.18);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 6px;
}

.admin-editor input,
.admin-editor textarea,
.admin-editor select {
  background: rgba(10, 20, 44, 0.8);
  border: 1px solid rgba(15, 127, 201, 0.25);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
}

.admin-editor input[type="file"] {
  padding: 8px;
  border-style: dashed;
}

.admin-actions {
  display: flex;
  justify-content: flex-end;
}

.admin-editor h2,
.admin-editor h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-actions {
  position: sticky;
  bottom: 12px;
  padding-top: 6px;
}

.admin-actions .cta {
  width: auto;
  min-width: 180px;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(241, 200, 76, 0.45);
  background: radial-gradient(circle at 30% 30%, rgba(241, 200, 76, 0.35), transparent 60%),
              linear-gradient(145deg, rgba(10, 18, 40, 0.95), rgba(5, 10, 26, 0.95));
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  line-height: 1;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35), 0 0 18px rgba(241, 200, 76, 0.25);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35), 0 0 18px var(--glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.scroll-top::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  border: 1px solid rgba(15, 127, 201, 0.25);
  opacity: 0.9;
  pointer-events: none;
}

.scroll-top:hover {
  transform: translateY(-2px);
  border-color: var(--accent-2);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.4), 0 0 26px rgba(241, 200, 76, 0.35);
}

.submission-type {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-2);
}

.submission-time {
  color: var(--muted);
  font-size: 0.85rem;
}

.admin-badge {
  width: auto;
}

/* Global simplification */
:root {
  --bg: #f5f7fb;
  --panel: #ffffff;
  --panel-2: #eef2f7;
  --accent: #1f6fd6;
  --accent-2: #1f6fd6;
  --text: #172334;
  --muted: #5f6f85;
  --glass: #ffffff;
}

html[data-theme="dark"] {
  --bg: #10151d;
  --panel: #171d27;
  --panel-2: #202734;
  --accent: #4f8df0;
  --accent-2: #4f8df0;
  --text: #eef3fb;
  --muted: #aeb8c8;
  --glass: #171d27;
}

body {
  background: var(--bg) !important;
  color: var(--text);
}

body::before,
body::after {
  display: none !important;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
  font-weight: 700;
}

.hero,
.split,
.machines,
.programs,
.coaches,
.pricing,
.location-section,
.gallery-section,
.gallery-page-section,
.updates-section,
.shop-section,
.shop-page-section,
.shop-order-band,
.media-band,
.cta-band,
.membership-start,
.membership-success,
.machine-detail,
.footer,
.admin-hero {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.section,
.hero {
  padding-top: 56px;
  padding-bottom: 56px;
}

.nav {
  background: var(--panel);
  border: 1px solid rgba(31, 111, 214, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: none;
}

.logo,
.nav-links a,
.footer a,
.footer p,
.footer h3,
.footer h4,
.section-header p,
.lead,
.form-note,
.gallery-note,
.shop-note,
.shop-card-copy p,
.shop-feature-copy p,
.update-copy p,
.location-copy p,
.location-pill span,
.program-card p,
.coach-card p,
.feature-card p,
.hero p {
  color: var(--muted);
  text-shadow: none !important;
}

.eyebrow,
.section-header h2,
.section-header p,
.price-extra h3 {
  background: transparent !important;
  text-shadow: none !important;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 1px;
  font-weight: 700;
}

.section-header {
  margin-bottom: 24px;
  padding: 0 !important;
}

.section-header h2,
.price-extra h3 {
  color: var(--text) !important;
}

.section-header h2::after,
.price-extra h3::before {
  display: none;
}

.hero-card,
.feature-card,
.price-card,
.tour-card,
.membership-card,
.form-section,
.location-card,
.map-shell,
.gallery-stat,
.gallery-page-card,
.extra-card,
.program-card,
.coach-card,
.machine-detail-card,
.admin-card,
.stat-card,
.update-card,
.shop-feature,
.shop-card,
.shop-curation-copy,
.shop-order-card,
.submission-card,
.editor-item,
.machine-details,
.payment-box,
.price-table,
.admin-editor {
  background: var(--panel) !important;
  border: 1px solid rgba(31, 111, 214, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06) !important;
  backdrop-filter: none !important;
}

.shop-feature-glow,
.shop-card-overlay,
.update-media-overlay,
.gallery-page-card::before,
.gallery-page-card::after,
.membership-card::before,
.membership-card::after,
.membership-start::before,
.membership-start::after {
  display: none !important;
}

.gallery-image,
.gallery-page-image,
.update-image,
.shop-feature-image,
.shop-card-image {
  filter: none !important;
}

.gallery-overlay,
.gallery-page-overlay,
.update-copy {
  background: transparent !important;
}

.cta,
.secondary,
.theme-toggle,
.partner-link {
  border-radius: 10px;
  box-shadow: none !important;
  transform: none !important;
}

.cta {
  background: var(--accent);
  color: #fff !important;
  border: 1px solid var(--accent);
}

.secondary,
.theme-toggle,
.partner-link,
.social-icons a {
  background: var(--panel);
  color: var(--text) !important;
  border: 1px solid rgba(31, 111, 214, 0.14);
}

.price,
.shop-price,
.gallery-stat strong,
.stat-card p,
.submission-type {
  color: var(--accent);
}

.footer {
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.footer-bottom {
  grid-column: 1 / -1;
}

.footer-partner {
  grid-column: auto;
}

.footer-partner .footer-partner-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.footer-partner .partner,
.shop-jar-visual,
.shop-image-fallback,
.shop-order-item,
.location-pill {
  background: var(--panel-2);
  border: 1px solid rgba(31, 111, 214, 0.1);
}

.membership-form select,
.membership-form input[type="text"],
.membership-form input[type="email"],
.membership-form input[type="tel"],
.membership-form input[type="date"],
.shop-order-item input[type="number"],
.shop-order-form textarea,
.shop-order-form input[type="text"],
.shop-order-form input[type="tel"],
.admin-editor input,
.admin-editor textarea,
.admin-editor select,
.submission-actions select,
.submission-actions textarea {
  background: var(--panel);
  color: var(--text);
  border: 1px solid rgba(31, 111, 214, 0.14);
  box-shadow: none;
}

/* Footer polish */
.footer {
  margin: 28px 20px 0;
  padding: 26px 24px 18px;
  background: linear-gradient(180deg, rgba(12, 18, 32, 0.92), rgba(8, 13, 24, 0.96));
  border: 1px solid rgba(31, 111, 214, 0.14);
  border-radius: 24px 24px 0 0;
  box-shadow:
    0 -14px 32px rgba(2, 6, 14, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  grid-template-columns: 1.35fr 0.95fr 0.95fr 0.9fr 1.2fr;
  gap: 20px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 10px 10px 0;
  border: 1px solid rgba(31, 111, 214, 0.1);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 200, 76, 0.35), transparent);
  pointer-events: none;
}

.footer-brand,
.footer-block {
  gap: 8px;
}

.footer-brand h3 {
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.footer h4 {
  margin-bottom: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.footer p,
.footer a {
  font-size: 0.94rem;
  line-height: 1.55;
}

.footer-social .social-icons {
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(31, 111, 214, 0.14);
}

.footer-partner {
  min-width: 0;
}

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

.footer-partner .partner {
  min-width: 0;
  padding: 12px;
  gap: 7px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(31, 111, 214, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.partner-logo {
  width: 56px;
}

.footer-partner .partner p {
  font-size: 0.9rem;
  line-height: 1.35;
}

.partner-link {
  max-width: 100%;
  justify-content: center;
  text-align: center;
  padding: 6px 10px;
  font-size: 0.72rem;
  border-radius: 999px;
  white-space: normal;
}

.footer-bottom {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  gap: 8px 18px;
}

html[data-theme="light"] .footer {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(31, 111, 214, 0.12);
  box-shadow: 0 -10px 24px rgba(120, 144, 173, 0.1);
}

html[data-theme="light"] .footer::before {
  border-color: rgba(31, 111, 214, 0.08);
}

html[data-theme="light"] .footer::after {
  background: linear-gradient(90deg, transparent, rgba(31, 111, 214, 0.18), transparent);
}

html[data-theme="light"] .footer h3,
html[data-theme="light"] .footer h4,
html[data-theme="light"] .footer p,
html[data-theme="light"] .footer a,
html[data-theme="light"] .footer .footer-year-link {
  color: #213247;
}

html[data-theme="light"] .footer h4 {
  color: #35506f;
}

html[data-theme="light"] .footer a:hover,
html[data-theme="light"] .footer a:focus {
  color: #0f6fd6;
  text-shadow: none;
}

html[data-theme="light"] .social-icons a,
html[data-theme="light"] .footer-partner .partner {
  background: #f8fbff;
  border-color: rgba(31, 111, 214, 0.1);
}

html[data-theme="light"] .footer-bottom {
  border-top-color: rgba(31, 111, 214, 0.12);
}

html[data-theme="light"] .partner-link {
  background: #ffffff;
  color: #35506f;
  border-color: rgba(31, 111, 214, 0.12);
}

html[data-theme="light"] .social-icons svg {
  fill: #35506f;
}

@media (max-width: 1100px) {
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-partner {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .footer {
    margin: 22px 14px 0;
    padding: 22px 18px 16px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-partner .footer-partner-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Simple attractive site pass */
:root {
  --panel: #101722;
  --panel-2: #151f2d;
  --glass: rgba(16, 23, 34, 0.9);
}

html[data-theme="light"] {
  --bg: #eef3f8;
  --panel: #ffffff;
  --panel-2: #f5f8fb;
  --text: #182434;
  --muted: #617084;
  --glass: rgba(255, 255, 255, 0.94);
}

body::before {
  background:
    linear-gradient(180deg, rgba(4, 8, 18, 0.34) 0%, rgba(4, 8, 18, 0.46) 100%);
  filter: brightness(0.68) saturate(0.8);
}

body::after {
  background: linear-gradient(180deg, rgba(2, 4, 10, 0.03), rgba(2, 4, 10, 0.12));
}

html[data-theme="light"] body::before {
  background: linear-gradient(180deg, rgba(247, 250, 253, 0.74), rgba(239, 244, 249, 0.84));
  filter: brightness(1) saturate(0.9);
}

html[data-theme="light"] body::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(232, 238, 245, 0.16));
}

h1,
h2,
h3 {
  letter-spacing: 0.04em;
}

.hero,
.section,
.updates-section,
.shop-section,
.shop-page-section,
.shop-order-band,
.admin-hero {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 28px 6vw 60px;
  background: linear-gradient(180deg, rgba(8, 13, 24, 0.72), rgba(8, 13, 24, 0.58));
}

.hero::before,
.hero::after,
.shop-feature-glow,
.shop-card-overlay,
.gallery-page-card::before,
.gallery-page-card::after,
.membership-card::before,
.membership-card::after {
  display: none;
}

.nav {
  padding: 10px 16px;
  background: rgba(10, 16, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.logo-image {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: none;
}

.nav-links a,
.footer a,
.footer p,
.footer h3,
.footer h4 {
  text-shadow: none;
}

.nav-links a {
  opacity: 0.92;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
  opacity: 1;
}

.theme-toggle,
.cta,
.secondary,
.partner-link {
  box-shadow: none;
}

.theme-toggle,
.cta,
.secondary {
  border-radius: 12px;
}

.cta {
  background: var(--accent);
  border: 1px solid transparent;
}

.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

html[data-theme="light"] .nav {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(24, 36, 52, 0.08);
}

html[data-theme="light"] .secondary {
  border-color: rgba(24, 36, 52, 0.12);
}

.hero-grid,
.split,
.updates-grid,
.feature-grid,
.shop-grid,
.shop-card-grid,
.shop-order-shell {
  gap: 18px;
}

.hero-card,
.feature-card,
.price-card,
.tour-card,
.membership-card,
.machine-detail-card,
.location-card,
.gallery-page-card,
.extra-card,
.program-card,
.coach-card,
.admin-card,
.stat-card,
.update-card,
.shop-feature,
.shop-card,
.shop-curation-copy,
.shop-order-card,
.submission-card,
.location-map,
.partner,
.machine-card .info {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(6, 10, 18, 0.08);
}

html[data-theme="light"] .hero-card,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .price-card,
html[data-theme="light"] .tour-card,
html[data-theme="light"] .membership-card,
html[data-theme="light"] .machine-detail-card,
html[data-theme="light"] .location-card,
html[data-theme="light"] .gallery-page-card,
html[data-theme="light"] .extra-card,
html[data-theme="light"] .program-card,
html[data-theme="light"] .coach-card,
html[data-theme="light"] .admin-card,
html[data-theme="light"] .stat-card,
html[data-theme="light"] .update-card,
html[data-theme="light"] .shop-feature,
html[data-theme="light"] .shop-card,
html[data-theme="light"] .shop-curation-copy,
html[data-theme="light"] .shop-order-card,
html[data-theme="light"] .submission-card,
html[data-theme="light"] .location-map,
html[data-theme="light"] .partner,
html[data-theme="light"] .machine-card .info {
  border-color: rgba(24, 36, 52, 0.08);
  box-shadow: 0 10px 24px rgba(123, 142, 166, 0.08);
}

.hero-card,
.feature-card,
.program-card,
.coach-card,
.extra-card,
.update-card,
.shop-card,
.shop-curation-copy {
  padding: 22px;
}

.section {
  padding: 52px 6vw;
}

.section-header,
.shop-curation-copy,
.shop-order-head,
.gallery-story,
.location-copy {
  max-width: 760px;
}

.eyebrow {
  letter-spacing: 0.12em;
  color: var(--accent);
}

.hero p,
.feature-card p,
.program-card p,
.coach-card p,
.shop-note,
.shop-card-copy p,
.shop-feature-copy p,
.section-header p,
.footer p,
.footer a {
  color: var(--muted);
}

.shop-feature-image,
.shop-card-image {
  filter: brightness(0.9) saturate(0.88);
}

.updates-section,
.shop-page-section,
.shop-order-band,
.section,
.footer,
.admin-hero {
  backdrop-filter: none;
}

.footer {
  margin-top: 20px;
  background: rgba(11, 16, 28, 0.92);
  border-radius: 20px 20px 0 0;
}

.footer::before {
  inset: 10px 10px 0;
}

html[data-theme="light"] .footer {
  background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 900px) {
  .hero {
    padding: 22px 5vw 48px;
  }

  .section {
    padding: 42px 5vw;
  }

  .nav {
    padding: 10px 12px;
  }
}

/* Footer frame refresh */
.footer {
  margin: 22px 18px 0;
  padding: 28px 24px 18px;
  border: 1px solid rgba(31, 111, 214, 0.14);
  border-radius: 24px 24px 0 0;
  box-shadow:
    0 -12px 28px rgba(6, 10, 18, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 10px 10px 0;
  border: 1px solid rgba(31, 111, 214, 0.1);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 200, 76, 0.28), transparent);
  pointer-events: none;
}

html[data-theme="light"] .footer {
  border-color: rgba(31, 111, 214, 0.12);
  box-shadow:
    0 -10px 24px rgba(120, 144, 173, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

html[data-theme="light"] .footer::before {
  border-color: rgba(31, 111, 214, 0.08);
}

html[data-theme="light"] .footer::after {
  background: linear-gradient(90deg, transparent, rgba(31, 111, 214, 0.18), transparent);
}

@media (max-width: 720px) {
  .footer {
    margin: 18px 12px 0;
    padding: 24px 18px 16px;
    border-radius: 20px 20px 0 0;
  }

  .footer::before {
    inset: 8px 8px 0;
    border-radius: 14px 14px 0 0;
  }
}

/* Editorial gym background */
html,
body {
  background:
    url("./images/bac.jpg") center top / cover no-repeat fixed,
    #040506;
}

body::before {
  background:
    linear-gradient(90deg, rgba(3, 4, 6, 0.9) 0%, rgba(3, 4, 6, 0.72) 34%, rgba(3, 4, 6, 0.46) 58%, rgba(3, 4, 6, 0.7) 100%),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.5));
  filter: grayscale(0.55) brightness(0.54) contrast(1.05);
}

body::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.24));
}

.hero {
  background: linear-gradient(180deg, rgba(6, 7, 10, 0.52), rgba(6, 7, 10, 0.28));
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}

.nav {
  background: rgba(8, 9, 12, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  border-left: none;
  border-right: none;
  padding: 12px 0;
}

.hero-grid {
  flex: 1;
  align-items: center;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.hero .lead {
  max-width: 640px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  color: #d4493f;
}

.cta {
  background: #d4493f;
}

.theme-toggle,
.secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="light"] body::before {
  background:
    linear-gradient(90deg, rgba(244, 246, 249, 0.88) 0%, rgba(244, 246, 249, 0.66) 34%, rgba(244, 246, 249, 0.34) 58%, rgba(244, 246, 249, 0.74) 100%),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(228, 233, 240, 0.22));
  filter: grayscale(0.35) brightness(0.96) contrast(1.02);
}

html[data-theme="light"] body::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(230, 236, 243, 0.16));
}

html[data-theme="light"] .hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
}

html[data-theme="light"] .nav {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(24, 36, 52, 0.08);
}

html[data-theme="light"] .hero .lead {
  color: rgba(24, 36, 52, 0.74);
}

html[data-theme="light"] .eyebrow,
html[data-theme="light"] .cta {
  color: #ffffff;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .nav {
    padding: 10px 0;
    border-radius: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.5rem, 11vw, 4.6rem);
  }
}

/* Force site background image after simplification overrides */
body {
  background:
    url("./images/bac.jpg") center top / cover no-repeat fixed,
    #040506 !important;
}

body::before,
body::after {
  display: block !important;
}

html[data-theme="light"] body {
  background:
    url("./images/bac2.avif") center top / cover no-repeat fixed,
    #eef3f8 !important;
}

/* Light mode readability and footer polish */
html[data-theme="light"] body,
html[data-theme="light"] .page-shell,
html[data-theme="light"] .page-main,
html[data-theme="light"] .section,
html[data-theme="light"] .hero,
html[data-theme="light"] .split,
html[data-theme="light"] .machines,
html[data-theme="light"] .programs,
html[data-theme="light"] .coaches,
html[data-theme="light"] .pricing,
html[data-theme="light"] .location-section,
html[data-theme="light"] .gallery-section,
html[data-theme="light"] .gallery-page-section,
html[data-theme="light"] .updates-section,
html[data-theme="light"] .shop-section,
html[data-theme="light"] .shop-page-section,
html[data-theme="light"] .shop-order-band,
html[data-theme="light"] .media-band,
html[data-theme="light"] .cta-band,
html[data-theme="light"] .membership-start,
html[data-theme="light"] .membership-success,
html[data-theme="light"] .machine-detail,
html[data-theme="light"] .admin-hero {
  color: #111111;
}

html[data-theme="light"] .hero h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] .section-header h2,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .program-card h3,
html[data-theme="light"] .coach-card h3,
html[data-theme="light"] .update-card h3,
html[data-theme="light"] .shop-feature-copy h3,
html[data-theme="light"] .shop-card-copy h3,
html[data-theme="light"] .gallery-story h2,
html[data-theme="light"] .location-copy h2,
html[data-theme="light"] .price-card h3,
html[data-theme="light"] .membership-card h3,
html[data-theme="light"] .machine-detail-card h3,
html[data-theme="light"] .tour-card h3 {
  color: #111111;
}

html[data-theme="light"] .nav-links a,
html[data-theme="light"] .hero p,
html[data-theme="light"] .feature-card p,
html[data-theme="light"] .program-card p,
html[data-theme="light"] .coach-card p,
html[data-theme="light"] .shop-note,
html[data-theme="light"] .shop-card-copy p,
html[data-theme="light"] .shop-feature-copy p,
html[data-theme="light"] .section-header p,
html[data-theme="light"] .location-copy p,
html[data-theme="light"] .gallery-story p,
html[data-theme="light"] .price-card p,
html[data-theme="light"] .tour-card p,
html[data-theme="light"] .membership-card p,
html[data-theme="light"] .machine-detail-card p,
html[data-theme="light"] .update-card p,
html[data-theme="light"] .hero-card p {
  color: #111111;
}

html[data-theme="light"] .eyebrow {
  color: #111111;
}

html[data-theme="light"] .hero .lead,
html[data-theme="light"] .section-header .lead {
  color: #111111;
}

html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .secondary {
  color: #111111;
}

html[data-theme="light"] .theme-toggle-icon {
  color: #111111;
  background: rgba(31, 111, 214, 0.1);
}

.footer {
  background: rgba(8, 10, 14, 0.98);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 -14px 28px rgba(6, 10, 18, 0.14);
  position: relative;
}

.footer-brand h3 {
  color: #f3f6fb;
}

.footer h4 {
  color: #8cb6ef;
}

.footer p,
.footer a {
  color: #bcc7d5;
}

.footer-partner .partner {
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border-color: rgba(140, 182, 239, 0.14);
}

.partner-logo {
  width: 60px;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  background: rgba(212, 73, 63, 0.16);
  border: 1px solid rgba(212, 73, 63, 0.28);
  color: #f3f6fb;
  font-weight: 600;
}

.partner-link:hover,
.partner-link:focus {
  background: rgba(212, 73, 63, 0.22);
  border-color: rgba(212, 73, 63, 0.4);
  color: #ffffff;
}

.footer-bottom {
  color: #93a4b8;
  position: relative;
  padding: 14px 16px 0;
  background: transparent;
}

html[data-theme="light"] .footer {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(24, 36, 52, 0.08);
  box-shadow: 0 -10px 24px rgba(120, 144, 173, 0.1);
}

html[data-theme="light"] .footer h3 {
  color: #172638;
}

html[data-theme="light"] .footer h4 {
  color: #436486;
}

html[data-theme="light"] .footer p,
html[data-theme="light"] .footer a,
html[data-theme="light"] .footer-bottom {
  color: #55697f;
}

html[data-theme="light"] .footer-partner .partner {
  background: #fbfdff;
  border-color: rgba(31, 111, 214, 0.1);
}

html[data-theme="light"] .partner-link {
  background: #ffffff;
  border-color: rgba(31, 111, 214, 0.12);
  color: #28425e;
}

html[data-theme="light"] .partner-link:hover,
html[data-theme="light"] .partner-link:focus {
  background: #f2f7fc;
  color: #173a63;
}

/* Force full footer panel after transparent overrides */
.footer {
  background: #080a0e !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 -14px 28px rgba(6, 10, 18, 0.14) !important;
  padding: 20px 20px 12px !important;
  gap: 14px !important;
}

.footer::before,
.footer::after {
  display: none !important;
}

.footer-bottom {
  background: transparent !important;
  margin-top: 4px !important;
  padding: 10px 0 0 !important;
  gap: 6px 14px !important;
}

.footer-brand,
.footer-block {
  gap: 4px !important;
}

.footer h4 {
  margin-bottom: 0 !important;
}

.footer-partner .partner {
  padding: 10px !important;
}

html[data-theme="light"] .footer {
  background: #ffffff !important;
  border: 1px solid rgba(24, 36, 52, 0.08) !important;
  box-shadow: 0 -10px 24px rgba(120, 144, 173, 0.1) !important;
}

@media (max-width: 720px) {
  .footer {
    padding: 18px 16px 10px !important;
  }
}

/* Floating machine names */
.machine-card .info {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 8px !important;
}

.machine-card .info h3 {
  background: transparent !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

