/* ==========================================================================
   CLAURANN CRÉATIONS — app.css
   Refonte organisée : identité boutique douce, lisible et premium
   ========================================================================== */

/* ==========================================================================
   01. TOKENS / THÈMES
   ========================================================================== */

:root {
  --container: 1180px;

  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius: 24px;

  --bg: #f8f1e8;
  --surface: #fffaf3;
  --surface-2: #efe2d2;
  --surface-3: #dcc6aa;
  --soft: #efe2d2;

  --text: #30261f;
  --text-strong: #251d18;
  --text-soft: #766657;

  --line: rgba(48, 38, 31, 0.12);
  --line-strong: rgba(48, 38, 31, 0.2);

  --primary: #8d6f51;
  --primary-dark: #30241d;

  --accent: #b98544;
  --accent-soft: #e8c28e;

  --sage: #9ea889;
  --sage-soft: rgba(158, 168, 137, 0.16);

  --danger: #d94141;
  --success: #7f9a73;

  --shadow: 0 18px 42px rgba(80, 58, 39, 0.1);
  --shadow-card: 0 14px 30px rgba(80, 58, 39, 0.14);
  --shadow-panel: 0 24px 54px rgba(80, 58, 39, 0.16);

  --hero-bg:
    radial-gradient(circle at 12% 8%, rgba(232, 194, 142, 0.18), transparent 24%),
    radial-gradient(circle at 90% 14%, rgba(158, 168, 137, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf6ef 0%, #f3e7d8 100%);

  --hero-visual-bg:
    radial-gradient(circle at top right, rgba(185, 133, 68, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(158, 168, 137, 0.12), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #eadac6 100%);

  --card-gradient: linear-gradient(180deg, #fffdf8 0%, #f2e5d5 100%);
  --footer-gradient: linear-gradient(135deg, #fffaf3 0%, #eadac6 100%);

  --focus-ring: 0 0 0 3px rgba(185, 133, 68, 0.22);
}

:root[data-theme="dark"] {
  --bg: #15100d;
  --surface: #211914;
  --surface-2: #2a2019;
  --surface-3: #382a20;
  --soft: #2a2019;

  --text: #f8efe4;
  --text-strong: #fff7ec;
  --text-soft: #d8c7b4;

  --line: rgba(248, 239, 228, 0.13);
  --line-strong: rgba(248, 239, 228, 0.22);

  --primary: #d8c4a8;
  --primary-dark: #fff7ec;

  --accent: #d2a15e;
  --accent-soft: #8c6230;

  --sage: #b3bd9f;
  --sage-soft: rgba(179, 189, 159, 0.14);

  --danger: #ef7777;
  --success: #a7c59a;

  --shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  --shadow-card: 0 14px 30px rgba(0, 0, 0, 0.3);
  --shadow-panel: 0 24px 54px rgba(0, 0, 0, 0.34);

  --hero-bg:
    radial-gradient(circle at 8% 10%, rgba(210, 161, 94, 0.08), transparent 24%),
    radial-gradient(circle at 92% 14%, rgba(179, 189, 159, 0.06), transparent 26%),
    linear-gradient(180deg, #15100d 0%, #1b1410 100%);

  --hero-visual-bg:
    radial-gradient(circle at top right, rgba(210, 161, 94, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(179, 189, 159, 0.05), transparent 30%),
    linear-gradient(180deg, #211914 0%, #2a2019 100%);

  --card-gradient: linear-gradient(180deg, #261d17 0%, #211914 100%);
  --footer-gradient: linear-gradient(135deg, #211914 0%, #2a2019 100%);

  --focus-ring: 0 0 0 3px rgba(210, 161, 94, 0.28);
}

/* ==========================================================================
   02. BASE / RESET
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Lexend", "Inter", sans-serif;
  background: var(--hero-bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.005em;
  transition: background 0.25s ease, color 0.25s ease;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: color-mix(in srgb, var(--accent) 28%, transparent 72%);
  color: var(--text-strong);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

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

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.15;
  color: var(--text-strong);
}

p {
  margin-top: 0;
}

/* ==========================================================================
   03. HEADER / NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 94%, transparent 6%);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
  flex-wrap: nowrap;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.site-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.nav-link,
.nav-link-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text-strong);
  font-size: 0.98rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link-summary:hover,
.nav-link-summary:focus-visible {
  background: color-mix(in srgb, var(--surface) 92%, transparent 8%);
  border-color: var(--line);
  transform: translateY(-1px);
  outline: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-chevron {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.nav-dropdown[open] .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  max-width: 420px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-panel);
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.nav-category-card,
.nav-category-empty {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface-2) 82%, transparent 18%);
  color: var(--text);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-category-card:hover,
.nav-category-card:focus-visible {
  background: var(--surface-2);
  border-color: var(--line);
  transform: translateY(-1px);
  outline: none;
}

.nav-category-empty {
  color: var(--text-soft);
}

.header-tools {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 94%, transparent 6%);
}

.header-search-input {
  width: 220px;
  border: 0;
  background: transparent;
  padding: 0 12px;
  color: var(--text);
  outline: none;
}

.header-search-input::placeholder {
  color: var(--text-soft);
}

.header-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--text-strong);
  color: var(--surface);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

:root[data-theme="dark"] .header-search-button {
  color: #211914;
}

.header-search-button:hover,
.header-search-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  outline: none;
}

.cart-icon,
.account-button,
.header-icon-button,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--text-strong);
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cart-icon,
.account-button {
  position: relative;
  border: 1px solid transparent;
  background: transparent;
}

.header-icon-button,
.theme-toggle {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--surface);
}

.cart-icon:hover,
.account-button:hover,
.header-icon-button:hover,
.theme-toggle:hover,
.cart-icon:focus-visible,
.account-button:focus-visible,
.header-icon-button:focus-visible,
.theme-toggle:focus-visible {
  background: var(--surface-2);
  border-color: var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
  outline: none;
}

.cart-icon i {
  font-size: 1.1rem;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 1px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--danger);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px var(--surface);
}

.theme-toggle {
  gap: 8px;
  padding: 0 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.theme-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
}

.theme-toggle .theme-icon-light {
  display: none;
}

:root[data-theme="dark"] .theme-toggle .theme-icon-dark {
  display: none;
}

:root[data-theme="dark"] .theme-toggle .theme-icon-light {
  display: inline-flex;
}

/* ==========================================================================
   04. ACCOUNT DROPDOWN
   ========================================================================== */

.account-dropdown {
  position: relative;
}

.account-dropdown summary {
  list-style: none;
}

.account-dropdown summary::-webkit-details-marker {
  display: none;
}

.account-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 40;
  width: 260px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-panel);
}

.account-dropdown-header {
  display: grid;
  gap: 4px;
  padding: 4px 4px 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.account-dropdown-header strong {
  color: var(--text-strong);
  font-size: 0.95rem;
}

.account-dropdown-header span {
  color: var(--text-soft);
  font-size: 0.8rem;
  word-break: break-all;
}

.account-dropdown-link {
  display: block;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
}

.account-dropdown-link:hover,
.account-dropdown-link:focus-visible {
  background: var(--surface-2);
  outline: none;
}

/* ==========================================================================
   05. BUTTONS / COMMON UI
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  background: var(--text-strong);
  color: var(--surface);
  box-shadow: var(--shadow-card);
}

:root[data-theme="dark"] .btn-primary {
  color: #211914;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: var(--shadow-panel);
}

.btn-secondary {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--line-strong);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: color-mix(in srgb, var(--text-strong) 7%, transparent 93%);
}

.checkout-inline-link {
  color: var(--accent);
  font-weight: 800;
}

.checkout-inline-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   06. HOME / HERO
   ========================================================================== */

.hero {
  padding: 54px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.hero-card,
.hero-visual,
.theme-card,
.product-card,
.preview-card,
.footer-card,
.web-card,
.split-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero h1 {
  margin-bottom: 18px;
  color: var(--text-strong);
  font-size: clamp(2.7rem, 4.6vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.mini-stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}

.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-strong);
  font-size: 1.1rem;
  font-weight: 800;
}

.mini-stat span {
  display: block;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-visual {
  min-height: 470px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--hero-visual-bg);
}

.visual-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.visual-panel {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-panel);
}

.panel-a {
  width: 58%;
  height: 84%;
  left: 3%;
  top: 6%;
  transform: rotate(-5deg);
}

.panel-b {
  width: 54%;
  height: 78%;
  right: 2%;
  top: 10%;
  transform: rotate(7deg);
}

/* ==========================================================================
   07. FAKE COVERS / PREVIEWS
   ========================================================================== */

.pdf-cover {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--surface) 94%, white 6%) 0%,
    color-mix(in srgb, var(--surface-2) 72%, var(--surface) 28%) 100%
  );
}

.pdf-cover::before {
  content: "APERÇU";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-27deg);
  color: color-mix(in srgb, var(--text-strong) 9%, transparent 91%);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  white-space: nowrap;
  pointer-events: none;
}

.cover-kicker {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cover-title {
  margin-top: 8px;
  color: var(--text-strong);
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.1;
}

.cover-sub {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}

.cover-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.fake-guide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 55%;
  height: 76%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 96%, transparent 4%);
  box-shadow: var(--shadow-card);
  transform: translate(-50%, -50%) rotate(-5deg);
}

.fake-guide.small-2 {
  width: 48%;
  height: 68%;
  left: 68%;
  top: 53%;
  opacity: 0.92;
  transform: translate(-50%, -50%) rotate(7deg);
}

.fake-line,
.fake-block,
.blank-box,
.web-line,
.web-button,
.preview-list span {
  background: color-mix(in srgb, var(--primary) 26%, transparent 74%);
}

.fake-line,
.web-line,
.preview-list span {
  height: 10px;
  margin-bottom: 10px;
  border-radius: 999px;
}

.fake-line.w1,
.web-line.w1 {
  width: 56%;
}

.fake-line.w2,
.web-line.w2 {
  width: 78%;
}

.fake-line.w3,
.web-line.w3 {
  width: 92%;
}

.fake-block {
  height: 82px;
  margin-top: 14px;
  border-radius: 18px;
}

.blank-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.blank-box {
  height: 54px;
  border-radius: 14px;
}

.blank-box.tall {
  height: 86px;
}

/* ==========================================================================
   08. THEMES / SECTIONS
   ========================================================================== */

.theme-section {
  padding: 6px 0 10px;
}

.theme-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.theme-card {
  min-height: 162px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}

.theme-card h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.3;
}

.theme-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.theme-badge,
.product-tag,
.web-tag,
.tag-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--text-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.section {
  padding: 20px 0;
}

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

.section-head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-intro {
  max-width: 780px;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 1rem;
}

/* ==========================================================================
   09. SPLIT / PRODUCT GRIDS
   ========================================================================== */

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin-bottom: 24px;
}

.split-card {
  padding: 26px;
  border-radius: 24px;
}

.split-card h3 {
  margin-bottom: 12px;
  color: var(--text-strong);
  font-size: 1.5rem;
  font-weight: 800;
}

.split-card p {
  margin: 0;
  color: var(--text-soft);
}

.split-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.split-list-item {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card-gradient);
  color: var(--text-soft);
}

.products-grid,
.web-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card,
.web-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
}

.product-top {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.product-top.theme-home,
.product-top.theme-routine,
.product-top.theme-blank {
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
}

.product-top.theme-baby,
.product-top.theme-couple,
.product-top.theme-blank-soft {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}

.product-top.theme-food {
  background: linear-gradient(135deg, var(--surface-2) 0%, color-mix(in srgb, var(--sage-soft) 45%, var(--surface-3) 55%) 100%);
}

.product-top.theme-confidence {
  background: linear-gradient(135deg, var(--surface) 0%, color-mix(in srgb, var(--primary) 18%, var(--surface-3) 82%) 100%);
}

.product-body,
.web-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.product-tag {
  background: var(--surface-2);
}

.product-title,
.web-title {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.14;
}

.web-title {
  font-size: 1.45rem;
}

.product-body p,
.web-body p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
}

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

.price {
  color: var(--accent);
  font-size: 1.06rem;
  font-weight: 800;
}

/* ==========================================================================
   10. WEB CARDS / BROWSER MOCKUP
   ========================================================================== */

.web-top {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 18px;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
}

.browser {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, var(--bg) 12%);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 32%, transparent 68%);
}

.browser-body {
  padding: 16px;
}

.web-hero {
  height: 58px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent) 16%, transparent 84%),
    color-mix(in srgb, var(--sage) 14%, transparent 86%)
  );
}

.web-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}

.web-block {
  min-height: 90px;
  padding: 12px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--primary) 10%, transparent 90%);
}

.web-button {
  width: 82px;
  height: 34px;
  margin-top: 12px;
  border-radius: 999px;
}

/* ==========================================================================
   11. PREVIEW / FOOTER HOMEPAGE
   ========================================================================== */

.preview-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-top: 8px;
}

.preview-card {
  padding: 26px;
  border-radius: 24px;
}

.preview-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.mini-preview {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card-gradient);
}

.mini-preview::before {
  content: "APERÇU";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-28deg);
  color: color-mix(in srgb, var(--text-strong) 8%, transparent 92%);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  pointer-events: none;
}

.mini-preview h4 {
  margin: 0 0 14px;
  color: var(--text-strong);
  font-size: 1rem;
  font-weight: 800;
}

.preview-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-wrap {
  padding: 24px 0 60px;
}

.footer-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background: var(--footer-gradient);
}

.footer-card h3 {
  margin: 0 0 14px;
  color: var(--text-strong);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.footer-card p {
  max-width: 640px;
  margin: 0;
  color: var(--text-soft);
}

.email-box {
  align-self: center;
  display: flex;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 94%, transparent 6%);
}

.email-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 10px;
  color: var(--text);
  font-size: 1rem;
  outline: none;
}

.email-box input::placeholder {
  color: var(--text-soft);
}

.brand-simple {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-simple-name {
  color: var(--text-strong);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-simple-sub {
  color: var(--text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo-block {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   12. CATEGORY / PRODUCT PAGE
   ========================================================================== */

.category-hero-section,
.product-page-section,
.search-page-section,
.cart-page-section {
  padding-top: 48px;
}

.category-hero-card,
.search-hero-card,
.product-main-card,
.product-side-card,
.cart-main-card,
.cart-summary-card,
.cart-empty-card,
.product-description-card,
.product-tags-card,
.product-preview-card,
.product-info-card,
.login-card,
.customize-preview-card,
.customize-panel,
.account-order-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.category-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  padding: 34px;
}

.category-hero-side {
  display: grid;
  gap: 16px;
}

.category-stat-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-2);
}

.category-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.category-stat-card span {
  color: var(--text-soft);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.product-main-card {
  padding: 30px;
}

.product-main-top {
  display: grid;
  gap: 24px;
}

.product-page-title {
  margin: 8px 0 14px;
  color: var(--text-strong);
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.product-page-intro {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.product-page-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.product-page-price-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-price-label {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.product-page-price {
  color: var(--accent);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}

.product-page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-description-card,
.product-tags-card {
  margin-top: 24px;
  padding: 24px;
}

.product-side-card,
.product-preview-card,
.product-info-card {
  padding: 22px;
}

.product-side-sticky,
.cart-summary-sticky {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 18px;
}

.product-description-card h2,
.product-tags-card h2,
.product-preview-card h2,
.product-info-card h2,
.cart-summary-card h2 {
  margin: 0 0 16px;
  color: var(--text-strong);
  font-size: 1.35rem;
  font-weight: 800;
}

.product-description-content {
  color: var(--text-soft);
  white-space: normal;
}

.product-preview-card p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.product-preview-grid,
.product-preview-empty,
.product-info-list {
  display: grid;
  gap: 14px;
}

.product-preview-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-2);
}

.product-preview-image {
  width: 100%;
}

.fake-preview-placeholder {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-2);
}

.product-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.product-info-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-info-row span {
  color: var(--text-soft);
}

.product-info-row strong {
  color: var(--text-strong);
  text-align: right;
}

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

.tag-pill {
  background: var(--soft);
  color: var(--text-strong);
}

/* ==========================================================================
   13. SEARCH
   ========================================================================== */

.search-hero-card {
  display: grid;
  gap: 22px;
  padding: 32px;
}

.search-form-large {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.search-form-large input {
  flex: 1;
  min-width: 280px;
  min-height: 60px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-strong);
  outline: none;
}

.search-form-large input::placeholder {
  color: var(--text-soft);
}

/* ==========================================================================
   14. CART
   ========================================================================== */

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.cart-main-card {
  padding: 30px;
}

.cart-items-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.cart-item-card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-2);
}

.cart-item-left {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 18px;
}

.cart-item-visual,
.cart-item-media {
  width: 180px;
  min-width: 180px;
}

.cart-item-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card-gradient);
}

.cart-item-visual .fake-guide {
  width: 100%;
  height: 128px;
}

.cart-item-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cart-item-title {
  margin: 6px 0 10px;
  color: var(--text-strong);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.12;
}

.cart-item-description {
  margin: 0;
  color: var(--text-soft);
}

.cart-item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--text-soft);
}

.cart-item-meta strong {
  color: var(--accent);
  font-weight: 800;
}

.cart-item-right {
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}

.cart-item-total {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.cart-item-actions .btn {
  width: 100%;
}

.cart-summary-card {
  padding: 24px;
}

.cart-summary-list {
  display: grid;
  gap: 16px;
  margin: 22px 0 24px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-summary-row:last-child {
  border-bottom: 0;
}

.cart-summary-row span {
  color: var(--text-soft);
}

.cart-summary-row strong {
  color: var(--text-strong);
}

.cart-summary-row-total strong {
  color: var(--accent);
  font-size: 1.45rem;
  font-weight: 800;
}

.cart-summary-btn {
  width: 100%;
  margin-bottom: 12px;
}

.cart-empty-card {
  margin-top: 24px;
  padding: 28px;
}

.cart-empty-card h2 {
  margin: 0 0 12px;
  color: var(--text-strong);
  font-size: 1.6rem;
  font-weight: 800;
}

.cart-empty-card p {
  margin: 0 0 20px;
  color: var(--text-soft);
}

.cart-item-preview-frame {
  width: 180px;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface-2) 80%, transparent);
}

.cart-item-image {
  width: 100%;
  height: 100%;
}

.cart-item-image-preview {
  object-fit: cover;
  object-position: center top;
}

.cart-customization-summary {
  display: grid;
  gap: 8px;
  max-width: 260px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
}

.cart-customization-summary > strong,
.cart-customization-summary strong {
  color: var(--text-strong);
  font-size: 0.9rem;
}

.cart-customization-summary ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-customization-summary li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.cart-customization-summary li span {
  color: var(--text-soft);
}

.cart-customization-summary li strong {
  color: var(--text-strong);
  font-weight: 700;
  text-align: right;
}

/* ==========================================================================
   15. LOGIN / FORMS / CHECKOUT
   ========================================================================== */

.login-page-section {
  padding-top: 56px;
  padding-bottom: 70px;
}

.login-card {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 34px;
}

.login-card-head {
  margin-bottom: 24px;
}

.login-form,
.form-group {
  display: grid;
}

.login-form {
  gap: 18px;
}

.form-group {
  gap: 8px;
}

.form-group label,
.checkout-label {
  color: var(--text-strong);
  font-size: 0.95rem;
  font-weight: 800;
}

.form-group input,
.checkout-input,
.customize-input {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  color: var(--text-strong);
  outline: none;
}

.form-group input {
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 18px;
}

.checkout-input,
.customize-input {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.form-group input:focus,
.checkout-input:focus,
.customize-input:focus,
.search-form-large input:focus,
.header-search-input:focus {
  box-shadow: var(--focus-ring);
  border-color: var(--accent);
}

.login-submit {
  width: 100%;
  margin-top: 8px;
}

.checkout-notice {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-2);
}

.checkout-notice strong {
  color: var(--text-strong);
  font-size: 0.95rem;
}

.checkout-notice span {
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.checkout-notice-success {
  background: color-mix(in srgb, var(--success) 14%, var(--surface-2) 86%);
}

.checkout-label {
  margin-top: 4px;
  font-size: 0.86rem;
}

.checkout-small {
  font-size: 0.78rem !important;
}

/* ==========================================================================
   16. ACCOUNT / ORDERS
   ========================================================================== */

.account-orders-list,
.account-order-main,
.account-order-items,
.account-order-item {
  display: grid;
}

.account-orders-list {
  gap: 16px;
}

.account-order-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.account-order-main {
  gap: 8px;
}

.account-order-title {
  margin: 0;
  color: var(--text-strong);
  font-size: 1.1rem;
  font-weight: 800;
}

.account-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.account-order-side {
  min-width: 150px;
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 10px;
}

.account-order-side strong {
  color: var(--text-strong);
  font-size: 1.05rem;
}

.account-order-items {
  gap: 10px;
  margin-top: 14px;
}

.account-order-item {
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface-2) 82%, transparent);
}

.account-order-item strong {
  color: var(--text-strong);
}

.account-order-item span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

/* ==========================================================================
   17. CUSTOMIZATION
   ========================================================================== */

.product-customizable-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 92%, transparent 8%);
  color: var(--text-strong);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.customize-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.customize-preview-card {
  padding: 18px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.customize-preview-card .canvas-container {
  display: block !important;
  margin: 0 auto !important;
}

.customize-preview-card canvas {
  display: block;
  border-radius: var(--radius-md);
}

.customize-panel {
  position: sticky;
  top: 96px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.customize-panel h2 {
  margin: 0 0 16px;
  color: var(--text-strong);
  font-size: 1.15rem;
  font-weight: 800;
}

.customize-form {
  display: grid;
  gap: 14px;
}

.customize-field {
  display: grid;
  gap: 7px;
}

.customize-field label {
  color: var(--text-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

.customize-field label span {
  color: var(--danger);
}

textarea.customize-input {
  min-height: 100px;
  resize: vertical;
}

.customize-actions {
  padding-top: 8px;
}

.customize-upload-status {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.customize-upload-status[data-status="success"] {
  color: var(--success);
}

.customize-upload-status[data-status="error"] {
  color: var(--danger);
}

.customize-upload-status[data-status="loading"] {
  color: var(--accent);
}

/* ==========================================================================
   18. PASSWORD TOGGLE
   ========================================================================== */

.password-field {
  position: relative;
  width: 100%;
}

.password-field input {
  width: 100%;
  padding-right: 56px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  line-height: 1;
  font-size: 18px;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  transform: translateY(-50%);
}

.password-toggle:hover,
.password-toggle:focus {
  background: color-mix(in srgb, var(--text-strong) 8%, transparent);
  color: var(--text-strong);
  outline: none;
}

.password-toggle-icon,
.password-toggle.is-visible .password-toggle-hide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.password-toggle .password-toggle-hide,
.password-toggle.is-visible .password-toggle-show {
  display: none;
}

/* ==========================================================================
   19. LEGAL / SITE FOOTER
   ========================================================================== */

.site-footer {
  margin-top: 64px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 82%, transparent 18%);
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-strong);
}

.site-footer-brand span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer-links a {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--text-strong);
  text-decoration: underline;
  outline: none;
}

.legal-page {
  padding: 48px 0;
}

.legal-container {
  max-width: 860px;
}

.legal-container h1 {
  margin-bottom: 32px;
}

.legal-container h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-container p {
  line-height: 1.7;
}

/* ==========================================================================
   20. RESPONSIVE
   ========================================================================== */

@media (max-width: 1320px) {
  .product-layout,
  .cart-layout,
  .category-hero-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .header-inner {
    align-items: flex-start;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 16px;
  }

  .site-logo {
    width: 108px;
  }

  .header-search-input {
    width: 170px;
  }

  .theme-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .preview-section,
  .footer-card,
  .products-grid,
  .theme-bar,
  .web-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-visual {
    min-height: auto;
  }

  .visual-stack {
    min-height: 420px;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px 0;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    order: 2;
  }

  .header-tools {
    width: 100%;
    justify-content: center;
    order: 3;
  }

  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .product-page-title {
    font-size: 2.6rem;
  }

  .cart-item-card {
    flex-direction: column;
  }

  .cart-item-left {
    flex-direction: column;
  }

  .cart-item-visual,
  .cart-item-media {
    width: 100%;
    min-width: 0;
  }

  .cart-item-right {
    width: 100%;
    min-width: 0;
    align-items: stretch;
  }

  .product-page-meta {
    align-items: flex-start;
  }
}

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

  .customize-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero-card,
  .hero-visual,
  .preview-card,
  .footer-card,
  .theme-card,
  .product-body,
  .web-body,
  .split-card,
  .product-main-card,
  .product-side-card,
  .cart-main-card,
  .cart-summary-card,
  .search-hero-card,
  .category-hero-card {
    padding: 20px;
  }

  .hero-meta,
  .preview-stack {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .product-title,
  .web-title {
    font-size: 1.4rem;
  }

  .email-box {
    flex-direction: column;
    border-radius: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .btn,
  .theme-toggle {
    width: 100%;
  }

  .theme-bar {
    grid-template-columns: 1fr;
  }

  .brand-simple-name {
    font-size: 1.8rem;
  }

  .footer-logo {
    max-width: 220px;
  }
}

@media (max-width: 720px) {
  .account-order-card {
    flex-direction: column;
  }

  .account-order-side {
    justify-items: start;
  }
}

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

  .header-search {
    width: 100%;
  }

  .header-search-input {
    width: 100%;
    min-width: 0;
  }

  .header-search-button {
    padding: 0 12px;
  }

  .nav {
    gap: 8px;
  }

  .nav-link,
  .nav-link-summary {
    padding: 0 12px;
    font-size: 0.94rem;
  }

  .product-page-title {
    font-size: 2.1rem;
  }

  .product-page-actions,
  .section-head-actions,
  .product-page-actions .btn,
  .section-head-actions .btn {
    width: 100%;
  }

  .theme-toggle-label {
    display: none;
  }

  .theme-toggle {
    width: 42px;
    padding: 0;
  }
}

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

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: #ffffff;
    color: #241812;
    font-weight: 800;
    text-decoration: none;
}