.shop-status { margin-top: 0.75rem; }
.muted { color: var(--muted, #8b93a1); }

/* Auth-aware nav: email label when signed in */
.nav__auth-who {
  font-size: 0.85rem;
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-self: center;
}
.nav__auth-who[hidden],
[data-auth-guest][hidden],
[data-auth-user][hidden] {
  display: none !important;
}

.shop-back {
  margin: 0 0 1.1rem;
}
.shop-back a {
  color: var(--accent-lt, #7dd8d8);
  text-decoration: none;
  font-weight: 600;
}
.shop-back a:hover { color: var(--accent, #3ab8c8); }

.offer-panel__cta-row {
  margin-top: auto;
  padding-top: .7rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
}

.shop-catalog {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.shop-catalog-section {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.15rem 0.85rem 0.85rem;
  background: rgba(0, 0, 0, 0.16);
}

.shop-catalog-section > .shop-grid {
  margin-top: 0.35rem;
}

.shop-catalog-section__head {
  margin: 0;
  padding: 0.85rem 0.15rem;
  cursor: pointer;
  list-style: none;
}

.shop-catalog-section__head::-webkit-details-marker { display: none; }

.shop-catalog-section__head h3 {
  margin: 0 0 0.2rem;
  font-family: Sora, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.shop-catalog-section__head p {
  margin: 0;
  font-size: 0.85rem;
}

.shop-catalog-section__head::after {
  content: "Show";
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-lt, #e6c65a);
}

.shop-catalog-section[open] > .shop-catalog-section__head::after {
  content: "Hide";
}

.shop-product__more {
  margin-top: 0.15rem;
}

.shop-product__more > summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.78rem;
  color: var(--muted, #8b93a1);
}

.shop-product__more > summary::-webkit-details-marker { display: none; }

.shop-product__more > p {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.shop-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted, #8b93a1);
}

.shop-qty input {
  width: 4.5rem;
  font: inherit;
  color: inherit;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.shop-choices--wifi .shop-wifi-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.shop-choices--wifi .shop-wifi-qty-row input {
  width: 4.5rem;
  font: inherit;
  color: inherit;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.shop-product {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
}

.shop-product .shop-product__actions {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.shop-product .shop-product__actions .btn {
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.shop-product .shop-product__actions .btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.shop-product.is-clickable {
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.shop-product.is-clickable:hover {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.2);
}

.shop-product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 140px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.shop-product h3 {
  margin: 0.75rem 0 0.25rem;
  font-family: Sora, system-ui, sans-serif;
  font-size: 1.05rem;
}

.shop-product .sku {
  font-size: 0.8rem;
  color: var(--muted, #8b93a1);
}

.shop-product .price {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--gold-lt, #e6c65a);
}

.shop-layout {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 280px);
  gap: 1.5rem;
  align-items: start;
}

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

.shop-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  background: rgba(0, 0, 0, 0.22);
  margin-bottom: 1rem;
}

.shop-card h2 {
  margin: 0 0 0.85rem;
  font-family: Sora, system-ui, sans-serif;
  font-size: 1.15rem;
}

.shop-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}

.shop-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--muted, #8b93a1);
}

.shop-form-grid label.full,
.shop-form-grid fieldset.full,
.shop-form-grid .full {
  grid-column: 1 / -1;
}

.shop-form-grid input,
.shop-form-grid textarea,
.shop-form-grid select {
  font: inherit;
  color: var(--ink, #e8f4f6);
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-700, #0e1f2c);
}

.shop-form-grid select option,
.shop-form-grid select optgroup {
  color: var(--ink, #e8f4f6);
  background-color: var(--navy-700, #0e1f2c);
}

.shop-choices {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.shop-choices label {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
}

.shop-sites-head {
  margin: 0 0 1rem;
}

.shop-sites-head__title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-family: Sora, system-ui, sans-serif;
}

.shop-sites-head__sub {
  margin: 0;
  font-size: 0.9rem;
}

.shop-destination {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.55);
  background: rgba(201, 162, 39, 0.1);
}

.shop-destination__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-lt, #e8c872);
  margin: 0 0 0.35rem;
}

.shop-destination h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-family: Sora, system-ui, sans-serif;
}

.shop-destination p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
}

.shop-destination select {
  width: 100%;
  max-width: 28rem;
  font: inherit;
  color: inherit;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.4);
}

.shop-destination__addr {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
}

.shop-cart-items {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.shop-cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem 0.85rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
}

.shop-cart-item__meta {
  min-width: 0;
}

.shop-cart-item__name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.shop-cart-item__hint {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--muted, #8b93a1);
}

.shop-cart-item__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
}

.shop-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.shop-stepper button {
  width: 2rem;
  height: 2rem;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  font: inherit;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.shop-stepper button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.shop-stepper button:not(:disabled):hover {
  background: rgba(201, 162, 39, 0.2);
}

.shop-stepper__qty {
  min-width: 2.1rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 0.95rem;
}

.shop-cart-item__remove {
  border: 0;
  background: transparent;
  color: #f0a0a0;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.2rem 0.15rem;
}

.shop-cart-item__remove:hover {
  color: #ffc0c0;
}

.shop-loc__badge--expansion {
  border-color: rgba(143, 212, 168, 0.45);
  color: #8fd4a8;
  background: rgba(143, 212, 168, 0.1);
}

.shop-loc--expansion {
  border-left-color: #8fd4a8;
}

@media (max-width: 640px) {
  .shop-cart-item {
    grid-template-columns: 1fr;
  }
  .shop-cart-item__controls {
    justify-content: flex-start;
  }
}

.shop-loc {
  border-left: 3px solid var(--gold, #c9a227);
  margin-bottom: 1rem;
}

.shop-loc__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted, #8b93a1);
}

.shop-loc__badge--package {
  border-color: rgba(58, 184, 200, 0.45);
  color: #7ee0ec;
  background: rgba(58, 184, 200, 0.1);
}

.shop-loc__badge--alacarte {
  border-color: rgba(232, 200, 114, 0.4);
  color: var(--gold-lt, #e8c872);
  background: rgba(232, 200, 114, 0.08);
}

.shop-package-choices {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.shop-package-choice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.shop-package-choice__meta {
  flex: 1;
  min-width: 12rem;
}

.shop-package-choice__meta strong {
  display: block;
  margin-bottom: 0.15rem;
}

.checkout-sites {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1rem 0;
}

.checkout-site {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.9rem;
}

.checkout-site h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.checkout-site ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

.shop-loc--package {
  border-left-color: var(--cyan, #3ab8c8);
}

.shop-loc__package {
  margin: 0 0 0.75rem;
}

.shop-loc__gateway-locked {
  margin: 0.75rem 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(58, 184, 200, 0.35);
  background: rgba(58, 184, 200, 0.08);
}

.shop-loc__lock-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted, #8b93a1);
  margin-bottom: 0.25rem;
}

.shop-loc__gateway-name {
  margin: 0;
  font-size: 1rem;
}

.shop-loc__addr {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-loc__addr-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-family: Sora, system-ui, sans-serif;
}

.shop-loc__extras {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(58, 184, 200, 0.2);
}

.shop-totals {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.shop-flash {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: rgba(180, 60, 60, 0.2);
  border: 1px solid rgba(255, 120, 120, 0.35);
  font-size: 0.9rem;
}

.shop-flash.ok {
  background: rgba(40, 120, 70, 0.2);
  border-color: rgba(100, 200, 140, 0.35);
}

/* Inline confirmation near each section / product action */
.section-flash {
  margin: 0.65rem 0 0;
  margin-bottom: 0;
}
.shop-product__flash {
  margin: 0.55rem 0 0;
  margin-bottom: 0;
  padding: 0.55rem 0.7rem;
  font-size: 0.82rem;
  width: 100%;
  box-sizing: border-box;
}
.shop-aside .section-flash {
  margin-top: 0.65rem;
}

.shop-orders .shop-card { margin-bottom: 0.85rem; }

.shop-error-list {
  color: #f0a0a0;
  font-size: 0.85rem;
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

/* Stripe Payment Element host */
.stripe-element {
  min-height: 2.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
}
#stripePayPanel h3 {
  font-family: Sora, system-ui, sans-serif;
  font-weight: 600;
}

/* Software / Radar subscribe modal */
.shop-modal[hidden] { display: none !important; }
.shop-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.shop-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 16, 0.72);
}
.shop-modal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(90vh, 760px);
  overflow: auto;
  background: var(--bg, #0d1820);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.35rem 1.4rem 1.15rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.shop-modal__panel--wide {
  width: min(880px, 100%);
  max-height: min(94vh, 920px);
}

.website-form { margin-top: 0.75rem; }
.website-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 0.85rem;
}
.website-form__full { grid-column: 1 / -1; }
@media (max-width: 700px) {
  .website-form__grid { grid-template-columns: 1fr; }
  .website-form__full { grid-column: auto; }
}
.shop-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.88rem;
}
.shop-field span em { color: #e6c65a; font-style: normal; }
.shop-field input,
.shop-field textarea,
.shop-field select {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  color: inherit;
  font: inherit;
}
.website-hours,
.website-photos {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 0.9rem 1rem;
  margin: 1rem 0 0;
}
.website-hours legend,
.website-photos legend {
  padding: 0 0.35rem;
  font-weight: 600;
}
.website-hours__days {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}
@media (max-width: 700px) {
  .website-hours__days { grid-template-columns: 1fr 1fr; }
}
.hours-day {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.65rem 0.7rem;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hours-day.is-closed {
  opacity: 0.55;
}
.hours-day__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
}
.hours-day__times {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hours-day__times input[type="time"] {
  flex: 1;
  min-width: 0;
  padding: 0.25rem 0.3rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  color: inherit;
  font: inherit;
  font-size: 0.82rem;
}
.hours-toggle {
  appearance: none;
  width: 2.2rem;
  height: 1.2rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  cursor: pointer;
}
.hours-toggle[aria-pressed="true"] { background: #c9a227; }
.hours-toggle::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.15s ease;
}
.hours-toggle[aria-pressed="true"]::after { transform: translateX(1rem); }
.website-photo-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}
@media (max-width: 700px) {
  .website-photo-row { grid-template-columns: 1fr; }
}
.website-addons {
  margin: 1rem 0 0;
  padding: 0;
  border: 0;
}
.website-addons legend {
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.website-domain {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 0.9rem 1rem;
  margin: 1rem 0 0;
}
.website-domain legend {
  padding: 0 0.35rem;
  font-weight: 600;
}
.website-domain .shop-field { margin-top: 0.75rem; }

.website-addon {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 0 0.55rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.08);
}
.website-addon strong { display: block; }
.shop-modal__head h2 { margin: 0.15rem 0 0.4rem; }
.shop-modal__actions { margin-top: 1rem; display: flex; justify-content: flex-end; }
.shop-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}
.shop-tier {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.9rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.03);
}
.shop-tier h3 { margin: 0; font-size: 1.05rem; }
.shop-tier .price { margin: 0.15rem 0; font-weight: 700; }
.shop-tier .btn { margin-top: auto; }
.shop-radar-usage {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0.65rem 0 1rem;
  font-size: 0.92rem;
}
