:root {
  --teal: #0798ad;
  --teal-dark: #067f91;
  --ink: #10232d;
  --muted: #73838c;
  --line: #e7eef0;
  --soft: #f4fbfc;
  --danger: #c62828;
  --success: #2f7d4f;
  --violet: #7f44d6;
  --violet-dark: #6030b0;
  --violet-soft: #f3edff;
  --yellow: #ffcc45;
  --coral: #ff6b57;
  --blue: #285dff;
  --green-soft: #ecf8ef;
  --shadow: 0 20px 60px rgba(16, 35, 45, .08);
  --shadow-strong: 0 28px 80px rgba(16, 35, 45, .16);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fdfe 0, #fff 370px),
    #fff;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

.site-header {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 44px;
  background: rgba(255, 255, 255, .92);
  position: relative;
  z-index: 5;
}

.logo img {
  width: 210px;
  height: auto;
  transition: transform .22s var(--ease-out);
}

.logo:hover img {
  transform: translateY(-2px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 800;
  color: var(--teal);
}

.main-nav a {
  white-space: nowrap;
  position: relative;
  transition: color .18s ease;
}

.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease-out);
}

.main-nav a:hover:after {
  transform: scaleX(1);
}

.nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: transparent;
  position: relative;
}

.nav-icon:before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 15px 0 -5px var(--teal);
}

.cart-link {
  border: 2px solid var(--teal);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 10px 24px rgba(7, 152, 173, .10);
}

.announcement {
  background:
    linear-gradient(90deg, var(--teal-dark), var(--teal), #15b7c9);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 13px 18px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(360px, 520px);
  gap: 60px;
  max-width: 1220px;
  min-height: 520px;
  margin: 0 auto;
  padding: 44px 44px 34px;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 24px 18px 10px;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 152, 173, .08), transparent 34%),
    linear-gradient(315deg, rgba(127, 68, 214, .08), transparent 38%);
  opacity: .9;
}

.hero-copy h1 {
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
  margin: 22px 0 24px;
}

.hero-copy h1 span {
  background: var(--teal);
  color: #fff;
  border-radius: 7px;
  padding: 0 8px;
  display: inline-block;
}

.hero-copy p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.62;
}

.hero-copy strong,
.impact strong {
  color: var(--teal);
}

.pill,
.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(223, 244, 246, .9);
  color: var(--teal-dark);
  border: 1px solid rgba(7, 152, 173, .12);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 152, 173, .08);
}

.badge.large {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 4;
}

.hero-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(244, 251, 252, .78)),
    repeating-linear-gradient(135deg, rgba(7, 152, 173, .08) 0 1px, transparent 1px 12px);
  border: 1px solid rgba(7, 152, 173, .12);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  perspective: 900px;
  --tilt-x: 0;
  --tilt-y: 0;
}

.hero-visual:before,
.product-gallery:before,
.product-highlight-media:before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}

.hero-visual:after,
.product-gallery:after,
.product-highlight-media:after {
  content: "";
  position: absolute;
  inset: auto -20% -36% -20%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(7, 152, 173, .16));
  pointer-events: none;
  z-index: 1;
}

.hero-visual img {
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(16, 35, 45, .16));
  position: relative;
  z-index: 2;
  transform: rotateX(calc(var(--tilt-y) * -1deg)) rotateY(calc(var(--tilt-x) * 1deg));
  transition: transform .18s ease, filter .22s ease;
}

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 74px 44px;
}

.section.narrow {
  max-width: 840px;
}

.section h1,
.section h2 {
  margin-top: 0;
}

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

.grid-3 article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s ease;
}

.grid-3 article:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--violet), var(--yellow));
  transform: scaleX(.24);
  transform-origin: left;
  transition: transform .24s var(--ease-out);
}

.grid-3 article:hover {
  transform: translateY(-4px);
  border-color: #c4e9ee;
  box-shadow: 0 24px 70px rgba(16, 35, 45, .12);
}

.grid-3 article:hover:before {
  transform: scaleX(1);
}

.grid-3.compact {
  padding-top: 34px;
  padding-bottom: 34px;
}

.feature-cards article {
  text-align: center;
}

.feature-cards img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.product-strip {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 46px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.product-strip img {
  border-radius: 8px;
}

.eyebrow {
  color: #8b8b8b;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0;
}

.button {
  appearance: none;
  border: 2px solid var(--teal);
  background: linear-gradient(135deg, var(--teal), #12adc1);
  color: #fff;
  border-radius: 999px;
  padding: 13px 25px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(7, 152, 173, .22);
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s ease, border-color .2s ease;
}

.button:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -85%;
  width: 56%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .46), transparent);
  transform: skewX(-18deg);
  transition: left .55s var(--ease-out);
}

.button:hover:before {
  left: 130%;
}

.button:hover {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(7, 152, 173, .30);
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 14px;
}

.button-outline,
.button.secondary {
  background: #fff;
  color: var(--teal);
  box-shadow: 0 12px 28px rgba(16, 35, 45, .06);
}

.button.secondary:hover,
.button-outline:hover {
  background: var(--soft);
  box-shadow: 0 14px 34px rgba(16, 35, 45, .10);
}

.link-button {
  border: 0;
  background: transparent;
  color: var(--teal);
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.link-button.danger {
  color: var(--danger);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 24px;
}

.price-line del {
  color: #8a8a8a;
  font-size: 1em;
}

.price-line strong {
  color: #e00024;
  font-size: 1.14em;
  text-shadow: 0 10px 24px rgba(224, 0, 36, .12);
}

.price-line span {
  color: #e00024;
  font-size: .72em;
  font-weight: 800;
}

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

.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff, #fbfeff);
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s ease;
}

.product-card:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(7, 152, 173, .12), transparent 42%, rgba(127, 68, 214, .10));
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #b9e7ee;
  box-shadow: 0 28px 76px rgba(16, 35, 45, .16);
}

.product-card:hover:before {
  opacity: 1;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card-media {
  aspect-ratio: 1;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(243, 237, 255, .9), rgba(244, 251, 252, .95)),
    repeating-linear-gradient(135deg, rgba(127, 68, 214, .10) 0 1px, transparent 1px 13px);
  overflow: hidden;
  position: relative;
}

.product-card-media:after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -75%;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .68), transparent);
  transform: skewX(-18deg);
  transition: left .65s var(--ease-out);
}

.product-card:hover .product-card-media:after {
  left: 132%;
}

.product-card img {
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 4px;
  transform: translateY(0) scale(1);
  transition: transform .26s var(--ease-out);
}

.product-card:hover img {
  transform: translateY(-4px) scale(1.035);
}

.product-card h2 {
  margin: 0;
}

.product-card-copy,
.product-card-foot {
  color: var(--muted);
  line-height: 1.45;
}

.product-card-price {
  margin: 0;
  font-size: 24px;
}

.product-card-price del {
  color: #8a8a8a;
}

.product-card-price strong {
  color: #e00024;
}

.product-card-foot {
  font-weight: 800;
}

.product-card-button {
  width: 100%;
  margin-top: 6px;
}

.product-page {
  max-width: 1220px;
  margin: 0 auto;
  padding: 38px 44px 72px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
}

.product-gallery {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(243, 237, 255, .92), rgba(255, 255, 255, .9) 55%, rgba(244, 251, 252, .96)),
    repeating-linear-gradient(135deg, rgba(127, 68, 214, .12) 0 1px, transparent 1px 14px);
  border: 1px solid rgba(127, 68, 214, .14);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  perspective: 900px;
  isolation: isolate;
  --tilt-x: 0;
  --tilt-y: 0;
}

.product-gallery img {
  max-height: 500px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 42px rgba(16, 35, 45, .15));
  transform: rotateX(calc(var(--tilt-y) * -1deg)) rotateY(calc(var(--tilt-x) * 1deg));
  transition: transform .18s ease, filter .22s ease;
}

.product-summary h1 {
  font-size: 48px;
  line-height: 1.05;
  color: #565656;
  margin: 8px 0 14px;
}

.home-hero {
  position: relative;
}

.hero-lead {
  max-width: 680px;
}

.hero-actions,
.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 20px;
}

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-proof-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #425862;
  font-weight: 900;
  background: #fff;
}

.hero-price-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(250px, calc(100% - 48px));
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  z-index: 3;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-price-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--violet), var(--yellow));
}

.hero-price-card span,
.hero-price-card small {
  color: var(--muted);
  font-weight: 800;
}

.hero-price-card strong {
  color: #e00024;
  font-size: 38px;
  line-height: 1;
}

.trust-strip {
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 44px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-strip div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 35, 45, .06);
  position: relative;
  overflow: hidden;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s ease;
}

.trust-strip div:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--teal);
}

.trust-strip div:nth-child(2):before {
  background: var(--violet);
}

.trust-strip div:nth-child(3):before {
  background: var(--yellow);
}

.trust-strip div:nth-child(4):before {
  background: var(--coral);
}

.trust-strip div:hover {
  transform: translateY(-4px);
  border-color: #c4e9ee;
  box-shadow: 0 22px 56px rgba(16, 35, 45, .11);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 18px;
  margin-bottom: 6px;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.35;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-heading h2,
.product-highlight-copy h2,
.included-band h2,
.product-detail-block h2 {
  font-size: 42px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.product-highlight {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.product-highlight-media {
  background:
    linear-gradient(135deg, rgba(243, 237, 255, .92), rgba(255, 255, 255, .72)),
    repeating-linear-gradient(135deg, rgba(127, 68, 214, .12) 0 1px, transparent 1px 14px);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(127, 68, 214, .14);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.product-highlight-media img {
  position: relative;
  z-index: 2;
  transition: transform .25s var(--ease-out);
}

.product-highlight-media:hover img {
  transform: translateY(-5px) scale(1.02);
}

.product-highlight-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.price-offer {
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 22px 0;
  background:
    linear-gradient(135deg, #fff, #fffdf5);
  box-shadow: 0 16px 42px rgba(16, 35, 45, .07);
}

.price-offer span,
.price-offer small {
  color: var(--muted);
  font-weight: 800;
}

.price-offer p {
  margin: 5px 0 2px;
  font-size: 34px;
}

.price-offer del {
  color: #8a8a8a;
}

.price-offer strong {
  color: #e00024;
}

.use-cases .grid-3 article h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.use-cases .grid-3 article p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.included-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr) auto;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, #10232d, #173947 64%, #17253b);
  color: #fff;
  border-radius: 8px;
  margin-top: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.included-band:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 18px);
  opacity: .55;
  pointer-events: none;
}

.included-band > * {
  position: relative;
  z-index: 1;
}

.included-band .eyebrow,
.included-band h2 {
  color: #fff;
}

.included-band ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.included-band .button {
  border-color: #fff;
  background: #fff;
  color: var(--teal);
  white-space: nowrap;
}

.shop-intro {
  padding-top: 44px;
  padding-bottom: 54px;
}

.shop-intro h1 {
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.05;
  margin: 16px 0 10px;
  max-width: 820px;
}

.shop-intro .lead {
  max-width: 820px;
  margin-bottom: 24px;
}

.shop-intro .product-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.shop-intro .product-card {
  grid-template-columns: minmax(330px, .88fr) minmax(0, 1fr);
  grid-template-areas:
    "media badge"
    "media title"
    "media copy"
    "media price"
    "media foot"
    "media cta";
  column-gap: clamp(24px, 4vw, 56px);
  row-gap: 12px;
  align-items: center;
  min-height: 0;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 22px;
}

.shop-intro .product-card-media {
  grid-area: media;
  aspect-ratio: 1.08;
  min-height: 0;
}

.shop-intro .badge {
  grid-area: badge;
  justify-self: start;
}

.shop-intro .product-card h2 {
  grid-area: title;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.shop-intro .product-card-copy {
  grid-area: copy;
  max-width: 560px;
  font-size: 18px;
}

.shop-intro .product-card-price {
  grid-area: price;
  font-size: 28px;
}

.shop-intro .product-card-foot {
  grid-area: foot;
}

.shop-intro .product-card-button {
  grid-area: cta;
  width: auto;
  justify-self: start;
  min-width: 210px;
}

.product-sales-page {
  align-items: start;
}





.product-subtitle {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.product-price {
  margin-bottom: 16px;
}

.product-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: grid;
  gap: 10px;
}

.product-benefits li {
  padding-left: 28px;
  position: relative;
  font-weight: 800;
  color: #314a55;
}

.product-benefits li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 4px #cceff3;
}

.buy-form {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.buy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  gap: 13px;
  position: relative;
  overflow: hidden;
}

.buy-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--violet), var(--yellow));
}

.buy-card > * {
  position: relative;
  z-index: 1;
}

.buy-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.buy-card-heading strong {
  font-size: 19px;
}

.buy-card-heading span,
.checkout-reassurance,
.option-row small {
  color: var(--muted);
  font-weight: 700;
}

.buy-card-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 14px;
  align-items: end;
}

.buy-card .field-label {
  display: grid;
  gap: 8px;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 44px 58px 44px;
  width: max-content;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.quantity-control button,
.quantity-control input {
  border: 0;
  background: #fff;
  text-align: center;
  height: 48px;
}

.quantity-control button {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
  transition: background .16s ease, color .16s ease;
}

.quantity-control button:hover {
  background: var(--soft);
  color: var(--teal-dark);
}

.impact {
  font-size: 16px;
  line-height: 1.45;
}

.field-label {
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid #dbe5e8;
  border-radius: 8px;
  padding: 13px 15px;
  background: #fff;
  color: var(--ink);
}

.checkbox-row,
.radio-row,
.payment-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 800;
}

.checkbox-row input,
.radio-row input,
.payment-row input {
  width: auto;
  margin-top: 5px;
  accent-color: var(--teal);
}

.option-row {
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s var(--ease-out);
}

.option-row:hover {
  transform: translateY(-1px);
  border-color: #c4e9ee;
}

.option-row.is-active,
.option-row:has(input:checked) {
  background: linear-gradient(135deg, var(--green-soft), #fff);
  border-color: #abdcbf;
  box-shadow: 0 12px 28px rgba(47, 125, 79, .08);
}

.option-row small {
  flex-basis: 100%;
  padding-left: 28px;
}

.buy-button {
  width: 100%;
  font-size: 18px;
  min-height: 54px;
  box-shadow: 0 16px 36px rgba(7, 152, 173, .26);
}

.buy-button:after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: inherit;
  pointer-events: none;
}

.mobile-sticky-buy {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .62s ease,
    transform .62s var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}

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

.checkout-reassurance {
  margin: -4px 0 0;
  text-align: center;
}

.info {
  color: var(--muted);
  border-bottom: 1px dotted var(--muted);
  cursor: help;
  position: relative;
}

.info:hover:after {
  content: attr(data-tooltip);
  position: absolute;
  left: 0;
  bottom: 130%;
  width: 300px;
  background: var(--ink);
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
  z-index: 10;
}

.product-detail-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.product-detail-block p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 19px;
}

.included-list {
  display: grid;
  gap: 10px;
  background: var(--soft);
  border-radius: 8px;
  padding: 18px;
}

.included-list span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 900;
}

.cart-layout,
.checkout-layout {
  max-width: 1220px;
  margin: 0 auto;
  padding: 72px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 46px;
  align-items: start;
}

.cart-line {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.cart-line img {
  border-radius: 8px;
}

.order-box,
.panel,
.auth-card {
  border: 3px solid var(--teal);
  border-radius: 28px;
  padding: 28px;
  background: #fff;
}

.order-box h2,
.panel h2 {
  margin-top: 0;
}

.totals {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.totals .total {
  font-size: 20px;
  border-top: 3px solid var(--line);
}

.checkout-form h1 {
  margin-top: 0;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.span-2 {
  grid-column: 1 / -1;
}

.payment-row {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.payment-row small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.terms {
  margin: 18px 0;
}

.bank-box {
  background: var(--soft);
  border-left: 4px solid var(--teal);
  padding: 18px;
  border-radius: 8px;
  margin: 22px 0;
}

.lead {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.6;
}

.cms-body {
  color: #314a55;
  line-height: 1.68;
}

.cms-body h2,
.cms-body h3 {
  color: var(--ink);
}

.text-teal {
  color: var(--teal);
}

.warning-box {
  background: #fff8e8;
  border-left: 4px solid #e1a400;
  border-radius: 8px;
  padding: 18px;
  margin: 22px 0;
}

.commitment-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.commitment-list article {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 6px 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(244, 251, 252, .9)),
    #fff;
  box-shadow: 0 18px 48px rgba(16, 35, 45, .07);
}

.commitment-list article > span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(7, 152, 173, .10);
  color: var(--teal);
  font-size: 34px;
  font-weight: 900;
}

.commitment-list h2 {
  grid-column: 2;
  margin: 0 0 8px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.15;
}

.commitment-list p {
  grid-column: 2;
  margin: 0;
  max-width: 860px;
  font-size: 18px;
  line-height: 1.62;
}

.empty-cart {
  min-height: 420px;
  display: grid;
  align-items: center;
}

.empty-state {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(7, 152, 173, .16);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(7, 152, 173, .10), rgba(127, 68, 214, .08)),
    #fff;
  box-shadow: var(--shadow);
}

.empty-state span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.empty-state h1 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
}

.empty-state p {
  max-width: 560px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

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

.rate-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow);
}

.rate-grid strong {
  display: block;
  color: var(--teal);
  font-size: 48px;
  line-height: 1;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

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

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr) minmax(280px, .9fr);
  gap: 30px;
  background: var(--teal);
  color: #fff;
  padding: 42px 44px;
  margin-top: 60px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.newsletter-form span {
  font-weight: 600;
  line-height: 1.35;
}

.button-light {
  background: #fff;
  color: var(--teal);
  border-color: #fff;
}

.button-light:hover {
  background: #e8fbfd;
  border-color: #e8fbfd;
}

.flash {
  max-width: 960px;
  margin: 18px auto;
  border-radius: 8px;
  padding: 14px 18px;
  font-weight: 800;
}

.flash-success {
  background: #e7f7ed;
  color: var(--success);
}

.flash-error {
  background: #fff0f0;
  color: var(--danger);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 14px;
}

.right {
  float: right;
}

.admin-shell {
  background: #f5f7f8;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #11191d;
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.admin-logo {
  background: #fff;
  border-radius: 8px;
  padding: 12px;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a,
.admin-sidebar .link-button {
  color: #dce8eb;
  padding: 11px 12px;
  border-radius: 8px;
  text-align: left;
}

.admin-sidebar nav a:hover,
.admin-sidebar .link-button:hover {
  background: rgba(255, 255, 255, .08);
}

.admin-main {
  padding: 38px;
}

.admin-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin: 24px 0 34px;
}

.admin-cards div {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.admin-cards span {
  color: var(--muted);
  font-weight: 800;
}

.admin-cards strong {
  display: block;
  font-size: 30px;
  margin-top: 8px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.admin-table th {
  background: #edf5f6;
  font-size: 13px;
  text-transform: uppercase;
  color: #48616a;
}

.status {
  background: #edf5f6;
  color: var(--teal-dark);
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 900;
  font-size: 13px;
}

.admin-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.panel {
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.log-row {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.log-row span {
  color: var(--muted);
  font-size: 13px;
}

.auth-card {
  max-width: 460px;
  margin: 80px auto;
  box-shadow: var(--shadow);
}

.settings-form h2 {
  margin: 22px 0 0;
}

.content-editor {
  display: grid;
  gap: 22px;
}

.content-editor small,
.product-editor-form small {
  color: var(--muted);
  font-weight: 700;
}

.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-sticky-actions {
  position: sticky;
  bottom: 18px;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  padding: 14px;
  background: rgba(245, 247, 248, .88);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.duplicate-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.duplicate-panel h2 {
  grid-column: 1 / -1;
  margin: 0;
}

.admin-products .product-card {
  align-content: start;
}

.admin-shell {
  background:
    radial-gradient(circle at 92% 4%, rgba(127, 68, 214, .10), transparent 28%),
    radial-gradient(circle at 12% 10%, rgba(7, 152, 173, .12), transparent 32%),
    #f3f7f8;
  color: #14242d;
}

.admin-auth-main {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  padding: 28px;
}

.admin-auth-logo {
  width: 230px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}

.admin-layout {
  grid-template-columns: 286px minmax(0, 1fr);
}

.admin-sidebar {
  background:
    linear-gradient(180deg, rgba(7, 152, 173, .18), transparent 26%),
    #10232d;
  padding: 26px 20px;
  box-shadow: 18px 0 44px rgba(16, 35, 45, .14);
  overflow-y: auto;
}

.admin-sidebar::-webkit-scrollbar {
  width: 8px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .18);
  border-radius: 999px;
}

.admin-logo {
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}

.admin-sidebar-title {
  display: grid;
  gap: 3px;
  padding: 2px 8px 0;
}

.admin-sidebar-title span {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-sidebar-title strong {
  color: #fff;
  font-size: 22px;
}

.admin-sidebar nav {
  gap: 6px;
}

.admin-sidebar nav a,
.admin-sidebar .link-button {
  display: flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, .78);
  font-weight: 900;
  transition: background .18s var(--ease-out), border-color .18s var(--ease-out), color .18s var(--ease-out), transform .18s var(--ease-out);
}

.admin-sidebar nav a:hover,
.admin-sidebar .link-button:hover,
.admin-sidebar nav a.is-active {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .12);
  color: #fff;
  transform: translateX(2px);
}

.admin-sidebar nav a.is-active {
  box-shadow: inset 4px 0 0 var(--yellow);
}

.admin-main {
  min-width: 0;
  padding: 28px clamp(24px, 3vw, 46px) 48px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: -28px calc(clamp(24px, 3vw, 46px) * -1) 30px;
  padding: 18px clamp(24px, 3vw, 46px);
  background: rgba(243, 247, 248, .88);
  border-bottom: 1px solid rgba(16, 35, 45, .08);
  backdrop-filter: blur(16px);
}

.admin-topbar span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.admin-topbar strong {
  display: block;
  margin-top: 2px;
  font-size: 22px;
}

.admin-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-heading {
  align-items: flex-start;
}

.admin-heading h1,
.admin-hero h1 {
  margin: 0;
  line-height: 1.04;
}

.admin-heading p {
  margin: 8px 0 0;
  max-width: 720px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(7, 152, 173, .18), rgba(127, 68, 214, .12)),
    #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.admin-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 204, 69, .26);
  pointer-events: none;
}

.admin-hero > * {
  position: relative;
  z-index: 1;
}

.admin-hero span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-hero h1 {
  margin-top: 8px;
  font-size: clamp(34px, 4vw, 54px);
}

.admin-hero p {
  max-width: 620px;
  margin: 12px 0 0;
  color: #5c6f78;
  font-size: 18px;
}

.admin-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-cards {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.admin-cards a,
.admin-cards div {
  display: block;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(16, 35, 45, .06);
  border-radius: 18px;
  padding: 21px;
  box-shadow: 0 18px 48px rgba(16, 35, 45, .08);
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out), border-color .18s var(--ease-out);
}

.admin-cards a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(7, 152, 173, .22);
}

.admin-cards small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.panel {
  padding: 24px;
  border: 1px solid rgba(16, 35, 45, .06);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 48px rgba(16, 35, 45, .08);
}

.panel > h2:first-child,
.panel-heading h2 {
  margin-top: 0;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-heading h2 {
  margin-bottom: 0;
}

.panel-heading a,
.panel-heading span {
  color: var(--muted);
  font-weight: 900;
}

.panel .admin-table,
.admin-dashboard-grid .admin-table {
  box-shadow: none;
  border: 1px solid var(--line);
}

.admin-table {
  border-radius: 18px;
}

.admin-table th {
  background: #edf7f8;
  color: #31515b;
  letter-spacing: .03em;
}

.admin-table td {
  background: #fff;
}

.admin-table tr:hover td {
  background: #fbfefe;
}

.admin-table-comfort td {
  line-height: 1.45;
}

.admin-filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(210px, .35fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(16, 35, 45, .06);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 35, 45, .06);
}

.admin-inline-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-empty {
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: 18px;
  border: 1px dashed rgba(7, 152, 173, .35);
  border-radius: 16px;
  background: #f8fdfe;
}

.admin-empty strong {
  font-size: 18px;
}

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

.admin-check-list,
.admin-quick-grid {
  display: grid;
  gap: 12px;
}

.admin-check {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: #f7fbfc;
  font-weight: 900;
}

.admin-check span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--teal);
}

.admin-check-danger span {
  background: var(--danger);
}

.admin-check-warning span {
  background: var(--yellow);
}

.admin-check-ok span {
  background: var(--success);
}

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

.admin-quick-grid a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-weight: 1000;
  transition: transform .18s var(--ease-out), border-color .18s var(--ease-out);
}

.admin-quick-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 152, 173, .35);
}

.admin-quick-grid small {
  color: var(--muted);
  font-weight: 800;
}

.admin-upload-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .5fr) auto;
  gap: 18px;
  align-items: end;
}

.admin-upload-panel h2,
.admin-upload-panel p {
  margin: 0;
}

.admin-upload-panel p {
  margin-top: 8px;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 18px;
}

.admin-media-card {
  display: grid;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(16, 35, 45, .08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 35, 45, .07);
}

.admin-media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 14px;
  background:
    linear-gradient(45deg, #eef5f6 25%, transparent 25%),
    linear-gradient(-45deg, #eef5f6 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #eef5f6 75%),
    linear-gradient(-45deg, transparent 75%, #eef5f6 75%),
    #fff;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-size: 20px 20px;
}

.admin-media-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-copy-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.admin-copy-field input {
  min-width: 0;
}

.admin-settings-form {
  display: grid;
  gap: 22px;
}

.admin-settings-form .admin-sticky-actions {
  position: static;
  justify-content: flex-end;
}

.settings-form h2 {
  margin: 0;
}

.toggle-row {
  min-height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfefe;
}

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

.log-row {
  border-top-color: var(--line);
}

.log-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.button-small {
  min-height: 0;
  padding: 9px 14px;
  font-size: 14px;
}

.desktop-only {
  display: none;
}

@media (max-width: 920px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 4px;
  }

  .hero,
  .product-page,
  .cart-layout,
  .checkout-layout,
  .product-strip,
  .product-highlight,
  .included-band,
  .product-detail-block,
  .admin-two-cols {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-copy h1,
  .shop-intro h1 {
    font-size: 44px;
  }

  .hero-visual,
  .product-gallery {
    min-height: 420px;
  }

  .hero-price-card {
    position: static;
    width: 100%;
    margin: -36px 20px 20px;
    justify-self: stretch;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-3,
  .rate-grid,
  .admin-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .included-band {
    align-items: start;
  }

  .buy-card-row,
  

  .shop-intro .product-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "badge"
      "title"
      "copy"
      "price"
      "foot"
      "cta";
  }

  .shop-intro .product-card-media {
    aspect-ratio: 1;
  }

  .commitment-list article {
    grid-template-columns: 1fr;
  }

  .commitment-list article > span,
  .commitment-list h2,
  .commitment-list p {
    grid-column: 1;
  }

  .commitment-list article > span {
    grid-row: auto;
  }

  .span-2 {
    grid-column: auto;
  }

  .cart-line {
    grid-template-columns: 110px 1fr;
  }

  .cart-line > strong {
    grid-column: 1 / -1;
  }

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

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-main {
    padding: 22px;
  }

  .duplicate-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section,
  .product-page,
  .cart-layout,
  .checkout-layout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 18px;
    padding-bottom: 12px;
    gap: 18px;
  }

  .announcement {
    padding: 9px 14px;
    font-size: 15px;
  }

  .hero-copy p {
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-copy h1,
  .product-summary h1,
  .section-heading h2,
  .product-highlight-copy h2,
  .included-band h2,
  .product-detail-block h2 {
    font-size: 34px;
  }

  .hero-visual,
  .product-gallery {
    min-height: 310px;
  }

  .hero-visual img,
  .product-gallery img {
    max-height: 300px;
  }

  .home-hero .hero-visual {
    min-height: 180px;
  }

  .home-hero .hero-visual img {
    max-height: 180px;
  }

  .hero-price-card {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 170px;
    margin: 0;
    padding: 10px;
  }

  .hero-price-card strong {
    font-size: 24px;
  }

  .hero-price-card .button {
    display: none;
  }

  .hero-actions,
  .conversion-actions {
    display: grid;
  }

  .hero-actions .secondary {
    display: none;
  }

  .site-header {
    align-items: center;
  }

  .main-nav {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 10px 16px;
    font-size: 15px;
  }

  .main-nav a:first-child {
    flex-basis: 100%;
    text-align: center;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .price-offer p {
    font-size: 28px;
  }

  .buy-card-heading {
    display: grid;
  }

  .mobile-sticky-buy {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 20;
    min-height: 50px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--teal), #12adc1);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(16, 35, 45, .22);
  }

  .order-box {
    border-radius: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Polish 2026-07 — header sticky + accessibilité
   ========================================================================== */

.shop-shell .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .24s var(--ease-out);
}

/* Hauteur et logo constants : seule l'ombre apparaît au scroll (pas de reflow = pas de clignotement) */
body.is-scrolled .site-header {
  box-shadow: 0 10px 30px rgba(16, 35, 45, .08);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(7, 152, 173, .45);
  outline-offset: 2px;
}

/* Header mobile compact */
@media (max-width: 560px) {
  .site-header {
    min-height: 0;
    padding: 14px 16px 12px;
  }

  .logo img,
  body.is-scrolled .logo img {
    width: 148px;
  }

  .main-nav {
    gap: 8px 14px;
    font-size: 14px;
  }

  .main-nav a:after {
    bottom: -4px;
  }

  .cart-link {
    padding: 6px 12px;
  }
}

/* ==========================================================================
   Accueil — reprise fidèle de podcastor.fr (styles maison PODK)
   ========================================================================== */

.home-hero {
  overflow: hidden;
  background: linear-gradient(90deg, #f6fafb 0%, #f6fafb 45%, #eef7f8 100%);
}

.home-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.home-hero-copy {
  padding: clamp(34px, 5vw, 72px) clamp(22px, 3vw, 38px) clamp(34px, 5vw, 72px) clamp(58px, 6vw, 104px);
}

.home-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 152, 173, .1);
  color: var(--teal-dark);
  font-size: .88rem;
  font-weight: 800;
}

.home-hero-copy h1 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.45vw, 52px);
  line-height: 1.1;
  letter-spacing: 0;
}

.home-highlight-word {
  color: #fff;
  display: inline-block;
  position: relative;
  z-index: 0;
}

.home-highlight-word::before {
  content: "";
  position: absolute;
  left: -.1em;
  right: -.14em;
  bottom: .02em;
  z-index: -1;
  height: 1.08em;
  border-radius: 4px;
  background: var(--teal);
  transform: rotate(-1deg) translate(calc(.03em - 2px), calc(.02em + 1px));
  transform-origin: 50% 50%;
}

.home-lead p {
  max-width: 560px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.home-lead strong {
  color: var(--teal);
  font-weight: 800;
}

.home-lead-spacer {
  display: block;
  height: 14px;
}

.button.home-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 13px 26px;
  border: 2px solid var(--teal);
  border-radius: 16px;
  background: transparent;
  color: var(--teal);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
  transition: background .18s ease, box-shadow .18s ease, transform .18s var(--ease-out);
}

.button.home-cta:hover {
  background: rgba(7, 152, 173, .08);
  box-shadow: 0 8px 20px rgba(7, 152, 173, .12);
  transform: translateY(-1px);
  color: var(--teal);
}

.home-hero-media {
  position: relative;
  min-height: 560px;
  padding: 24px 24px 24px clamp(72px, 7vw, 118px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-device {
  width: min(50%, 310px);
  max-width: 310px;
  max-height: 470px;
  height: auto;
  object-fit: contain;
  animation: podcastor-float 5.4s ease-in-out infinite;
  filter: drop-shadow(0 34px 44px rgba(16, 32, 39, .2));
}

@keyframes podcastor-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

/* Cartes de réassurance */

.home-proof {
  padding: 22px 20px 96px;
  background: linear-gradient(180deg, #eef7f8 0%, #fff 55%);
}

.home-proof-row {
  max-width: 1260px;
  margin: -20px auto 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-proof-item {
  height: 100%;
  padding: 26px clamp(18px, 2.4vw, 30px) 30px;
  border: 1px solid rgba(16, 31, 39, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 40px rgba(16, 31, 39, .08);
  text-align: center;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}

.home-proof-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(16, 31, 39, .12);
}

.home-proof-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.home-proof-item h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: .92rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.home-proof-item p {
  max-width: 390px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.55;
}

.home-proof-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.home-proof-actions .home-cta {
  margin-top: 0;
}

.home-cta-small {
  padding: 10px 20px;
  font-size: .95rem;
}

.home-contact-link {
  font-weight: 800;
  color: var(--teal);
}

.home-contact-link:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 26px 0 0;
  font-size: 13px;
  opacity: .7;
}

@media (max-width: 900px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    padding: 40px 24px 8px;
    text-align: center;
  }

  .home-hero-copy h1,
  .home-lead p {
    max-width: none;
  }

  .home-hero-media {
    min-height: 0;
    padding: 8px 16px 40px;
  }

  .home-device {
    width: min(64%, 280px);
  }

  .home-proof-row {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .home-proof {
    padding-bottom: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-device {
    animation: none;
  }
}

/* ==========================================================================
   Footer — reprise fidèle podcastor.fr
   ========================================================================== */

.site-footer {
  display: block;
  padding: 0;
  margin-top: 60px;
  background: var(--teal);
  color: #fff;
}

.footer-widgets {
  max-width: 1220px;
  margin: 0 auto;
  padding: 48px 44px 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.footer-title {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-divider {
  display: block;
  width: 44px;
  height: 4px;
  margin: 16px 0 20px;
  background: rgba(255, 255, 255, .45);
  border-radius: 999px;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.footer-menu a {
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  font-size: 15.5px;
  transition: color .15s ease, padding-left .18s var(--ease-out);
}

.footer-menu a:hover {
  color: #fff;
  padding-left: 4px;
  text-decoration: underline;
}

.footer-newsletter-text {
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  max-width: 340px;
}

.footer-newsletter-form {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 400px;
}

.footer-newsletter-form input[type="email"] {
  flex: 1 1 210px;
  min-height: 50px;
  padding: 0 16px;
  border: 1.5px solid rgba(255, 255, 255, .75);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 16px;
  outline: none;
}

.footer-newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, .72);
}

.footer-newsletter-form input[type="email"]:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
}

.footer-newsletter-form button {
  min-width: 150px;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #1697a7;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}

.footer-newsletter-form button:hover {
  opacity: .95;
  transform: translateY(-1px);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .16);
  background: rgba(0, 0, 0, .06);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 44px;
  font-size: 14px;
  color: rgba(255, 255, 255, .92);
}

.footer-copyright {
  margin: 0;
  opacity: 1;
}

.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  color: #fff;
  opacity: .92;
  transition: opacity .15s ease, transform .18s var(--ease-out);
}

.footer-socials a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--teal);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 10px 26px rgba(16, 35, 45, .16);
}

body.is-scrolled .back-to-top {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--teal);
  color: #fff;
}

/* ==========================================================================
   Boutique — grille produits style WooCommerce/Flatsome
   ========================================================================== */

.shop-page-title {
  margin: 6px 0 26px;
  font-size: clamp(28px, 3vw, 38px);
}

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

.wc-card {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(16, 32, 39, .08);
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}

.wc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(16, 32, 39, .14);
}

.wc-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  text-align: center;
  max-width: 140px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 8px 18px rgba(7, 152, 173, .3);
}

.wc-card-image {
  display: block;
  background: #fff;
}

.wc-card-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 12px;
  transition: transform .25s var(--ease-out);
}

.wc-card:hover .wc-card-image img {
  transform: scale(1.04);
}

.wc-card-text {
  display: grid;
  gap: 4px;
  padding: 14px 16px 18px;
  text-align: center;
}

.wc-card-cat {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .85;
}

.wc-card-title {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.3;
}

.wc-card:hover .wc-card-title {
  text-decoration: underline;
}

.wc-card-price {
  margin-top: 2px;
  font-size: 15.5px;
}

.wc-card-price del {
  color: var(--muted);
  font-weight: 600;
  margin-right: 6px;
}

.wc-card-price ins {
  text-decoration: none;
  color: var(--ink);
  font-weight: 900;
}

/* ==========================================================================
   Fiche produit — mise en page à plat façon site actuel
   ========================================================================== */

.product-summary-flat .product-price span {
  display: inline-block;
  color: var(--coral);
  font-weight: 800;
  font-size: 15px;
}

.buy-flat {
  display: grid;
  gap: 16px;
  margin: 18px 0 22px;
}

.buy-flat-field {
  max-width: 340px;
}

.buy-flat-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}

.buy-flat-row .quantity-control {
  flex: none;
}

.buy-flat-row .buy-button {
  flex: none;
  width: 50%;
  min-width: 240px;
}

.buy-flat .impact {
  margin: 2px 0 0;
}

.buy-flat .checkout-reassurance {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 24px 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 16px 24px;
  }

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

@media (max-width: 560px) {
  .wc-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .footer-newsletter-form {
    flex-direction: column;
    max-width: none;
  }

  .footer-newsletter-form input[type="email"],
  .footer-newsletter-form button {
    width: 100%;
  }

  .buy-flat-row .buy-button {
    min-width: 0;
    width: 100%;
  }
}

/* ==========================================================================
   Superposition fine avec podcastor.fr — header, bandeau, hero
   ========================================================================== */

.site-header {
  min-height: 104px;
  padding: 20px 48px;
}

.logo img {
  width: 196px;
}

.main-nav {
  gap: 44px;
  font-size: 17.5px;
}

.nav-picto {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--teal);
  transition: transform .16s var(--ease-out), color .16s ease;
}

.nav-picto svg {
  width: 25px;
  height: 25px;
}

.nav-picto:hover {
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.nav-picto:after {
  content: none;
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.announcement {
  background: var(--teal);
  box-shadow: none;
  font-weight: 600;
  font-size: 16.5px;
  padding: 12px 18px;
}

.home-kicker {
  font-size: 16px;
  padding: 10px 18px;
  margin-bottom: 20px;
}

.home-lead p {
  font-size: 18.5px;
  line-height: 1.6;
}

.button.home-cta {
  padding: 15px 32px;
  font-size: 17.5px;
}

.home-cta-small {
  padding: 11px 22px;
  font-size: 15.5px;
}

@media (min-width: 981px) {
  .home-hero-copy {
    transform: translateX(clamp(72px, 7vw, 132px));
  }

  .home-hero-media {
    padding-left: clamp(24px, 3vw, 60px);
  }
}

@media (max-width: 560px) {
  .main-nav {
    gap: 10px 18px;
    font-size: 15px;
  }

  .announcement {
    font-size: 15px;
    padding: 10px 14px;
  }
}

.home-hero-copy h1 {
  max-width: 620px;
}

/* ==========================================================================
   Superposition finale — titre, footer, icônes
   ========================================================================== */

.home-hero-copy h1 {
  font-weight: 800;
}

@media (min-width: 981px) {
  .home-hero-copy {
    padding-right: clamp(14px, 1.6vw, 24px);
  }
}

.site-footer {
  margin-top: 0;
}

.home-proof {
  padding-bottom: 110px;
}

.footer-menu {
  gap: 0;
}

.footer-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.footer-menu li:last-child {
  border-bottom: 0;
}

.footer-menu a {
  display: block;
  padding: 10px 0;
}

.footer-menu a:hover {
  padding-left: 4px;
}

/* Colonne hero : largeur utile 560px comme le col-inner Flatsome, position conservée */
@media (min-width: 981px) {
  .home-hero-copy {
    padding-left: 36px;
    padding-right: clamp(14px, 1.6vw, 24px);
    transform: translateX(calc(clamp(72px, 7vw, 132px) + 55px));
  }
}

.home-lead p {
  font-size: 18px;
}

@media (min-width: 981px) {
  .home-hero-media {
    padding-right: 80px;
  }
}

/* ==========================================================================
   Page Nos engagements — reprise fidèle podcastor.fr
   ========================================================================== */

.page-nos-engagements {
  background:
    radial-gradient(circle at 8% 18%, rgba(7, 152, 173, .1), transparent 26%),
    radial-gradient(circle at 92% 22%, rgba(98, 125, 71, .08), transparent 24%),
    linear-gradient(180deg, #f5fbfc 0%, #fff 44%, #f5fbfc 100%);
  padding-bottom: clamp(76px, 8vw, 112px);
}

.page-nos-engagements h1 {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06;
  text-align: center;
}

.engage-cards {
  counter-reset: engagement-card;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.engage-cards article {
  counter-increment: engagement-card;
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 350px;
  padding: 34px 30px 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .96) 0%, rgba(246, 250, 251, .92) 100%);
  box-shadow: 0 18px 42px rgba(16, 32, 39, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.engage-cards article:nth-child(n + 3) {
  grid-column: span 4;
  min-height: 320px;
  padding: 30px 26px 28px;
}

.engage-cards article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), rgba(98, 125, 71, .78));
}

.engage-cards article::after {
  content: "0" counter(engagement-card);
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(7, 152, 173, .18);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.engage-cards article:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 152, 173, .25);
  box-shadow: 0 24px 56px rgba(16, 32, 39, .11);
}

.engage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  min-height: 118px;
  margin: 0 0 28px;
  padding: 16px;
  border-radius: 999px;
  background: rgba(7, 152, 173, .08);
}

.engage-cards article:nth-child(n + 3) .engage-icon {
  width: 96px;
  min-height: 96px;
  margin-bottom: 24px;
}

.engage-icon img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .22s ease;
}

.engage-cards article:hover .engage-icon img {
  transform: scale(1.05) rotate(-1deg);
}

.engage-cards h5 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: .055em;
  text-transform: uppercase;
  text-align: left;
}

.engage-cards p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.62;
  text-align: left;
}

@media (max-width: 768px) {
  .page-nos-engagements h1 {
    max-width: 320px;
    margin-left: 0;
    font-size: 27px;
    line-height: 1.14;
    text-align: left;
  }

  .engage-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 332px;
    margin: 0 auto;
  }

  .engage-cards article,
  .engage-cards article:nth-child(n + 3) {
    grid-column: auto;
    min-height: 0;
    padding: 24px 20px;
  }

  .engage-cards article::after {
    top: 18px;
    right: 18px;
    font-size: 1.9rem;
  }

  .engage-icon,
  .engage-cards article:nth-child(n + 3) .engage-icon {
    width: 92px;
    min-height: 92px;
    margin-bottom: 18px;
  }
}

/* Fond pleine largeur pour la page Nos engagements */
.page-nos-engagements {
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: 24px;
  padding-right: 24px;
}

/* Fond continu de la page d'accueil (main entier, sections transparentes) */
body.home main {
  background:
    radial-gradient(circle at 74% 34%, rgba(7, 152, 173, .14), transparent 28%),
    linear-gradient(135deg, #f7fbfc 0%, #eef8fa 100%);
}

body.home .home-hero {
  background: transparent;
}

body.home .home-proof {
  background: transparent;
  padding: 22px 20px 56px;
}

/* Carte boutique : image carrée (l'attribut height ne doit pas primer) */
.wc-card-image img {
  height: auto;
}

/* ==========================================================================
   Fiche produit — image sans cadre (l'appareil flotte, comme podcastor.fr)
   ========================================================================== */

.product-gallery {
  min-height: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 10px 0;
}

.product-gallery:before,
.product-gallery:after {
  display: none;
}

.product-gallery img {
  max-height: 560px;
  filter: drop-shadow(0 30px 44px rgba(16, 35, 45, .18));
}

.product-gallery .badge.large {
  left: 0;
  top: 0;
}



/* Badge fiche produit : teal plein cohérent avec la boutique (au lieu du pill clair + halo) */
.product-gallery .badge.large {
  background: var(--teal);
  color: #fff;
  border: 0;
  box-shadow: 0 10px 22px rgba(7, 152, 173, .28);
  padding: 11px 18px;
  font-size: 13.5px;
  line-height: 1.2;
}

/* Pastilles de réassurance : plus discrètes et alignées sous l'appareil */




/* Ligne d'impact remontée sous le prix (remplace l'ancien sous-titre) */
.product-impact-lead {
  margin: 14px 0 20px;
}

/* ==========================================================================
   Mentions légales — cartes documents PDF (reprise podcastor.fr)
   ========================================================================== */

.page-mentions-legales h1 {
  margin-bottom: 8px;
}

.page-mentions-legales .cms-body > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-docs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 34px;
}

.legal-doc-card {
  display: flex;
  flex-direction: column;
  background: #f6f6f6;
  border-radius: 28px;
  padding: 24px;
  color: inherit;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s ease;
}

.legal-doc-card:hover {
  transform: translateY(-4px);
  background: #eef7f8;
  box-shadow: 0 20px 44px rgba(16, 32, 39, .12);
}

.legal-doc-preview-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  line-height: 0;
}

.legal-doc-preview {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 210 / 297;
  object-fit: cover;
  object-position: top center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(16, 32, 39, .12);
}

.legal-doc-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-doc-meta h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.legal-doc-type {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.4;
}

.legal-doc-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 700;
}

.legal-doc-download-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(7, 152, 173, .12);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .legal-docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px;
  }
}

@media (max-width: 560px) {
  .legal-docs-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

/* ==========================================================================
   Formulaire de contact — champ message vocal
   ========================================================================== */

.contact-form select {
  cursor: pointer;
}

.voice-field {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.voice-field-label {
  font-weight: 900;
  color: var(--ink);
}

.voice-recorder {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.danger-button {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

.voice-preview {
  width: 100%;
  max-width: 340px;
  height: 40px;
}

.voice-upload {
  display: grid;
  gap: 6px;
}

.voice-upload-text {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.voice-upload-secondary .voice-upload-text::before {
  content: "↓ ";
}

.voice-field input[type="file"] {
  font-size: 13px;
}

.link-button {
  background: none;
  border: 0;
  color: var(--teal);
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.link-button:hover {
  color: var(--teal-dark);
  text-decoration: underline;
}

/* Lecteur vocal côté admin (page Messages) */
.admin-voice {
  margin-top: 10px;
  display: grid;
  gap: 5px;
}

.admin-voice-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--adm-teal, #0798ad);
}

.admin-voice audio {
  width: 240px;
  max-width: 100%;
  height: 38px;
}

/* ==========================================================================
   Landing page publique d'un éditeur (/e/{slug})
   ========================================================================== */

.editor-landing {
  --editor-accent: #0798ad;
}

.editor-landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 48px) clamp(30px, 4vw, 50px);
}

.editor-landing-hero:only-child,
.editor-landing-copy:last-child {
  grid-template-columns: 1fr;
}

.editor-landing-kicker {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--editor-accent) 12%, #fff);
  color: var(--editor-accent);
  font-weight: 800;
  font-size: .88rem;
}

.editor-landing-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  color: var(--ink);
}

.editor-landing-tagline {
  margin: 0 0 18px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--editor-accent);
}

.editor-landing-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

.editor-landing-intro p {
  margin: 0 0 12px;
}

.button.editor-landing-cta {
  margin-top: 22px;
  background: var(--editor-accent);
  border-color: var(--editor-accent);
  color: #fff;
}

.button.editor-landing-cta:hover {
  filter: brightness(.94);
}

.editor-landing-visual {
  display: grid;
  place-items: center;
}

.editor-landing-visual img {
  width: 100%;
  max-width: 460px;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 30px 44px rgba(16, 35, 45, .18));
}

.editor-landing-products {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 48px) clamp(50px, 7vw, 90px);
}

.editor-landing-products h2 {
  margin: 0 0 26px;
  font-size: clamp(24px, 3vw, 34px);
  text-align: center;
}

.editor-landing-empty {
  text-align: center;
  color: var(--muted);
  padding: 30px 0 60px;
}

.editor-landing .wc-card-title {
  color: var(--editor-accent);
}

@media (max-width: 900px) {
  .editor-landing-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .editor-landing-intro {
    max-width: none;
  }

  .editor-landing-visual {
    order: -1;
  }
}

/* Petit ajustement : bouton danger dans les formulaires admin/éditeur */
.button.danger-button {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.button.danger-button:hover {
  filter: brightness(.94);
}

/* ==========================================================================
   Retouches fiche produit (contour bouton, gras option, couleur libellé)
   ========================================================================== */

.buy-button:after {
  content: none;
}

.option-row {
  font-weight: 500;
}

.product-summary-flat .product-price span {
  color: #e00024;
}

/* Champ visuel de la landing éditeur */
.landing-hero-field {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.landing-hero-label {
  font-weight: 900;
  color: var(--ink);
}

.landing-hero-preview {
  width: 180px;
  max-height: 180px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
}

.landing-hero-upload {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

/* Séparateur de sous-section dans les formulaires admin */
.admin-subsection {
  display: grid;
  gap: 2px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.admin-subsection strong {
  font-size: 15px;
}

.admin-subsection small {
  color: var(--muted);
}

/* Grille produits des back-offices : colonnes bornées (une carte seule ne s'étire plus) */
.product-grid.admin-products {
  grid-template-columns: repeat(auto-fill, minmax(240px, 300px));
}

.admin-products .product-card-media {
  aspect-ratio: 1;
  max-height: 260px;
}

.admin-products .product-card-media img {
  max-height: 220px;
  object-fit: contain;
}

/* Grille des permissions administrateurs */
.admin-perms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px 18px;
}

/* ==========================================================================
   Popup modale (demande de retrait, etc.)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(12, 31, 40, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

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

.modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 30px 80px rgba(12, 31, 40, .35);
}

.modal-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #eef2f4;
  color: #10232d;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  background: #dfe8ec;
}

/* ==========================================================================
   Éditeur visuel de pages (type WordPress)
   ========================================================================== */

.page-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.page-editor-main {
  min-width: 0;
}

.page-editor-canvas-panel {
  padding: 26px 28px 30px;
}

.page-editor-title {
  width: 100%;
  border: 0 !important;
  background: transparent !important;
  font-size: clamp(24px, 2.6vw, 32px) !important;
  font-weight: 900;
  color: var(--ink);
  padding: 4px 2px !important;
  margin-bottom: 6px;
  box-shadow: none !important;
}

.page-editor-title:focus {
  outline: 2px solid rgba(7, 152, 173, .25);
  border-radius: 8px;
}

.page-editor-lead {
  width: 100%;
  border: 0 !important;
  background: transparent !important;
  font-size: 16px !important;
  color: var(--muted);
  padding: 4px 2px !important;
  margin-bottom: 14px;
  resize: vertical;
  box-shadow: none !important;
}

.page-editor-lead:focus {
  outline: 2px solid rgba(7, 152, 173, .25);
  border-radius: 8px;
}

.wysiwyg {
  border: 1.5px solid var(--adm-line, #e3ecef);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.wysiwyg-toolbar {
  position: sticky;
  top: 70px;
  z-index: 10;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px 10px;
  background: #f6fafb;
  border-bottom: 1.5px solid var(--adm-line, #e3ecef);
}

.wysiwyg-toolbar button {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 8px;
  min-width: 34px;
  height: 32px;
  padding: 0 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: #10232d;
  cursor: pointer;
  transition: background .12s ease, border-color .12s ease;
}

.wysiwyg-toolbar button:hover {
  background: #e8f3f5;
  border-color: rgba(7, 152, 173, .25);
}

.wysiwyg-sep {
  width: 1px;
  height: 20px;
  background: var(--adm-line, #e3ecef);
  margin: 0 4px;
}

.wysiwyg-html-toggle {
  margin-left: auto;
}

.wysiwyg-toolbar.is-html-mode button:not(.wysiwyg-html-toggle) {
  opacity: .35;
  pointer-events: none;
}

.wysiwyg-toolbar.is-html-mode .wysiwyg-html-toggle {
  background: #10232d;
  color: #fff;
}

.wysiwyg-area {
  min-height: 380px;
  padding: 22px 26px;
  outline: none;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}

.wysiwyg-area:focus {
  box-shadow: inset 0 0 0 2px rgba(7, 152, 173, .18);
}

.wysiwyg-area img {
  max-width: 320px;
  height: auto;
  border-radius: 8px;
}

.wysiwyg-area h2,
.wysiwyg-area h3 {
  margin: 18px 0 10px;
}

.wysiwyg-html {
  width: 100%;
  min-height: 380px;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 18px 22px !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px !important;
  line-height: 1.6;
  background: #0c1f28 !important;
  color: #c8e4ec !important;
  resize: vertical;
}

.page-editor-side {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 86px;
}

.page-editor-side-grid {
  gap: 12px;
}

.page-editor-save {
  width: 100%;
  font-size: 16px;
  padding: 14px;
}

/* Médiathèque modale */
.modal-card-wide {
  width: min(760px, 100%);
}

.media-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  max-height: 46vh;
  overflow-y: auto;
  padding: 4px;
}

.media-picker-item {
  display: grid;
  gap: 6px;
  border: 1.5px solid var(--adm-line, #e3ecef);
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  cursor: pointer;
  transition: border-color .14s ease, transform .14s ease;
}

.media-picker-item:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.media-picker-item img {
  width: 100%;
  height: 84px;
  object-fit: contain;
}

.media-picker-item span {
  font-size: 11px;
  color: var(--muted);
  word-break: break-all;
  text-align: center;
}

.media-picker-hint {
  margin: 14px 0 0;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .page-editor {
    grid-template-columns: 1fr;
  }

  .page-editor-side {
    position: static;
  }
}

/* ─── Bundle : produits dérivés en complément ─── */
.bundle-block {
	margin-top: 6px;
	padding: 14px 16px;
	border: 1px solid rgba(16, 32, 39, 0.12);
	border-radius: 12px;
	background: rgba(7, 152, 173, 0.04);
	display: grid;
	gap: 10px;
}

.bundle-block-title {
	font-weight: 800;
	font-size: 0.95rem;
	color: var(--podcastor-ink, #102027);
}

.addon-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 10px;
	border-radius: 10px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.addon-row:hover {
	background: rgba(255, 255, 255, 0.7);
	border-color: rgba(7, 152, 173, 0.25);
}

.addon-row:has(input:checked) {
	background: #fff;
	border-color: var(--podcastor-teal, #0798ad);
}

.addon-row input[type="checkbox"] {
	flex: 0 0 auto;
}

.addon-thumb {
	width: 52px;
	height: 52px;
	object-fit: cover;
	border-radius: 8px;
	flex: 0 0 auto;
}

.addon-copy {
	display: block;
	line-height: 1.35;
	font-size: 0.92rem;
}

.addon-copy del {
	color: rgba(16, 32, 39, 0.45);
	font-size: 0.85em;
}

.addon-copy small {
	display: block;
	color: rgba(16, 32, 39, 0.55);
	font-size: 0.8rem;
}

.cart-line-addon {
	border-top: 1px dashed rgba(16, 32, 39, 0.15);
	padding-top: 16px;
}

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

/* ─── Infobulle riche "Stockage" (design podcastor.fr) ─── */
.info-rich {
	border-bottom: none;
	cursor: help;
	position: relative;
	outline: none;
}

.info-rich:hover:after {
	content: none;
}

/* La carte est déplacée dans <body> par shop.js et positionnée en fixe :
   aucun contexte d'empilement de la page ne peut passer devant. */
.info-card {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: min(520px, calc(100vw - 32px));
	background: #fff;
	color: var(--ink);
	border-radius: 18px;
	box-shadow: 0 18px 60px rgba(16, 32, 39, 0.28);
	padding: 20px 24px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	z-index: 9999;
}

.info-card.is-visible {
	display: block;
}

.info-card::before {
	content: "";
	position: absolute;
	top: -7px;
	left: var(--arrow-x, 50%);
	width: 15px;
	height: 15px;
	background: #fff;
	transform: translateX(-50%) rotate(45deg);
	border-radius: 3px;
}

.info-card p {
	margin: 0 0 12px;
	text-align: left;
}

.info-card ul {
	margin: 0;
	padding-left: 22px;
	display: grid;
	gap: 6px;
}

.info-card li strong {
	font-weight: 800;
}

/* ─── Panier (réplique du panier WooCommerce podcastor.fr) ─── */
.wc-cart {
	max-width: 1180px;
	margin: 0 auto;
}

.wc-cart-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	font-size: clamp(20px, 2.4vw, 27px);
	font-weight: 700;
	color: #c3ced2;
	margin: 6px 0 34px;
}

.wc-cart-steps a {
	color: #c3ced2;
	text-decoration: none;
}

.wc-cart-steps a:hover {
	color: var(--podcastor-teal, #0798ad);
}

.wc-cart-steps .is-current {
	color: var(--ink);
}

.wc-step-sep {
	font-weight: 400;
}

.wc-cart-eligible p {
	margin: 0 0 10px;
	font-size: 17px;
	color: var(--ink);
}

.wc-cart-progress {
	display: block;
	height: 6px;
	border-radius: 999px;
	background: var(--podcastor-teal, #0798ad);
	margin-bottom: 34px;
}

.wc-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 52px;
	align-items: start;
}

.wc-cart-table {
	width: 100%;
	border-collapse: collapse;
}

.wc-cart-table thead th {
	text-align: left;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink);
	padding: 0 10px 12px 0;
	border-bottom: 2px solid rgba(16, 32, 39, 0.12);
}

.wc-cart-table tbody td {
	padding: 22px 10px 22px 0;
	border-bottom: 1px solid rgba(16, 32, 39, 0.1);
	vertical-align: middle;
	font-size: 16px;
	color: var(--ink);
}

.wc-cart-remove-cell {
	width: 36px;
}

.wc-cart-remove {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid rgba(16, 32, 39, 0.25);
	background: transparent;
	color: rgba(16, 32, 39, 0.45);
	font-size: 17px;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	padding: 0;
}

.wc-cart-remove:hover {
	border-color: #c0392b;
	color: #c0392b;
}

.wc-cart-product-cell {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 240px;
}

.wc-cart-product-cell img {
	width: 82px;
	height: 82px;
	object-fit: contain;
	flex: none;
}

.wc-cart-product-name {
	display: block;
	color: var(--podcastor-teal, #0798ad);
	font-weight: 700;
	font-size: 17px;
	text-decoration: none;
	margin-bottom: 6px;
}

.wc-cart-meta {
	margin: 0 0 2px;
	font-size: 13.5px;
	color: rgba(16, 32, 39, 0.55);
}

.wc-cart-meta strong {
	color: rgba(16, 32, 39, 0.75);
	font-weight: 700;
}

.wc-qty-stepper {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(16, 32, 39, 0.15);
	border-radius: 6px;
}

.wc-qty-stepper button {
	width: 26px;
	height: 34px;
	border: 0;
	background: transparent;
	color: rgba(16, 32, 39, 0.45);
	font-size: 15px;
	cursor: pointer;
	padding: 0;
}

.wc-qty-stepper button:hover {
	color: var(--podcastor-teal, #0798ad);
}

.wc-qty-stepper input {
	width: 30px;
	border: 0;
	text-align: center;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--ink);
	-moz-appearance: textfield;
	appearance: textfield;
	padding: 7px 0;
	background: transparent;
}

.wc-qty-stepper input::-webkit-outer-spin-button,
.wc-qty-stepper input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.wc-cart-qty-fixed {
	display: inline-block;
	padding: 9px 18px;
	border: 1px solid rgba(16, 32, 39, 0.12);
	border-radius: 6px;
	color: rgba(16, 32, 39, 0.55);
}

.wc-cart-continue {
	display: inline-block;
	margin-top: 30px;
	padding: 13px 26px;
	border: 2px solid var(--podcastor-teal, #0798ad);
	border-radius: 999px;
	color: var(--podcastor-teal, #0798ad);
	font-weight: 800;
	font-size: 13.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
}

.wc-cart-continue:hover {
	background: var(--podcastor-teal, #0798ad);
	color: #fff;
}

.wc-cart-totals h2 {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 6px;
	padding-bottom: 14px;
	border-bottom: 2px solid rgba(16, 32, 39, 0.12);
}

.wc-totals-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 16px 0;
	border-bottom: 1px solid rgba(16, 32, 39, 0.1);
	font-size: 16px;
}

.wc-totals-shipping {
	padding: 16px 0;
	border-bottom: 1px solid rgba(16, 32, 39, 0.1);
	display: grid;
	gap: 10px;
	font-size: 15px;
}

.wc-totals-label {
	color: rgba(16, 32, 39, 0.6);
}

.wc-ship-choice {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.wc-ship-choice input {
	accent-color: var(--podcastor-teal, #0798ad);
	width: 17px;
	height: 17px;
}

.wc-totals-total {
	font-size: 19px;
}

.wc-totals-total strong {
	font-size: 21px;
}

.wc-cart-checkout {
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 22px;
}

.wc-cart-promo {
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid rgba(16, 32, 39, 0.1);
	display: grid;
	gap: 12px;
}

.wc-cart-promo-title {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	font-weight: 800;
	font-size: 16px;
}

.wc-cart-promo-title svg {
	width: 19px;
	height: 19px;
	color: rgba(16, 32, 39, 0.5);
}

.wc-cart-promo input {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid rgba(16, 32, 39, 0.2);
	border-radius: 999px;
	font-size: 15px;
}

.wc-cart-promo-apply {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid rgba(16, 32, 39, 0.25);
	border-radius: 999px;
	background: transparent;
	color: rgba(16, 32, 39, 0.55);
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
}

.wc-cart-promo-apply:hover {
	border-color: var(--podcastor-teal, #0798ad);
	color: var(--podcastor-teal, #0798ad);
}

@media (max-width: 900px) {
	.wc-cart-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 34px;
	}

	.wc-cart-table thead {
		display: none;
	}

	.wc-cart-table tbody tr {
		display: grid;
		grid-template-columns: 36px minmax(0, 1fr);
		gap: 4px 10px;
		padding: 18px 0;
		border-bottom: 1px solid rgba(16, 32, 39, 0.1);
	}

	.wc-cart-table tbody td {
		border: 0;
		padding: 4px 0;
	}

	.wc-cart-table tbody td[data-label] {
		grid-column: 2;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.wc-cart-table tbody td[data-label]:before {
		content: attr(data-label);
		font-size: 13px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: 0.06em;
		color: rgba(16, 32, 39, 0.5);
	}
}

/* Panier : prix et sous-totaux sur une seule ligne */
.wc-cart-table thead th {
	white-space: nowrap;
}

@media (min-width: 901px) {
	.wc-cart-table tbody td[data-label] {
		white-space: nowrap;
	}
}

.wc-cart-promo-applied {
	margin: 0;
	padding: 12px 16px;
	border-radius: 12px;
	background: rgba(29, 158, 89, 0.1);
	color: #1d7a4c;
	font-weight: 700;
	font-size: 14.5px;
}

.wc-totals-discount span,
.wc-totals-discount strong {
	color: #1d7a4c;
}

/* ─── Fiche produit : Stockage et Personnalisation uniformisés ─── */
.buy-flat .option-row {
	max-width: 340px;
	border: 1px solid #dbe5e8;
	border-radius: 8px;
	padding: 13px 15px;
	background: #fff;
	align-items: center;
	flex-wrap: nowrap;
	font-size: 16px;
	gap: 10px;
}

.buy-flat .option-row:hover {
	transform: none;
	border-color: #dbe5e8;
}

.buy-flat .option-row.is-active,
.buy-flat .option-row:has(input:checked) {
	background: #fff;
	border-color: #dbe5e8;
	box-shadow: none;
}

/* Même écart libellé → champ que pour le menu Stockage */
.buy-flat > span.field-label {
	margin-bottom: -8px;
}

/* ─── Page Podcastor solidaire (hôpitaux pédiatriques) ─── */
.hospital-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 40px;
	align-items: center;
	max-width: 1180px;
	margin: 0 auto;
	padding: 64px 24px 30px;
}

.hospital-kicker {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--podcastor-teal, #0798ad);
}

.hospital-hero h1 {
	margin: 0 0 16px;
	font-size: clamp(32px, 4.4vw, 52px);
	line-height: 1.08;
	color: var(--ink);
}

.hospital-lead {
	margin: 0 0 26px;
	font-size: 18px;
	line-height: 1.6;
	color: rgba(16, 32, 39, 0.75);
	max-width: 560px;
}

.hospital-hero-actions {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}

.hospital-cta {
	font-size: 17px;
	padding: 16px 28px;
}

.hospital-more {
	color: var(--podcastor-teal, #0798ad);
	font-weight: 800;
	text-decoration: none;
}

.hospital-hero-visual img {
	width: min(380px, 100%);
	margin: 0 auto;
	display: block;
	filter: drop-shadow(0 30px 60px rgba(16, 32, 39, 0.18));
}

.hospital-gauge-band {
	max-width: 1180px;
	margin: 20px auto 0;
	padding: 34px 36px;
	background: linear-gradient(135deg, #0c2b33, #123a44 55%, #29565f);
	border-radius: 26px;
	color: #eaf6f9;
}

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

.hospital-gauge-count {
	display: block;
	font-size: clamp(38px, 5vw, 56px);
	line-height: 1;
	color: #7fd6e2;
}

.hospital-gauge-label {
	font-weight: 700;
	color: rgba(234, 246, 249, 0.85);
}

.hospital-gauge-goal {
	text-align: right;
}

.hospital-gauge-goal strong {
	display: block;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.1;
}

.hospital-gauge-goal span {
	color: rgba(234, 246, 249, 0.7);
	font-size: 14.5px;
}

.hospital-gauge-track {
	height: 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	overflow: hidden;
}

.hospital-gauge-fill {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #0798ad, #7fd6e2);
	transition: width 1.2s var(--ease-out, ease);
}

.hospital-gauge-percent {
	margin: 14px 0 0;
	font-size: 14.5px;
	color: rgba(234, 246, 249, 0.75);
}

.hospital-how {
	max-width: 1180px;
	margin: 0 auto;
	padding: 64px 24px 10px;
}

.hospital-how h2,
.hospital-contribute h2 {
	font-size: clamp(26px, 3vw, 36px);
	margin: 0 0 28px;
	color: var(--ink);
}

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

.hospital-card {
	position: relative;
	background: #fff;
	border: 1px solid rgba(16, 32, 39, 0.08);
	border-radius: 22px;
	padding: 30px 26px 26px;
	box-shadow: 0 18px 44px rgba(16, 32, 39, 0.07);
}

.hospital-card-num {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	color: rgba(16, 32, 39, 0.35);
}

.hospital-card-emoji {
	position: absolute;
	top: 22px;
	right: 24px;
	font-size: 30px;
}

.hospital-card h3 {
	margin: 12px 0 10px;
	font-size: 19px;
	color: var(--ink);
}

.hospital-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(16, 32, 39, 0.7);
}

.hospital-contribute {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 44px;
	align-items: start;
	max-width: 1180px;
	margin: 30px auto 0;
	padding: 44px 24px;
}

.hospital-contribute-copy p {
	font-size: 16px;
	line-height: 1.65;
	color: rgba(16, 32, 39, 0.75);
	max-width: 540px;
}

.hospital-contribute-note {
	padding: 14px 16px;
	border-left: 3px solid var(--podcastor-teal, #0798ad);
	background: rgba(7, 152, 173, 0.06);
	border-radius: 0 12px 12px 0;
}

.hospital-contribute-box {
	background: #fff;
	border: 1px solid rgba(16, 32, 39, 0.08);
	border-radius: 24px;
	box-shadow: 0 24px 60px rgba(16, 32, 39, 0.1);
	padding: 30px 28px;
	display: grid;
	gap: 16px;
}

.hospital-choice-label {
	font-weight: 800;
	color: var(--ink);
}

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

.hospital-choices button {
	padding: 13px 0;
	border: 1px solid rgba(16, 32, 39, 0.15);
	border-radius: 12px;
	background: #fff;
	font-size: 17px;
	font-weight: 800;
	color: var(--ink);
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.hospital-choices button:hover {
	border-color: var(--podcastor-teal, #0798ad);
}

.hospital-choices button.is-selected {
	background: var(--podcastor-teal, #0798ad);
	border-color: var(--podcastor-teal, #0798ad);
	color: #fff;
}

.hospital-custom-qty {
	font-size: 14px;
	font-weight: 700;
	color: rgba(16, 32, 39, 0.6);
	display: grid;
	gap: 6px;
}

.hospital-submit {
	width: 100%;
	font-size: 17px;
	min-height: 54px;
}

.hospital-contribute-box small {
	text-align: center;
	color: rgba(16, 32, 39, 0.55);
}

.hospital-quote {
	max-width: 760px;
	margin: 30px auto 0;
	padding: 20px 24px 70px;
	text-align: center;
}

.hospital-quote blockquote {
	margin: 0 0 10px;
	font-size: clamp(20px, 2.6vw, 27px);
	font-weight: 800;
	color: var(--ink);
	line-height: 1.35;
}

.hospital-quote p {
	margin: 0;
	color: rgba(16, 32, 39, 0.6);
	font-weight: 700;
}

@media (max-width: 920px) {
	.hospital-hero {
		grid-template-columns: minmax(0, 1fr);
		padding-top: 40px;
		text-align: left;
	}

	.hospital-hero-visual {
		order: -1;
	}

	.hospital-hero-visual img {
		width: min(240px, 70%);
	}

	.hospital-cards {
		grid-template-columns: minmax(0, 1fr);
	}

	.hospital-contribute {
		grid-template-columns: minmax(0, 1fr);
	}

	.hospital-gauge-band {
		margin-left: 16px;
		margin-right: 16px;
		padding: 26px 22px;
	}
}

/* Fiche produit : Stockage et Personnalisation côte à côte */
.buy-flat-pair {
	display: grid;
	gap: 16px;
}

.buy-flat-pair.has-two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.buy-field {
	display: grid;
	gap: 8px;
	align-content: start;
}

.buy-field .field-label {
	margin: 0;
}

.buy-field select,
.buy-flat .buy-flat-pair .option-row {
	max-width: none;
	width: 100%;
}

/* Le <select> hérite du gras du .field-label : on rétablit un poids normal. */
.buy-field select {
	font-weight: 500;
}

@media (max-width: 600px) {
	.buy-flat-pair.has-two {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Stockage / Personnalisation : boîtes de même hauteur */
.buy-flat-pair.has-two {
	align-items: stretch;
}

.buy-flat-pair .buy-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.buy-flat-pair .buy-field > label.field-label {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

.buy-flat-pair .buy-field select {
	flex: 1;
}

.buy-flat .buy-flat-pair .option-row {
	flex: 1;
	box-sizing: border-box;
}

/* Checkout : ligne CGV propre, phrase fluide avec lien inline */
.checkbox-row.terms {
	display: block;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
	color: var(--ink);
}

.checkbox-row.terms input {
	margin-right: 8px;
	vertical-align: -2px;
	accent-color: var(--podcastor-teal, #0798ad);
}

.checkbox-row.terms a {
	color: var(--podcastor-teal, #0798ad);
	font-weight: 700;
}

/* Checkout : bouton Commander aligné à droite */
.checkout-order > button.button[type="submit"] {
	display: block;
	margin-left: auto;
}

/* ─── Page Service après-vente ─── */
.sav-page {
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
	padding-top: 46px;
}

.sav-title {
	font-size: clamp(20px, 2.6vw, 27px);
	color: var(--podcastor-teal, #0798ad);
	margin: 0 0 30px;
}

.sav-page > p {
	font-size: 16.5px;
	line-height: 1.65;
	color: rgba(16, 32, 39, 0.8);
	margin: 0 0 22px;
}

.sav-actions {
	display: grid;
	gap: 16px;
	max-width: 640px;
	margin: 34px auto 0;
}

.sav-button {
	width: 100%;
	font-size: 17px;
	min-height: 54px;
	display: grid;
	place-items: center;
}

.sav-voice-card {
	max-width: 640px;
	margin: 26px auto 0;
	background: #fff;
	border: 1px solid rgba(16, 32, 39, 0.08);
	border-radius: 24px;
	box-shadow: 0 24px 60px rgba(16, 32, 39, 0.1);
	padding: 30px 28px;
	display: grid;
	gap: 16px;
	text-align: left;
}

.sav-voice-card h2 {
	margin: 0;
	text-align: center;
	font-size: 21px;
	color: var(--ink);
}

.sav-voice-steps {
	margin: 0;
	text-align: center;
	color: rgba(16, 32, 39, 0.6);
	font-weight: 700;
	font-size: 14px;
}

.sav-voice-steps span {
	color: var(--podcastor-teal, #0798ad);
}

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

.sav-voice-grid label {
	display: grid;
	gap: 6px;
	font-weight: 700;
	font-size: 14px;
	color: var(--ink);
}

.sav-voice-field {
	border: 1px dashed rgba(16, 32, 39, 0.18);
	border-radius: 14px;
	padding: 16px;
}

.sav-voice-submit {
	width: 100%;
}

.sav-voice-card small {
	text-align: center;
	color: rgba(16, 32, 39, 0.55);
}

@media (max-width: 560px) {
	.sav-voice-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ─── Page Nos applications (dupliquée depuis podcastor.fr/app) ─── */

/* Podcastor - 04 - Page Nos apps
   Migré depuis flatsome-child/style.css le 2026-05-16. */

/* Podcastor apps page */
.podcastor-app-shell {
  max-width: none;
  background: #f4fbfc;
}

.podcastor-app-page {
  --app-ink: #101f27;
  --app-muted: #637581;
  --app-teal: #0798ad;
  --app-teal-dark: #087e91;
  --app-line: rgba(16, 31, 39, 0.12);
  --app-surface: rgba(255, 255, 255, 0.78);
  color: var(--app-ink);
  overflow: hidden;
}

.podcastor-app-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) 28px clamp(46px, 6vw, 74px);
}

.podcastor-app-hero-copy {
  max-width: 610px;
}

.podcastor-app-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(7, 152, 173, 0.1);
  color: #086f80;
  font-weight: 800;
  line-height: 1.25;
}

.podcastor-app-hero h1,
.podcastor-app-section-head h1,
.podcastor-app-section-head h2 {
  margin: 0;
  color: var(--app-ink);
  letter-spacing: 0;
}

.podcastor-app-hero h1 {
  max-width: 640px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.03;
}

.podcastor-app-lead {
  max-width: 560px;
  margin: 24px 0 30px;
  color: var(--app-muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

.podcastor-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.podcastor-app-button,
.podcastor-app-store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #58b5c5 0%, #0798ad 100%);
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(7, 152, 173, 0.2);
}

.podcastor-app-button-secondary {
  border: 1px solid var(--app-line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--app-ink) !important;
  box-shadow: none;
}

.podcastor-app-hero-visual {
  position: relative;
  min-height: 520px;
}

.podcastor-app-hero-visual::before {
  content: "";
  position: absolute;
  inset: 11% 4% 7% 8%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7, 152, 173, 0.2), rgba(7, 152, 173, 0) 62%);
}

.podcastor-app-device {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 3%;
  width: min(38%, 230px);
  filter: drop-shadow(0 26px 36px rgba(16, 32, 39, 0.18));
  animation: podcastor-app-float 5.6s ease-in-out infinite;
}

.podcastor-app-phone {
  position: absolute;
  z-index: 1;
  top: 8%;
  left: 4%;
  width: min(62%, 330px);
  aspect-ratio: 0.72;
  padding: 24px;
  border: 1px solid rgba(7, 152, 173, 0.16);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(233,248,251,0.92));
  box-shadow: 0 36px 80px rgba(16, 32, 39, 0.13);
}

.podcastor-app-phone-bar {
  width: 54px;
  height: 6px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: rgba(16, 31, 39, 0.14);
}

.podcastor-app-phone-cover {
  width: 70%;
  aspect-ratio: 1;
  margin: 0 auto 22px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(7,152,173,0.82), rgba(78,179,196,0.4)),
    url("https://podcastor.fr/wp-content/uploads/2026/02/cropped-LOGO-270x270.png") center / 58% no-repeat;
}

.podcastor-app-phone-lines span {
  display: block;
  height: 12px;
  margin: 12px auto;
  border-radius: 999px;
  background: rgba(16, 31, 39, 0.12);
}

.podcastor-app-phone-lines span:nth-child(1) {
  width: 82%;
}

.podcastor-app-phone-lines span:nth-child(2) {
  width: 68%;
}

.podcastor-app-phone-lines span:nth-child(3) {
  width: 48%;
}

.podcastor-app-downloads,
.podcastor-app-steps {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 28px;
}

.podcastor-app-downloads {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(40px, 5vw, 66px);
}

.podcastor-app-section-head {
  max-width: 900px;
  margin-bottom: 32px;
}

.podcastor-app-section-head h1,
.podcastor-app-section-head h2 {
  max-width: 880px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06;
}

.podcastor-app-section-lead {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--app-muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

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

.podcastor-app-card,
.podcastor-app-step {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--app-line);
  border-radius: 8px;
  background: var(--app-surface);
  box-shadow: 0 18px 44px rgba(16, 32, 39, 0.06);
}

.podcastor-app-card {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.86);
}

.podcastor-app-platform-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-bottom: 20px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(7, 152, 173, 0.1);
  color: var(--app-teal-dark);
}

.podcastor-app-platform-mark svg {
  display: block;
  width: auto;
  height: 28px;
  fill: currentColor;
}

.podcastor-app-platform-mark--android {
  color: #3ddc84;
}

.podcastor-app-platform-mark--apple,
.podcastor-app-platform-mark--macos {
  color: #111820;
}

.podcastor-app-platform-mark--windows {
  color: #0078d4;
}

.podcastor-app-card h3,
.podcastor-app-step h3 {
  margin: 0 0 20px;
  color: var(--app-ink);
  font-size: 1.12rem;
}

.podcastor-app-card h3 {
  text-align: center;
}

.podcastor-app-card p,
.podcastor-app-step p {
  margin: 0 0 22px;
  color: var(--app-muted);
  line-height: 1.55;
}

.podcastor-app-card p {
  font-size: 0.96rem;
}

.podcastor-app-store-link {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  box-shadow: none;
}

.podcastor-app-store-link--with-logo {
  align-items: center;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  justify-items: center;
  min-height: 54px;
  padding: 8px 14px 8px 10px;
  text-align: center;
  background: #fff !important;
  border: 1px solid rgba(7, 152, 173, 0.22);
  color: var(--app-ink) !important;
  box-shadow: 0 10px 22px rgba(16, 32, 39, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.podcastor-app-store-link--with-logo .podcastor-app-platform-mark {
  width: 38px;
  min-height: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(7, 152, 173, 0.08);
  box-shadow: none;
}

.podcastor-app-store-link--with-logo .podcastor-app-platform-mark svg {
  height: 20px;
}

.podcastor-app-store-text {
  color: var(--app-ink);
  line-height: 1;
}

.podcastor-app-store-link--with-logo:hover {
  background: #f9fdfe !important;
  border-color: rgba(7, 152, 173, 0.46);
  box-shadow: 0 14px 26px rgba(7, 152, 173, 0.12);
  transform: translateY(-1px);
}

.podcastor-app-steps {
  padding-top: 36px;
  padding-bottom: 90px;
}

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

.podcastor-app-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--app-teal);
  color: #fff;
  font-weight: 900;
}

@keyframes podcastor-app-float {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@media only screen and (max-width: 64em) {
  .podcastor-app-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
  }

  .podcastor-app-hero-visual {
    min-height: 420px;
  }

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

  .podcastor-app-downloads {
    min-height: auto;
  }
}

@media only screen and (max-width: 48em) {
  .podcastor-app-hero,
  .podcastor-app-downloads,
  .podcastor-app-steps {
    padding-left: 18px;
    padding-right: 18px;
  }

  .podcastor-app-downloads {
    max-width: 100vw !important;
    overflow: hidden;
  }

  .podcastor-app-section-head,
  .podcastor-app-section-head h1,
  .podcastor-app-section-head h2,
  .podcastor-app-section-lead {
    width: 100%;
    max-width: 324px;
    box-sizing: border-box;
  }

  .podcastor-app-hero {
    overflow: hidden;
  }

  .podcastor-app-hero-copy,
  .podcastor-app-hero h1,
  .podcastor-app-lead {
    max-width: min(324px, calc(100vw - 36px));
  }

  .podcastor-app-hero h1 {
    width: 100%;
    max-width: 320px;
    font-size: 30px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .podcastor-app-lead {
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .podcastor-app-actions,
  .podcastor-app-grid,
  .podcastor-app-steps-grid {
    grid-template-columns: 1fr;
  }

  .podcastor-app-section-head h1,
  .podcastor-app-section-head h2 {
    font-size: 27px;
    line-height: 1.14;
    overflow-wrap: break-word;
  }

  .podcastor-app-section-lead {
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .podcastor-app-grid,
  .podcastor-app-card,
  .podcastor-app-step {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .podcastor-app-grid {
    width: min(280px, calc(100vw - 110px)) !important;
    max-width: min(280px, calc(100vw - 110px)) !important;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }

  .podcastor-app-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 18px;
  }

  .podcastor-app-card p,
  .podcastor-app-store-link,
  .podcastor-app-platform-mark {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .podcastor-app-store-link {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 0.92rem;
    min-height: 44px;
  }

  .podcastor-app-store-link--with-logo {
    grid-template-columns: 34px 1fr;
    gap: 8px;
    padding: 7px 12px 7px 10px;
  }

  .podcastor-app-store-link--with-logo .podcastor-app-platform-mark {
    width: 34px;
    min-height: 32px;
    height: 32px;
  }

  .podcastor-app-store-link--with-logo .podcastor-app-platform-mark svg {
    height: 18px;
  }

  .podcastor-app-actions {
    display: grid;
  }

  .podcastor-app-hero-visual {
    min-height: 360px;
  }

  .podcastor-app-phone {
    left: 0;
    width: min(68%, 260px);
  }

  .podcastor-app-device {
    right: 2%;
    width: min(42%, 170px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .podcastor-app-device {
    animation: none;
  }
}

/* SAV : onglets Écrivez-nous / Envoyez-nous un vocal */
.sav-tabs {
	display: inline-flex;
	gap: 4px;
	margin: 30px auto 0;
	padding: 6px;
	border-radius: 999px;
	background: rgba(7, 152, 173, 0.1);
	border: 1px solid rgba(7, 152, 173, 0.15);
}

.sav-tab {
	border: 0;
	background: transparent;
	padding: 13px 26px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 15.5px;
	color: rgba(16, 32, 39, 0.6);
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.sav-tab.is-active {
	background: #fff;
	color: var(--podcastor-teal, #0798ad);
	box-shadow: 0 8px 22px rgba(16, 32, 39, 0.12);
}

.sav-message-label {
	display: grid;
	gap: 6px;
	font-weight: 700;
	font-size: 14px;
	color: var(--ink);
	text-align: left;
}

.apps-soon {
	font-size: 17px;
	color: rgba(16, 32, 39, 0.7);
	margin: 14px 0 0;
}

.podcastor-app-store-link[aria-disabled="true"] {
	cursor: default;
}

/* SAV : enregistreur vocal avec gros bouton micro */
.sav-mic-zone {
	display: grid;
	justify-items: center;
	gap: 12px;
	padding: 18px 0 6px;
}

.sav-mic {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	border: 0;
	background: radial-gradient(circle at 30% 25%, #12b3c9, var(--podcastor-teal, #0798ad) 65%);
	color: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: 0 0 0 14px rgba(7, 152, 173, 0.08), 0 0 0 28px rgba(7, 152, 173, 0.04), 0 18px 40px rgba(7, 152, 173, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	margin-bottom: 10px;
}

.sav-mic:hover {
	transform: scale(1.05);
}

.sav-mic svg {
	width: 40px;
	height: 40px;
}

.sav-mic-stop {
	background: radial-gradient(circle at 30% 25%, #ff7a63, #e2503a 65%);
	box-shadow: 0 0 0 14px rgba(226, 80, 58, 0.1), 0 0 0 28px rgba(226, 80, 58, 0.05), 0 18px 40px rgba(226, 80, 58, 0.35);
	animation: sav-mic-pulse 1.4s ease infinite;
}

@keyframes sav-mic-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.06); }
}

.sav-mic-zone h2 {
	margin: 0;
	font-size: 24px;
	color: var(--podcastor-teal, #0798ad);
	text-align: center;
}

.sav-voice-sub {
	margin: 0;
	color: rgba(16, 32, 39, 0.6);
	text-align: center;
	font-size: 15px;
}

.sav-voice-status {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 12px 24px;
	border-radius: 999px;
	background: rgba(7, 152, 173, 0.08);
	font-weight: 800;
	color: var(--ink);
	font-size: 16px;
}

.sav-voice-status strong {
	color: var(--podcastor-teal, #0798ad);
}

.sav-voice-status .sav-status-recording {
	display: none;
	color: #e2503a;
}

.sav-voice-card:has([data-voice-stop]:not([hidden])) .sav-status-ready {
	display: none;
}

.sav-voice-card:has([data-voice-stop]:not([hidden])) .sav-status-recording {
	display: inline;
}

.sav-voice-mic-field {
	border: 0;
	padding: 0;
	display: grid;
	justify-items: center;
	gap: 10px;
}

.sav-voice-mic-field .voice-upload {
	text-align: center;
}

.sav-voice-mic-field .voice-preview {
	width: 100%;
	max-width: 420px;
}

/* hidden doit primer sur display: grid */
.sav-voice-card[hidden] {
	display: none;
}

.sav-voice-card [hidden] {
	display: none !important;
}

/* SAV vocal : pas de fond derrière la zone micro + ondes animées */
.sav-voice-mic-field {
	background: transparent;
	border: 0;
	padding: 0;
}

@keyframes sav-mic-rings {
	0%, 100% {
		box-shadow: 0 0 0 14px rgba(7, 152, 173, 0.08), 0 0 0 28px rgba(7, 152, 173, 0.04), 0 18px 40px rgba(7, 152, 173, 0.35);
	}
	50% {
		box-shadow: 0 0 0 19px rgba(7, 152, 173, 0.11), 0 0 0 38px rgba(7, 152, 173, 0.055), 0 18px 40px rgba(7, 152, 173, 0.35);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.sav-mic[data-voice-record] {
		animation: sav-mic-rings 3.2s ease-in-out infinite;
	}
}

/* Contact : onglets centrés + objet sur toute la largeur */
.contact-tabs {
	display: flex;
	width: fit-content;
	margin: 6px auto 0;
}

.sav-voice-grid .contact-subject {
	grid-column: 1 / -1;
}

/* ─── Page Soumettre un podcast (formulaire fonctionnel relayé au service d'indexation) ─── */

.page-submit [hidden] {
  display: none !important;
}

.submit-card {
  max-width: 620px;
  margin: 8px auto 44px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(7, 152, 173, .16);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.submit-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.submit-sub {
  max-width: 460px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.submit-form {
  display: grid;
  gap: 12px;
}

.submit-input {
  text-align: center;
  font-weight: 600;
}

.submit-button {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-button[disabled] {
  opacity: .6;
  cursor: progress;
}

.submit-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: submit-spin .7s linear infinite;
}

@keyframes submit-spin {
  to { transform: rotate(360deg); }
}

.submit-legal {
  margin: 16px auto 0;
  max-width: 480px;
  color: rgba(16, 32, 39, .5);
  font-size: 12px;
  line-height: 1.5;
}

.submit-banner {
  margin: 0 0 14px;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.submit-banner-error {
  color: #b20000;
  background: rgba(178, 0, 0, .08);
  border: 1px solid rgba(178, 0, 0, .18);
}

.submit-banner-warning {
  color: #8a5a00;
  background: rgba(214, 148, 0, .1);
  border: 1px solid rgba(214, 148, 0, .22);
}

.submit-success-emoji {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 12px;
}

.submit-success-title {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 19px;
  color: var(--teal-dark);
}

.submit-success-body {
  max-width: 460px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.submit-section-label {
  margin: 8px 0 18px;
  text-align: center;
  color: var(--teal-dark);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.submit-benefits {
  margin-bottom: 8px;
}

/* Soumission podcast : étapes email / code */
.submit-code-input {
  letter-spacing: .5em;
  font-weight: 800;
  font-size: 20px;
  text-indent: .5em;
}

.submit-note {
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  color: var(--teal-dark);
  background: rgba(7, 152, 173, .09);
  border: 1px solid rgba(7, 152, 173, .2);
}

.submit-resend {
  margin-top: 14px;
  background: none;
  border: 0;
  padding: 0;
  color: var(--teal-dark);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.submit-resend:hover {
  color: var(--ink);
}

/* Page Soumettre : en-tête centré */
.page-submit > h1 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-submit > .lead {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
