﻿:root {
  --bg: #f3f7fb;
  --panel: #ffffff;
  --panel-soft: #e8f1f8;
  --line: #d7e3ef;
  --text: #10253a;
  --muted: #607487;
  --brand: #0d63a9;
  --brand-dark: #0a4e85;
  --accent: #f0b541;
  --danger: #c0392b;
  --success: #1f8f5f;
  --shadow: 0 18px 38px rgba(10, 35, 60, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 99, 169, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbfe 0%, var(--bg) 100%);
}

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

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

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

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

footer[data-shop-footer] {
  display: block;
}

.shop-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 2px;
  backdrop-filter: blur(10px);
  background: transparent;
  border-bottom: 0;
  overflow: visible;
}

.shop-topbar,
.shop-topbar-inner,
.brand img,
.top-link,
.cart-link,
.account-link,
.customer-switch button {
  transition:
    padding 0.22s ease,
    min-height 0.22s ease,
    width 0.22s ease,
    margin 0.22s ease,
    transform 0.22s ease,
    border-radius 0.22s ease;
}

.shop-topbar-inner,
.shop-main,
.shop-footer-inner {
  width: min(1380px, calc(100% - 32px));
  margin: 0 auto;
}

.shop-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 20px;
  min-height: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  align-self: center;
}

.brand img {
  width: 150px;
  height: auto;
  margin: -34px 0 -66px;
}

.brand-copy strong {
  display: block;
  font-size: 1.15rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.mobile-header-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.mobile-header-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.customer-switch {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.customer-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.customer-switch button.is-active {
  background: var(--brand);
  color: #fff;
}

.top-link,
.cart-link,
.account-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  position: relative;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.shop-topbar.is-compact {
  padding-top: 0;
}

.shop-topbar.is-compact .shop-topbar-inner {
  padding: 3px 14px;
  border-radius: 18px;
}

.shop-topbar.is-compact .brand img {
  width: 112px;
  margin: -18px 0 -44px;
}

.shop-topbar.is-compact .top-link,
.shop-topbar.is-compact .cart-link,
.shop-topbar.is-compact .account-link {
  min-height: 40px;
  padding: 0 15px;
}

.shop-topbar.is-compact .customer-switch button {
  padding: 8px 13px;
}

.header-menu {
  position: relative;
}

.header-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(13, 99, 169, 0.12);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 24px 52px rgba(10, 35, 60, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 40;
}

.header-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 16px;
}

.header-menu:hover .header-dropdown,
.header-menu:focus-within .header-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-menu-account .header-dropdown {
  left: auto;
  right: 0;
}

.header-dropdown-cart {
  min-width: 340px;
}

.dropdown-heading {
  padding: 0 6px 2px;
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dropdown-link {
  display: grid;
  gap: 5px;
  padding: 13px 15px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbfe 0%, #eef5fb 100%);
  border: 1px solid rgba(13, 99, 169, 0.08);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.dropdown-link:hover,
.dropdown-link:focus-visible {
  background: #fff;
  border-color: rgba(13, 99, 169, 0.18);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(10, 35, 60, 0.06);
}

.dropdown-link strong {
  font-size: 0.95rem;
  line-height: 1.25;
  font-weight: 800;
}

.dropdown-link span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.dropdown-item {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbfe 0%, #eef5fb 100%);
  border: 1px solid rgba(13, 99, 169, 0.12);
}

.dropdown-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dropdown-item-head strong {
  font-size: 0.96rem;
  line-height: 1.3;
}

.dropdown-item-head span {
  color: var(--muted);
  font-size: 0.84rem;
}

.dropdown-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(13, 99, 169, 0.14);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.dropdown-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(13, 99, 169, 0.12);
  border-radius: 999px;
  background: #f4f9fd;
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 800;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.dropdown-qty button:hover,
.dropdown-qty button:focus-visible {
  background: #e6f1fb;
  border-color: rgba(13, 99, 169, 0.28);
  transform: translateY(-1px);
}

.dropdown-qty span {
  min-width: 24px;
  text-align: center;
  color: var(--text);
  font-weight: 800;
  font-size: 0.9rem;
}

.cart-pill {
  min-width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.account-link::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--text);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.shop-main {
  padding: 34px 0 48px;
}

.hero-card,
.panel,
.summary-card,
.checkout-card,
.footer-card,
.filter-card,
.product-card,
.cart-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 28px;
  padding: 36px;
  margin-bottom: 28px;
}

.hero-card h1,
.page-head h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
}

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

.lead {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hero-point {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.hero-point::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

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

.button {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
}

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

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  background: var(--panel-soft);
  color: var(--text);
  border: 1px solid var(--line);
}

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

.hero-side {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #0f5d9d 0%, #0b4a7d 100%);
  color: #fff;
  padding: 28px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.stat-grid article {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
}

.stat-grid strong {
  display: block;
  font-size: 1.7rem;
}

.hero-highlight {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-highlight .eyebrow {
  color: #0a4e85;
}

.hero-highlight h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: #10253a;
}

.hero-highlight p {
  margin: 0;
  color: #38546d;
  line-height: 1.65;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.top-products-section {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.landing-audience-section,
.landing-process-section {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

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

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

.landing-audience-card,
.landing-process-card {
  height: 100%;
}

.landing-process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(13, 99, 169, 0.12);
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 14px;
}

.landing-cta-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0d63a9 0%, #0a4e85 100%);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.landing-cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.landing-cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.03;
}

.landing-cta-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}

.landing-cta-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.landing-cta-actions .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.top-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.top-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.top-product-rank {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e7f1fb;
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top-product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 18px;
}

.top-product-copy h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.top-product-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.top-product-copy {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.top-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.top-product-meta strong {
  font-size: 1.05rem;
}

.top-product-button {
  padding: 10px 14px;
  min-height: 42px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.panel {
  padding: 24px;
}

.panel p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

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

.filters {
  display: grid;
  gap: 18px;
  align-content: start;
}

.filter-card {
  padding: 22px;
}

.filter-card-compact {
  min-width: 240px;
  padding: 14px 16px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
  border: 1px solid rgba(13, 99, 169, 0.1);
}

.filter-card-compact h3 {
  display: none;
}

.filter-card-compact select {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(13, 99, 169, 0.12);
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
  padding: 0 40px 0 14px;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.filter-card-compact select:focus {
  outline: none;
  border-color: rgba(13, 99, 169, 0.32);
  box-shadow:
    0 0 0 4px rgba(13, 99, 169, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.filter-card h3,
.summary-card h2,
.checkout-card h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
}

.filter-card input,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  background: #fff;
  color: var(--text);
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(217, 79, 79, 0.12);
  background: #fff6f6;
}

.field textarea {
  min-height: 110px;
  padding: 14px 16px;
  resize: vertical;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}

.chip.is-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.product-body h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.45;
}

.product-card button,
.product-card .qty-box {
  position: relative;
  z-index: 2;
}

.product-unit,
.product-description {
  color: var(--muted);
  margin-top: 10px;
}

.product-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.benefit-grid > .panel {
  display: flex;
  flex-direction: column;
}

.product-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.product-price strong {
  display: block;
  font-size: 1.15rem;
}

.product-price span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 380px;
  gap: 24px;
}

.cart-items,
.summary-stack,
.checkout-fields,
.checkout-summary-items {
  display: grid;
  gap: 18px;
}

.cart-items {
  align-content: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
  min-height: 138px;
}

.cart-item img {
  width: 110px;
  height: 100px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.cart-item-head,
.summary-line,
.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.checkout-summary-item-subtle {
  color: var(--muted);
  font-size: 0.95rem;
}

.checkout-summary-item-subtle strong {
  color: var(--text);
}

.cart-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  background: var(--panel-soft);
  border-radius: 999px;
  overflow: hidden;
}

.qty-box button {
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 1.2rem;
}

.qty-box span {
  min-width: 36px;
  text-align: center;
  font-weight: 800;
}

.qty-box-small button {
  width: 34px;
  height: 34px;
}

.qty-box-small span {
  min-width: 28px;
  font-size: 0.95rem;
}

.summary-card,
.checkout-card {
  padding: 24px;
}

.summary-total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 1.08rem;
  font-weight: 800;
}

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

.field-grid.street-grid {
  grid-template-columns: minmax(0, 1fr) 130px;
}

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

.field label,
.checkbox-row span {
  font-weight: 700;
}

.required {
  color: var(--danger);
}

.notice,
.error-inline,
.success-inline {
  border-radius: 16px;
  padding: 14px 16px;
}

.notice {
  background: #eef6fd;
  color: var(--brand-dark);
}

.error-inline {
  background: #fdeeee;
  color: var(--danger);
}

.success-inline {
  background: #edf8f2;
  color: var(--success);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  text-align: center;
  color: var(--muted);
  padding: 30px;
}

.legal-panel {
  padding: 28px 30px;
}

.legal-copy {
  color: var(--muted);
  line-height: 1.8;
}

.legal-copy h2 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 1.2rem;
}

.legal-copy p {
  margin: 0 0 14px;
}

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

.contact-card {
  padding: 24px;
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.contact-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-card {
  margin: 40px auto 32px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.footer-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
  gap: 12px 24px;
  margin-top: 18px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  transform: translateX(2px);
}

.success-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 24, 40, 0.62);
  padding: 20px;
  z-index: 50;
}

.success-overlay[hidden] {
  display: none;
}

.plz-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 24, 40, 0.62);
  padding: 20px;
  z-index: 60;
}

.plz-overlay[hidden] {
  display: none;
}

.plz-card {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(7, 24, 44, 0.35);
  padding: 30px;
}

.plz-card h2 {
  margin: 0;
  font-size: 1.5rem;
}

.plz-card p {
  color: var(--muted);
  line-height: 1.7;
}

.success-card {
  width: min(560px, 100%);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(7, 24, 44, 0.35);
  text-align: center;
  padding: 34px;
}

.product-modal-overlay {
  z-index: 70;
}

.product-modal-card {
  width: min(980px, 100%);
  text-align: left;
  position: relative;
  padding: 30px;
}

.product-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #eef5fb;
  color: var(--brand-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.product-modal-media img {
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
  border-radius: 24px;
  background: #fff;
}

.product-modal-content h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.product-modal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.product-modal-facts .panel {
  padding: 18px;
}

.product-modal-facts strong {
  display: block;
  font-size: 1.05rem;
}

.product-modal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-modal-panel {
  margin-top: 16px;
  padding: 20px;
}

.product-modal-panel h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.product-modal-panel p,
.product-modal-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.product-modal-panel ul {
  margin: 0;
  padding-left: 18px;
}

.success-card img {
  width: min(240px, 70%);
  margin: 0 auto 18px;
  animation: pulse-logo 2.8s ease-in-out infinite;
}

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 10px 24px rgba(13, 99, 169, 0.18)); }
  50% { transform: scale(1.06); filter: drop-shadow(0 16px 36px rgba(13, 99, 169, 0.28)); }
}

@media (max-width: 1050px) {
  .hero-card,
  .benefit-grid,
  .landing-audience-grid,
  .landing-process-grid,
  .catalog-grid,
  .cart-layout,
  .checkout-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .page-head,
  .field-grid,
  .field-grid.street-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .shop-topbar {
    padding-top: 0;
  }

  .shop-topbar-inner,
  .shop-topbar.is-compact .shop-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, calc(100% - 16px));
    padding: 8px 10px;
    gap: 8px;
    border-radius: 18px;
  }

  .brand {
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
  }

  .brand img,
  .shop-topbar.is-compact .brand img {
    width: 74px;
    margin: -2px 0 -10px;
  }

  .brand-copy span {
    font-size: 0.88rem;
  }

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

    .cart-item img {
      width: 100%;
      height: 160px;
      object-fit: contain;
    }

  .top-actions {
    display: none !important;
  }

  .top-actions.is-mobile-open {
    position: absolute;
    top: calc(100% + 8px);
    left: 8px;
    right: 8px;
    z-index: 40;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .mobile-header-toggle {
    display: inline-flex !important;
    flex: 0 0 auto;
  }

  .customer-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .header-menu,
  .top-link,
  .cart-link,
  .account-link {
    width: 100%;
    flex: none;
  }

  .customer-switch button,
  .top-link,
  .cart-link,
  .account-link,
  .shop-topbar.is-compact .top-link,
  .shop-topbar.is-compact .cart-link,
  .shop-topbar.is-compact .account-link {
    min-height: 38px;
    justify-content: center;
    padding: 0 12px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .customer-switch button {
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .header-dropdown,
  .header-menu-account .header-dropdown {
    position: static;
    width: 100%;
      min-width: 0;
      margin-top: 10px;
      opacity: 1;
      visibility: visible;
      transform: none;
      display: none;
      box-shadow: none;
    }

    .header-menu:hover .header-dropdown,
    .header-menu:focus-within .header-dropdown {
      display: grid;
    }

    .page-head {
      gap: 14px;
      align-items: start;
    }

    .page-actions {
      width: 100%;
    }

    .filter-card-compact {
      width: 100%;
      min-width: 0;
      padding: 12px 14px 14px;
    }

    .filter-card-compact select {
      min-height: 42px;
      font-size: 0.9rem;
    }

    .hero-card {
      padding: 22px 18px;
      gap: 18px;
    }

  .hero-side {
    padding: 20px 18px;
  }

  .hero-card h1,
  .page-head h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 0.98;
  }

    .lead {
      font-size: 1rem;
    }

    .stat-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .stat-grid article {
      padding: 14px;
    }

    .stat-grid strong {
      font-size: 1.35rem;
    }

    .hero-actions,
    .page-actions,
    .cart-actions,
    .checkout-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .landing-cta-band {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .landing-cta-actions {
    justify-items: stretch;
  }

  .filter-card,
  .summary-card,
  .checkout-card,
  .panel,
  .product-card,
  .cart-item,
  .account-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .catalog-grid,
  .cart-layout,
  .checkout-layout,
  .account-dashboard {
    gap: 18px;
  }

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

    .chip-list {
      gap: 8px;
    }

    .chip {
      min-height: 38px;
      padding: 0 12px;
      font-size: 0.85rem;
    }

    .product-card {
      gap: 14px;
    }

  .product-card img {
    aspect-ratio: 4 / 3;
  }

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

  .product-quantity {
    width: 100%;
    justify-content: center;
  }

    .summary-line {
      gap: 10px;
      font-size: 0.96rem;
      align-items: start;
    }

    .checkout-summary-item,
    .account-order-head,
    .account-order-line,
  .account-section-head {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
  }

    .home-gallery-card,
    .home-gallery-card-large {
      min-height: 220px;
    }

    .home-gallery-copy {
      left: 16px;
      right: 16px;
      bottom: 16px;
    }

    .home-gallery-copy h3 {
      font-size: 1.1rem;
    }

    .footer-links {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .product-modal-card {
      width: min(100%, calc(100% - 16px));
      max-height: calc(100vh - 24px);
      overflow: auto;
      padding: 18px 16px;
      border-radius: 22px;
    }

    .product-modal-grid {
      gap: 18px;
    }

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

    .product-modal-tabs {
      gap: 8px;
    }

    .product-modal-close {
      top: 12px;
      right: 12px;
      width: 38px;
      height: 38px;
    }

    .cart-toast {
      right: 12px;
      left: 12px;
    bottom: 18px;
    border-radius: 18px;
    text-align: center;
  }
  }


.home-gallery {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.section-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.section-copy p:last-child {
  margin: 12px 0 0;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.75;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 22px;
}

.home-gallery-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.home-gallery-card-large {
  min-height: 380px;
}

.home-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 23, 38, 0.06) 0%, rgba(7, 23, 38, 0.72) 100%);
}

.home-gallery-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: #ffffff;
}

.home-gallery-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.home-gallery-copy h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.account-link.is-logged-in::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px #ffffff;
}

.page-intro-compact {
  margin-bottom: 24px;
}

.account-auth-grid,
.account-dashboard {
  display: grid;
  gap: 24px;
}

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

.account-dashboard {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.account-card {
  padding: 28px;
}

.account-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

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

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

.account-section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.account-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #0e8f44;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.account-success {
  color: #0e8f44;
  font-weight: 700;
  font-size: 0.95rem;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.forgot-password-box {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(231, 241, 251, 0.52);
}

.account-orders {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.account-order-card {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.account-order-head,
.account-order-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-order-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.account-order-lines {
  display: grid;
  gap: 8px;
}

.checkout-address-toggle {
  margin-top: 6px;
  width: 100%;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.checkout-address-toggle:hover,
.checkout-address-toggle:focus-within {
  border-color: rgba(13, 99, 169, 0.3);
  box-shadow: 0 10px 22px rgba(10, 35, 60, 0.08);
  background: #ffffff;
}

.checkout-address-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-address-toggle span {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkout-address-toggle span::after {
  content: "";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid rgba(13, 99, 169, 0.28);
  background: #ffffff;
  flex-shrink: 0;
}

.checkout-address-toggle input:checked + span::after {
  content: "✓";
  background: #0d63a9;
  border-color: #0d63a9;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
}

.checkout-delivery-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(231, 241, 251, 0.52);
}

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

.checkout-paypal-note {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(13, 99, 169, 0.08);
  border: 1px solid rgba(13, 99, 169, 0.16);
  color: #154d78;
}

.checkout-paypal-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.checkout-paypal-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cart-paypal-express-note {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 196, 57, 0.12);
  border: 1px solid rgba(255, 196, 57, 0.28);
  color: #7c5a00;
  font-size: 0.9rem;
  line-height: 1.5;
}

.button-paypal-express {
  background: #ffc439;
  color: #0b1f33;
  border-color: #ffc439;
}

.button-paypal-express:hover {
  background: #f2b912;
  border-color: #f2b912;
}

[data-billing-delivery-meta][hidden] {
  display: none;
}

.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 86px;
  transform: translateY(12px);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(10, 35, 60, 0.92);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(10, 35, 60, 0.22);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

@media (max-width: 960px) {
  .benefit-grid,
  .landing-audience-grid,
  .landing-process-grid,
  .top-products-grid,
  .home-gallery-grid {
    grid-template-columns: 1fr;
  }

  .home-gallery-card,
  .home-gallery-card-large {
    min-height: 280px;
  }

  .account-auth-grid,
  .account-dashboard,
  .field-grid-2,
  .field-grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .shop-main,
  .shop-footer-inner {
    width: min(100%, calc(100% - 16px));
  }

  .shop-topbar-inner,
  .shop-topbar.is-compact .shop-topbar-inner {
    width: min(100%, calc(100% - 8px));
    padding: 7px 8px;
  }

  .mobile-header-toggle {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

    .brand img,
    .shop-topbar.is-compact .brand img {
      width: 64px;
      margin: 0 0 -6px;
    }

    .top-product-card img {
      height: 150px;
      object-fit: contain;
    }

    .cart-item img {
      height: 140px;
      object-fit: contain;
    }

    .brand-copy span {
      font-size: 0.8rem;
    }

  .customer-switch button,
  .top-link,
  .cart-link,
  .account-link,
  .shop-topbar.is-compact .top-link,
  .shop-topbar.is-compact .cart-link,
  .shop-topbar.is-compact .account-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

    .hero-card,
    .hero-side,
    .filter-card,
  .summary-card,
  .checkout-card,
  .panel,
  .product-card,
  .cart-item,
  .account-card,
  .checkout-delivery-panel {
    padding: 16px 14px;
    border-radius: 18px;
  }

    .button,
    .button-paypal-express {
      min-height: 48px;
    }

    .summary-line,
    .checkout-summary-item {
      font-size: 0.92rem;
    }

    .home-gallery-copy {
      left: 14px;
      right: 14px;
      bottom: 14px;
    }

    .home-gallery-copy h3 {
      font-size: 1rem;
    }

    .product-modal-card {
      width: min(100%, calc(100% - 10px));
      padding: 16px 14px;
      border-radius: 18px;
    }

    .field input,
    .field select,
    .field textarea {
    font-size: 16px;
  }
}
