:root {
  color-scheme: dark;
  --bg: #0b1220;
  --bg-soft: #111a2b;
  --panel: rgba(22, 32, 52, 0.88);
  --panel-strong: rgba(28, 40, 64, 0.96);
  --panel-soft: rgba(116, 234, 255, 0.11);
  --text: #f8fbff;
  --muted: #d5dfed;
  --muted-2: #a9b8cd;
  --line: rgba(158, 224, 255, 0.24);
  --line-strong: rgba(158, 224, 255, 0.38);
  --pink: #ff43d1;
  --cyan: #3deaff;
  --violet: #8d61ff;
  --green: #2be87f;
  --warning: #ffc85a;
  --danger: #ff7e9b;
  --shadow: 0 24px 70px rgba(2, 8, 22, 0.38);
  --shadow-soft: 0 18px 42px rgba(2, 8, 22, 0.24);
  --radius-sm: 0.5rem;
  --radius-md: 0.7rem;
  --max-page: 1680px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(61, 234, 255, 0.18), transparent 34rem),
    linear-gradient(230deg, rgba(255, 67, 209, 0.13), transparent 36rem),
    linear-gradient(180deg, #111c2e 0%, #16243a 48%, #101827 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(137, 221, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 221, 255, 0.055) 1px, transparent 1px),
    linear-gradient(120deg, rgba(61, 234, 255, 0.09), transparent 42%, rgba(255, 67, 209, 0.075));
  background-position: center;
  background-size: 72px 72px, 72px 72px, cover;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.25));
  opacity: 0.55;
  pointer-events: none;
}

::selection {
  color: #05030a;
  background: var(--cyan);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  touch-action: manipulation;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(55, 215, 255, 0.42);
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

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

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(61, 234, 255, 0.22), 0 0 22px rgba(255, 67, 209, 0.24);
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 3.15rem);
  line-height: 1;
}

h3 {
  margin: 0.8rem 0 0.45rem;
  font-size: 1.05rem;
}

main {
  overflow: hidden;
}

.hero > *,
.section-shell > *,
.catalog-section > *,
.home-panel > *,
.cart-page-layout > *,
.legal-page > *,
.product-card > *,
.cart-panel > *,
.checkout-note > * {
  min-width: 0;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  padding: 0.62rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(137, 221, 255, 0.13);
  color: var(--muted);
  background: rgba(15, 26, 44, 0.96);
  font-size: 0.8rem;
  font-weight: 700;
}

.trust-bar strong {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #f6fbff;
}

.trust-bar strong::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  content: "";
  background: var(--green);
  box-shadow: 0 0 14px rgba(43, 232, 127, 0.62);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.5rem, 1.1vw, 0.95rem);
  padding: 0.72rem max(clamp(0.9rem, 2.6vw, 2rem), calc((100vw - var(--max-page)) / 2 + 1.25rem));
  border-bottom: 1px solid var(--line);
  background: rgba(19, 31, 51, 0.9);
  box-shadow: 0 16px 44px rgba(2, 8, 22, 0.26);
  backdrop-filter: blur(18px);
}

.site-header > * {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 10rem;
}

.brand-logo {
  width: 3.65rem;
  height: 2.8rem;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(61, 234, 255, 0.28)) drop-shadow(0 0 10px rgba(255, 67, 209, 0.36));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.top-nav {
  display: flex;
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.12rem;
  overflow-x: auto;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  scrollbar-width: none;
}

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

.top-nav a {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.34rem clamp(0.38rem, 0.8vw, 0.62rem);
  border-radius: 999px;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.top-nav a:hover,
.top-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(61, 234, 255, 0.08);
}

.top-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0.78rem;
  bottom: 0.32rem;
  left: 0.78rem;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--violet));
}

.nav-cart {
  gap: 0.4rem;
}

.nav-cart span {
  display: inline-grid;
  min-width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  border-radius: 999px;
  color: #05030a;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(55, 215, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 900;
}

.nav-cart-legacy {
  display: none !important;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.48rem;
  min-width: 0;
  flex-wrap: nowrap;
}

.header-account-menu {
  position: relative;
  display: inline-flex;
}

.header-action-button {
  position: relative;
  display: inline-grid;
  grid-template-rows: 1.55rem auto;
  justify-content: center;
  justify-items: center;
  gap: 0.18rem;
  min-width: clamp(3.35rem, 4.2vw, 3.95rem);
  min-height: 3rem;
  padding: 0.18rem 0.22rem;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: center;
}

.header-action-button:hover,
.header-action-button[aria-expanded="true"] {
  color: var(--text);
}

.header-action-icon {
  display: inline-grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  color: #ff333d;
}

.header-action-icon svg {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  filter: drop-shadow(0 0 10px rgba(255, 51, 61, 0.24));
}

.header-action-label {
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cart-button em {
  position: absolute;
  top: -0.1rem;
  right: 0.42rem;
  display: inline-grid;
  min-width: 1.05rem;
  height: 1.05rem;
  place-items: center;
  border-radius: 999px;
  color: #05030a;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(61, 234, 255, 0.42);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.cart-toast[hidden] {
  display: none;
}

.cart-toast {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 220;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  width: min(25rem, calc(100vw - 2rem));
  padding: 0.95rem 1rem;
  border: 1px solid rgba(43, 232, 127, 0.45);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: linear-gradient(135deg, rgba(20, 43, 40, 0.98), rgba(24, 36, 58, 0.98));
  box-shadow: 0 18px 44px rgba(2, 8, 22, 0.34), 0 0 24px rgba(43, 232, 127, 0.16);
  opacity: 0;
  transform: translateY(0.85rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-toast strong,
.cart-toast span {
  display: block;
}

.cart-toast strong {
  font-size: 0.95rem;
  font-weight: 900;
}

.cart-toast span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-toast a {
  display: inline-grid;
  min-height: 2.35rem;
  place-items: center;
  padding-inline: 0.9rem;
  border-radius: var(--radius-sm);
  color: #06110b;
  background: var(--green);
  box-shadow: 0 0 18px rgba(43, 232, 127, 0.24);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.customer-account-menu[hidden] {
  display: none;
}

.customer-account-menu [hidden] {
  display: none !important;
}

.customer-account-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 50%;
  z-index: 120;
  display: grid;
  width: min(21.3rem, calc(100vw - 1.5rem));
  padding: 1.3rem 1.25rem 1.2rem;
  color: #191919;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  transform: translateX(50%);
}

.customer-account-menu::before {
  position: absolute;
  top: -0.72rem;
  right: 50%;
  width: 1.4rem;
  height: 1.4rem;
  content: "";
  background: #ffffff;
  transform: translateX(50%) rotate(45deg);
}

.customer-account-menu a,
.customer-account-menu button {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 3.12rem;
  place-items: center;
  border: 0;
  color: #191919;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-account-menu a:hover,
.customer-account-menu button:hover {
  background: rgba(0, 0, 0, 0.04);
}

.customer-account-menu .customer-account-menu-logout {
  margin-top: 0.58rem;
  color: #ffffff;
  background: #191919;
}

.customer-account-menu .customer-account-menu-logout:hover {
  background: #303030;
}

.header-whatsapp-link {
  justify-self: end;
  white-space: nowrap;
}

.header-whatsapp-hidden {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

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

.customer-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.customer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 29, 0.72);
  backdrop-filter: blur(10px);
}

.customer-account-card {
  position: relative;
  display: grid;
  gap: 1rem;
  width: min(100%, 42rem);
  max-height: min(92vh, 48rem);
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(24, 36, 58, 0.98);
  box-shadow: var(--shadow);
}

.customer-account-head,
.customer-orders-head,
.customer-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.customer-account-head span {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.customer-account-head h2 {
  font-size: clamp(1.45rem, 4vw, 2.2rem);
}

.modal-close-button {
  display: inline-grid;
  flex: 0 0 auto;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.customer-account-summary,
.customer-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.customer-auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 0.62rem;
  background: rgba(61, 234, 255, 0.045);
}

.customer-auth-tab {
  min-height: 2.45rem;
  border: 0;
  border-radius: 0.48rem;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
}

.customer-auth-tab.is-active {
  color: #021016;
  background: var(--cyan);
}

.customer-login-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.customer-login-form [hidden] {
  display: none !important;
}

.customer-login-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.customer-login-form input {
  width: 100%;
  min-height: 2.85rem;
  border: 1px solid var(--line);
  border-radius: 0.56rem;
  padding: 0.78rem 0.9rem;
  color: var(--text);
  background: rgba(248, 251, 255, 0.055);
}

.customer-login-form input::placeholder {
  color: var(--muted-2);
}

.password-input-wrap {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  align-items: center;
}

.password-input-wrap input {
  padding-right: 3.15rem;
}

.password-toggle-button {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  z-index: 2;
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  transform: translateY(-50%);
}

.password-toggle-button:hover,
.password-toggle-button[aria-pressed="true"] {
  color: var(--cyan);
  background: rgba(61, 234, 255, 0.1);
}

.password-toggle-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

.customer-login-wide {
  grid-column: 1 / -1;
}

.customer-password-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.customer-reset-support {
  display: grid;
  gap: 0.65rem;
}

.customer-reset-support p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.4;
}

.customer-reset-support .whatsapp-link {
  width: fit-content;
}

.customer-link-button {
  min-height: auto;
  width: fit-content;
  border: 0;
  padding: 0;
  color: var(--cyan);
  background: transparent;
  font-weight: 900;
  text-align: left;
}

.customer-status {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(61, 234, 255, 0.24);
  border-radius: 0.56rem;
  color: var(--muted);
  background: rgba(61, 234, 255, 0.07);
  font-size: 0.88rem;
  font-weight: 800;
}

.customer-status[data-tone="success"] {
  border-color: rgba(43, 232, 127, 0.34);
  color: #bfffdc;
  background: rgba(43, 232, 127, 0.1);
}

.customer-status[data-tone="error"] {
  border-color: rgba(255, 126, 155, 0.38);
  color: #ffd3dc;
  background: rgba(255, 126, 155, 0.1);
}

.customer-orders-panel {
  display: grid;
  gap: 0.78rem;
}

.customer-orders-head .secondary-button {
  min-height: 2.25rem;
  padding: 0.58rem 0.78rem;
  font-size: 0.8rem;
}

.customer-order-list {
  display: grid;
  gap: 0.65rem;
}

.customer-order-item {
  align-items: flex-start;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.56rem;
  background: rgba(248, 251, 255, 0.045);
}

.customer-order-item div {
  display: grid;
  gap: 0.24rem;
  min-width: 0;
}

.customer-order-item div:last-child {
  justify-items: end;
  text-align: right;
}

.customer-order-item span,
.customer-order-item small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.customer-order-status {
  width: fit-content;
  justify-self: end;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(61, 234, 255, 0.25);
  border-radius: 999px;
  color: var(--cyan) !important;
  background: rgba(61, 234, 255, 0.08);
}

.customer-order-status.is-sent,
.customer-order-status.is-pending,
.customer-payment-status.is-pending {
  border-color: rgba(255, 203, 107, 0.34);
  color: var(--warning) !important;
  background: rgba(255, 203, 107, 0.1);
}

.customer-order-status.is-progress {
  border-color: rgba(61, 234, 255, 0.36);
  color: var(--cyan) !important;
  background: rgba(61, 234, 255, 0.1);
}

.customer-order-status.is-completed,
.customer-payment-status.is-completed {
  border-color: rgba(43, 232, 127, 0.36);
  color: #bfffdc !important;
  background: rgba(43, 232, 127, 0.1);
}

.customer-order-status.is-cancelled,
.customer-payment-status.is-cancelled {
  border-color: rgba(255, 126, 155, 0.38);
  color: #ffd3dc !important;
  background: rgba(255, 126, 155, 0.1);
}

.customer-payment-status {
  width: fit-content;
  justify-self: end;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
}

.customer-payment-status.is-refunded {
  color: #d7c5ff !important;
  background: rgba(148, 113, 255, 0.14);
}

.orders-page-layout {
  display: grid;
  grid-template-columns: minmax(19rem, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  width: min(var(--max-page), calc(100% - 2rem));
  margin: 0 auto 4rem;
}

.orders-query-panel,
.orders-result-panel {
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.orders-query-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.orders-result-panel {
  align-self: start;
}

.orders-query-block {
  display: grid;
  gap: 0.8rem;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(248, 251, 255, 0.045);
}

.orders-query-block h2,
.orders-result-panel h2 {
  margin: 0;
  font-size: 1.1rem;
}

.orders-query-block p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.orders-form {
  display: grid;
  gap: 0.72rem;
}

.orders-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.orders-form input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.76rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.56rem;
  color: var(--text);
  background: rgba(248, 251, 255, 0.08);
  font-weight: 800;
}

.orders-result-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.orders-result-head p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.account-hero {
  min-height: 18rem;
}

.account-page-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.38fr) minmax(0, 1fr);
  gap: 1.2rem;
  width: min(var(--max-page), calc(100% - 2rem));
  margin: 0 auto 4rem;
}

.account-page-layout--single {
  grid-template-columns: 1fr;
}

.account-dashboard {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.account-panel,
.account-empty,
.account-metric-card,
.account-care-card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(137, 221, 255, 0.06), rgba(248, 251, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.account-panel {
  min-width: 0;
  padding: 1rem;
}

.account-access-panel {
  align-self: start;
  display: grid;
  gap: 1rem;
}

.account-access-panel h2,
.account-section-head h2 {
  margin: 0;
  font-size: 1.18rem;
}

.account-access-panel p,
.account-empty span,
.account-care-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.account-access-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.account-empty {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border-color: rgba(255, 200, 90, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 200, 90, 0.1), rgba(61, 234, 255, 0.045)),
    var(--panel);
}

.account-empty[hidden] {
  display: none;
}

.account-empty strong {
  color: var(--warning);
}

.account-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.account-metric-card {
  display: grid;
  align-content: start;
  gap: 0.28rem;
  min-height: 8.5rem;
  padding: 1rem;
}

.account-metric-card span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-metric-card strong {
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1;
}

.account-metric-card small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.account-section-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.account-profile-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
}

.account-profile-list div {
  min-width: 0;
  padding: 0.78rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(248, 251, 255, 0.045);
}

.account-profile-list dt {
  color: var(--muted-2);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.account-profile-list dd {
  margin: 0.22rem 0 0;
  color: var(--text);
  font-weight: 900;
}

.account-order-list {
  padding: 0;
}

.account-care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.account-care-card {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 0.95rem;
}

.account-care-card h3 {
  margin: 0;
  font-size: 1rem;
}

.account-care-card .secondary-button {
  width: fit-content;
  min-height: 2.35rem;
  padding: 0.58rem 0.8rem;
  font-size: 0.8rem;
}

.account-rewards-panel {
  display: grid;
  gap: 0.85rem;
}

.account-points-balance {
  color: var(--cyan);
  font-size: 0.9rem;
  white-space: nowrap;
}

.account-reward-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.account-reward-item {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-width: 0;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(248, 251, 255, 0.045);
}

.account-reward-item.is-locked {
  opacity: 0.72;
}

.account-reward-item h3 {
  margin: 0;
  font-size: 1rem;
}

.account-reward-item p,
.account-redemption-item small {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.account-reward-meta,
.account-redemption-item {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
}

.account-reward-meta strong,
.account-redemption-code {
  color: var(--green);
  font-weight: 900;
}

.account-reward-item .secondary-button {
  width: 100%;
}

.account-redemption-list {
  display: grid;
  gap: 0.65rem;
}

.account-redemption-list h3 {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
}

.account-redemption-item {
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(248, 251, 255, 0.055);
}

.whatsapp-link,
.primary-button,
.secondary-button,
.details-button,
.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.05rem;
  border: 0;
  border-radius: 0.58rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.whatsapp-link:hover,
.primary-button:hover,
.secondary-button:hover,
.details-button:hover,
.checkout-button:hover,
.add-button:hover,
.qty-button:hover,
.remove-button:hover {
  transform: translateY(-1px);
}

.primary-button:disabled,
.secondary-button:disabled,
.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.whatsapp-link,
.checkout-button {
  color: #021108;
  background: linear-gradient(135deg, #72ffac, var(--green));
  box-shadow: 0 14px 30px rgba(43, 232, 127, 0.24);
}

.whatsapp-chat-widget {
  position: fixed;
  right: clamp(1rem, 3vw, 1.45rem);
  bottom: clamp(1rem, 3vw, 1.45rem);
  z-index: 70;
  display: grid;
  justify-items: end;
  gap: 0.72rem;
  max-width: min(22rem, calc(100vw - 2rem));
}

.whatsapp-chat-panel {
  display: grid;
  gap: 0.85rem;
  width: min(22rem, calc(100vw - 2rem));
  padding: 0.9rem;
  border: 1px solid rgba(43, 232, 127, 0.32);
  border-radius: var(--radius-md);
  background: rgba(24, 42, 54, 0.98);
  box-shadow: 0 24px 60px rgba(2, 8, 22, 0.28);
}

.whatsapp-chat-panel[hidden] {
  display: none;
}

.whatsapp-chat-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.whatsapp-chat-panel span,
.whatsapp-chat-panel label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.whatsapp-chat-panel strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.whatsapp-chat-panel header button {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.whatsapp-chat-panel label {
  display: grid;
  gap: 0.42rem;
}

.whatsapp-chat-panel textarea {
  width: 100%;
  min-height: 6.25rem;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 0.58rem;
  padding: 0.78rem 0.85rem;
  color: var(--text);
  background: rgba(248, 251, 255, 0.06);
  font: inherit;
  line-height: 1.45;
}

.whatsapp-chat-send,
.whatsapp-chat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #021108;
  background: linear-gradient(135deg, #72ffac, var(--green));
  box-shadow: 0 14px 30px rgba(43, 232, 127, 0.24);
  font-weight: 900;
}

.whatsapp-chat-send {
  min-height: 2.65rem;
  border-radius: 0.58rem;
  padding: 0.72rem 1rem;
}

.whatsapp-chat-button {
  width: 3.55rem;
  height: 3.55rem;
  min-height: 0;
  border-radius: 999px;
  padding: 0;
}

.whatsapp-chat-button span {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
}

.whatsapp-chat-button svg {
  width: 2.05rem;
  height: 2.05rem;
}

.whatsapp-chat-button:hover,
.whatsapp-chat-send:hover {
  transform: translateY(-1px);
}

.primary-button {
  color: #021016;
  background: linear-gradient(135deg, var(--cyan), #7cf7ff 46%, var(--pink));
  box-shadow: 0 14px 34px rgba(61, 234, 255, 0.18), 0 10px 30px rgba(255, 67, 209, 0.16);
}

.secondary-button {
  border: 1px solid rgba(137, 221, 255, 0.24);
  color: var(--text);
  background: rgba(248, 251, 255, 0.065);
}

.secondary-button:hover,
.details-button:hover {
  border-color: rgba(61, 234, 255, 0.52);
  background: rgba(61, 234, 255, 0.08);
  box-shadow: 0 14px 32px rgba(61, 234, 255, 0.11);
}

.details-button {
  min-height: 2.55rem;
  border: 1px solid rgba(137, 221, 255, 0.24);
  color: var(--text);
  background: rgba(248, 251, 255, 0.065);
  font-size: 0.84rem;
  line-height: 1.08;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(28rem, 1.08fr) minmax(24rem, 0.92fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: center;
  width: min(100%, var(--max-page));
  min-height: clamp(32rem, 66svh, 46rem);
  margin-inline: auto;
  padding: clamp(1.25rem, 3.2vw, 3.5rem);
}

.hero::before {
  position: absolute;
  inset: 10% 0 auto auto;
  width: min(26rem, 44vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(61, 234, 255, 0.78), rgba(255, 67, 209, 0.58), transparent);
  box-shadow: 0 0 28px rgba(61, 234, 255, 0.34);
}

.hero-content {
  max-width: 50rem;
}

.hero-logo {
  width: min(30rem, 82vw);
  margin: 0 0 1.25rem;
  filter: drop-shadow(0 0 24px rgba(61, 234, 255, 0.28)) drop-shadow(0 0 18px rgba(255, 67, 209, 0.34));
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  margin: 1.2rem 0 1.4rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-showcase {
  position: relative;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  width: min(100%, 40rem);
  justify-self: end;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(61, 234, 255, 0.15), rgba(255, 67, 209, 0.1)),
    rgba(28, 42, 66, 0.82);
  box-shadow: var(--shadow);
}

.hero-showcase::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--warning));
}

.hero-showcase::after {
  position: absolute;
  right: -3rem;
  bottom: -3.5rem;
  width: min(18rem, 55%);
  aspect-ratio: 1;
  content: "";
  background: url("../img/genesis-store-og.png") center / contain no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.showcase-header,
.showcase-grid {
  position: relative;
  z-index: 1;
}

.showcase-header {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.showcase-header span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-header strong {
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  line-height: 1;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.showcase-grid article {
  min-height: 9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.065);
}

.showcase-grid span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--warning);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-grid strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.quick-info,
.section-shell,
.catalog-section,
.home-panel,
.page-hero,
.cart-page-layout {
  padding: clamp(1.25rem, 4vw, 3rem);
}

.section-shell,
.catalog-section,
.home-panel,
.cart-page-layout,
.legal-page {
  width: min(100%, var(--max-page));
  margin-inline: auto;
}

.page-hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(18rem, 34vw, 26rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(61, 234, 255, 0.13), transparent 48%),
    linear-gradient(250deg, rgba(255, 67, 209, 0.11), transparent 45%),
    rgba(5, 9, 18, 0.72);
  padding-inline: max(clamp(1.25rem, 4vw, 3rem), calc((100vw - var(--max-page)) / 2 + 1.5rem));
}

.page-hero::after {
  position: absolute;
  right: max(1rem, calc((100vw - var(--max-page)) / 2 + 1.5rem));
  bottom: 1.25rem;
  width: min(17rem, 38vw);
  aspect-ratio: 2.3 / 1;
  content: "";
  background: url("../img/genesis-store-logo-web.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.page-hero h1,
.page-hero .eyebrow,
.page-hero .hero-copy {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 58rem;
}

.page-hero .hero-copy {
  max-width: 46rem;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(calc(100% - 2rem), var(--max-page));
  margin: 0 auto clamp(0.5rem, 2vw, 1rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(61, 234, 255, 0.045);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 1501px) {
  .quick-info,
  .section-shell,
  .catalog-section,
  .home-panel,
  .cart-page-layout,
  .legal-page,
  .hero {
    width: min(calc(100% - 6rem), var(--max-page));
  }
}

.quick-info article,
.service-grid article,
.feature-card,
.faq-card,
.contact-card,
.product-card,
.checkout-note,
.sector-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(137, 221, 255, 0.065), rgba(248, 251, 255, 0.02)),
    var(--panel);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.service-grid article,
.feature-card,
.faq-card,
.contact-card,
.product-card,
.sector-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-grid article:hover,
.feature-card:hover,
.faq-card:hover,
.contact-card:hover,
.product-card:hover,
.sector-card:hover {
  transform: translateY(-2px);
  border-color: rgba(61, 234, 255, 0.36);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.quick-info article {
  padding: 1rem;
  box-shadow: none;
}

.quick-info span,
.quick-info strong {
  display: block;
}

.quick-info span {
  margin-bottom: 0.35rem;
  color: var(--muted-2);
  font-size: 0.8rem;
}

.quick-info strong {
  font-size: 1.05rem;
}

.quick-info a {
  color: inherit;
}

.section-heading,
.catalog-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.home-feature-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.faq-card,
.contact-card {
  overflow: hidden;
  padding: 1rem;
}

.feature-card::before,
.faq-card::before,
.contact-card::before,
.service-grid article::before,
.sector-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--violet));
  opacity: 0.72;
}

.feature-card span,
.faq-card span,
.contact-card span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card p,
.faq-card p,
.contact-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.feature-card,
.contact-card {
  display: grid;
  gap: 0.55rem;
}

.feature-card .price {
  color: var(--warning);
}

.service-grid,
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-grid article,
.sector-card {
  min-height: 12rem;
  overflow: hidden;
  padding: 1.1rem;
}

.sector-card {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.sector-card strong {
  color: var(--warning);
}

.sector-card .secondary-button {
  align-self: end;
  width: fit-content;
  margin-top: 0.3rem;
}

.service-icon {
  display: inline-flex;
  width: fit-content;
  min-width: 2.4rem;
  justify-content: center;
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(255, 67, 209, 0.4);
  border-radius: 999px;
  color: var(--pink);
  background: rgba(255, 67, 209, 0.08);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-grid p,
.sector-card p,
.product-card p,
.empty-copy {
  color: var(--muted);
  line-height: 1.45;
}

.product-detail-shell {
  width: min(var(--max-page), calc(100% - 2rem));
  margin: clamp(1.4rem, 4vw, 3rem) auto 4rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.product-detail-media,
.product-detail-info {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(137, 221, 255, 0.065), rgba(248, 251, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.product-detail-media {
  position: relative;
  display: grid;
  min-height: clamp(18rem, 40vw, 31rem);
  overflow: hidden;
  place-items: center;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-placeholder {
  display: grid;
  width: 100%;
  min-height: inherit;
  place-items: center;
  padding: 1rem;
  color: var(--muted);
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 900;
  text-align: center;
}

.product-detail-info {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.4rem);
}

.product-detail-info h1 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
}

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

.product-detail-price {
  display: grid;
  gap: 0.18rem;
}

.product-detail-price span {
  color: var(--muted-2);
  font-weight: 900;
  text-decoration: line-through;
}

.product-detail-price strong {
  color: var(--warning);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.product-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
}

.product-detail-list div {
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: 0.58rem;
  background: rgba(248, 251, 255, 0.045);
}

.product-detail-list dt {
  color: var(--muted-2);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-list dd {
  margin: 0.3rem 0 0;
  color: var(--text);
  font-weight: 850;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.product-detail-actions .add-button,
.product-detail-actions .secondary-button {
  min-height: 2.85rem;
}

.product-detail-empty {
  min-height: 16rem;
}

.catalog-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: end;
  justify-content: flex-end;
}

.catalog-tools > * {
  min-width: 11rem;
}

.catalog-tools select {
  align-self: end;
}

.reset-filters-button {
  align-self: end;
  min-width: 8.5rem;
  min-height: 2.8rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(137, 221, 255, 0.22);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(248, 251, 255, 0.06);
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.reset-filters-button:hover {
  transform: translateY(-1px);
  border-color: rgba(61, 234, 255, 0.48);
  background: rgba(61, 234, 255, 0.08);
}

.reset-filters-button[hidden] {
  display: none;
}

.search-box,
.filter-box {
  display: grid;
  gap: 0.3rem;
}

.search-box span,
.filter-box span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(137, 221, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(248, 251, 255, 0.065);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input,
select {
  min-height: 2.8rem;
  padding: 0 0.8rem;
}

textarea {
  resize: vertical;
  padding: 0.75rem 0.8rem;
}

option {
  color: #07101d;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  background: rgba(61, 234, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(61, 234, 255, 0.15);
}

.catalog-status {
  min-height: 1.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.4;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.5rem), 1fr));
  gap: 1rem;
}

.empty-state {
  display: grid;
  gap: 0.85rem;
  align-content: center;
  min-height: 16rem;
  padding: clamp(1rem, 4vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(61, 234, 255, 0.09), rgba(255, 67, 209, 0.06)),
    var(--panel);
}

.empty-state strong {
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.05;
}

.empty-state p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.empty-state .secondary-button {
  width: fit-content;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(61, 234, 255, 0.34);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), 0 0 24px rgba(61, 234, 255, 0.08);
}

.product-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--warning));
  opacity: 0.75;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(61, 234, 255, 0.18), rgba(255, 67, 209, 0.13)),
    #182945;
}

.product-ribbon {
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  max-width: calc(100% - 1.44rem);
  padding: 0.34rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #08111d;
  background: linear-gradient(135deg, var(--warning), var(--green));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image:empty {
  background:
    url("../img/genesis-store-logo-web.png") center / 72% auto no-repeat,
    linear-gradient(135deg, rgba(61, 234, 255, 0.16), rgba(255, 67, 209, 0.14)),
    #182945;
}

.product-image:empty::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(3, 4, 9, 0.36));
}

.product-body {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.product-card-skeleton {
  pointer-events: none;
}

.product-card-skeleton .product-image,
.product-card-skeleton .product-body span,
.product-card-skeleton .product-body strong,
.product-card-skeleton .product-body p,
.product-card-skeleton .product-body div {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: rgba(248, 251, 255, 0.075);
}

.product-card-skeleton .product-body span {
  width: 55%;
  height: 1.25rem;
}

.product-card-skeleton .product-body strong {
  width: 82%;
  height: 1.45rem;
}

.product-card-skeleton .product-body p {
  width: 100%;
  height: 2.6rem;
}

.product-card-skeleton .product-body div {
  width: 70%;
  height: 2.45rem;
}

.product-card-skeleton .product-image::after,
.product-card-skeleton .product-body span::after,
.product-card-skeleton .product-body strong::after,
.product-card-skeleton .product-body p::after,
.product-card-skeleton .product-body div::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
  to {
    transform: translateX(100%);
  }
}

.product-body h3 {
  margin-top: 0.35rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  border: 1px solid rgba(61, 234, 255, 0.34);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  color: var(--cyan);
  background: rgba(61, 234, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
}

.tag-warning {
  border-color: rgba(255, 209, 102, 0.45);
  color: var(--warning);
  background: rgba(255, 209, 102, 0.08);
}

.tag-danger {
  border-color: rgba(255, 126, 155, 0.48);
  color: #ffb7c6;
  background: rgba(255, 126, 155, 0.08);
}

.tag-offer,
.tag-promo {
  border-color: rgba(255, 209, 102, 0.58);
  color: var(--warning);
  background: rgba(255, 209, 102, 0.12);
}

.tag-new {
  border-color: rgba(43, 232, 127, 0.45);
  color: #9fffc8;
  background: rgba(43, 232, 127, 0.09);
}

.tag-bestseller {
  border-color: rgba(141, 97, 255, 0.5);
  color: #d5c8ff;
  background: rgba(141, 97, 255, 0.1);
}

.tag-featured,
.tag-custom {
  border-color: rgba(255, 67, 209, 0.42);
  color: #ffc0f0;
  background: rgba(255, 67, 209, 0.09);
}

.price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
}

.price {
  grid-column: 1 / -1;
  color: var(--warning);
  font-size: 1.25rem;
  font-weight: 900;
}

.price-stack {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.1rem;
  line-height: 1.1;
}

.old-price {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: line-through;
}

.add-button,
.qty-button,
.remove-button {
  border: 1px solid rgba(137, 221, 255, 0.22);
  border-radius: 0.45rem;
  color: var(--text);
  background: rgba(248, 251, 255, 0.075);
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.add-button {
  min-height: 2.55rem;
  padding: 0 0.8rem;
}

.price-row .add-button,
.price-row .details-button {
  width: 100%;
  min-width: 0;
  padding-inline: 0.62rem;
  white-space: normal;
}

.add-button:hover,
.qty-button:hover,
.remove-button:hover {
  border-color: var(--cyan);
  background: rgba(61, 234, 255, 0.1);
}

.add-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.cart-panel {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(24, 36, 58, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: 1.25rem;
  align-items: start;
}

.checkout-note {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

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

.cart-header,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-header {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

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

.cart-items {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(248, 251, 255, 0.045);
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.cart-controls {
  display: grid;
  grid-template-columns: 2rem 2rem 2rem;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
}

.qty-button,
.remove-button {
  width: 2rem;
  height: 2rem;
}

.remove-button {
  grid-column: span 3;
  width: 100%;
  color: #ffc0cc;
}

.checkout-form {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
}

.checkout-section {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-section legend {
  margin-bottom: 0.15rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
}

.checkout-customer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid rgba(61, 234, 255, 0.28);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(61, 234, 255, 0.08), rgba(255, 67, 209, 0.045)),
    rgba(248, 251, 255, 0.035);
}

.checkout-customer-card span {
  display: block;
  margin-bottom: 0.24rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-customer-card strong {
  display: block;
  font-size: 1rem;
}

.checkout-customer-card > div,
.checkout-customer-card p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.checkout-customer-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
}

.checkout-customer-card .secondary-button {
  min-width: 10.5rem;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.cash-change-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.45rem;
  padding: 0.78rem;
  border: 1px solid rgba(255, 203, 107, 0.28);
  border-radius: 0.58rem;
  background: rgba(255, 203, 107, 0.065);
}

.cash-change-fields[hidden] {
  display: none !important;
}

.cash-change-fields label {
  margin: 0;
}

.checkout-address-grid label:first-child,
.checkout-form-grid label:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.checkout-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.checkout-form input[readonly] {
  cursor: not-allowed;
  opacity: 0.86;
}

.checkout-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.delivery-fields {
  display: grid;
  gap: 0.75rem;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(248, 251, 255, 0.035);
}

.delivery-fields[hidden] {
  display: none;
}

.zip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
}

.zip-row .secondary-button {
  min-height: 3rem;
  white-space: nowrap;
}

.delivery-hint {
  margin: 0;
  color: var(--warning);
  font-size: 0.84rem;
  line-height: 1.4;
}

.delivery-hint.is-error {
  color: #ffc0cc;
}

.delivery-hint.is-success {
  color: #9fffc8;
}

.checkbox-label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
}

.checkbox-label input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
}

.checkbox-label a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.cart-total {
  padding-top: 0.5rem;
  font-size: 1.1rem;
}

.cart-total-final {
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  font-size: 1.25rem;
}

.checkout-button {
  width: 100%;
}

.checkout-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.checkout-status.is-error {
  color: #ffc0cc;
}

.checkout-status.is-success {
  color: #9fffc8;
}

.legal-page {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.legal-page h2 {
  margin-top: 1.2rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-page p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.order-sent {
  max-width: 42rem;
}

.site-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem max(clamp(1rem, 4vw, 3rem), calc((100vw - var(--max-page)) / 2 + 1.25rem));
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1220px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .top-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

}

@media (min-width: 1221px) and (max-width: 1380px) {
  .brand small {
    display: none;
  }

  .brand {
    min-width: 8.4rem;
  }

  .top-nav {
    font-size: 0.82rem;
  }

  .top-nav a {
    padding-inline: 0.34rem;
  }

  .header-actions {
    gap: 0.28rem;
  }

  .whatsapp-link {
    padding-inline: 0.72rem;
  }
}

@media (max-width: 900px) {
  .catalog-head {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-tools {
    justify-content: stretch;
  }

  .catalog-tools > * {
    flex: 1 1 13rem;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-showcase {
    justify-self: stretch;
  }

  .hero::before {
    display: none;
  }

  .service-grid,
  .sector-grid,
  .home-feature-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-page-layout {
    grid-template-columns: 1fr;
  }

  .account-page-layout {
    grid-template-columns: 1fr;
  }

  .account-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-care-grid,
  .account-reward-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .trust-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0.5rem 0.85rem;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .trust-bar::-webkit-scrollbar {
    display: none;
  }

  .trust-bar span,
  .trust-bar strong {
    flex: 0 0 auto;
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    max-width: 100vw;
    padding: 0.7rem 0.85rem;
  }

  .brand {
    order: 1;
    flex: 1 1 calc(100% - 8rem);
    min-width: 0;
    gap: 0.55rem;
  }

  .brand span {
    min-width: 0;
  }

  .brand strong {
    overflow-wrap: normal;
  }

  .brand-logo {
    flex: 0 0 auto;
    width: 2.95rem;
    height: 2.2rem;
  }

  .brand small {
    display: none;
  }

  .header-actions {
    order: 2;
    flex: 1 1 100%;
    justify-content: flex-start;
    gap: 0.45rem;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.12rem;
    scrollbar-width: none;
  }

  .header-actions::-webkit-scrollbar {
    display: none;
  }

  .header-action-button {
    flex: 0 0 auto;
  }

  .customer-account-menu {
    position: fixed;
    top: var(--customer-menu-top, 6rem);
    left: var(--customer-menu-left, 0.75rem);
    z-index: 240;
    width: var(--customer-menu-width, calc(100vw - 1.5rem));
    max-height: calc(100vh - var(--customer-menu-top, 6rem) - 0.85rem);
    overflow-y: auto;
    transform: none;
  }

  .customer-account-menu::before {
    left: var(--customer-menu-arrow-left, 2.2rem);
    transform: translateX(-50%) rotate(45deg);
  }

  .top-nav {
    order: 3;
    flex: 1 0 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scroll-padding-inline: 0.85rem;
    scrollbar-width: none;
  }

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

  .top-nav a {
    min-height: 2.45rem;
    padding-inline: 0.62rem;
  }

  .whatsapp-link {
    order: 1;
    flex: 0 0 auto;
    min-height: 2.55rem;
    padding-inline: 0.9rem;
    font-size: 0.9rem;
  }

  .customer-login-form {
    grid-template-columns: 1fr;
  }

  .customer-order-item {
    flex-direction: column;
  }

  .customer-order-item div:last-child {
    justify-items: start;
    text-align: left;
  }

  .hero {
    justify-items: start;
    gap: 1.35rem;
    padding: 1rem 1.25rem 2rem;
  }

  .hero-content,
  .hero-showcase {
    width: 100%;
    max-width: 100%;
  }

  .hero-logo {
    width: min(20rem, 86vw);
    margin-bottom: 0.9rem;
  }

  .hero-copy {
    margin-block: 1rem 1.15rem;
  }

  .page-hero {
    min-height: 15.5rem;
    padding-block: 2rem 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions > * {
    flex: none;
    width: 100%;
    min-width: 0;
  }

  .page-hero::after {
    opacity: 0.05;
    width: 15rem;
  }

  .page-hero h1,
  .page-hero .hero-copy {
    max-width: 100%;
  }

  .quick-info,
  .service-grid,
  .sector-grid,
  .home-feature-grid,
  .faq-grid,
  .contact-grid,
  .account-profile-list {
    grid-template-columns: 1fr;
  }

  .account-section-head,
  .account-access-actions {
    align-items: stretch;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .account-section-head .secondary-button {
    width: 100%;
  }

  .orders-page-layout {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid article {
    min-height: 6.8rem;
    padding: 0.78rem;
  }

  .showcase-grid span {
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
  }

  .showcase-grid strong {
    font-size: 0.9rem;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-tools > * {
    flex: 1 1 100%;
    min-width: 0;
  }

  .reset-filters-button {
    width: 100%;
  }

  .checkout-form-grid,
  .zip-row {
    grid-template-columns: 1fr;
  }

  .checkout-customer-card {
    grid-template-columns: 1fr;
  }

  .checkout-customer-card .secondary-button {
    width: 100%;
  }

  .zip-row .secondary-button {
    width: 100%;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-controls {
    grid-template-columns: 2.2rem 2.2rem 2.2rem 1fr;
    justify-content: start;
  }

  .cart-toast {
    right: 1rem;
    bottom: 1rem;
    grid-template-columns: 1fr;
  }

  .cart-toast a {
    width: 100%;
  }

  .qty-button,
  .remove-button {
    width: 2.2rem;
    height: 2.2rem;
  }

  .remove-button {
    grid-column: auto;
    width: auto;
    padding-inline: 0.75rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 2rem;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: clamp(2.22rem, 15vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.55rem, 10vw, 2.35rem);
  }

  .quick-info,
  .section-shell,
  .catalog-section,
  .home-panel,
  .page-hero,
  .cart-page-layout,
  .legal-page {
    padding-inline: 1rem;
    width: 100%;
  }

  .trust-bar {
    gap: 0.45rem 0.7rem;
    justify-content: center;
  }

  .trust-bar span {
    display: none;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .whatsapp-link {
    min-height: 2.45rem;
    font-size: 0.86rem;
  }

  .header-action-button {
    min-width: 4.15rem;
  }

  .header-action-label {
    font-size: 0.68rem;
  }

  .header-action-icon,
  .header-action-icon svg {
    width: 1.42rem;
    height: 1.42rem;
  }

  .account-metric-grid {
    grid-template-columns: 1fr;
  }

  .cart-controls {
    grid-template-columns: 2.2rem 2.2rem 2.2rem;
  }

  .remove-button {
    grid-column: span 3;
    width: 100%;
  }

  .price-row {
    align-items: stretch;
    flex-direction: column;
  }

  .price-row .add-button,
  .price-row .details-button {
    width: 100%;
  }

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

  .product-detail-actions .add-button,
  .product-detail-actions .secondary-button {
    width: 100%;
  }

  .empty-state .secondary-button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .trust-bar {
    font-size: 0.74rem;
  }

  .site-header {
    gap: 0.55rem;
    padding-inline: 0.75rem;
  }

  .brand {
    flex-basis: auto;
  }

  .brand-logo {
    width: 2.65rem;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .whatsapp-link {
    min-height: 2.35rem;
    padding-inline: 0.7rem;
    font-size: 0.84rem;
  }

  .header-actions {
    gap: 0.34rem;
  }

  .top-nav {
    gap: 0.1rem;
  }

  .top-nav a {
    min-height: 2.3rem;
    padding-inline: 0.52rem;
    font-size: 0.86rem;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
