﻿:root {
  --bg: #f3f0eb;
  --surface: rgba(255,255,255,0.84);
  --surface-strong: rgba(255,255,255,0.96);
  --line: rgba(17, 24, 39, 0.08);
  --line-strong: rgba(17, 24, 39, 0.12);
  --text: #121826;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.06);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --dark: #121826;
  --dark-2: #1e293b;
  --accent: #edb8b0;
  --accent-2: #9fc1d9;
  --accent-3: #d9d2c5;
  --success: #d7eddc;
  --warning: #fde5ba;
  --danger: #f8d2d0;
  --container: 1280px;
  --transition: 220ms cubic-bezier(.2,.8,.2,1);
}

/* Homepage showcase (pixel-oriented rebuild) */
.ww-showcase-wrap {
  padding: 18px 18px 10px;
  margin-bottom: 20px;
}

.ww-showcase-card {
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 502px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #e1e8f3;
  background: #f7f8fa;
  box-shadow: 0 18px 40px rgba(20, 33, 61, 0.12);
}

.ww-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(249, 249, 251, 0.97) 0%,
      rgba(249, 249, 251, 0.96) 34%,
      rgba(249, 249, 251, 0.9) 39%,
      rgba(249, 249, 251, 0.56) 47%,
      rgba(249, 249, 251, 0.16) 55%,
      rgba(249, 249, 251, 0) 63%
    );
  pointer-events: none;
  z-index: 1;
}

.ww-showcase-copy {
  position: relative;
  z-index: 2;
  padding: 38px 42px 30px 52px;
}

.ww-showcase-tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fee9f1;
  color: #e1407b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.ww-showcase-copy h1 {
  margin: 18px 0 16px;
  max-width: 100%;
  color: #182f59;
  font-family: "Cambria", "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.2vw, 3.15rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.ww-showcase-zwei {
  background: linear-gradient(90deg, #3fc8be 0%, #f3bf39 42%, #eb6240 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ww-showcase-copy p {
  margin: 0;
  max-width: 95%;
  color: #576a89;
  font-size: 15px;
  line-height: 1.5;
}

.ww-showcase-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.ww-showcase-btn {
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.ww-showcase-btn-primary {
  padding: 0 28px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #ee3e81 0%, #e33579 100%);
  box-shadow: 0 14px 25px rgba(227, 53, 121, 0.28);
}

.ww-showcase-btn-secondary {
  padding: 0 24px;
  border: 1px solid #d7dde9;
  color: #2c3d5b;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 9px 18px rgba(19, 32, 57, 0.08);
}

.ww-showcase-btn-secondary img {
  width: 18px;
  height: 18px;
}

.ww-showcase-media {
  position: relative;
  min-height: 502px;
  background-color: #eef4fb;
  background-image: url("assets/images/home-hero-right-clean.jpg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center bottom;
}

@media (max-width: 1260px) {
  .ww-showcase-card {
    min-height: 470px;
    grid-template-columns: 40% 60%;
  }
  .ww-showcase-copy {
    padding: 30px 24px 20px 30px;
  }
  .ww-showcase-copy h1 {
    font-size: clamp(1.55rem, 3.9vw, 3rem);
  }
  .ww-showcase-copy p {
    font-size: 14px;
    max-width: 95%;
  }
  .ww-showcase-btn {
    font-size: 13px;
    height: 48px;
  }
  .ww-showcase-media {
    min-height: 470px;
    background-size: auto 100%;
    background-position: center bottom;
  }
}

@media (max-width: 980px) {
  .ww-showcase-wrap {
    padding: 12px 12px 8px;
    margin-bottom: 16px;
  }
  .ww-showcase-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .ww-showcase-card::before {
    background:
      linear-gradient(
        180deg,
        rgba(249, 249, 251, 0.96) 0%,
        rgba(249, 249, 251, 0.88) 44%,
        rgba(249, 249, 251, 0.58) 66%,
        rgba(249, 249, 251, 0.16) 82%,
        rgba(249, 249, 251, 0) 100%
      );
  }
  .ww-showcase-copy {
    padding: 30px 22px 22px;
  }
  .ww-showcase-copy h1 {
    max-width: 10ch;
    margin-top: 18px;
    font-size: clamp(1.45rem, 8.2vw, 2.65rem);
  }
  .ww-showcase-copy p {
    max-width: 100%;
    font-size: 16px;
  }
  .ww-showcase-btn {
    height: 50px;
    font-size: 15px;
  }
  .ww-showcase-btn-primary {
    padding: 0 24px;
  }
  .ww-showcase-btn-secondary {
    padding: 0 20px;
  }
  .ww-showcase-media {
    min-height: 370px;
    background-size: cover;
    background-position: center center;
  }
}

@media (max-width: 640px) {
  .ww-showcase-tag {
    font-size: 11px;
    height: 27px;
    padding: 0 12px;
    letter-spacing: 0.06em;
  }
  .ww-showcase-copy h1 {
    font-size: clamp(1.15rem, 9vw, 1.95rem);
  }
  .ww-showcase-copy p {
    font-size: 16px;
    line-height: 1.5;
  }
  .ww-showcase-actions {
    gap: 10px;
    margin-top: 20px;
  }
  .ww-showcase-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    height: 46px;
  }
  .ww-showcase-media {
    min-height: 290px;
    background-position: 52% center;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.9), transparent 30%),
    radial-gradient(circle at right 20%, rgba(232,217,206,0.55), transparent 24%),
    linear-gradient(180deg, #f8f6f2 0%, var(--bg) 100%);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.page { padding: 28px 0 48px; }
.shell {
  background: var(--surface);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.topbar {
  display: grid;
  gap: 0;
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--line);
}
body[data-page="home"] .topbar {
  border-bottom-color: transparent;
}
.header-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 34px;
  border-bottom: 1px solid var(--line);
}
.header-meta-list {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
}
.header-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}
.header-meta-item:first-child { padding-left: 0; }
.header-meta-item:last-child { border-right: 0; }
.header-meta-item img {
  width: 19px;
  height: 19px;
  opacity: 0.8;
}
.header-meta-item strong {
  display: block;
  font-size: 13px;
  color: #334155;
  line-height: 1.2;
  font-weight: 700;
}
.header-meta-item span {
  display: block;
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
}
.header-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}
.header-rating img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}
.header-rating-text {
  display: grid;
  gap: 4px;
}
.header-stars {
  color: #f4b63c;
  letter-spacing: 1.2px;
  font-size: 17px;
  line-height: 1;
}
.header-rating-text small {
  font-size: 13px;
  color: #64748b;
}
.header-main-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 34px;
}
.brand-woom {
  gap: 12px;
  min-width: 360px;
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 700; }
.brand-mark {
  width: 74px; height: 74px; border-radius: 22px; display: grid; place-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #ebe6de 100%);
  box-shadow: inset 0 0 0 1px rgba(17,24,39,0.06), 0 10px 24px rgba(17,24,39,0.08);
}
.brand-mark img { width: 50px; height: 50px; }
.brand-copy {
  display: grid;
  gap: 2px;
}
.brand-title {
  display: inline-flex;
  gap: 4px;
  font-size: 30px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.brand-title span:first-child { color: #1e2a4a; }
.brand-title span:last-child { color: #f2b530; }
.brand-copy small {
  font-size: 16px;
  color: #475569;
  font-weight: 500;
  line-height: 1.2;
}
.nav { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.nav-main { justify-content: center; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px; border-radius: 999px; color: #1f2937; font-size: 14px; font-weight: 700;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.nav-caret {
  font-size: 12px;
  line-height: 1;
  opacity: 0.7;
}
.nav-link img { width: 16px; height: 16px; }
.nav-link:hover, .nav-link.active { background: #fde8ef; color: #e43f7b; transform: translateY(-1px); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-action-circle {
  width: 90px;
  height: 84px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.header-action-circle img {
  width: 22px;
  height: 22px;
}
.header-action-circle:hover {
  transform: translateY(-1px);
  border-color: #d1d5db;
  box-shadow: 0 8px 20px rgba(17,24,39,0.08);
}
.header-cart-btn {
  height: 60px;
  border: 0;
  border-radius: 999px;
  background: #e73e7f;
  color: #fff;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}
.header-cart-btn img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.header-logout-link {
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}
.header-logout-link img { width: 16px; height: 16px; }
.header-mobile-nav,
.header-mobile-logout {
  display: none;
}
.icon-btn, .pill-btn {
  height: 46px; border: 1px solid var(--line); background: rgba(255,255,255,0.75); color: var(--text);
  border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 0 16px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.icon-btn:hover, .pill-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); border-color: var(--line-strong); }
.icon-btn img, .pill-btn img, .meta-item img, .feature img, .mini-icon { width: 18px; height: 18px; }
.badge-dot {
  min-width: 21px; height: 21px; border-radius: 999px; background: #fff; color: #e73e7f; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.grid-main { display: grid; gap: 18px; }
.home-hero-wrap {
  padding: 22px;
}
.home-hero-card {
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e6eaf2;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.1);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
}
.home-hero-content {
  padding: 44px 40px 34px 42px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 78%, rgba(255,255,255,0.36) 100%);
}
.home-hero-tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fde9f1;
  color: #de437e;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.home-hero-content h1 {
  margin: 18px 0 18px;
  color: #1e2d4d;
  font-size: clamp(2.5rem, 4.7vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.home-hero-zwei {
  background: linear-gradient(90deg, #3cc7be 0%, #f2bd37 45%, #ef5f3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-hero-content p {
  margin: 0;
  max-width: 520px;
  color: #576784;
  font-size: 17px;
  line-height: 1.52;
}
.home-hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.home-hero-btn {
  height: 56px;
  border-radius: 999px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
}
.home-hero-btn-primary {
  background: linear-gradient(135deg, #ea3f82 0%, #e43779 100%);
  color: #fff;
}
.home-hero-btn-light {
  background: #fff;
  color: #2f3c58;
  border: 1px solid #d8e0ed;
}
.home-hero-visual {
  position: relative;
  min-height: 560px;
}
.home-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
}
.home-hero-badge {
  position: absolute;
  right: 56px;
  top: 126px;
  width: 148px;
  height: 148px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 6px solid rgba(255,255,255,0.42);
  box-shadow: 0 8px 20px rgba(17,24,39,0.1);
  display: grid;
  place-items: center;
  text-align: center;
  color: #16325c;
}
.home-hero-badge small {
  display: block;
  font-size: 15px;
  color: #43b9af;
  line-height: 1;
}
.home-hero-badge strong {
  display: block;
  margin-top: 6px;
  font-size: 31px;
  line-height: 1.02;
}
.home-hero-bottom {
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: min(740px, calc(100% - 48px));
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid #dfe6f4;
  box-shadow: 0 12px 24px rgba(17,24,39,0.14);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-hero-bottom-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px 16px;
  border-right: 1px solid #e5ebf7;
}
.home-hero-bottom-item:last-child {
  border-right: 0;
}
.home-hero-bottom-item img {
  width: 19px;
  height: 19px;
  margin-top: 2px;
}
.home-hero-bottom-item strong {
  display: block;
  color: #253755;
  font-size: 14px;
  line-height: 1.15;
}
.home-hero-bottom-item span {
  display: block;
  margin-top: 3px;
  color: #61728f;
  font-size: 14px;
  line-height: 1.3;
}
/* Home Hero V2 */
.home-hero-wrap {
  padding: 20px;
}
.home-hero-card {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #e6eaf2;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.1);
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 27%, rgba(255,255,255,0.55) 45%, rgba(255,255,255,0.06) 63%, rgba(255,255,255,0) 100%),
    url("assets/images/home-hero-full.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.home-hero-content {
  position: relative;
  z-index: 3;
  width: min(700px, 56%);
  padding: 44px 42px 32px;
}
.home-hero-tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fde9f1;
  color: #de437e;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.home-hero-content h1 {
  margin: 18px 0 18px;
  color: #1f2f4c;
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  line-height: 0.99;
  letter-spacing: -0.03em;
  max-width: 8ch;
}
.home-hero-zwei {
  background: linear-gradient(90deg, #3cc7be 0%, #f2bd37 45%, #ef5f3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.home-hero-content p {
  margin: 0;
  max-width: 500px;
  color: #576784;
  font-size: 17px;
  line-height: 1.5;
}
.home-hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.home-hero-btn {
  height: 56px;
  border-radius: 999px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
}
.home-hero-btn-primary {
  background: linear-gradient(135deg, #ea3f82 0%, #e43779 100%);
  color: #fff;
}
.home-hero-btn-light {
  background: #fff;
  color: #2f3c58;
  border: 1px solid #d8e0ed;
}
.home-hero-badge {
  position: absolute;
  z-index: 3;
  right: 56px;
  top: 118px;
  width: 152px;
  height: 152px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 6px solid rgba(255,255,255,0.48);
  box-shadow: 0 8px 20px rgba(17,24,39,0.12);
  display: grid;
  place-items: center;
  text-align: center;
  color: #16325c;
}
.home-hero-badge small {
  display: block;
  font-size: 14px;
  color: #43b9af;
  line-height: 1;
}
.home-hero-badge strong {
  display: block;
  margin-top: 6px;
  font-size: 31px;
  line-height: 1.02;
}
.home-hero-bottom {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 16px;
  width: min(760px, calc(100% - 44px));
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid #dfe6f4;
  box-shadow: 0 12px 24px rgba(17,24,39,0.14);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-hero-bottom-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px 16px;
  border-right: 1px solid #e5ebf7;
}
.home-hero-bottom-item:last-child {
  border-right: 0;
}
.home-hero-bottom-item img {
  width: 19px;
  height: 19px;
  margin-top: 2px;
}
.home-hero-bottom-item strong {
  display: block;
  color: #253755;
  font-size: 14px;
  line-height: 1.15;
}
.home-hero-bottom-item span {
  display: block;
  margin-top: 3px;
  color: #61728f;
  font-size: 14px;
  line-height: 1.3;
}
.hero {
  --hero-block-height: 540px;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 18px;
  padding: 22px;
  align-items: stretch;
}
.card {
  background: var(--surface-strong); border: 1px solid rgba(255,255,255,0.95); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); overflow: hidden;
}
.hero-copy {
  /* Option 1 (aktueller Stand): woom-hero-left.jpg
     Option 2: per Body-Klasse .hero-left-option-2 */
  --hero-left-image: url("assets/images/woom-hero-left.jpg");
  --hero-left-focus: 22% 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 24px; display: flex; flex-direction: column; justify-content: center; min-height: var(--hero-block-height); height: var(--hero-block-height);
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.76));
}
body.hero-left-option-2 .hero-copy {
  --hero-left-image: url("assets/images/woom-hero-left-opt2.jpg");
  --hero-left-focus: 26% 48%;
}
body.hero-left-option-3 .hero-copy {
  --hero-left-image: url("assets/images/woom-hero-left-opt3.jpg");
  --hero-left-focus: 28% 50%;
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.50) 56%, rgba(255,255,255,0.90) 100%),
    var(--hero-left-image);
  background-size: cover;
  background-position: var(--hero-left-focus);
  background-repeat: no-repeat;
  filter: saturate(1.04) contrast(1.03) brightness(1.01);
}
.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 14% 28%, rgba(255,255,255,0.24), rgba(255,255,255,0.0) 44%);
}
.hero-copy > * {
  position: relative;
  z-index: 2;
}
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 700; font-size: 13px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .08em; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.hero-copy h1, .section-title { margin: 0; letter-spacing: -0.04em; }
body[data-page="products"] #productsPageTitle {
  font-size: 1.25rem;
  line-height: 1.25;
}
body[data-page="offers"] #offersPageTitle {
  font-size: 1.25rem;
  line-height: 1.25;
}
.hero-copy h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 0.95; max-width: 10ch; }
.hero-copy .home-hero-title {
  font-size: clamp(1.4rem, 2.35vw, 2.1rem);
  line-height: 1.08;
  max-width: 16ch;
}
.lead { font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 54ch; margin: 20px 0 30px; }
.hero-copy .lead { color: #111111; }
.action-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  border: 0; border-radius: 999px; padding: 15px 22px; display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  cursor: pointer;
}
.btn-compact-text { font-size: 14px; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-primary { background: linear-gradient(135deg, #111827, #2d3748); color: #fff; }
.btn-secondary { background: rgba(17,24,39,0.06); color: var(--text); }
.btn-accent { background: linear-gradient(135deg, #e8b2aa, #d9938f); color: #fff; }
.btn-softblue { background: linear-gradient(135deg, #9cbfd7, #7aa6c7); color: #fff; }
.btn-full { width: 100%; justify-content: center; }
.offers-reset-btn { margin-top: 10px; }
.hero-visual {
  position: relative; padding: 22px; min-height: var(--hero-block-height); height: var(--hero-block-height);
  background: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(233,228,220,0.88));
}
.hero-stage {
  position: absolute; inset: 22px; border-radius: calc(var(--radius-lg) - 4px);
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0.12) 100%),
    url("assets/images/woom-hero-bg.jpg");
  background-size: cover;
  background-position: 66% 44%;
  background-repeat: no-repeat;
  background-blend-mode: screen;
  filter: saturate(1.08) contrast(1.03) brightness(1.04);
  overflow: hidden;
}
.hero-stage::before,
.hero-stage::after {
  content: none;
}
.hero-overlay { position: relative; z-index: 2; display: flex; flex-direction: column; height: 100%; justify-content: space-between; }
.hero-panel {
  margin: 24px; align-self: flex-start; max-width: 280px; padding: 18px; border-radius: 24px;
  background: rgba(255,255,255,0.50); border: 1px solid rgba(255,255,255,0.62); backdrop-filter: blur(10px);
}
.hero-panel h2 { margin: 0 0 10px; font-size: clamp(1.45rem, 2.1vw, 1.95rem); letter-spacing: -0.04em; line-height: 1; }
.hero-panel p { margin: 0; color: var(--muted); line-height: 1.6; }
.hero-products {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 14px 14px;
}
.floating-product {
  min-height: 158px; border-radius: 24px; background: rgba(255,255,255,0.46);
  border: 1px solid rgba(255,255,255,0.18); box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08); padding: 6px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.floating-product img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.hero-product-img-1 { object-position: 52% 48%; }
.hero-product-img-2 { object-position: 50% 46%; }
.hero-product-img-3 { object-position: 50% 42%; }
.section { padding: 0 22px 22px; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 8px 4px 18px; }
.section-head p { margin: 8px 0 0; color: var(--muted); }
.catalog-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.wishlist-view-switch {
  display: inline-flex;
  gap: 8px;
}
.wishlist-view-switch .btn {
  height: 40px;
  padding: 0 14px;
}
.wishlist-view-switch .btn.active {
  background: #111827;
  color: #fff;
}
.catalog-per-page {
  width: auto;
  min-width: 84px;
  height: 40px;
  padding: 0 12px;
}
.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}
.catalog-main { min-width: 0; }
.catalog-sidebar {
  position: sticky;
  top: 88px;
  padding: 16px;
}
.catalog-sidebar h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}
.filter-group {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.filter-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.category-filter-list {
  display: grid;
  gap: 7px;
  max-height: 220px;
  overflow: auto;
  padding-right: 4px;
}
.category-filter-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  color: var(--text);
}
.vendor-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
.vendor-tags-group {
  margin-top: 12px;
}
.vendor-tag {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  color: #425466;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--transition), background-color var(--transition), color var(--transition);
}
.vendor-tag:hover {
  border-color: var(--line-strong);
  background: #f7fafc;
}
.vendor-tag.is-active {
  border-color: #f1bfd5;
  background: #fdeaf2;
  color: #df3a7c;
}
.catalog-pagination {
  margin-top: 30px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.catalog-pagination .btn {
  padding: 10px 14px;
}
.catalog-pagination-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  color: var(--muted);
  font-weight: 700;
}
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-grid.wishlist-list-mode {
  display: block;
}
.wishlist-list-wrap {
  display: grid;
  gap: 14px;
}
.wishlist-list-item {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
}
.wishlist-list-thumb {
  display: block;
  height: 118px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f7f5, #ede8e1);
}
.wishlist-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wishlist-list-main {
  min-width: 0;
}
.wishlist-list-title {
  display: inline-block;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text);
}
.wishlist-list-desc {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}
.wishlist-list-meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.wishlist-list-side {
  display: grid;
  justify-items: end;
  gap: 10px;
}
.wishlist-list-price {
  font-size: 1.2rem;
  font-weight: 800;
  white-space: nowrap;
}
.wishlist-list-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.product-card { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.product-media {
  position: relative;
  height: 250px;
  min-height: 250px;
  max-height: 250px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f8f6, #efede7);
  display: flex; align-items: center; justify-content: center;
}
.product-media-link {
  display: flex;
  width: 100%;
  height: 100%;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.wishlist-fab {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(201, 62, 91, 0.45);
  background: #ffe3e8;
  color: #b82349;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 10px 18px rgba(184, 35, 73, 0.15);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.wishlist-fab:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(184, 35, 73, 0.22);
}
.wishlist-fab.is-active {
  background: #ffd0d8;
  border-color: rgba(201, 62, 91, 0.72);
}
.wishlist-fab-heart {
  font-size: 18px;
  line-height: 1;
}
.wishlist-fab-plus {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #f9bbc7;
  border: 1px solid rgba(184, 35, 73, 0.45);
  color: #a91d42;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sale-badge {
  position: absolute; left: 14px; top: 14px; padding: 8px 11px; border-radius: 999px; font-size: 12px; font-weight: 800;
  background: rgba(236, 147, 141, 0.9); color: #fff; box-shadow: 0 8px 24px rgba(236, 147, 141, 0.24);
}
.product-title { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; }
.product-desc { color: var(--muted); line-height: 1.55; min-height: 48px; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.price-stack { display: flex; flex-direction: column; gap: 4px; }
.price { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.04em; }
.price small { font-size: 1rem; color: var(--muted); }
.price-note { font-size: 12px; color: var(--muted); font-weight: 600; }
body[data-page="products"] .product-grid .product-title { font-size: 1.125rem; }
body[data-page="products"] .product-grid .price { font-size: 1.5rem; }
.meta-strip {
  margin-top: 18px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.meta-item {
  display: flex; align-items: center; gap: 12px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,0.6); border: 1px solid var(--line);
}
.meta-item strong { display: block; font-size: 15px; }
.meta-item span { display: block; font-size: 13px; color: var(--muted); }
.split {
  display: grid; grid-template-columns: 1.35fr .9fr; gap: 18px; padding: 22px;
}
.gallery-card { padding: 18px; }
.gallery-main {
  position: relative;
  min-height: 520px; border-radius: 28px; background: linear-gradient(180deg, #f7f7f5, #ede9e1); display: grid; place-items: center; overflow: hidden;
}
body[data-page="product"] .gallery-main { min-height: 250px; height: min(62vh, 500px); max-height: 500px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
body[data-page="product"] .gallery-main img { object-fit: contain; object-position: center; }
.thumb-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.thumb {
  border-radius: 18px; border: 1px solid var(--line); overflow: hidden; background: #fff; padding: 8px; min-height: 92px;
  display: grid; place-items: center;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.thumb.active {
  border-color: rgba(17, 24, 39, 0.34);
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-reviews-panel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.product-reviews-head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.product-reviews-head h3 {
  margin: 0;
  font-size: 1.2rem;
}
.product-reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.product-reviews-list {
  display: grid;
  gap: 10px;
}
.product-reviews-pagination {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.product-reviews-pagination .catalog-pagination-ellipsis {
  padding: 0 4px;
}
.product-review-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.78);
  border-radius: 14px;
  padding: 12px;
}
.product-review-item-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.product-review-item-title {
  font-weight: 700;
}
.product-review-item-meta {
  color: var(--muted);
  font-size: 13px;
}
.product-review-item .stars {
  letter-spacing: 1px;
  font-size: 15px;
}
.product-review-item p {
  margin: 8px 0 0;
  color: #3c485d;
  line-height: 1.45;
}
.product-reviews-empty {
  margin-top: 8px;
}
.product-review-form {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid #cfe0fb;
  background: #edf4ff;
}
.product-review-form.product-review-form-modal {
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.product-review-form h4 {
  margin: 0 0 10px;
}
.review-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(17, 24, 39, 0.52);
}
.review-modal-backdrop.open {
  display: flex;
}
.review-modal {
  width: min(760px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.32);
  padding: 18px;
}
.review-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.review-modal-head h3 {
  margin: 0;
  font-size: 1.2rem;
}
.review-modal-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #4b5563;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.review-modal-close:hover {
  background: #f8fafc;
  color: #111827;
}
.product-review-stars {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 10px;
}
.product-review-stars button {
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: #d1d5db;
  cursor: pointer;
  padding: 2px;
}
.product-review-stars button.is-active {
  color: #f3b64f;
}
.textarea {
  height: auto;
  min-height: 112px;
  padding: 12px 14px;
  resize: vertical;
}
.detail-card { padding: 24px; }
.kicker { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-page-title { margin: 10px 0 10px; font-size: clamp(1.3rem, 2.0vw, 1.75rem); letter-spacing: -0.04em; line-height: .98; }
body[data-page="product"] #productPrice { font-size: 1.6rem; }
#productDescription { white-space: pre-line; }
.rating-row, .chip-row, .feature-row, .summary-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.rating-row { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.stars { color: #f3b64f; letter-spacing: 2px; font-size: 18px; }
.color-pills, .size-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.color-pill, .size-pill {
  min-width: 46px; height: 46px; border-radius: 16px; border: 1px solid var(--line); background: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.color-pill.active, .size-pill.active {
  border-color: rgba(17, 24, 39, 0.36);
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}
.color-pill[data-color="black"] { background: #111827; }
.color-pill[data-color="cream"] { background: #e8ded0; }
.color-pill[data-color="rose"] { background: #efc2bc; }
.color-pill[data-color="blue"] { background: #b4cfdf; }
.quantity-box {
  display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin-top: 10px;
}
.quantity-box button, .quantity-box span { min-width: 48px; height: 48px; display: grid; place-items: center; background: #fff; }
.quantity-box button { border: 0; cursor: pointer; }
.feature-row { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.product-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #cfe8d6;
  background: #edf9f1;
  color: #1f6d38;
  font-size: 14px;
  font-weight: 700;
}
.product-availability-icon {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(31, 109, 56, 0.12);
}
.product-availability.is-out-of-stock {
  border-color: #f1c8c4;
  background: #fff3f2;
  color: #b42318;
}
.product-availability.is-out-of-stock .product-availability-icon {
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.12);
}
.feature { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 600; }
.desc-block { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.desc-block h3, .checkout-card h3, .cart-card h3 { margin: 0 0 18px; font-size: 1.35rem; letter-spacing: -0.03em; }
body[data-page="product"] #productQtySection h3 { font-size: 1.05rem; }
.desc-block p { color: var(--muted); line-height: 1.8; }
.read-more-toggle {
  margin-top: 6px;
  border: 0;
  background: transparent;
  color: #355f98;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}
.read-more-toggle:hover {
  text-decoration: underline;
}
.checkout-feedback {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.checkout-feedback.is-error {
  color: #b42318;
}
.checkout-feedback.is-success {
  color: inherit;
}
.checkout-terms-box {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.4;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6e5ff;
  background: #edf4ff;
}
.checkout-terms-box input[type="checkbox"] {
  margin-top: 2px;
}
.checkout-success-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #1f9d55;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.checkout-warning-icon {
  color: #b42318;
  font-size: 13px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-1px);
}
.bank-transfer-box {
  background: #eaf4ff;
  border-top-color: #b8d3f2;
  border-radius: 14px;
  padding: 14px;
}
#checkoutPaymentFollowupMessage {
  font-size: 1rem;
}
.two-col { display: grid; grid-template-columns: 1.3fr .9fr; gap: 18px; padding: 22px; }
.cart-card, .checkout-card { padding: 24px; }
.cart-table { display: grid; gap: 14px; }
.cart-item {
  display: grid; grid-template-columns: 108px 1.2fr auto auto auto; gap: 16px; align-items: center; padding: 14px; border-radius: 24px; background: rgba(255,255,255,0.72); border: 1px solid var(--line);
}
.cart-thumb { height: 90px; border-radius: 18px; background: linear-gradient(180deg, #f7f7f5, #ede8e1); overflow: hidden; }
.cart-thumb-link { display: block; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.item-info strong { display: block; font-size: 0.95rem; }
.item-info span { display: block; color: var(--muted); margin-top: 6px; }
.qty-inline {
  display: inline-flex; align-items: center; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: #fff;
}
.qty-inline button, .qty-inline span { min-width: 40px; height: 42px; display: grid; place-items: center; border: 0; background: transparent; }
.link-muted { color: var(--muted); font-weight: 700; }
.text-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.text-btn:hover { color: var(--text); }
.disabled {
  opacity: 0.55;
  pointer-events: none;
}
.empty-state {
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 12px;
  justify-items: start;
  background: rgba(255,255,255,0.6);
}
.empty-state h3 { margin: 0; }
.summary-card {
  padding: 22px; border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72)); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.summary-card .row, .order-line { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 0; color: var(--muted); }
.summary-card .total, .order-total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 14px; color: var(--text); font-size: 1.15rem; font-weight: 800; }
.summary-products { display: grid; gap: 10px; margin-bottom: 12px; }
.summary-product { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; }
.summary-product .tiny-thumb { width: 64px; height: 64px; border-radius: 18px; background: linear-gradient(180deg, #f7f7f5, #ece8e0); overflow: hidden; }
.summary-product .tiny-thumb-link { display: block; }
.summary-product .tiny-thumb img { width: 100%; height: 100%; object-fit: cover; }
.account-orders-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
}
.account-orders-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}
.account-orders-table th,
.account-orders-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}
.account-orders-table thead th {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  background: rgba(246, 247, 249, 0.95);
}
.account-orders-table tbody tr {
  transition: background-color var(--transition);
}
.account-orders-table tbody tr:hover {
  background: #f7f9fd;
}
.account-orders-table tbody tr.is-active {
  background: #eaf2ff;
}
.account-orders-table tbody tr:last-child td {
  border-bottom: 0;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
}
.status-pill.is-paid {
  background: #e9f7ef;
  color: #15693a;
  border-color: #cde9d8;
}
.status-pill.is-awaiting {
  background: #eaf2ff;
  color: #1f4f96;
  border-color: #c6dafd;
}
.status-pill.is-failed {
  background: #fdecec;
  color: #9c2a2a;
  border-color: #f6cccc;
}
.status-pill.is-refunded {
  background: #f3edf9;
  color: #59358f;
  border-color: #ddcaef;
}
.status-pill.is-default {
  background: #f1f2f4;
  color: #3d4652;
  border-color: #d8dde5;
}
.status-pill.is-ship-pending {
  background: #edf4ff;
  color: #2d5fa8;
  border-color: #c7daf8;
}
.status-pill.is-ship-processing {
  background: #fff4e8;
  color: #9a5b06;
  border-color: #f4d3a8;
}
.status-pill.is-ship-shipped {
  background: #eaf3ff;
  color: #22518f;
  border-color: #c8dcfb;
}
.status-pill.is-ship-delivered {
  background: #e6f7ec;
  color: #1f6a2d;
  border-color: #bfe8cd;
}
.status-pill.is-ship-cancelled {
  background: #fff0f0;
  color: #a33232;
  border-color: #f0c6c6;
}
.status-pill.is-ship-returned {
  background: #f4efff;
  color: #6a4ca6;
  border-color: #ddcefb;
}
.text-right {
  text-align: right !important;
}
.btn-small {
  height: 40px;
  padding: 0 14px;
  font-size: 13px;
}
.order-detail-modal {
  width: min(805px, 100%);
  max-height: min(88vh, 920px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.order-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.order-modal-head h3 {
  margin: 0;
}
.order-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.order-modal-close:hover {
  background: #f7f9fd;
}
.order-modal-content {
  overflow: auto;
  padding-right: 4px;
}
.order-loading-note {
  margin: 0;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: #fafbfd;
}
.order-modal-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.order-meta-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  border-radius: 14px;
  padding: 10px 12px;
}
.order-meta-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.order-meta-item strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}
.order-modal-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.84);
  padding: 14px;
  margin-bottom: 12px;
}
.order-modal-subhead {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.order-modal-items {
  display: grid;
  gap: 10px;
}
.order-item-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.order-item-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.order-item-main strong {
  display: block;
}
.order-item-meta {
  margin-top: 4px;
}
.order-item-total {
  white-space: nowrap;
}
.order-modal-totals .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}
.order-modal-totals .row:last-child {
  border-bottom: 0;
}
.order-modal-totals .row > span {
  font-weight: 600;
  color: var(--muted);
}
.order-modal-totals .row > strong {
  text-align: right;
  line-height: 1.35;
}
.order-modal-totals .total {
  margin-top: 4px;
}
.order-bank-card {
  margin-bottom: 0;
}
.order-bank-note {
  margin: 0 0 10px;
}
.order-bank-card .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  align-items: flex-start;
  border-bottom: 1px solid rgba(184, 211, 242, 0.7);
}
.order-bank-card .row:last-child {
  border-bottom: 0;
}
.order-bank-card .row > span {
  font-weight: 600;
  color: #52627a;
}
.order-bank-card .row > strong {
  text-align: right;
  line-height: 1.35;
  max-width: 58%;
  overflow-wrap: anywhere;
}
.order-option-row {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.order-option-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f2f4f8;
  border: 1px solid #dde2ea;
  font-size: 12px;
  color: #4f5966;
}
@media (max-width: 760px) {
  .order-modal-meta {
    grid-template-columns: 1fr;
  }
  .order-modal-totals .row,
  .order-bank-card .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .order-modal-totals .row > strong,
  .order-bank-card .row > strong {
    text-align: left;
    max-width: none;
  }

  .section {
    padding: 0 14px 16px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 4px 0 14px;
  }

  .two-col {
    padding: 14px;
  }

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

  .catalog-head-actions {
    width: 100%;
    align-items: stretch;
  }

  .catalog-head-actions > * {
    width: 100%;
  }

  .catalog-per-page {
    width: 100%;
    min-width: 0;
  }

  .catalog-sidebar {
    padding: 14px;
  }

  .product-card {
    padding: 14px;
  }

  .product-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .action-row {
    width: 100%;
  }

  .action-row .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .summary-card .row,
  .order-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .summary-card .row > strong,
  .order-line > strong {
    text-align: left;
  }

  .checkout-shipping-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
  }

  .radio-card {
    align-items: flex-start;
    padding: 14px;
  }

  .radio-left {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .checkout-terms-box {
    align-items: flex-start;
  }

  .checkout-terms-box span {
    min-width: 0;
  }

  .catalog-pagination .btn {
    flex: 1 1 auto;
  }

  .cart-item {
    gap: 12px;
    padding: 12px;
  }
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 700; }
.auth-wrap { max-width: 480px; margin: 0 auto; }
.auth-stack { display: grid; gap: 14px; }
.auth-card { padding: 22px; }
.auth-title { margin: 0 0 8px; }
.auth-alert {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin: 10px 0;
  background: rgba(255,255,255,0.8);
}
.auth-alert.err { border-color: #f3c5c5; background: #fff5f5; }
.auth-alert.ok { border-color: #cfe9d8; background: #f3fbf6; }
.input, .select {
  height: 54px; border-radius: 18px; border: 1px solid var(--line); padding: 0 16px; background: rgba(255,255,255,0.82);
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
}
.input:focus, .select:focus { border-color: rgba(17,24,39,0.22); box-shadow: 0 0 0 4px rgba(17,24,39,0.05); }
.checkout-shipping-display {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  padding: 14px 16px;
  display: grid;
  gap: 10px;
  min-height: 54px;
}
.checkout-shipping-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.checkout-shipping-label {
  color: var(--muted);
}
.payment-options { display: grid; gap: 12px; margin-top: 22px; }
.radio-card {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 18px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,0.72);
}
.payment-card { cursor: pointer; transition: border-color var(--transition), box-shadow var(--transition); }
.payment-card.is-selected {
  border-color: rgba(17,24,39,0.28);
  box-shadow: 0 0 0 3px rgba(17,24,39,0.08);
}
.payment-choice {
  width: 18px;
  height: 18px;
  margin: 0;
}
.radio-left { display: flex; align-items: center; gap: 12px; }
.dot { width: 18px; height: 18px; border-radius: 999px; border: 5px solid var(--dark); background: #fff; box-shadow: inset 0 0 0 1px #fff; }
.muted { color: var(--muted); }
.spacer { height: 10px; }
.footer-mini {
  margin-top: 12px;
  padding: 18px 26px 24px;
  color: var(--muted);
  background: #eef1f4;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-left { flex: 1 1 680px; }
.footer-right {
  flex: 0 0 360px;
  display: grid;
  gap: 10px;
  justify-items: end;
}
.footer-social-headrow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.footer-right h4 {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  white-space: nowrap;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, max-content));
  justify-content: start;
  gap: 20px 28px;
}
.footer-grid h4 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 14px;
}
.footer-grid a {
  display: block;
  padding: 3px 0;
  color: #5f6670;
  font-size: 14px;
}
.footer-grid a:hover {
  color: var(--text);
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5f6670;
  font-size: 13px;
  padding: 3px 0;
  white-space: nowrap;
}
.footer-social-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 14px;
  flex-wrap: nowrap;
}
.footer-social-link img {
  width: 18px;
  height: 18px;
}
.footer-social-link:hover {
  color: var(--text);
}
.footer-trustpilot img {
  width: 116px;
  height: auto;
}
.footer-trustpilot-badge {
  margin-top: 6px;
  justify-self: end;
  display: inline-flex;
  align-items: center;
}
.footer-trustpilot-badge img {
  width: 186px;
  height: auto;
  display: block;
}
.small-note { font-size: 13px; color: var(--muted); }
.shipping-info {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.shipping-info .shipping-info-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.shipping-info.is-success {
  color: #1f6d38;
  background: #eaf8ef;
  border-color: #cdecd8;
}
.shipping-info.is-success .shipping-info-icon {
  color: #ffffff;
  background: #2f9e44;
}
.shipping-info.is-hint {
  color: #365278;
  background: #edf4ff;
  border-color: #d6e5ff;
}
.shipping-info.is-hint .shipping-info-icon {
  color: #ffffff;
  background: #5d84c5;
}
.hero-stat {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.72); color: var(--text); font-weight: 700;
}

body.modal-open {
  overflow: hidden;
}

.cart-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 24, 39, 0.42);
}

.cart-modal-backdrop.open {
  display: flex;
}

.cart-modal {
  width: min(460px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.24);
  padding: 22px;
}

.cart-modal h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.cart-modal .small-note {
  margin: 0 0 18px;
}
.modal-warning-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.cart-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.support-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1150;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.support-chat-fab {
  position: relative;
  min-width: 126px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: linear-gradient(135deg, #1f3a68 0%, #2f5ea8 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(21, 43, 78, 0.26);
}

.support-chat-fab-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

.support-chat-fab-badge {
  position: absolute;
  top: -6px;
  right: -2px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  padding: 0 6px;
  background: #e73e7f;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.support-chat-panel {
  width: min(390px, calc(100vw - 24px));
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.2);
  overflow: hidden;
}

.support-chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
  background: linear-gradient(180deg, #f8fbff, #edf4ff);
  border-bottom: 1px solid #d6e5ff;
}

.support-chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.support-chat-messages {
  max-height: 340px;
  min-height: 180px;
  overflow: auto;
  padding: 14px;
  display: grid;
  gap: 10px;
  background: #fcfdff;
}

.support-chat-bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.support-chat-bubble.is-customer {
  margin-left: auto;
  border-color: #d6e5ff;
  background: #edf4ff;
}

.support-chat-bubble.is-admin {
  margin-right: auto;
  border-color: #d9e8df;
  background: #eef8f2;
}

.support-chat-bubble-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--muted);
}

.support-chat-bubble-head strong {
  color: var(--text);
}

.support-chat-agent-name {
  color: #1f3a68;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.support-chat-agent-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  opacity: 0.95;
  filter: brightness(0) saturate(100%) invert(19%) sepia(24%) saturate(1707%) hue-rotate(182deg) brightness(95%) contrast(91%);
}

.support-chat-bubble-body {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

.support-chat-guest-fields,
.support-chat-compose {
  padding: 0 14px 14px;
}

.support-chat-guest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.support-chat-compose {
  display: grid;
  gap: 8px;
}

.support-chat-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.support-chat-actions .small-note {
  flex: 1 1 auto;
}

@media (max-width: 640px) {
  .support-chat-widget {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-items: stretch;
  }

  .support-chat-fab {
    width: auto;
  }

  .support-chat-panel {
    width: 100%;
  }

  .support-chat-guest-grid {
    grid-template-columns: 1fr;
  }

  .support-chat-messages {
    max-height: 280px;
  }

  .two-col {
    padding: 10px;
  }

  .cart-card,
  .checkout-card,
  .summary-card {
    padding: 14px;
    border-radius: 22px;
  }

  .product-media {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
  }

  .summary-product {
    grid-template-columns: 48px 1fr;
    gap: 10px;
    align-items: start;
  }

  .summary-product > strong {
    grid-column: 2 / -1;
  }

  .wishlist-view-switch {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .wishlist-view-switch .btn {
    width: 100%;
  }

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

  .catalog-pagination .btn {
    width: 100%;
  }

  .cart-thumb {
    height: 160px;
  }
}

@media (max-width: 1180px) {
  .home-hero-wrap {
    padding: 14px;
  }
  .home-hero-card {
    min-height: 520px;
    background-position: 64% center;
  }
  .home-hero-content {
    width: min(680px, 72%);
    padding: 32px 24px 28px;
  }
  .home-hero-content h1 {
    font-size: clamp(1.95rem, 5.8vw, 3.2rem);
  }
  .home-hero-badge {
    right: 22px;
    top: 26px;
    width: 118px;
    height: 118px;
  }
  .home-hero-badge strong {
    font-size: 24px;
  }
  .home-hero-bottom {
    right: 16px;
    bottom: 12px;
    width: min(700px, calc(100% - 32px));
  }
  .header-meta-row {
    padding: 12px 16px;
    flex-wrap: wrap;
  }
  .header-meta-list {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .header-main-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 16px;
  }
  .nav-main {
    justify-content: flex-start;
  }
  .hero-stage { background-position: 62% 42%; }
  .hero, .split, .two-col { grid-template-columns: 1fr; }
  .product-grid, .meta-strip { grid-template-columns: repeat(2, 1fr); }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; }
  .cart-item { grid-template-columns: 108px 1fr auto auto; }
  .cart-item .link-muted { grid-column: 2 / -1; }
}

@media (max-width: 840px) {
  .home-hero-wrap {
    padding: 10px;
  }
  .home-hero-card {
    min-height: 0;
    background-position: 72% center;
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 43%, rgba(255,255,255,0.6) 66%, rgba(255,255,255,0.2) 100%),
      url("assets/images/home-hero-full.png");
  }
  .home-hero-content {
    width: 100%;
    padding: 22px 16px 18px;
  }
  .home-hero-tag {
    font-size: 12px;
    height: 28px;
  }
  .home-hero-content h1 {
    max-width: 11ch;
    font-size: clamp(1.8rem, 11vw, 2.65rem);
    line-height: 1.02;
  }
  .home-hero-content p {
    font-size: 15px;
    max-width: 95%;
  }
  .home-hero-btn {
    height: 48px;
    font-size: 16px;
    padding: 0 18px;
  }
  .home-hero-badge {
    display: none;
  }
  .home-hero-bottom {
    position: static;
    margin: 14px 10px 10px;
    width: auto;
    grid-template-columns: 1fr;
  }
  .home-hero-bottom-item {
    border-right: 0;
    border-bottom: 1px solid #e5ebf7;
  }
  .home-hero-bottom-item:last-child {
    border-bottom: 0;
  }
  .container { width: min(var(--container), calc(100% - 20px)); }
  .topbar { gap: 0; }
  .header-meta-row {
    display: none;
  }
  .brand-woom {
    min-width: 0;
  }
  .brand-mark {
    width: 58px;
    height: 58px;
  }
  .brand-mark img {
    width: 34px;
    height: 34px;
  }
  .brand-title {
    font-size: 20px;
  }
  .header-main-row {
    grid-template-columns: 1fr;
    padding: 14px 14px 10px;
  }
  .nav-main {
    display: none;
  }
  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
  .header-actions .header-logout-link {
    display: none;
  }
  .header-action-circle {
    width: 72px;
    height: 72px;
  }
  .header-cart-btn {
    height: 48px;
    padding: 0 14px;
    font-size: 13px;
  }
  .header-mobile-nav {
    display: block;
    padding: 0 14px 12px;
    border-top: 1px solid var(--line);
  }
  .nav-mobile {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .header-mobile-logout {
    display: block;
    padding: 0 14px 12px;
  }
  .hero-products, .product-grid, .meta-strip, .thumb-row, .form-grid { grid-template-columns: 1fr; }
  .footer-mini { gap: 16px; }
  .footer-left, .footer-right { flex: 1 1 100%; }
  .footer-right { justify-items: start; }
  .footer-social-headrow { justify-content: flex-start; flex-wrap: wrap; }
  .footer-social-row { justify-content: flex-start; flex-wrap: wrap; }
  .footer-trustpilot-badge { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 14px; }
  .hero-copy, .hero-visual, .gallery-main { min-height: auto; height: auto; }
  .cart-item { grid-template-columns: 1fr; }
  .cart-thumb { height: 200px; }
  .summary-product { grid-template-columns: 54px 1fr auto; }
  .wishlist-list-item {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .wishlist-list-thumb {
    height: 180px;
  }
  .wishlist-list-side {
    justify-items: start;
  }
  .wishlist-list-actions {
    justify-content: flex-start;
  }
}

.catalog-seo-intro {
  margin: 0;
  max-width: 74ch;
}

.catalog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 12px 0 10px;
  color: #667085;
  font-size: 13px;
}

.catalog-breadcrumbs a {
  color: #334155;
  text-decoration: none;
}

.catalog-breadcrumbs a:hover,
.catalog-breadcrumbs a:focus-visible {
  text-decoration: underline;
}

