:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f8;
  --bg-warm: #d9fff4;
  --mint: #d7fbf1;
  --mint-deep: #66dacb;
  --text: #00495a;
  --text-dark: #0e0f11;
  --muted: #5b6f75;
  --line: #eceef1;
  --accent: #005968;
  --accent-strong: #004f5d;
  --accent-dark: #003f4d;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(13, 16, 24, 0.08);
  --shadow-soft: 0 10px 28px rgba(13, 16, 24, 0.07);
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--bg-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(215, 251, 241, 0.95);
  border-bottom: 1px solid rgba(0, 73, 90, 0.08);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 52px;
  height: 46px;
  place-items: center;
  border: 5px solid var(--text);
  border-radius: 8px 8px 14px 14px;
  color: var(--text);
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: -11px;
  width: 24px;
  height: 14px;
  border: 5px solid var(--text);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: var(--mint);
}

.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 11px;
  width: 26px;
  height: 9px;
  border-bottom: 5px solid var(--text);
  border-radius: 0 0 26px 26px;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 32px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links {
  justify-content: center;
  flex: 1;
}

.nav-links a,
.nav-link-subtle {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-link-subtle:hover {
  background: rgba(255, 255, 255, 0.42);
  color: var(--text);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 40px;
  height: 40px;
  color: var(--text);
  font-weight: 900;
}

.language-switch::after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: -4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.cart-button,
.menu-toggle {
  border: 0;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cart-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.cart-count {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--mint-deep);
  color: var(--text);
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  background: var(--bg-soft);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  overflow: hidden;
  padding: 52px 0 66px;
  background: var(--mint);
  color: var(--text);
  text-align: left;
}

.hero-inner {
  display: grid;
  width: min(100% - 88px, 1180px);
  grid-template-columns: minmax(360px, 0.9fr) minmax(540px, 1.1fr);
  min-height: 540px;
  align-items: center;
  gap: 48px;
}

.hero-content {
  width: 100%;
  max-width: 540px;
  justify-self: start;
}

.store-proof {
  position: relative;
  display: grid;
  justify-items: start;
  margin-bottom: 48px;
}

.proof-logos {
  display: flex;
  align-items: center;
  padding-left: 2px;
}

.proof-logos span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-left: -7px;
  border: 1px solid var(--mint-deep);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: rgba(0, 73, 90, 0.58);
  font-size: 0.7rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 73, 90, 0.08);
}

.proof-logos span:first-child {
  margin-left: 0;
}

.proof-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: -2px;
  padding: 9px 20px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--mint-deep);
  color: var(--text);
  box-shadow: 0 12px 30px rgba(0, 73, 90, 0.08);
}

.proof-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
}

.hero-copy h1 {
  max-width: 540px;
  margin: 0 0 24px;
  font-size: 3.15rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 500px;
  margin: 0;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.45;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint-deep);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
  margin-top: 52px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 89, 104, 0.16);
}

.btn-primary:hover {
  background: var(--accent-strong);
  box-shadow: 0 18px 34px rgba(0, 89, 104, 0.24);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.46);
  color: var(--text);
}

.btn-outline {
  border-color: var(--accent);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.44);
}

.btn-soft {
  background: #f7f7f7;
  color: #333333;
  box-shadow: none;
}

.btn-dark {
  background: var(--accent);
  color: #ffffff;
  white-space: nowrap;
}

.btn-cart {
  width: 100%;
  background: var(--accent);
  color: #ffffff;
}

.btn-cart.added {
  background: var(--mint-deep);
  color: var(--text);
}

.nav-cta {
  min-height: 42px;
  padding: 10px 20px;
}

.cart-nav {
  gap: 8px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.3rem;
  line-height: 1.1;
}

.hero-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.industry-section {
  padding-top: 62px;
  background: #ffffff;
}

.industry-section h2 {
  max-width: 930px;
  margin: 0 auto 42px;
  color: var(--text);
  font-size: 2.55rem;
  line-height: 1.16;
  text-align: center;
}

.industry-tabs {
  position: relative;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.industry-tabs::-webkit-scrollbar {
  display: none;
}

.industry-tab {
  display: grid;
  flex: 0 0 136px;
  min-height: 78px;
  place-items: center;
  gap: 7px;
  padding: 12px 16px;
  border: 1px solid var(--mint-deep);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.industry-tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 73, 90, 0.08);
}

.industry-tab.is-active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 89, 104, 0.18);
}

.industry-icon {
  color: #399aaa;
  font-size: 1.25rem;
  line-height: 1;
}

.industry-tab.is-active .industry-icon {
  color: #ffffff;
}

.industry-arrow {
  position: sticky;
  right: 10px;
  z-index: 2;
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  align-self: center;
  border-radius: 50%;
  background: #aef0e4;
  color: var(--accent);
  font-size: 1.9rem;
  font-weight: 500;
  box-shadow: 0 12px 28px rgba(0, 73, 90, 0.12);
}

.industry-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
  min-height: 520px;
  overflow: hidden;
  border-radius: 18px 18px 8px 8px;
  background: #d3faf1;
}

.industry-copy {
  align-self: center;
  padding: 58px 36px 58px;
}

.industry-copy h3 {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 1.9rem;
  line-height: 1.16;
}

.industry-copy p {
  max-width: 470px;
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.55;
}

.industry-feature-list {
  display: grid;
  gap: 18px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.industry-feature-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.industry-feature-list li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  top: 1px;
  color: #54adba;
}

.industry-visual {
  position: relative;
  min-height: 520px;
}

.industry-device-frame {
  position: absolute;
  top: -26px;
  right: 42px;
  bottom: -56px;
  width: min(390px, 86%);
  border-radius: 0 0 28px 28px;
  background: #c5f8ee;
  animation: industryFrameFloat 6s ease-in-out infinite;
}

.industry-store-window,
.industry-campaign-card,
.industry-target-card {
  position: absolute;
  overflow: hidden;
  border: 7px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 24px 55px rgba(0, 73, 90, 0.11);
}

.industry-store-window {
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 264px;
  border-radius: 0 0 12px 12px;
}

.industry-products-marquee {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
  animation: industryProductsScroll 10s linear infinite;
}

.industry-store-window:hover .industry-products-marquee {
  animation-play-state: paused;
}

.industry-products-marquee article {
  min-width: 0;
  padding: 6px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 73, 90, 0.07);
}

.industry-products-marquee img {
  width: 100%;
  aspect-ratio: 0.82;
  border-radius: 6px;
  object-fit: cover;
}

.industry-products-marquee strong,
.industry-products-marquee span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.industry-products-marquee strong {
  margin-top: 7px;
  color: var(--text);
  font-size: 0.55rem;
  line-height: 1.2;
}

.industry-products-marquee span {
  margin-top: 4px;
  color: #d28100;
  font-size: 0.5rem;
  font-weight: 900;
}

.industry-campaign-card {
  top: 284px;
  left: 0;
  right: 0;
  z-index: 2;
  border-radius: 12px;
  animation: industryCardFloat 5.5s ease-in-out infinite 600ms;
}

.industry-campaign-card img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}

.industry-campaign-card div {
  position: absolute;
  inset: 12px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  text-align: center;
  backdrop-filter: blur(3px);
}

.industry-campaign-card span {
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-campaign-card strong {
  max-width: 300px;
  font-size: 1.05rem;
  line-height: 1.15;
}

.industry-target-card {
  left: 22px;
  right: 22px;
  bottom: 92px;
  z-index: 1;
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #6b4a33;
  font-size: 1.18rem;
  font-weight: 900;
  animation: industryCardFloat 5.5s ease-in-out infinite 1.1s;
}

@keyframes industryProductsScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes industryFrameFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

@keyframes industryFrameFloatCentered {
  0%,
  100% {
    transform: translateX(50%) translateY(0);
  }

  50% {
    transform: translateX(50%) translateY(12px);
  }
}

@keyframes industryCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-showcase {
  position: relative;
  min-height: 500px;
}

.hero-visual {
  min-width: 0;
  width: 100%;
  max-width: 650px;
  justify-self: end;
  transform: translateX(48px);
}

.dashboard-promo-section {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}

.dashboard-promo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  align-items: center;
  gap: 0;
  justify-content: end;
}

.hero .dashboard-promo-grid {
  position: relative;
  display: block;
  min-height: 456px;
  padding: 36px 150px 0 0;
  width: 100%;
}

.dashboard-promo-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(0, 73, 90, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 73, 90, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero .dashboard-promo-card {
  min-height: 418px;
  border: 4px solid #ffffff;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 32px 80px rgba(0, 73, 90, 0.12);
}

.hero .dashboard-promo-card::before {
  content: "Luma   Home   Orders   Products   Marketing   More";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 18px;
  background: var(--accent-dark);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  word-spacing: 12px;
}

.dashboard-promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 84px rgba(0, 73, 90, 0.16);
}

.dashboard-promo-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.hero .dashboard-promo-card img {
  position: absolute;
  top: 68px;
  right: 18px;
  left: 18px;
  width: calc(100% - 36px);
  height: 226px;
  min-height: 0;
  border-radius: 8px;
}

.dashboard-promo-card:hover img {
  transform: scale(1.04);
}

.discount-sticker {
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  align-content: center;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: #ffb300;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(255, 179, 0, 0.3);
  transform: rotate(-11deg);
}

.hero .discount-sticker {
  top: 92px;
  left: 36px;
  width: 76px;
  height: 76px;
  border-width: 4px;
}

.hero .discount-sticker strong {
  font-size: 1.45rem;
}

.hero .discount-sticker span {
  font-size: 0.74rem;
}

.discount-sticker strong,
.discount-sticker span {
  display: block;
  line-height: 1;
}

.discount-sticker strong {
  font-size: 2.1rem;
}

.discount-sticker span {
  margin-top: 4px;
  font-size: 1.02rem;
  font-weight: 900;
}

.promo-image-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: 0 18px 44px rgba(0, 73, 90, 0.1);
  backdrop-filter: blur(14px);
}

.hero .promo-image-caption {
  left: 18px;
  right: 18px;
  bottom: 22px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
}

.hero .promo-image-caption span {
  font-size: 0.72rem;
}

.hero .promo-image-caption strong {
  font-size: 1rem;
}

.promo-image-caption span,
.promo-image-caption strong {
  display: block;
}

.promo-image-caption span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.promo-image-caption strong {
  margin-top: 4px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.floating-product-board {
  position: relative;
  display: grid;
  gap: 12px;
  z-index: 2;
  max-width: 330px;
  margin-left: -30px;
  padding: 18px;
  border: 1px solid rgba(0, 73, 90, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(0, 73, 90, 0.14);
  animation: boardFloat 5.5s ease-in-out infinite;
  backdrop-filter: blur(14px);
  scale: 1;
  overflow: hidden;
  transition: background 220ms ease, scale 220ms ease, box-shadow 220ms ease;
}

.hero .floating-product-board {
  position: absolute;
  top: 80px;
  right: 0;
  bottom: 28px;
  width: 190px;
  max-width: none;
  max-height: none;
  margin-left: 0;
  padding: 11px;
  gap: 7px;
  border: 4px solid #ffffff;
  background: rgba(241, 255, 250, 0.95);
  box-shadow: 0 28px 70px rgba(0, 73, 90, 0.11);
}

.hero .board-heading .eyebrow {
  display: none;
}

.hero .board-heading h2 {
  margin: 0;
  font-size: 0.78rem;
}

.hero .board-product-card {
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 5px;
  padding: 5px 4px;
}

.hero .board-product-card img {
  width: 26px;
  height: 26px;
}

.hero .board-product-card h3 {
  font-size: 0.58rem;
}

.hero .board-product-card p {
  display: none;
}

.hero .board-product-status {
  grid-column: 2;
  justify-self: start;
  min-height: 17px;
  padding: 2px 5px;
  font-size: 0.5rem;
}

.hero .order-confirmation-icon {
  width: 52px;
  height: 52px;
  font-size: 1.25rem;
}

.hero .order-confirmation-card {
  gap: 7px;
  padding: 16px 10px;
}

.hero .order-confirmation-card strong {
  max-width: 110px;
  font-size: 0.7rem;
}

.hero .order-confirmation-card small {
  font-size: 0.52rem;
}

.floating-product-board:hover {
  scale: 1.015;
  box-shadow: 0 36px 86px rgba(0, 73, 90, 0.18);
}

.floating-product-board.is-confirming {
  background: #effff9;
}

.board-heading,
.board-product-card {
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-product-board.is-confirming .board-heading,
.floating-product-board.is-confirming .board-product-card {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
}

.board-heading h2 {
  margin: 8px 0 4px;
  font-size: 1.8rem;
  line-height: 1.08;
}

.board-product-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 74px;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.board-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.board-product-card.is-demo-active {
  border-color: rgba(0, 89, 104, 0.28);
  background: var(--mint);
  transform: translateX(-14px) scale(1.015);
  box-shadow: 0 18px 40px rgba(0, 89, 104, 0.13);
}

.board-product-card.is-demo-complete {
  border-color: rgba(102, 218, 203, 0.7);
}

.board-product-card img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}

.board-product-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.22;
}

.board-product-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 900;
}

.board-product-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.board-product-card.is-demo-active .board-product-status {
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.04);
}

.board-product-card.is-demo-complete .board-product-status {
  background: var(--mint-deep);
  color: var(--text);
}

.order-confirmation-card {
  position: absolute;
  inset: 18px;
  z-index: 5;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  padding: 22px 16px;
  border: 1px solid rgba(0, 73, 90, 0.1);
  border-radius: 8px;
  background: rgba(241, 255, 250, 0.96);
  color: var(--text);
  text-align: center;
  box-shadow: 0 24px 56px rgba(0, 73, 90, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.94);
  backdrop-filter: blur(14px);
}

.floating-product-board.is-confirming .order-confirmation-card {
  inset: 0;
  border: 0;
  border-radius: inherit;
  background: #effff9;
  box-shadow: none;
  animation: orderConfirmIn 420ms ease forwards;
  pointer-events: auto;
}

.order-confirmation-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: #8de8d5;
  color: var(--accent);
  font-size: 1.85rem;
  font-weight: 900;
}

.order-confirmation-card strong {
  max-width: 210px;
  font-size: 1rem;
  line-height: 1.45;
}

.order-confirmation-card small {
  color: var(--muted);
  font-size: 0.68rem;
}

@keyframes boardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes orderConfirmIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.showcase-card {
  overflow: hidden;
  border: 1px solid rgba(236, 238, 241, 0.9);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.main-product {
  position: absolute;
  inset: 34px 0 0 42px;
}

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

.product-chip {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.product-chip span,
.mini-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-chip strong,
.mini-card strong {
  display: block;
  font-size: 1.1rem;
}

.mini-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(250px, 55%);
  padding: 14px;
}

.mini-card img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.top-card {
  top: 0;
  left: 0;
}

.bottom-card {
  right: 0;
  bottom: 48px;
}

.spark {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mint-deep), var(--accent));
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.35);
}

.section-heading {
  max-width: 650px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 10px 0 12px;
  font-size: 3rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading-split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--accent);
  font-weight: 900;
}

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

.category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.product-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.category-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
}

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

.category-card span,
.product-category,
.product-meta span,
.customer small {
  color: var(--muted);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.product-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 900;
}

.product-info {
  padding: 20px;
}

.product-category {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
}

.product-info h3 {
  margin: 7px 0 16px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

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

.product-meta span::before {
  content: "\2605 ";
  color: var(--accent);
}

.brand-design-section {
  overflow: hidden;
  background: #ffffff;
}

.brand-design-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 64px;
  min-height: 420px;
}

.brand-design-visual {
  position: relative;
  min-height: 360px;
}

.layout-panel,
.swatch-panel,
.theme-card,
.options-panel,
.device-toggle {
  position: absolute;
  border: 1px solid rgba(0, 73, 90, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 55px rgba(0, 73, 90, 0.09);
  backdrop-filter: blur(14px);
}

.layout-panel {
  top: 0;
  left: 0;
  z-index: 4;
  display: grid;
  width: 156px;
  gap: 8px;
  padding: 14px 10px;
}

.layout-panel strong {
  color: rgba(14, 15, 17, 0.46);
  font-size: 0.76rem;
}

.layout-panel span,
.options-panel span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 26px;
  padding-left: 26px;
  border-radius: 6px;
  background: #f6f7f8;
  color: var(--text);
  font-size: 0.67rem;
  font-weight: 900;
}

.layout-panel span::before,
.options-panel span::before {
  content: "";
  position: absolute;
  left: 9px;
  width: 10px;
  height: 8px;
  border-top: 1px solid #a9b7bd;
  border-bottom: 1px solid #a9b7bd;
}

.swatch-panel {
  top: 0;
  left: 204px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 22px);
  gap: 10px 13px;
  padding: 13px;
}

.swatch-panel span {
  width: 20px;
  height: 20px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 2px 8px rgba(0, 73, 90, 0.16);
}

.theme-card {
  top: 68px;
  left: 100px;
  z-index: 2;
  width: min(330px, 72%);
  padding: 16px;
}

.theme-card-title {
  display: block;
  margin-bottom: 12px;
  color: rgba(14, 15, 17, 0.44);
  font-size: 0.82rem;
  font-weight: 900;
}

.theme-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 44px;
  gap: 12px;
}

.theme-preview-grid article,
.more-themes {
  min-width: 0;
  border-radius: 6px;
  background: #effffb;
}

.theme-preview-grid article {
  padding: 8px;
}

.theme-preview-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  border-radius: 5px;
  object-fit: cover;
}

.theme-preview-grid small {
  display: block;
  margin-top: 8px;
  color: rgba(14, 15, 17, 0.48);
  font-size: 0.64rem;
  font-weight: 800;
}

.theme-preview-grid button {
  width: 100%;
  min-height: 31px;
  margin-top: 8px;
  border: 1px solid rgba(102, 218, 203, 0.8);
  border-radius: 4px;
  background: #f4fffc;
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 900;
}

.more-themes {
  display: grid;
  place-items: center;
  align-content: center;
  color: var(--text);
}

.more-themes strong {
  font-size: 1.4rem;
  line-height: 1;
}

.more-themes span {
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

.options-panel {
  left: 2px;
  bottom: 30px;
  z-index: 4;
  display: grid;
  width: 238px;
  gap: 6px;
  padding: 10px 12px;
}

.options-panel span {
  justify-content: space-between;
  background: transparent;
  font-size: 0.72rem;
}

.options-panel span::after {
  content: "\203A";
  margin-left: auto;
  color: rgba(0, 73, 90, 0.22);
  font-size: 1.2rem;
  font-weight: 500;
}

.device-toggle {
  right: 100px;
  bottom: 62px;
  z-index: 3;
  display: flex;
  gap: 12px;
  padding: 12px 15px;
}

.device-toggle span {
  width: 14px;
  height: 18px;
  border: 1px solid rgba(0, 73, 90, 0.28);
  border-radius: 4px;
}

.device-toggle span:last-child {
  background: var(--mint-deep);
  border-color: var(--mint-deep);
}

.brand-design-content {
  max-width: 560px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #c9f7eb;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 900;
}

.feature-pill::before {
  content: "\2724";
  color: var(--accent);
}

.brand-design-content h2 {
  margin: 16px 0 12px;
  font-size: 2.2rem;
  line-height: 1.08;
}

.brand-design-content p {
  max-width: 520px;
  margin: 0;
  color: rgba(14, 15, 17, 0.66);
  font-size: 1.02rem;
}

.design-feature-list {
  display: grid;
  gap: 17px;
  margin: 36px 0 36px;
  padding: 0;
  list-style: none;
}

.design-feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.design-feature-list li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  top: 0;
  color: #54adba;
}

.payments-section {
  overflow: hidden;
  background: #ffffff;
}

.payments-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1fr);
  align-items: center;
  gap: 76px;
  min-height: 430px;
}

.payments-content h2 {
  margin: 16px 0 12px;
  font-size: 2.2rem;
  line-height: 1.08;
}

.payments-content p {
  max-width: 560px;
  margin: 0;
  color: rgba(14, 15, 17, 0.66);
  font-size: 1.02rem;
}

.payment-pill::before {
  content: "\25A3";
}

.payment-feature-list {
  display: grid;
  gap: 19px;
  margin: 38px 0 38px;
  padding: 0;
  list-style: none;
}

.payment-feature-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.payment-feature-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 6px;
  background: #66bdc8;
  color: #ffffff;
  font-size: 0.68rem;
  line-height: 1;
}

.payment-feature-list li:nth-child(1)::before {
  content: "\2713";
}

.payment-feature-list li:nth-child(2)::before {
  content: "\26A1";
}

.payment-feature-list li:nth-child(3)::before {
  content: "\23F1";
}

.payment-feature-list li:nth-child(4)::before {
  content: "\0024";
}

.payments-visual {
  position: relative;
  min-height: 360px;
}

.payment-balance-card,
.payment-summary-card,
.payment-wallet-card,
.payment-methods-card,
.payment-brand {
  position: absolute;
  border: 1px solid rgba(0, 73, 90, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 56px rgba(0, 73, 90, 0.09);
  backdrop-filter: blur(14px);
}

.payment-balance-card {
  top: 22px;
  left: 86px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 48px;
  min-width: 146px;
  padding: 12px 14px;
}

.payment-balance-card strong,
.payment-balance-card span {
  font-size: 0.56rem;
  font-weight: 900;
}

.payment-balance-card span::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 12px;
  margin-left: 7px;
  border-radius: 2px;
  background: linear-gradient(180deg, #116db4 0 48%, #78bc43 48% 100%);
  vertical-align: middle;
}

.payment-summary-card {
  top: 20px;
  right: 8px;
  z-index: 5;
  width: 164px;
  padding: 16px 14px;
}

.payment-summary-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.66rem;
}

.payment-summary-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 34px;
  color: var(--text);
  font-size: 0.55rem;
  font-weight: 900;
}

.payment-summary-card div::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: #a8eee0;
}

.payment-summary-card span {
  flex: 1;
}

.payment-summary-card b {
  font-size: 0.55rem;
  white-space: nowrap;
}

.payment-wallet-card {
  top: 72px;
  right: 28px;
  z-index: 3;
  width: 278px;
  min-height: 168px;
  padding: 28px 24px 20px;
  background: #b8f3e8;
  color: var(--text);
  box-shadow: 0 28px 70px rgba(0, 73, 90, 0.12);
}

.wallet-provider {
  position: absolute;
  left: -92px;
  top: 28px;
  color: #50308a;
  font-size: 1.2rem;
  font-weight: 900;
}

.wallet-provider b {
  color: #00aab2;
  font-size: 0.76rem;
}

.payment-wallet-card h3 {
  margin: 0 0 48px;
  font-size: 1.1rem;
}

.payment-wallet-card p {
  margin: 0 0 14px;
  font-size: 1.02rem;
  letter-spacing: 1px;
}

.payment-wallet-card small {
  display: flex;
  justify-content: space-between;
  color: rgba(0, 73, 90, 0.75);
  font-size: 0.66rem;
  font-style: normal;
}

.payment-wallet-card em {
  font-style: normal;
}

.payment-methods-card {
  left: 48px;
  bottom: 26px;
  z-index: 2;
  width: 258px;
  padding: 14px 14px;
}

.payment-methods-card div {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 38px;
  color: var(--text);
}

.payment-methods-card span {
  width: 9px;
  height: 9px;
  border: 1px solid #dce5e7;
  border-radius: 3px;
}

.payment-methods-card div:nth-child(1) span,
.payment-methods-card div:nth-child(2) span {
  border: 0;
  border-radius: 50%;
  background: var(--accent);
}

.payment-methods-card strong,
.payment-methods-card b {
  font-size: 0.56rem;
}

.payment-brand {
  z-index: 6;
  display: grid;
  min-height: 30px;
  place-items: center;
  padding: 6px 14px;
  color: var(--text);
  font-weight: 900;
  line-height: 1;
}

.paypal {
  right: 116px;
  bottom: 56px;
  color: #2366c7;
  font-size: 1.06rem;
}

.tabby {
  right: 30px;
  bottom: 48px;
  background: #28f0bf;
  font-size: 1.06rem;
}

.spotii {
  right: 198px;
  bottom: 20px;
  color: #ff5a5f;
  font-size: 1rem;
}

.tamara {
  right: 76px;
  bottom: 12px;
  background: linear-gradient(90deg, #f8dd78, #f4a5b8, #83c7ef);
  font-size: 1.1rem;
}

.promo-section {
  padding-top: 0;
}

.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--mint), #f4fffb);
  box-shadow: 0 22px 55px rgba(0, 89, 104, 0.12);
}

.promo-banner h2 {
  max-width: 760px;
  margin: 10px 0 12px;
  font-size: 3.3rem;
  line-height: 1.02;
}

.promo-banner p {
  max-width: 560px;
  margin: 0;
  color: rgba(14, 15, 17, 0.72);
}

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

.testimonial-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stars {
  color: var(--accent);
  letter-spacing: 0;
}

.testimonial-card p {
  margin: 18px 0 24px;
  color: #303238;
}

.customer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.customer span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--accent);
  font-weight: 900;
}

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

.newsletter-section {
  padding-top: 86px;
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 38px;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.newsletter-card h2 {
  max-width: 680px;
  margin: 10px 0 0;
  font-size: 2.7rem;
  line-height: 1.06;
}

.products-hero {
  padding: 78px 0 64px;
  background: var(--mint);
  color: var(--text);
}

.products-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.catalog-pill {
  display: inline-flex;
  padding: 10px 20px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: var(--mint-deep);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 73, 90, 0.08);
}

.products-hero h1 {
  max-width: 940px;
  margin: 28px 0 18px;
  font-size: 4rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.products-hero p {
  max-width: 780px;
  margin: 0;
  font-size: 1.18rem;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100%, 760px);
  gap: 10px;
  margin-top: 38px;
  padding: 9px;
  border: 1px solid rgba(0, 73, 90, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 45px rgba(0, 73, 90, 0.08);
}

.search-panel input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--text);
}

.search-panel input::placeholder {
  color: rgba(0, 73, 90, 0.58);
}

.catalog-section {
  background: var(--bg-soft);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}

.catalog-toolbar h2 {
  margin: 10px 0 8px;
  font-size: 2.7rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.catalog-toolbar p {
  margin: 0;
  color: var(--muted);
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.filter-button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 73, 90, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 89, 104, 0.14);
}

.catalog-grid {
  align-items: stretch;
}

.catalog-card {
  background: #ffffff;
}

.catalog-card.is-hidden {
  display: none;
}

.empty-state {
  margin-top: 28px;
  padding: 42px;
  border: 1px dashed rgba(0, 73, 90, 0.22);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  text-align: center;
}

.empty-state h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

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

.categories-hero {
  padding-bottom: 74px;
}

.category-nav-links {
  gap: 6px;
}

.nav-links a.is-active,
.category-nav-links a.is-active {
  background: rgba(255, 255, 255, 0.48);
  color: var(--text);
}

.categories-page {
  padding-top: 84px;
}

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

.category-filter-card {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  gap: 18px;
  border: 1px solid rgba(0, 73, 90, 0.12);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.category-filter-card span {
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.15;
}

.category-filter-card strong {
  color: var(--muted);
  font-size: 0.86rem;
}

.category-filter-card:hover,
.category-filter-card.is-active {
  border-color: rgba(0, 89, 104, 0.26);
  background: var(--mint);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

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

.category-accordion-card {
  overflow: hidden;
  border: 1px solid rgba(0, 73, 90, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-accordion-card:hover,
.category-accordion-card.is-open {
  border-color: rgba(0, 89, 104, 0.26);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px) 36px;
  align-items: center;
  width: 100%;
  gap: 18px;
  border: 0;
  padding: 24px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.category-trigger span,
.category-trigger strong,
.category-trigger small,
.category-trigger em {
  display: block;
}

.category-trigger small {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.category-trigger strong {
  font-size: 1.6rem;
  line-height: 1.1;
}

.category-trigger em {
  max-width: none;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

.category-trigger::after {
  content: "+";
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.category-accordion-card.is-open .category-trigger::after {
  background: var(--accent);
  color: #ffffff;
  transform: rotate(45deg);
}

.subcategory-panel {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  transition: max-height 260ms ease, border-color 180ms ease;
}

.category-accordion-card.is-open .subcategory-panel {
  max-height: 260px;
  border-color: var(--line);
}

.subcategory-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 24px 24px;
}

.subcategory-list button {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid rgba(0, 73, 90, 0.14);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.category-accordion-card:not(.is-open) .subcategory-list button {
  visibility: hidden;
}

.subcategory-list button:hover,
.subcategory-list button.is-active {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 89, 104, 0.14);
}

.category-products-section {
  background: #ffffff;
}

.category-products-section .empty-state {
  margin-top: 0;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
}

.newsletter-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  background: transparent;
  color: var(--text);
}

.footer {
  padding: 72px 0 30px;
  background: #111214;
  color: #ffffff;
}

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

.footer-brand {
  margin-bottom: 18px;
}

.footer p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer h3 {
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.66);
  transition: color 180ms ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  max-width: min(360px, calc(100vw - 44px));
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 31, 39, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 91;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(440px, 100%);
  height: 100vh;
  background: #ffffff;
  color: var(--text);
  box-shadow: -28px 0 70px rgba(0, 31, 39, 0.16);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.cart-open {
  overflow: hidden;
}

.cart-open .cart-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: var(--mint);
}

.cart-drawer-header h2 {
  margin: 8px 0 0;
  font-size: 1.7rem;
  line-height: 1.05;
}

.cart-close-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(0, 73, 90, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.cart-drawer-body {
  overflow: auto;
  padding: 22px;
}

.cart-items-list {
  display: grid;
  gap: 14px;
}

.cart-line-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.cart-line-item img {
  width: 74px;
  height: 74px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-line-item h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.22;
}

.cart-line-item p,
.cart-line-item small {
  display: block;
  margin: 5px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.cart-line-item button,
.cart-secondary-button {
  border: 1px solid rgba(0, 73, 90, 0.14);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.cart-line-item button {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 0.78rem;
}

.cart-summary,
.cart-payment-panel,
.cart-empty-state {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}

.cart-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.cart-summary span {
  color: var(--muted);
  font-weight: 900;
}

.cart-summary strong {
  font-size: 1.35rem;
}

.cart-wide-button {
  width: 100%;
}

.cart-payment-panel h3,
.cart-empty-state h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}

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

.payment-method-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.payment-method-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  border: 1px solid rgba(0, 73, 90, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 900;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.payment-method-card::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 73, 90, 0.35);
  border-radius: 50%;
}

.payment-method-card:hover,
.payment-method-card.is-selected {
  border-color: var(--accent);
  background: var(--mint);
  transform: translateY(-2px);
}

.payment-method-card.is-selected::after {
  border-color: var(--accent);
  background: radial-gradient(circle, var(--accent) 0 42%, transparent 46%);
}

.cart-secondary-button {
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .section {
    padding: 76px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links,
  .nav-actions {
    display: grid;
    justify-items: stretch;
    gap: 8px;
  }

  .nav-links a,
  .nav-link-subtle,
  .cart-button {
    justify-content: center;
  }

  .hero {
    text-align: center;
  }

  .hero-inner,
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-inner {
    width: min(100% - 40px, var(--container));
    min-height: auto;
  }

  .hero-content,
  .hero-visual {
    max-width: 860px;
    justify-self: center;
  }

  .hero-visual {
    transform: none;
  }

  .hero .dashboard-promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
    gap: 18px;
  }

  .hero .dashboard-promo-card {
    min-height: 380px;
  }

  .hero .dashboard-promo-card img {
    top: 68px;
    height: 210px;
  }

  .hero .discount-sticker {
    top: 88px;
    left: 34px;
  }

  .hero .floating-product-board {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 620px;
    max-height: none;
    margin-left: 0;
    border-width: 1px;
    padding: 18px;
    gap: 12px;
  }

  .hero .board-heading h2 {
    margin-top: 8px;
    font-size: 1.8rem;
  }

  .hero .board-heading .eyebrow {
    display: inline-flex;
  }

  .hero .board-product-card {
    grid-template-columns: 56px minmax(0, 1fr) 74px;
    gap: 10px;
    padding: 10px;
  }

  .hero .board-product-card img {
    width: 56px;
    height: 56px;
  }

  .hero .board-product-card h3 {
    font-size: 0.95rem;
  }

  .hero .board-product-card p {
    display: block;
    margin-top: 6px;
    font-size: 1rem;
  }

  .hero .board-product-status {
    grid-column: auto;
    justify-self: stretch;
    min-height: 34px;
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  .store-proof {
    justify-items: center;
  }

  .proof-logos {
    justify-content: center;
  }

  .hero-copy h1 {
    max-width: 760px;
    margin: 0 auto 24px;
  }

  .hero-copy p {
    max-width: 680px;
    margin: 0 auto;
  }

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

  .industry-section h2 {
    font-size: 2.15rem;
  }

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

  .industry-copy {
    padding: 46px 30px 24px;
    text-align: center;
  }

  .industry-copy p {
    margin-inline: auto;
  }

  .industry-feature-list {
    justify-items: center;
  }

  .industry-visual {
    min-height: 500px;
  }

  .industry-device-frame {
    right: 50%;
    width: min(390px, calc(100% - 42px));
    transform: translateX(50%);
    animation-name: industryFrameFloatCentered;
  }

  .hero-showcase {
    min-height: 520px;
    max-width: 620px;
    width: 100%;
  }

  .dashboard-promo-grid {
    grid-template-columns: 1fr;
  }

  .brand-design-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .payments-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .brand-design-visual {
    width: min(100%, 540px);
    justify-self: center;
  }

  .payments-visual {
    width: min(100%, 560px);
    justify-self: center;
    order: -1;
  }

  .brand-design-content {
    justify-self: center;
    text-align: center;
  }

  .payments-content {
    justify-self: center;
    text-align: center;
  }

  .design-feature-list {
    justify-items: center;
  }

  .payment-feature-list {
    justify-items: center;
  }

  .floating-product-board {
    max-width: 620px;
    margin-left: 0;
    width: 100%;
    justify-self: center;
  }

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

  .testimonial-grid,
  .newsletter-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .category-accordion-grid {
    grid-template-columns: 1fr;
  }

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

  .category-trigger {
    grid-template-columns: minmax(0, 1fr) 36px;
  }

  .category-trigger em {
    grid-column: 1 / -1;
    max-width: none;
    text-align: left;
  }

  .category-trigger::after {
    grid-column: 2;
    grid-row: 1;
  }

  .filter-list {
    justify-content: flex-start;
  }

  .section-heading-split,
  .promo-banner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter-form {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding: 34px 0 56px;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .newsletter-form {
    flex-direction: column;
  }

  .hero-actions .btn,
  .newsletter-form .btn {
    width: 100%;
  }

  .hero-stats,
  .category-grid,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .industry-section {
    padding-top: 48px;
  }

  .industry-section h2 {
    margin-bottom: 30px;
    font-size: 1.85rem;
  }

  .industry-tab {
    flex-basis: 126px;
    min-height: 74px;
    border-radius: 16px;
  }

  .industry-showcase {
    border-radius: 16px 16px 8px 8px;
  }

  .industry-copy {
    padding: 38px 22px 18px;
  }

  .industry-copy h3 {
    font-size: 1.55rem;
  }

  .industry-copy p,
  .industry-feature-list li {
    font-size: 0.95rem;
  }

  .industry-feature-list {
    margin-top: 30px;
    justify-items: start;
    text-align: left;
  }

  .industry-visual {
    min-height: 450px;
  }

  .industry-device-frame {
    top: -10px;
    bottom: -42px;
    width: min(330px, calc(100% - 24px));
  }

  .industry-store-window {
    height: 234px;
    border-width: 6px;
  }

  .industry-products-marquee {
    gap: 8px;
    padding: 8px;
  }

  .industry-products-marquee strong {
    font-size: 0.48rem;
  }

  .industry-products-marquee span {
    font-size: 0.46rem;
  }

  .industry-campaign-card {
    top: 252px;
    border-width: 6px;
  }

  .industry-campaign-card img {
    height: 112px;
  }

  .industry-campaign-card strong {
    font-size: 0.9rem;
  }

  .industry-target-card {
    left: 14px;
    right: 14px;
    bottom: 78px;
    min-height: 52px;
    border-width: 6px;
    font-size: 0.95rem;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .dashboard-promo-card {
    min-height: 380px;
  }

  .dashboard-promo-card img {
    min-height: 380px;
  }

  .discount-sticker {
    top: 18px;
    left: 18px;
    width: 92px;
    height: 92px;
  }

  .discount-sticker strong {
    font-size: 1.65rem;
  }

  .promo-image-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .board-product-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .board-product-card img {
    width: 64px;
    height: 64px;
  }

  .board-product-status {
    grid-column: 1 / -1;
    width: 100%;
  }

  .brand-design-grid {
    min-height: auto;
  }

  .payments-grid {
    min-height: auto;
  }

  .brand-design-visual {
    min-height: 430px;
  }

  .payments-visual {
    min-height: 430px;
  }

  .layout-panel {
    left: 0;
    width: 148px;
  }

  .swatch-panel {
    left: auto;
    right: 0;
  }

  .theme-card {
    top: 78px;
    left: 34px;
    width: calc(100% - 34px);
  }

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

  .more-themes {
    grid-column: 1 / -1;
    min-height: 56px;
  }

  .options-panel {
    bottom: 0;
    width: min(260px, 78%);
  }

  .device-toggle {
    right: 0;
    bottom: 28px;
  }

  .brand-design-content h2 {
    font-size: 2rem;
  }

  .payments-content h2 {
    font-size: 2rem;
  }

  .payment-balance-card {
    top: 0;
    left: 0;
  }

  .payment-summary-card {
    top: 16px;
    right: 0;
  }

  .payment-wallet-card {
    top: 104px;
    right: 12px;
    width: min(278px, 72%);
  }

  .wallet-provider {
    left: 16px;
    top: -34px;
  }

  .payment-methods-card {
    left: 0;
    bottom: 48px;
    width: min(258px, 68%);
  }

  .paypal {
    right: 114px;
    bottom: 78px;
  }

  .tabby {
    right: 8px;
    bottom: 74px;
  }

  .spotii {
    right: 160px;
    bottom: 30px;
  }

  .tamara {
    right: 34px;
    bottom: 22px;
  }

  .order-confirmation-card {
    position: absolute;
    inset: 18px;
    width: auto;
  }

  .main-product {
    inset: 28px 0 0 18px;
  }

  .mini-card {
    width: min(240px, 72%);
  }

  .bottom-card {
    bottom: 22px;
  }

  .category-card div {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter-form {
    border-radius: 8px;
  }

  .newsletter-form input {
    min-height: 48px;
  }

  .cart-drawer {
    width: 100%;
  }

  .cart-line-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .cart-line-item img {
    width: 64px;
    height: 64px;
  }

  .cart-line-item button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .products-hero {
    padding: 56px 0 54px;
  }

  .products-hero h1 {
    font-size: 3rem;
  }

  .products-hero p {
    font-size: 1.05rem;
  }

  .search-panel {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .search-panel input {
    min-height: 48px;
  }

  .catalog-toolbar h2 {
    font-size: 2.2rem;
  }

  .category-trigger {
    padding: 20px;
  }

  .category-trigger strong {
    font-size: 1.35rem;
  }

  .category-filter-grid {
    grid-template-columns: 1fr;
  }

  .category-filter-card {
    min-height: 108px;
  }

  .subcategory-list {
    padding: 0 20px 20px;
  }

  .footer {
    padding-top: 56px;
  }
}

@media (max-width: 820px) {
  .hero-inner {
    min-height: 500px;
  }

  .store-proof {
    margin-bottom: 40px;
  }

  .proof-pill {
    max-width: min(100%, 420px);
    justify-content: center;
    text-align: center;
  }

  .hero-copy p {
    font-size: 1.15rem;
  }

  .hero-actions {
    margin-top: 40px;
  }

}

@media (max-width: 1100px) {
  .hero-copy h1 {
    font-size: 3.35rem;
  }

  .section-heading h2 {
    font-size: 2.55rem;
  }

  .promo-banner h2 {
    font-size: 2.7rem;
  }

  .newsletter-card h2 {
    font-size: 2.35rem;
  }

  .products-hero h1 {
    font-size: 3.35rem;
  }

  .catalog-toolbar h2 {
    font-size: 2.45rem;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 3rem;
  }

  .products-hero h1 {
    font-size: 3rem;
  }

  .section-heading h2,
  .promo-banner h2,
  .newsletter-card h2,
  .catalog-toolbar h2 {
    font-size: 2.15rem;
  }

  .promo-banner,
  .newsletter-card {
    padding: 30px;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .products-hero h1 {
    font-size: 2.55rem;
  }
}

@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;
  }
}
