:root {
  --ink: #16211f;
  --muted: #68726f;
  --paper: #fbf6ec;
  --cream: #f1e4d0;
  --sage: #49675e;
  --pine: #102f2a;
  --accent: #e45664;
  --marigold: #f0b942;
  --sky: #c7dfe4;
  --mint: #d9eee4;
  --line: rgba(22, 33, 31, 0.13);
  --shadow: 0 22px 70px rgba(16, 47, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(199, 223, 228, 0.28), rgba(251, 246, 236, 0) 38%),
    radial-gradient(circle at 85% 12%, rgba(240, 185, 66, 0.22), rgba(251, 246, 236, 0) 26%),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(14px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(16, 47, 42, 0.24);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  border-color: rgba(22, 33, 31, 0.1);
  background: rgba(251, 246, 236, 0.92);
  box-shadow: 0 8px 28px rgba(24, 60, 54, 0.1);
}

.brand,
.nav-links,
.header-action,
.header-tools {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  padding: 0;
  border: 0;
  font-weight: 800;
}

.brand-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 2px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.brand-credit span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-credit img {
  width: auto;
  height: 38px;
  max-width: 108px;
  padding: 3px 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--pine);
  background: #fff;
  font-size: 0.8rem;
}

.site-header.scrolled .brand-mark {
  border-color: var(--line);
}

.site-header.scrolled .brand-credit {
  border-left-color: rgba(22, 33, 31, 0.18);
}

.site-header.scrolled .brand-credit span {
  color: var(--muted);
}

.nav-links {
  gap: 22px;
  justify-content: center;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-links a,
.nav-button,
.header-action {
  opacity: 0.92;
}

.nav-links a:hover,
.nav-button:hover,
.header-action:hover {
  opacity: 1;
}

.nav-button,
.header-action {
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-button {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  font-weight: 700;
}

.nav-links a {
  flex: 0 0 auto;
}

.nav-button.active {
  opacity: 1;
  color: var(--marigold);
}

.site-header.scrolled .nav-button.active {
  color: var(--accent);
}

.header-action {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .header-action {
  border-color: var(--line);
  background: #fffdf7;
}

.header-tools {
  justify-self: end;
  gap: 10px;
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: 144px clamp(20px, 5vw, 72px) 80px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 29, 26, 0.82) 0%, rgba(10, 29, 26, 0.58) 36%, rgba(10, 29, 26, 0.08) 73%),
    linear-gradient(0deg, rgba(10, 29, 26, 0.5) 0%, rgba(10, 29, 26, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  color: #fff;
}

.hero-feature-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  justify-self: end;
  width: min(380px, 100%);
}

.hero-feature-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  color: #fff;
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(16, 47, 42, 0.38);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(10, 29, 26, 0.28);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.hero-feature-card:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(16, 47, 42, 0.48);
  box-shadow: 0 30px 84px rgba(10, 29, 26, 0.36);
}

.hero-feature-preview {
  display: grid;
  width: 86px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
}

.wheel-preview {
  border: 6px solid rgba(255, 255, 255, 0.82);
  background:
    conic-gradient(
      from -12deg,
      var(--accent) 0 54deg,
      #7e3943 54deg 102deg,
      var(--marigold) 102deg 160deg,
      var(--sage) 160deg 224deg,
      #2f8f84 224deg 286deg,
      #7e3943 286deg 326deg,
      var(--pine) 326deg 360deg
    );
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.wheel-preview span {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--pine);
  background: #fffdf7;
  font-family: "Bricolage Grotesque", Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.feedback-preview,
.products-preview {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.feedback-preview {
  color: #ffd36a;
}

.products-preview {
  color: var(--mint);
}

.hero-feature-preview svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-feature-text {
  display: grid;
  gap: 5px;
}

.hero-feature-text > span {
  color: #ffd36a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-feature-text strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: #ffd36a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", Inter, system-ui, sans-serif;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(4rem, 10vw, 8.4rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.5rem);
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
}

.hero-copy {
  width: min(580px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 47, 42, 0.14);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(16, 47, 42, 0.18);
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.secondary {
  color: #4ac52b;
  border-color: rgba(7, 28, 5, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.button.whatsapp {
  color: #fff;
  background: #1fa463;
}

.icon-link {
  gap: 9px;
}

.icon-link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(16, 47, 42, 0.16);
  border-block: 1px solid var(--line);
}

.quick-strip > div {
  min-height: 112px;
  padding: 26px clamp(20px, 4vw, 48px);
  background: rgba(255, 253, 247, 0.78);
  backdrop-filter: blur(12px);
}

.strip-label {
  display: block;
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quick-strip strong {
  font-size: clamp(1.05rem, 1.6vw, 1.38rem);
}

.section {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

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

.section-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.page-view {
  display: none;
}

.page-view.active {
  display: block;
}

.page-section {
  min-height: calc(100svh - 80px);
  padding: 150px clamp(20px, 5vw, 72px) clamp(70px, 10vw, 130px);
}

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

.new-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf7;
  box-shadow: 0 14px 30px rgba(29, 42, 39, 0.06);
}

.new-card {
  min-height: 260px;
  background:
    linear-gradient(145deg, rgba(217, 238, 228, 0.95), rgba(255, 253, 247, 0) 58%),
    #fffdf7;
}

.item-tag {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--pine);
  background: var(--sky);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.new-card p,
.location-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.price {
  align-self: end;
  margin-top: auto;
  color: var(--accent);
  font-weight: 900;
}

.visit-section {
  background:
    linear-gradient(135deg, rgba(16, 47, 42, 0.06), rgba(255, 253, 247, 0) 42%),
    #fffdf7;
}

.home-services {
  background: var(--paper);
}

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

.home-service-link {
  display: grid;
  gap: 14px;
  place-items: center;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 18px 44px rgba(16, 47, 42, 0.08);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.home-service-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(16, 47, 42, 0.14);
}

.home-service-logo {
  width: min(210px, 72%);
  max-height: 110px;
  object-fit: contain;
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
}

.hours-panel,
.location-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(251, 246, 236, 0.86);
  box-shadow: 0 16px 36px rgba(16, 47, 42, 0.08);
}

.status-pill {
  width: max-content;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--sage);
  font-weight: 900;
}

.status-pill.closed {
  background: #7e3943;
}

.hours-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.hours-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  margin: 0;
  font-weight: 900;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(260px, 1fr);
  align-content: start;
  align-items: stretch;
  gap: 16px;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.82);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-hover {
  cursor: pointer;
}

.contact-hover:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 86, 100, 0.28);
  background: #fffdf7;
  box-shadow: 0 16px 36px rgba(16, 47, 42, 0.12);
}

.contact-hover:hover .contact-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 10px 22px rgba(16, 47, 42, 0.18);
}

.contact-line div > span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-line strong {
  display: block;
  line-height: 1.35;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--pine);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-icon.whatsapp-icon {
  background: #1fa463;
}

.contact-icon.mail-icon {
  background: var(--accent);
}

.contact-icon.instagram-icon {
  background:
    linear-gradient(135deg, #f9ce34, #ee2a7b 48%, #6228d7);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-panel {
  overflow: hidden;
  display: grid;
  min-height: 248px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf7;
}

.map-panel iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
}

.map-panel a {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--pine);
  background: rgba(199, 223, 228, 0.42);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

.mwa-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 18px 7px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(228, 86, 100, 0.28), rgba(240, 185, 66, 0.18)),
    rgba(255, 255, 255, 0.08);
}

.mwa-credit span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mwa-credit img {
  width: auto;
  height: 34px;
  max-width: 130px;
  object-fit: contain;
}

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

.services-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 16px 36px rgba(16, 47, 42, 0.08);
}

.service-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: var(--pine);
  font-weight: 900;
}

.service-icon.logo-box {
  overflow: hidden;
  padding: 7px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.service-icon.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3,
.service-card p {
  margin: 0;
}

.service-card p {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.product-tools {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 16px;
  align-items: end;
  margin-bottom: 22px;
}

.search-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.search-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: #fffdf7;
  font: inherit;
  box-shadow: 0 12px 26px rgba(16, 47, 42, 0.06);
}

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

.category-filter {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--pine);
  background: rgba(255, 253, 247, 0.82);
  font-weight: 900;
  cursor: pointer;
}

.category-filter.active {
  color: #fff;
  border-color: var(--pine);
  background: var(--pine);
}

.product-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 16px 42px rgba(16, 47, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.new-grid .product-card {
  min-height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(16, 47, 42, 0.14);
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-image,
.product-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.product-image {
  object-fit: cover;
}

.product-placeholder {
  display: grid;
  place-items: center;
  color: var(--pine);
  background:
    linear-gradient(135deg, rgba(217, 238, 228, 0.95), rgba(240, 185, 66, 0.34)),
    #fffdf7;
  font-weight: 900;
  font-size: 1.4rem;
}

.new-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(16, 47, 42, 0.18);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-info {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.category-label {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--pine);
  background: rgba(199, 223, 228, 0.5);
  font-size: 0.78rem;
  font-weight: 900;
}

.stock-badge {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0f5b3e;
  background: rgba(65, 184, 131, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
}

.stock-badge.out {
  color: #8a2938;
  background: rgba(228, 86, 100, 0.15);
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fffdf7;
  line-height: 1.5;
}

.account-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
}

.account-panel,
.feedback-panel,
.wheel-panel {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: var(--shadow);
}

.account-panel label,
.feedback-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.account-panel input,
.feedback-panel input,
.feedback-panel select,
.feedback-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.feedback-panel textarea {
  resize: vertical;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.42fr);
  gap: 18px;
  max-width: 1100px;
}

.highlight-panel {
  align-content: center;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(228, 86, 100, 0.88), rgba(16, 47, 42, 0.9)),
    var(--pine);
}

.highlight-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.wheel-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(280px, 0.5fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  max-width: 1220px;
}

.wheel-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(78vw, 610px);
}

.wheel-stage::before {
  content: "";
  position: absolute;
  width: min(83vw, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0) 61%, rgba(255, 211, 106, 0.7) 62%, rgba(155, 105, 24, 0.82) 70%, rgba(255, 239, 172, 0.85) 73%, rgba(255, 255, 255, 0) 75%);
  filter: drop-shadow(0 20px 42px rgba(16, 47, 42, 0.22));
}

.wheel-pointer {
  position: absolute;
  z-index: 5;
  top: calc(50% - min(39vw, 305px) - 8px);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 34px solid var(--accent);
  filter: drop-shadow(0 10px 16px rgba(16, 47, 42, 0.2));
}

.chance-wheel {
  position: relative;
  display: grid;
  width: min(78vw, 610px);
  aspect-ratio: 1;
  place-items: center;
  border: 14px solid #fffdf7;
  border-radius: 50%;
  color: #fff;
  background: var(--pine);
  box-shadow:
    var(--shadow),
    inset 0 0 0 10px rgba(255, 255, 255, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  transition: transform 1.9s cubic-bezier(0.16, 0.82, 0.2, 1);
}

.chance-wheel::before {
  content: "";
  position: absolute;
  inset: 5%;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0) 0 34%, rgba(255, 255, 255, 0.26) 35%, rgba(255, 255, 255, 0) 37%),
    repeating-conic-gradient(
      from 0deg,
      rgba(255, 244, 181, 0.54) 0deg 3deg,
      rgba(255, 255, 255, 0) 3deg 16deg,
      rgba(255, 255, 255, 0.28) 16deg 18deg,
      rgba(255, 255, 255, 0) 18deg 30deg
    );
  mix-blend-mode: screen;
  opacity: 0.5;
  animation: wheel-shine 7s linear infinite;
}

.chance-wheel.is-spinning {
  filter: saturate(1.16) brightness(1.08);
}

.chance-wheel.is-spinning::before {
  animation: wheel-shine 0.55s linear infinite;
}

.wheel-center {
  position: relative;
  z-index: 4;
  display: inline-grid;
  width: min(28vw, 170px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: var(--pine);
  background: #fffdf7;
  border: 0;
  font-family: "Bricolage Grotesque", Inter, system-ui, sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.1rem);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px var(--line), 0 18px 38px rgba(16, 47, 42, 0.22);
  cursor: pointer;
  animation: center-pulse 2.2s ease-in-out infinite;
}

.wheel-center:hover {
  transform: scale(1.04);
}

.wheel-segment-label {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
 
  width: clamp(70px, 15vw, 118px);
  min-height: clamp(42px, 9vw, 66px);
  
  
  display: flex;
align-items: center;
justify-content: center;
gap: 8px;
  padding: 6px;
  border-radius: 14px;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(16, 47, 42, 0.38);
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(-1 * min(28vw, 210px)))
    rotate(90deg);
}

.wheel-segment-label.loss {
  opacity: 0.88;
}

.wheel-segment-label img,
.wheel-segment-placeholder {
  inline-size: clamp(28px, 6vw, 44px);
  block-size: clamp(28px, 6vw, 44px);
  aspect-ratio: 1;
  justify-self: center;
  align-self: center;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(16, 47, 42, 0.2);
}

.wheel-segment-placeholder {
  display: grid;
  place-items: center;
  color: var(--pine);
  font-size: clamp(0.7rem, 2vw, 0.95rem);
  font-weight: 900;
  text-shadow: none;
}

.wheel-segment-label strong {
  width: 100%;
  font-size: clamp(0.56rem, 1.55vw, 0.78rem);
  line-height: 1.05;
  text-wrap: balance;
  
}

@keyframes center-pulse {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px var(--line), 0 18px 38px rgba(16, 47, 42, 0.22);
  }

  50% {
    box-shadow:
      inset 0 0 0 1px var(--line),
      0 18px 38px rgba(16, 47, 42, 0.22),
      0 0 0 10px rgba(255, 211, 106, 0.18);
  }
}

@keyframes wheel-shine {
  to {
    transform: rotate(360deg);
  }
}

.wheel-prize-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.wheel-prize {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--pine);
  background: rgba(199, 223, 228, 0.56);
  font-weight: 900;
}

.wheel-prize.loss {
  color: #7e3943;
  background: rgba(126, 57, 67, 0.12);
}

.wheel-result {
  min-height: 30px;
  margin: 0;
  color: var(--accent);
  font-weight: 900;
  line-height: 1.4;
}

.result-modal[hidden] {
  display: none;
}

.result-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.result-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 33, 31, 0.62);
  backdrop-filter: blur(8px);
}

.result-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(460px, 100%);
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(31, 164, 99, 0.95), rgba(16, 47, 42, 0.96)),
    var(--pine);
  box-shadow: 0 30px 90px rgba(16, 47, 42, 0.36);
}

.result-modal.is-loss .result-modal-panel {
  background:
    linear-gradient(145deg, rgba(228, 86, 100, 0.95), rgba(126, 57, 67, 0.96)),
    var(--ink);
}

.result-modal-panel h3,
.result-modal-panel p {
  margin: 0;
}

.result-modal-panel h3 {
  font-family: "Bricolage Grotesque", Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 8vw, 3.1rem);
  line-height: 0.96;
}

.result-modal-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.result-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.account-panel input:disabled,
.account-panel button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.account-disabled {
  color: var(--pine);
  border-color: var(--line);
  background: #fff;
}

.login-panel,
.admin-dashboard {
  max-width: 980px;
}

.login-panel {
  display: grid;
  gap: 16px;
  max-width: 520px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf7;
  box-shadow: var(--shadow);
}

.login-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf7;
}

.category-admin-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  align-items: end;
  margin: -10px 0 26px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.78);
}

.category-list {
  display: grid;
  gap: 10px;
  margin: -8px 0 26px;
}

.category-list h3 {
  margin: 0 0 4px;
}

.category-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf7;
}

.category-row.is-editing {
  border-color: rgba(228, 86, 100, 0.32);
  box-shadow: 0 18px 42px rgba(16, 47, 42, 0.08);
}

.category-row strong,
.category-row span {
  display: block;
}

.category-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.category-edit-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(251, 246, 236, 0.72);
}

.category-edit-form label,
.category-admin-form label,
.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.login-panel input,
.category-edit-form input,
.category-admin-form input,
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.admin-secondary {
  color: var(--pine);
  border-color: var(--line);
  background: #fff;
}

.admin-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-form textarea {
  resize: vertical;
}

.admin-form .button,
.form-note {
  align-self: end;
}

.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.wheel-admin-thumb {
  float: left;
  width: 42px;
  height: 42px;
  margin: 0 10px 6px 0;
  border-radius: 12px;
  object-fit: cover;
}

.wheel-chance-control {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.wheel-chance-control input {
  width: 92px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 900;
}

.admin-section {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.admin-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf7;
}

.admin-row.is-editing {
  border-color: rgba(228, 86, 100, 0.32);
  box-shadow: 0 18px 42px rgba(16, 47, 42, 0.1);
}

.admin-row img,
.admin-thumb-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.admin-thumb-placeholder {
  display: grid;
  place-items: center;
  color: var(--pine);
  background: var(--sky);
  font-weight: 900;
}

.admin-row h3,
.admin-row p {
  margin: 0;
}

.admin-row p {
  color: var(--muted);
  line-height: 1.45;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.edit-button,
.stock-toggle-button,
.cancel-button,
.delete-button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.edit-button {
  border: 1px solid rgba(228, 86, 100, 0.28);
  color: var(--accent);
}

.stock-toggle-button {
  border: 1px solid rgba(16, 47, 42, 0.18);
  color: var(--pine);
}

.stock-toggle-button.restock {
  border-color: rgba(15, 91, 62, 0.24);
  color: #0f5b3e;
  background: rgba(65, 184, 131, 0.12);
}

.delete-button {
  border: 1px solid rgba(126, 57, 67, 0.3);
  color: #7e3943;
}

.delete-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.cancel-button {
  border: 1px solid var(--line);
  color: var(--muted);
}

.edit-product-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(251, 246, 236, 0.72);
}

.message-row {
  grid-template-columns: 52px minmax(0, 1fr) auto;
}

.message-type-badge {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
}

.message-reply {
  margin-top: 8px;
  font-weight: 800;
}

.feedback-reply-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(251, 246, 236, 0.72);
}

.feedback-reply-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.feedback-reply-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  resize: vertical;
}

.edit-product-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.edit-check-field {
  align-self: end;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.edit-check-field input {
  width: 18px;
  height: 18px;
}

.edit-product-form input,
.edit-product-form select,
.edit-product-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.edit-product-form .edit-check-field input {
  width: 18px;
  height: 18px;
  padding: 0;
}

.edit-product-form textarea {
  resize: vertical;
}

.edit-product-form .button,
.edit-product-form .cancel-button {
  align-self: end;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 28px;
    gap: 10px 16px;
    padding: 10px 14px;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 88svh;
    align-items: end;
    padding-top: 124px;
  }

  .hero-feature-stack {
    justify-self: start;
    width: min(430px, 100%);
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(12, 35, 31, 0.84) 0%, rgba(12, 35, 31, 0.42) 58%, rgba(12, 35, 31, 0.04) 100%),
      linear-gradient(90deg, rgba(12, 35, 31, 0.54) 0%, rgba(12, 35, 31, 0.08) 76%);
  }

  .quick-strip,
  .new-grid,
  .visit-layout,
  .location-panel,
  .home-service-grid,
  .services-strip,
  .product-tools,
  .account-layout,
  .feedback-layout,
  .wheel-layout,
  .product-grid,
  .product-page-grid,
  .admin-form,
  .category-admin-form,
  .category-row,
  .category-edit-form,
  .edit-product-form,
  .feedback-reply-form {
    grid-template-columns: 1fr;
  }

  .page-section {
    padding-top: 168px;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 8px;
    left: 8px;
    right: 8px;
    padding: 9px 10px 10px;
    border-radius: 22px;
    gap: 8px 10px;
  }

  .brand-name {
    display: none;
  }

  .brand-credit {
    display: none;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.78rem;
  }

  .header-tools {
    display: none;
  }

  .header-action {
    min-height: 34px;
    padding-inline: 11px;
    font-size: 0.8rem;
  }

  h1 {
    max-width: 10.5ch;
    font-size: clamp(3.15rem, 16.5vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero {
    min-height: 86svh;
    padding: 126px 18px 58px;
  }

  .hero-feature-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .hero-feature-preview {
    width: 64px;
  }

  .wheel-preview {
    border-width: 5px;
  }

  .wheel-preview span {
    width: 32px;
    font-size: 0.62rem;
  }

  .hero-feature-preview svg {
    width: 30px;
    height: 30px;
  }

  .hero-feature-text strong {
    font-size: 0.94rem;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 14px;
    font-size: 0.92rem;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-actions .button {
    width: 100%;
  }

  .quick-strip > div {
    min-height: auto;
    padding: 20px 18px;
  }

  .section {
    padding: 58px 18px;
  }

  .page-section {
    padding: 146px 18px 58px;
  }

  .new-card {
    min-height: auto;
    padding: 20px;
  }

  .product-info {
    padding: 16px;
  }

  .hours-list div {
    display: grid;
    gap: 5px;
  }

  .admin-topline {
    display: grid;
  }

  .admin-row {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .message-row {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .admin-row img,
  .admin-thumb-placeholder,
  .message-type-badge {
    width: 54px;
    height: 54px;
  }

  .admin-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
  }

  .edit-button,
  .stock-toggle-button,
  .cancel-button,
  .delete-button {
    width: 100%;
  }
}
