:root {
  --ink: #0f172a;
  --muted: #607086;
  --line: rgba(15, 23, 42, 0.12);
  --sky: #f5fbff;
  --bg: #eaf3f8;
  --ocean: #0f4c81;
  --reef: #0ea5a4;
  --sun: #f59e0b;
  --card: rgba(255, 255, 255, 0.92);
  --card-strong: rgba(255, 255, 255, 0.98);
  --shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0 0, rgba(14, 165, 164, 0.14), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(15, 76, 129, 0.14), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.1), transparent 28%),
    linear-gradient(180deg, #fdfefe, var(--bg));
}

button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 90px;
  background: linear-gradient(135deg, #0b1630, #123b63);
  color: rgba(247, 251, 255, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-home-link {
  color: inherit;
  text-decoration: none;
}

.brand-home-link:hover {
  opacity: 0.96;
}

.brand-home-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.42);
  outline-offset: 4px;
  border-radius: 3px;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-link img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 3px;
  padding: 0;
  background: transparent;
  box-shadow: 0 14px 24px rgba(4, 15, 29, 0.2);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
}

.brand-copy span {
  font-size: 0.76rem;
  line-height: 1.2;
  color: rgba(236, 243, 249, 0.78);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.user-menu-wrap {
  position: relative;
}

.user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px 5px 5px;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.user-pill-btn {
  color: inherit;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.user-pill-btn:hover,
.user-pill-btn[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.user-pill-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.46);
  outline-offset: 2px;
}

.user-pill-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--reef), var(--sun));
  color: #0b1630;
  font-weight: 800;
}

.user-pill-avatar svg {
  width: 18px;
  height: 18px;
}

.user-pill-btn.is-guest .user-pill-avatar {
  background: transparent;
  color: #fff;
}

.user-pill-btn.is-guest .user-pill-avatar svg {
  width: 100%;
  height: 100%;
  display: block;
}

.user-pill-avatar.has-photo {
  background: rgba(255, 255, 255, 0.12);
}

.user-pill-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.user-pill-copy {
  display: grid;
}

.user-pill-copy strong {
  font-size: 0.84rem;
  line-height: 1.1;
}

.user-pill-copy span {
  font-size: 0.72rem;
  color: rgba(236, 243, 249, 0.74);
  line-height: 1.1;
}

.user-pill-caret {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(236, 243, 249, 0.78);
}

.user-pill-caret svg {
  width: 18px;
  height: 18px;
}

.admin-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(11, 22, 48, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 38px rgba(5, 10, 24, 0.28);
  backdrop-filter: blur(18px);
  z-index: 30;
}

.admin-user-dropdown[hidden] {
  display: none !important;
}

.admin-user-dropdown button,
.admin-user-dropdown a {
  width: 100%;
  display: block;
  border: 0;
  background: transparent;
  color: rgba(247, 251, 255, 0.94);
  text-decoration: none;
  text-align: left;
  padding: 11px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
}

.admin-user-dropdown button:hover,
.admin-user-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.admin-user-dropdown button:focus-visible,
.admin-user-dropdown a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: -2px;
}

.landing-main {
  padding: 1px 0 0;
}

.location-bar-section {
  padding: 2px 0 16px;
}

.location-bar-section .container {
  width: min(100% - 8px, 1200px);
}

.location-bar {
  display: grid;
  gap: 16px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 3px;
  color: #f5fbff;
  background:
    radial-gradient(circle at top right, rgba(244, 181, 86, 0.22), transparent 22%),
    linear-gradient(135deg, #0b2240, #0f4c81 48%, #0ea5a4);
  box-shadow: 0 18px 34px rgba(8, 23, 46, 0.18);
}

.location-brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.location-copy {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 26px;
}

.location-inline {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  min-height: 0;
  padding: 0;
  white-space: nowrap;
}

.location-prefix {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 251, 255, 0.72);
}

.location-country,
.location-state {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.86rem, 1.5vw, 1rem);
  line-height: 1.2;
}

.location-separator {
  color: rgba(241, 248, 254, 0.7);
  font-weight: 700;
}

.page-sequence-section {
  padding: 0 0 8px;
}

.page-sequence-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  font-size: 0.76rem;
  color: var(--muted);
}

.page-sequence-bar a {
  color: var(--ocean);
  font-weight: 700;
}

.page-sequence-current {
  color: var(--ink);
  font-weight: 800;
}

.back-link-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}

.back-link-row-bottom {
  margin-top: 16px;
}

.back-link-btn {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.78rem;
}

.hero-section {
  padding: 14px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  justify-items: center;
}

.hero-copy {
  display: grid;
  gap: 14px;
  width: min(760px, 100%);
  text-align: center;
}

.provider-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
  width: 100%;
}

.provider-card {
  --provider-entry-offset: min(34vw, 320px);
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 6px;
  width: 172px;
  min-width: 160px;
  height: 238px;
  padding: 12px 12px 14px;
  text-align: left;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.18);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  animation:
    provider-card-entry 1.5s cubic-bezier(0.2, 0.92, 0.2, 1) both,
    provider-card-glow 2.1s ease-in-out 1.5s infinite;
  will-change: box-shadow, transform, border-color;
}

.provider-card:nth-child(2n) {
  --provider-entry-offset: min(42vw, 420px);
}

.provider-card:nth-child(3n) {
  --provider-entry-offset: min(50vw, 520px);
}

.provider-card:nth-child(1) {
  animation-delay: 0.06s, 1.56s;
}

.provider-card:nth-child(2) {
  animation-delay: 0.16s, 1.66s;
}

.provider-card:nth-child(3) {
  animation-delay: 0.26s, 1.76s;
}

.provider-card:nth-child(4) {
  animation-delay: 0.36s, 1.86s;
}

.provider-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 76, 129, 0.26);
  box-shadow: 0 16px 28px rgba(15, 76, 129, 0.16), 0 0 18px rgba(244, 197, 66, 0.14);
}

.provider-card:active {
  transform: translateY(-1px) scale(0.99);
}

.provider-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.provider-chip,
.provider-new-chip {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 20px;
  padding: 0 6px;
  border-radius: 3px;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.provider-chip {
  background: rgba(15, 76, 129, 0.08);
  color: var(--ocean);
}

.provider-new-chip {
  color: #6a4a00;
  background: linear-gradient(135deg, #fff6c4, #f4c542 45%, #ffe791 70%, #fff2b0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 0 10px rgba(244, 197, 66, 0.26);
  background-size: 220% 220%;
  animation: provider-shine 2.6s linear infinite;
}

.provider-logo-wrap {
  width: 44px;
  height: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  justify-self: center;
  margin-top: 2px;
  align-self: center;
}

.provider-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.provider-card h3,
.provider-card p {
  margin: 0;
  text-align: center;
}

.provider-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  line-height: 1.2;
  min-height: calc(0.78rem * 1.2 * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.provider-card p {
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.62rem;
  align-self: start;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.provider-divider {
  width: 100%;
  margin: 2px 0 0;
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.toast-stack {
  position: fixed;
  top: 98px;
  right: 14px;
  z-index: 50;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.app-toast {
  min-width: 220px;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 3px;
  background: rgba(11, 22, 48, 0.96);
  color: rgba(247, 251, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 34px rgba(5, 10, 24, 0.24);
  font-size: 0.82rem;
  font-weight: 700;
  animation: toast-enter 0.22s ease;
}

@keyframes provider-shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes provider-card-entry {
  0% {
    opacity: 0;
    transform: translate3d(var(--provider-entry-offset), 0, 0) scale(0.97);
  }
  72% {
    opacity: 1;
    transform: translate3d(-10px, 0, 0) scale(1.01);
  }
  84% {
    transform: translate3d(4px, 0, 0) scale(0.998);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.eyebrow {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
}

.hero-rule {
  width: 100%;
  margin: 2px 0 0;
  border: 0;
  border-top: 1px solid rgba(15, 76, 129, 0.22);
}

.hero-copy h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.04;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  max-width: 11ch;
}

.hero-subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-actions,
.register-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions,
.register-actions {
  justify-content: center;
}

.menu-section {
  padding: 4px 0 28px;
}

.menu-section-head {
  padding: 0 2px 8px;
}

.menu-section-head h2 {
  margin: 0;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  line-height: 1.45;
}

.menu-section .container {
  width: calc(100% - 4px);
  max-width: none;
  margin: 0 auto;
}

.menu-carousel-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 1px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  justify-self: center;
}

.menu-carousel-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 52px;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(11, 34, 64, 0.96), rgba(16, 60, 99, 0.92));
  border-bottom: 1px solid rgba(15, 23, 42, 0.16);
  transition: transform 0.65s cubic-bezier(0.2, 0.92, 0.2, 1), opacity 0.65s ease;
}

.menu-carousel-counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(247, 251, 255, 0.95);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform 0.65s cubic-bezier(0.2, 0.92, 0.2, 1), opacity 0.65s ease, background 0.65s ease;
}

.menu-carousel-nav {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ocean);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: background 0.38s ease, opacity 0.38s ease, transform 0.38s ease;
}

.menu-carousel-nav-top {
  width: 34px;
  height: 34px;
  margin-inline: 10px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(247, 251, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.menu-carousel-nav:hover {
  background: #fff;
}

.menu-carousel-nav-top:hover {
  background: rgba(255, 255, 255, 0.24);
}

.menu-carousel-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.menu-carousel-nav svg {
  width: 20px;
  height: 20px;
}

.menu-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  min-width: 0;
  width: 100%;
  padding: 0;
  scroll-behavior: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.menu-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.menu-grid {
  display: flex;
  gap: 0;
  width: 100%;
}

.menu-card {
  flex: 0 0 100%;
  display: grid;
  gap: 0;
  min-width: 0;
  width: 100%;
  padding: 0;
  scroll-snap-align: start;
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 253, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  opacity: 0.98;
}

.menu-card.is-featured {
  background:
    radial-gradient(circle at top right, rgba(14, 165, 164, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 251, 0.96));
}

.menu-card-media {
  position: relative;
  display: block;
  width: min(100%, 534px);
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  justify-self: center;
  border-radius: 0;
  background: linear-gradient(160deg, rgba(15, 76, 129, 0.2), rgba(14, 165, 164, 0.12));
  transition: transform 0.72s cubic-bezier(0.2, 0.92, 0.2, 1), opacity 0.72s ease, box-shadow 0.72s ease;
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.menu-chip {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 3px;
  background: rgba(15, 76, 129, 0.08);
  color: var(--ocean);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-card-copy h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  transition: transform 0.7s cubic-bezier(0.2, 0.92, 0.2, 1), opacity 0.7s ease, color 0.7s ease;
}

.menu-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  transition: transform 0.8s cubic-bezier(0.2, 0.92, 0.2, 1), opacity 0.8s ease;
}

.menu-card:not(.is-active) .menu-card-media {
  transform: translate3d(26px, 0, 0) scale(0.985);
  opacity: 0.76;
}

.menu-card:not(.is-active) .menu-card-copy h3,
.menu-card:not(.is-active) .menu-card-copy p {
  transform: translate3d(18px, 0, 0);
  opacity: 0.58;
}

.menu-card.is-active .menu-card-media,
.menu-card.is-active .menu-card-copy h3,
.menu-card.is-active .menu-card-copy p {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.menu-carousel-shell.is-animating .menu-carousel-top {
  transform: translateY(-1px);
  opacity: 0.96;
}

.menu-carousel-shell.is-animating .menu-carousel-counter,
.menu-carousel-shell.is-animating .menu-carousel-nav-top {
  transform: scale(0.97);
  opacity: 0.82;
}

.detail-store-section {
  padding: 6px 0 28px;
}

.store-hero-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 253, 0.92));
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.store-hero-logo {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: linear-gradient(145deg, rgba(15, 76, 129, 0.08), rgba(14, 165, 164, 0.12));
}

.store-hero-logo img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.store-hero-copy {
  display: grid;
  gap: 8px;
}

.store-hero-breadcrumb {
  margin: 0;
  color: var(--ocean);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-hero-copy h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.28rem, 3vw, 1.9rem);
  line-height: 1.2;
}

.store-hero-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.store-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.store-category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 3px;
  border: 1px solid rgba(15, 76, 129, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(226, 240, 249, 0.96));
  color: #0c3354;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 22px rgba(15, 76, 129, 0.1);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.store-category-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 76, 129, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(214, 235, 248, 0.98));
  box-shadow: 0 14px 28px rgba(15, 76, 129, 0.16);
}

.store-category-chip:focus-visible {
  outline: 2px solid rgba(14, 165, 164, 0.42);
  outline-offset: 2px;
}

.store-category-chip.is-active {
  color: #fff;
  border-color: rgba(244, 197, 66, 0.5);
  background:
    linear-gradient(135deg, #0f4c81, #0ea5a4 58%, #f4c542 120%);
  box-shadow: 0 16px 30px rgba(15, 76, 129, 0.22), 0 0 18px rgba(244, 197, 66, 0.18);
}

.store-category-chip.is-active:hover {
  border-color: rgba(244, 197, 66, 0.72);
  box-shadow: 0 18px 34px rgba(15, 76, 129, 0.26), 0 0 22px rgba(244, 197, 66, 0.24);
}

.store-toolbar {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.store-section-head {
  padding: 12px 0 0;
}

.store-section-head h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean);
}

.store-product-search {
  display: grid;
  gap: 6px;
  width: min(100%, 360px);
}

.store-product-search span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean);
}

.store-product-search input {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 3px;
  border: 1px solid rgba(15, 76, 129, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.store-product-search input:focus {
  outline: 2px solid rgba(14, 165, 164, 0.24);
  outline-offset: 2px;
}

.store-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  grid-auto-rows: 1fr;
  justify-content: stretch;
  align-items: start;
  gap: 18px;
  margin-top: 18px;
}

.store-products-shell {
  position: relative;
  min-height: 220px;
}

.store-products-grid,
.store-no-results {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.store-products-shell.is-clearing .store-products-grid,
.store-products-shell.is-clearing .store-no-results,
.store-products-shell.is-loading .store-products-grid,
.store-products-shell.is-loading .store-no-results {
  opacity: 0;
  transform: translateY(8px);
  transition-duration: 0.3s;
}

.store-products-shell.is-entering .store-products-grid,
.store-products-shell.is-entering .store-no-results {
  opacity: 0;
  transform: translateY(6px);
}

.store-products-loader {
  position: absolute;
  inset: 18px 0 auto;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
  color: #35526f;
  font-size: 0.88rem;
  font-weight: 700;
}

.store-products-loader[hidden] {
  display: none;
}

.store-products-loader-spinner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(39, 117, 202, 0.18);
  border-top-color: #2775ca;
  animation: storeLoaderSpin 0.8s linear infinite;
}

@keyframes storeLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.store-product-card,
.store-empty-state,
.store-missing-card {
  border-radius: 4px;
  border: 2px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.store-product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  height: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
}

.store-product-card h2 {
  margin: 0 0 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.store-product-card-link {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  animation: product-card-glow 2.4s ease-in-out infinite;
}

.store-product-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 76, 129, 0.22);
  box-shadow: 0 22px 40px rgba(15, 76, 129, 0.16), 0 0 20px rgba(14, 165, 164, 0.12);
}

.store-product-card-link:focus-visible {
  outline: 2px solid rgba(14, 165, 164, 0.42);
  outline-offset: 3px;
}

.store-product-media {
  display: grid;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 252, 0.94));
}

.store-product-media-stage {
  --media-image-inset: 10px;
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  min-height: clamp(220px, 24vw, 360px);
  overflow: hidden;
  padding: 0;
  border-radius: 4px 4px 0 0;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 164, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.store-product-media-image {
  inset: var(--media-image-inset);
  display: block;
  width: calc(100% - (var(--media-image-inset) * 2));
  height: calc(100% - (var(--media-image-inset) * 2));
  object-fit: contain;
  object-position: center center;
}

.store-product-media-empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 18px;
  color: var(--muted);
  font-weight: 700;
}

.store-product-carousel {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 252, 0.94));
}

.store-product-carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(7, 22, 42, 0.98), rgba(11, 41, 74, 0.95));
}

.store-product-carousel-top.is-single {
  justify-content: center;
}

.store-product-carousel-top[hidden],
.store-product-carousel-controls[hidden],
.store-product-carousel-nav[hidden],
.store-product-carousel-counter[hidden] {
  display: none !important;
}

.store-product-carousel-controls {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: center;
  margin-top: -18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 24, 46, 0.96);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.18);
}

.store-product-carousel-controls.is-single {
  margin-top: -14px;
}

.store-product-carousel-nav {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(247, 251, 255, 0.95);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.store-product-carousel-nav:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.store-product-carousel-nav svg {
  width: 18px;
  height: 18px;
}

.store-product-carousel-nav.is-card {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.store-product-carousel-counter {
  min-height: 24px;
  min-width: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(247, 251, 255, 0.95);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.store-product-carousel-counter.is-card {
  min-width: 52px;
  min-height: 22px;
  padding: 0 8px;
  font-size: 0.62rem;
}

.store-product-carousel-stage,
.product-detail-stage {
  --media-image-inset: 12px;
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 164, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 251, 0.94));
}

.store-product-carousel-stage {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  min-height: clamp(180px, 28vw, 320px);
  border-radius: 0;
  padding: 10px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 164, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.store-product-carousel-stage.is-single {
  min-height: clamp(200px, 30vw, 336px);
}

.product-detail-stage.is-single {
  min-height: min(70vh, 640px);
}

.store-product-carousel-image,
.product-detail-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.store-product-carousel-image {
  display: block;
  position: relative;
  inset: auto;
  grid-area: 1 / 1;
  align-self: center;
  justify-self: center;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  transition: opacity 0.18s ease;
}

.product-detail-image {
  position: absolute;
  inset: var(--media-image-inset);
  display: block;
  width: calc(100% - (var(--media-image-inset) * 2));
  height: calc(100% - (var(--media-image-inset) * 2));
  object-fit: contain;
  object-position: center center;
}

.store-product-carousel-stage.is-single .store-product-carousel-image,
.product-detail-stage.is-single .product-detail-image {
  padding: 0;
}

.store-product-carousel-image.is-active,
.product-detail-image.is-active {
  opacity: 1;
  transform: none;
}

.store-product-carousel-image.is-active {
  transform: none !important;
}

.store-product-carousel-empty {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 18px;
  color: var(--muted);
  font-weight: 700;
}

.store-product-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 16px 16px 12px;
}

.store-product-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.delivery-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 3px;
  background: rgba(34, 197, 94, 0.12);
  color: #0f7a2f;
  border: 1px solid rgba(34, 197, 94, 0.18);
  font-size: 0.66rem;
  font-weight: 800;
  white-space: nowrap;
}

.delivery-free-badge svg {
  width: 14px;
  height: 14px;
}

.store-product-summary,
.product-detail-summary,
.product-detail-description p {
  color: #53657a;
}

.store-product-price {
  color: var(--ocean);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.store-product-price-wrap {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.store-product-price-wrap.has-offer {
  align-content: start;
}

.store-product-price-original {
  color: #7a8798;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  white-space: nowrap;
}

.store-product-price.is-offer {
  color: var(--ocean);
}

.store-product-card .store-product-price-wrap {
  justify-items: end;
  align-content: start;
  width: auto;
  min-width: max-content;
}

.store-product-card .store-product-price {
  display: block;
  max-width: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  font-size: clamp(0.98rem, 1.8vw, 1.18rem);
  line-height: 1;
  white-space: nowrap;
}

.store-product-card .store-product-price-original {
  font-size: 0.76rem;
}

.product-spec-pairs {
  display: grid;
  gap: 8px;
  margin: 0;
}

.product-spec-pair {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 3px;
  background: rgba(15, 76, 129, 0.05);
  border: 1px solid rgba(15, 76, 129, 0.08);
}

.product-spec-pair dt,
.product-spec-pair dd {
  margin: 0;
}

.product-spec-pair dt {
  color: var(--ocean);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-spec-pair dd {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.store-product-card-footer,
.product-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 8px 12px 10px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(250, 252, 254, 0.9);
}

.store-product-card-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
}

.store-product-footer-top,
.store-product-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.store-product-footer-bottom {
  align-items: flex-start;
}

.store-product-footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.product-detail-footer .store-product-like {
  order: 1;
  flex: 0 0 auto;
}

.product-detail-footer .store-product-status {
  order: 2;
  margin-left: auto;
}

.product-detail-footer .store-product-whatsapp {
  order: 3;
  flex: 0 0 auto;
}

.store-product-like {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #fff;
  color: #64748b;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.store-product-like:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(239, 68, 68, 0.4);
  color: #dc2626;
}

.store-product-like.is-liked {
  color: #dc2626;
  background: rgba(254, 226, 226, 0.86);
  border-color: rgba(239, 68, 68, 0.3);
}

.store-product-like.is-disabled,
.store-product-like:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.store-product-like svg {
  width: 19px;
  height: 19px;
}

.store-product-share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #fff;
  color: #64748b;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.store-product-share-icon:hover {
  transform: translateY(-1px);
}

.store-product-share-icon.is-whatsapp {
  color: #128c48;
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
}

.store-product-share-icon.is-instagram {
  color: #c026d3;
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.18);
}

.store-product-share-icon.is-copied {
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
}

.store-product-share-icon svg {
  width: 18px;
  height: 18px;
}

.store-product-footer-note {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.store-product-hours-note {
  color: #8b5e3c;
  font-size: 0.62rem;
  font-weight: 700;
  text-align: right;
  line-height: 1.35;
}

.store-product-hours-note.is-hidden {
  visibility: hidden;
}

.store-product-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.store-product-status > div {
  display: grid;
  gap: 2px;
}

.store-product-status strong {
  font-size: 0.76rem;
  line-height: 1.2;
}

.store-product-status span:last-child {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.25;
}

.store-product-status-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #cbd5e1;
  box-shadow: 0 0 0 4px rgba(203, 213, 225, 0.22);
}

.store-product-status.is-open .store-product-status-dot {
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.store-product-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  align-content: start;
  min-height: 62px;
}

.store-product-card-tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: auto;
  min-height: 42px;
}

.store-product-card-category-tag,
.store-product-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 3px;
  font-size: 0.66rem;
  font-weight: 800;
  white-space: nowrap;
}

.store-product-card-category-tag {
  color: var(--ocean);
  background: rgba(15, 76, 129, 0.08);
  border: 1px solid rgba(15, 76, 129, 0.12);
}

.store-product-status-tag {
  color: #5b6574;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.store-product-status-tag.is-open {
  color: #0f7a2f;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.16);
}

.store-product-status-tag.is-active {
  color: #0f7a2f;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.18);
}

.store-product-status-tag.is-unavailable {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.18);
}

.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(15, 23, 42, 0.48);
}

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

.profile-modal-card {
  position: relative;
  width: min(460px, 100%);
  padding: 28px 24px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.profile-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.14);
  color: #334155;
  font-size: 1.25rem;
  cursor: pointer;
}

.profile-identity {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin-bottom: 20px;
  text-align: center;
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  color: #1d4ed8;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-identity strong {
  color: #10233e;
  font-size: 1rem;
}

.profile-identity span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}

.profile-form {
  display: grid;
  gap: 14px;
}

.profile-form label {
  display: grid;
  gap: 6px;
}

.profile-form label span {
  color: #334155;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-form input,
.profile-form select {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  background: #fff;
  color: #10233e;
}

.profile-form input:disabled {
  color: #64748b;
  background: #f8fafc;
}

.profile-whatsapp-status {
  margin: 0;
  color: #92400e;
  font-size: 0.82rem;
  font-weight: 700;
}

.profile-whatsapp-status.is-valid {
  color: #15803d;
}

.profile-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.store-product-status-tag .store-product-status-dot {
  width: 8px;
  height: 8px;
  box-shadow: none;
}

.store-product-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 3px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.18);
  color: #128c48;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.store-product-whatsapp svg {
  width: 19px;
  height: 19px;
}

.store-product-whatsapp.is-disabled {
  opacity: 0.48;
  filter: grayscale(0.35);
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}

.store-product-whatsapp-icon {
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
}

.store-product-contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #128c48;
  box-shadow: 0 10px 20px rgba(18, 140, 72, 0.14);
  animation: store-product-float 2.6s ease-in-out infinite;
}

.store-product-contact-cta svg {
  width: 20px;
  height: 20px;
}

.store-product-contact-cta.is-disabled {
  opacity: 0.48;
  filter: grayscale(0.35);
  pointer-events: none;
  cursor: default;
  box-shadow: none;
  animation: none;
}

.store-product-card h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.9rem, 1.45vw, 1rem);
  line-height: 1.24;
  word-break: break-word;
  -webkit-line-clamp: 2;
}

.store-product-summary {
  min-height: 4em;
  max-height: 4em;
  font-size: 0.72rem;
  line-height: 1.38;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-product-card .store-product-card-category-tag,
.store-product-card .store-product-status-tag,
.store-product-card .delivery-free-badge {
  max-width: 100%;
  min-height: 30px;
  padding-top: 6px;
  padding-bottom: 6px;
  white-space: normal;
  line-height: 1.2;
}

.store-product-card-footer {
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 14px 12px;
}

.store-product-footer-note {
  flex: 1 1 118px;
  min-width: 0;
  line-height: 1.3;
}

.store-no-results {
  margin-top: 18px;
  padding: 22px 18px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.store-no-results h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
  text-align: center;
}

.product-detail-shell {
  display: grid;
}

.product-detail-card {
  border-radius: 3px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
}

.product-detail-gallery {
  display: grid;
  gap: 0;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.product-detail-stage {
  aspect-ratio: 1 / 1;
}

.product-detail-image {
  cursor: zoom-in;
}

.product-detail-copy {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.product-detail-head {
  display: grid;
  gap: 10px;
}

.product-detail-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.product-detail-head h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.18rem, 3vw, 1.84rem);
  line-height: 1.12;
}

.product-detail-specs,
.product-detail-description {
  display: grid;
  gap: 8px;
}

.product-detail-specs h2,
.product-detail-description h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ocean);
}

.product-detail-summary {
  font-size: 0.82rem;
  line-height: 1.55;
}

.product-detail-description p {
  font-size: 0.82rem;
  line-height: 1.55;
}

.product-spec-pairs-compact {
  gap: 6px;
}

.product-spec-pairs-compact .product-spec-pair {
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 10px;
  padding: 7px 10px;
}

.product-spec-pairs-compact dt {
  font-size: 0.64rem;
}

.product-spec-pairs-compact dd {
  font-size: 0.78rem;
  line-height: 1.35;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  background: rgba(4, 10, 22, 0.92);
}

.product-lightbox[hidden] {
  display: none !important;
}

.product-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.product-lightbox-close svg {
  width: 22px;
  height: 22px;
}

.product-lightbox-backdrop {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 68px 24px 24px;
}

.product-lightbox-image {
  max-width: min(96vw, 1400px);
  max-height: calc(100vh - 100px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.36);
}

body.has-product-lightbox {
  overflow: hidden;
}

.store-empty-state,
.store-missing-card {
  margin-top: 18px;
  overflow: hidden;
}

.store-empty-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 253, 0.94));
}

.store-empty-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.store-empty-copy,
.store-missing-card {
  padding: 18px;
}

.store-empty-copy h2,
.store-missing-card h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.store-empty-copy h2 {
  text-align: center;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  line-height: 1.45;
}

.store-missing-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ocean), var(--reef));
  box-shadow: 0 14px 28px rgba(14, 165, 164, 0.22);
}

.btn.soft {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.register-section {
  padding: 10px 0 12px;
}

.register-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-radius: 3px;
  background:
    linear-gradient(140deg, rgba(15, 76, 129, 0.12), rgba(14, 165, 164, 0.08)),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  text-align: center;
}

.site-footer {
  margin: 0;
  padding: 0;
  width: 100%;
}

.footer-shell {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: 0;
  border-radius: 3px;
  color: rgba(245, 251, 255, 0.94);
  background:
    radial-gradient(circle at top left, rgba(14, 165, 164, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(244, 181, 86, 0.14), transparent 22%),
    linear-gradient(180deg, #081a32, #0b2240 52%, #103c63);
  box-shadow: 0 24px 40px rgba(7, 18, 37, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px 24px 0;
}

.footer-logo-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-column img {
  width: 48px;
  height: 48px;
  display: block;
}

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

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
}

.footer-column a,
.footer-column span {
  font-size: 0.8rem;
  line-height: 1.4;
}

.footer-column a {
  color: rgba(237, 245, 251, 0.8);
  transition: color 0.18s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-band {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 10px;
  padding: 0 0 20px;
}

.footer-band-item {
  display: grid;
  gap: 4px;
  width: 95%;
  padding: 10px 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-band-item span {
  color: rgba(233, 243, 250, 0.64);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-band-item strong {
  font-size: 0.72rem;
  line-height: 1.3;
}

@media (max-width: 980px) {
  .hero-copy h1 {
    max-width: none;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-gallery {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

}

@media (max-width: 760px) {
  .topbar {
    height: 90px;
    padding: 0;
  }

  .topbar-inner {
    height: 100%;
    min-height: 0;
  }

  .brand-copy span {
    max-width: 180px;
  }

  .landing-main {
    padding-top: 1px;
  }

  .location-brand {
    align-items: flex-start;
  }

  .menu-grid {
    gap: 0;
  }

  .menu-carousel-top {
    min-height: 46px;
    padding: 8px 10px;
    gap: 18px;
  }

  .menu-carousel-nav-top {
    width: 32px;
    height: 32px;
    margin-inline: 6px;
  }

  .store-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  }

  .store-product-card-footer,
  .product-detail-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .store-product-whatsapp {
    justify-content: center;
  }

  .store-product-card-footer {
    flex-direction: row;
    align-items: center;
  }

  .product-detail-footer {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .store-product-whatsapp-icon {
    justify-content: center;
  }

  .product-detail-title-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .footer-top {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 14px 0;
  }

  .footer-logo-column img {
    width: 40px;
    height: 40px;
  }

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

  .footer-column {
    gap: 6px;
  }

  .footer-column h3 {
    font-size: 0.72rem;
  }

  .footer-column a,
  .footer-column span {
    font-size: 0.68rem;
    line-height: 1.25;
  }

}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .topbar-inner {
    gap: 8px;
  }

  .brand-logo-link img {
    width: 72px;
    height: 72px;
  }

  .user-pill-copy strong {
    max-width: 94px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-section {
    padding-top: 8px;
  }

  .location-bar {
    padding: 10px 8px;
    border-radius: 3px;
  }

  .location-brand {
    gap: 0;
  }

  .location-inline {
    flex-wrap: nowrap;
    gap: 4px;
    min-height: 0;
    padding: 0;
    white-space: nowrap;
  }

  .location-prefix {
    letter-spacing: 0.08em;
    font-size: 0.66rem;
  }

  .location-country,
  .location-state {
    font-size: 0.86rem;
  }

  .location-separator {
    margin: 0 1px;
  }

  .menu-card {
    padding: 0;
    border-radius: 3px;
  }

  .store-hero-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .store-hero-copy {
    justify-items: center;
  }

  .store-toolbar {
    margin-top: 10px;
  }

  .store-product-search {
    width: 100%;
  }

  .page-sequence-bar {
    padding: 9px 10px;
    gap: 6px;
    font-size: 0.72rem;
  }

  .store-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-spec-pair {
    grid-template-columns: minmax(88px, 34%) minmax(0, 1fr);
    gap: 8px;
  }

  .product-detail-copy {
    padding: 16px;
  }

  .product-spec-pairs-compact .product-spec-pair {
    grid-template-columns: minmax(88px, 34%) minmax(0, 1fr);
    gap: 8px;
  }

  .menu-carousel-top {
    min-height: 42px;
    padding: 6px 8px;
    gap: 14px;
  }

  .menu-carousel-nav-top {
    width: 30px;
    height: 30px;
    margin-inline: 4px;
  }

  .menu-carousel-nav {
    width: 38px;
    height: 38px;
  }

  .menu-card-media {
    width: 100%;
    border-radius: 3px;
  }

  .register-card {
    padding: 20px;
  }

  .footer-shell {
    padding: 0;
    border-radius: 3px;
  }

  .footer-top {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 10px 0;
  }

  .footer-logo-column img {
    width: 34px;
    height: 34px;
  }

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

  .footer-column {
    gap: 5px;
  }

  .footer-column h3 {
    font-size: 0.66rem;
  }

  .footer-column a,
  .footer-column span {
    font-size: 0.62rem;
    line-height: 1.2;
  }

}

@media (max-width: 420px) {
  .container {
    width: min(100% - 12px, 1200px);
  }

  .store-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .store-product-card {
    border-radius: 3px;
  }

  .store-product-media-stage {
    --media-image-inset: 0px;
    aspect-ratio: 4 / 3.2;
    min-height: 0;
    padding: 0;
  }

  .store-product-card-body {
    gap: 8px;
    padding: 10px 10px 9px;
  }

  .store-product-card-head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
    align-items: start;
  }

  .store-product-card h2 {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.18;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
  }

  .store-product-summary {
    min-height: 3.2em;
    max-height: 3.2em;
    font-size: 0.64rem;
    line-height: 1.28;
    -webkit-line-clamp: 2;
  }

  .store-product-card .store-product-price-wrap {
    justify-items: end;
    width: auto;
    max-width: 44%;
  }

  .store-product-card .store-product-price {
    max-width: none;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    font-size: 0.76rem;
    line-height: 1;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .store-product-card .store-product-price-original {
    font-size: 0.54rem;
  }

  .store-product-card-category-tag,
  .store-product-status-tag,
  .delivery-free-badge {
    min-height: 22px;
    padding: 3px 6px;
    font-size: 0.52rem;
    line-height: 1.12;
  }

  .store-product-tags {
    gap: 5px;
    min-height: 50px;
  }

  .store-product-card-tools {
    gap: 6px;
    min-height: 32px;
  }

  .store-product-card-footer {
    gap: 6px;
    padding: 7px 10px 9px;
  }

  .store-product-footer-note {
    flex: 1 1 auto;
    min-height: 1.9em;
    font-size: 0.58rem;
  }

  .store-product-footer-top,
  .store-product-footer-bottom {
    gap: 6px;
  }

  .store-product-footer-actions {
    gap: 6px;
  }

  .store-product-like,
  .store-product-share-icon,
  .store-product-contact-cta {
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
  }

  .store-product-like svg,
  .store-product-share-icon svg,
  .store-product-contact-cta svg {
    width: 16px;
    height: 16px;
  }

  .store-product-hours-note {
    font-size: 0.54rem;
  }
}

@media (max-width: 380px) {
  .store-section-head h2,
  #storeProductsTitle {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .store-product-card h2 {
    font-size: 0.72rem;
  }

  .store-product-summary {
    font-size: 0.6rem;
  }

  .store-product-card .store-product-price {
    font-size: 0.7rem;
  }

  .store-product-tags {
    min-height: 46px;
  }

  .store-product-card-category-tag,
  .store-product-status-tag,
  .delivery-free-badge,
  .store-product-footer-note,
  .store-product-hours-note {
    font-size: 0.5rem;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .provider-card,
  .provider-new-chip {
    animation: none;
  }

  .menu-carousel-top,
  .menu-carousel-counter,
  .menu-carousel-nav,
  .menu-card-media,
  .menu-card-copy h3,
  .menu-card-copy p {
    transition: none;
  }
}

@keyframes provider-card-glow {
  0% {
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.16);
    transform: scale(0.998);
  }
  35% {
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.13), 0 0 10px rgba(244, 197, 66, 0.1);
    border-color: rgba(15, 76, 129, 0.22);
    transform: scale(1);
  }
  60% {
    box-shadow: 0 22px 40px rgba(15, 76, 129, 0.2), 0 0 22px rgba(244, 197, 66, 0.22);
    border-color: rgba(244, 197, 66, 0.3);
    transform: scale(1.006);
  }
  100% {
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.16);
    transform: scale(0.998);
  }
}

@keyframes toast-enter {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-card-glow {
  0% {
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.14);
  }
  55% {
    box-shadow: 0 22px 40px rgba(15, 76, 129, 0.16), 0 0 18px rgba(14, 165, 164, 0.14);
    border-color: rgba(15, 76, 129, 0.24);
  }
  100% {
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.14);
  }
}
