@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

:root {
  --font-family: "Roboto", sans-serif;

  --ocean-950: #031c20;
  --ocean-900: #032b2f;
  --ocean-800: #014f55;
  --ocean-700: #02695f;
  --ocean-600: #07807c;
  --ocean-500: #00a6a6;
  --ocean-100: #e6f7f3;

  --coral-500: #ff8f70;
  --coral-400: #ffb066;

  --sand-50: #fbf7ef;
  --grey-50: #f7fbf9;
  --grey-100: #edf4f2;
  --border: #cfe6df;

  --text: #183735;
  --muted: #64736f;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 8px 24px rgba(2, 105, 95, 0.08);
  --shadow-strong: 0 18px 45px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  font-family: var(--font-family);
  color: var(--text);
  background: var(--sand-50);
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font-family: var(--font-family);
}

button {
  cursor: pointer;
}

/* =========================
   HEADER OCEANBLOOM
========================= */

.aqua-header,
.ocean-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ocean-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.aqua-topbar,
.ocean-topbar {
  width: 100%;
  background: linear-gradient(90deg, #0a6f73, #0c8b8f, #02695f);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 800;
}

.aqua-header-main,
.ocean-header-main {
  position: relative;
  width: 100%;
  padding: 18px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background:
    linear-gradient(90deg, rgba(0, 32, 36, 0.96), rgba(0, 86, 90, 0.9), rgba(0, 132, 132, 0.72)),
    url("../sources/bannieres/recif-horizontal.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.aqua-header-main::before,
.ocean-header-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at 80% 45%, rgba(0, 255, 220, 0.12), transparent 30%);
  pointer-events: none;
}

.aqua-logo-link,
.ocean-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  border-radius: 0 !important;
}

.ocean-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
}

.aqua-logo {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.35));
}

.ocean-brand-text strong {
  display: block;
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.ocean-brand-text small {
  display: block;
  margin-top: 5px;
  color: #8ff0dc;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aqua-main-nav,
.ocean-main-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.aqua-main-nav a,
.ocean-main-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.aqua-main-nav a:hover,
.ocean-main-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: translateY(-1px);
  backdrop-filter: blur(10px);
}

.aqua-cart-link,
.ocean-cart-link {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-400));
  color: var(--white);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(255, 136, 95, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.aqua-cart-link:hover,
.ocean-cart-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 136, 95, 0.42);
}

.aqua-mobile-nav,
.ocean-mobile-nav {
  display: none;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 12px 14px;
  background: #021f22;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.aqua-mobile-nav a,
.ocean-mobile-nav a {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

/* =========================
   HOME HERO
========================= */

.home-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: 620px;
  padding: 110px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: center;
  background: var(--ocean-900);
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 22% 35%, rgba(0, 166, 166, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(0, 18, 22, 0.92), rgba(0, 84, 84, 0.76), rgba(0, 120, 130, 0.42));
}

.home-hero-content,
.home-hero-card {
  position: relative;
  z-index: 2;
}

.home-hero-content {
  max-width: 860px;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-weight: 900;
  font-size: 0.98rem;
  backdrop-filter: blur(10px);
}

.home-kicker.dark {
  color: var(--ocean-700);
  background: var(--ocean-100);
  border-color: var(--border);
}

.home-hero h1 {
  margin: 0 0 28px;
  max-width: 920px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.home-subtitle {
  max-width: 760px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.35rem;
  line-height: 1.55;
  font-weight: 400;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.home-primary-button,
.home-secondary-button,
.home-card-content a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 25px;
  font-weight: 900;
  font-size: 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-primary-button {
  background: linear-gradient(135deg, var(--coral-500), var(--coral-400));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 136, 95, 0.28);
}

.home-secondary-button {
  background: var(--white);
  color: var(--ocean-900);
}

.home-primary-button:hover,
.home-secondary-button:hover,
.home-card-content a:hover {
  transform: translateY(-2px);
}

.home-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-proof span {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.home-hero-card {
  align-self: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.home-hero-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  display: block;
  background: var(--grey-50);
  border-radius: 16px;
}

.home-card-content {
  padding-top: 18px;
}

.home-price {
  margin: 0;
  color: var(--ocean-700);
  font-size: 2.1rem;
  font-weight: 900;
}

.home-card-content p:not(.home-price) {
  margin: 4px 0 16px;
  color: var(--muted);
  font-size: 1rem;
}

.home-card-content a {
  width: 100%;
  background: var(--ocean-700);
  color: var(--white);
}

/* =========================
   HOME SECTIONS
========================= */

.home-use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 38px 24px;
  background: var(--grey-50);
}

.home-use-cases article,
.guide-card,
.faq-item,
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.home-use-cases article {
  padding: 26px;
}

.home-use-cases h2,
.home-method h2,
.home-guides h2,
.guide-card h3,
.faq-item h2 {
  color: var(--ocean-700);
}

.home-use-cases h2 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.home-use-cases p,
.home-method p,
.guide-card p,
.faq-item p {
  color: var(--text);
  line-height: 1.6;
}

.home-use-cases p {
  margin: 0;
}

.home-method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 70px 24px;
  background: var(--white);
}

.home-method > div:first-child,
.home-guides-header,
.home-guides-grid {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.home-method h2,
.home-guides h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-method-list {
  display: grid;
  gap: 16px;
}

.home-method-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}

.home-method-list strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ocean-700), var(--ocean-500));
  color: var(--white);
  font-size: 1.25rem;
}

.home-method-list p {
  margin: 0;
  font-weight: 700;
}

.home-guides,
.blog-section,
.faq-section,
.order-section {
  background:
    linear-gradient(180deg, rgba(0, 166, 166, 0.08), transparent 260px),
    var(--sand-50);
  padding: 70px 24px;
}

.home-guides-header {
  text-align: center;
  margin-bottom: 28px;
}

.home-guides-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.guide-card {
  padding: 28px;
}

.guide-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.guide-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--ocean-700);
  font-weight: 900;
  text-decoration: none;
}

/* =========================
   PRODUCT / MARKETPLACE
========================= */

.marketplace-products,
.aqua-product-section {
  background: var(--sand-50);
  padding: 38px 18px 52px;
}

.marketplace-wrapper,
.aqua-product-container,
.aqua-product-tabs,
.aqua-reviews,
.reviews-section {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.product-main-card,
.aqua-product-container {
  display: grid;
  grid-template-columns: 360px minmax(320px, 1fr) 290px;
  gap: 26px;
  align-items: start;
}

.product-image-column,
.product-info-column,
.product-buy-column,
.aqua-product-gallery,
.aqua-product-info,
.aqua-buy-box,
.aqua-product-tabs,
.aqua-reviews,
.reviews-section,
.checkout-summary,
.order-form,
.delivery-method-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.product-image-column,
.aqua-product-gallery {
  position: relative;
  padding: 18px;
  text-align: center;
}

.marketplace-product-photo,
.aqua-product-image {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
  background: var(--grey-50);
}
.home-hero-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  background: var(--grey-50);
}
.product-stock-badge,
.aqua-living-badge,
.stock-message {
  background: linear-gradient(135deg, var(--ocean-700), var(--ocean-500));
  color: var(--white);
  font-weight: 900;
  border-radius: 999px;
}

.product-stock-badge,
.aqua-living-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 11px;
  font-size: 0.82rem;
}

.product-thumbnails,
.aqua-product-labels,
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.product-thumbnails span,
.aqua-product-labels span,
.product-tags span {
  background: var(--ocean-100);
  border: 1px solid var(--border);
  color: var(--ocean-700);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.product-info-column,
.aqua-product-info,
.product-buy-column,
.aqua-buy-box {
  padding: 22px;
}

.product-category,
.aqua-breadcrumb {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0 0 10px;
}

.product-title,
.aqua-product-info h1,
.order-form h1,
.faq-container h1 {
  color: var(--ocean-700);
  margin-top: 0;
}

.product-title,
.aqua-product-info h1 {
  font-size: 1.8rem;
  line-height: 1.18;
  margin-bottom: 12px;
}

.product-short-description,
.product-benefits,
.aqua-product-subtitle,
.aqua-product-description p,
.aqua-product-description li {
  color: var(--text);
  line-height: 1.58;
}

.product-benefits {
  padding-left: 20px;
}

.aqua-reference,
.aqua-advice-box,
.aqua-offers,
.discount-mini-box,
.promo-code-box,
.faq-source {
  background: var(--ocean-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.aqua-reference {
  border-left: 4px solid var(--coral-500);
  margin: 18px 0;
}

.marketplace-price,
.aqua-price {
  color: var(--ocean-700);
  font-size: 2.05rem;
  font-weight: 900;
  margin: 0;
}

.price-label,
.price-unit,
.aqua-price-note,
.secure-note,
.aqua-secure-note,
.review-author {
  color: var(--muted);
}

.amazon-style-buy-button,
.amazon-style-cart-button,
.aqua-add-cart-button,
.aqua-direct-order-button,
.buy-button,
.faq-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.amazon-style-buy-button,
.aqua-direct-order-button,
.buy-button {
  background: linear-gradient(135deg, var(--coral-500), var(--coral-400));
  color: var(--white);
}

.amazon-style-cart-button,
.aqua-add-cart-button,
.faq-button {
  background: linear-gradient(135deg, var(--ocean-700), var(--ocean-500));
  color: var(--white) !important;
}

.amazon-style-buy-button,
.amazon-style-cart-button,
.aqua-add-cart-button,
.aqua-direct-order-button {
  width: 100%;
  margin-bottom: 10px;
}

.amazon-style-buy-button:hover,
.amazon-style-cart-button:hover,
.aqua-add-cart-button:hover,
.aqua-direct-order-button:hover,
.buy-button:hover,
.faq-button:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
}

.product-detail-strip,
.aqua-product-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  overflow: hidden;
}

.product-detail-strip div,
.aqua-product-tabs div {
  padding: 18px;
  border-right: 1px solid var(--border);
}

.product-detail-strip div:last-child,
.aqua-product-tabs div:last-child {
  border-right: 0;
}

.product-detail-strip strong,
.aqua-product-tabs h3 {
  display: block;
  color: var(--ocean-700);
  margin: 0 0 6px;
}

.product-detail-strip span,
.aqua-product-tabs p {
  color: var(--muted);
  line-height: 1.45;
}

/* =========================
   REVIEWS
========================= */

.reviews-section,
.aqua-reviews {
  margin-top: 20px;
  padding: 22px;
}

.reviews-header,
.aqua-reviews-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.reviews-header h3,
.aqua-reviews h2 {
  margin: 0;
  color: var(--ocean-700);
}

.reviews-summary,
.aqua-reviews-header span,
.stars {
  color: #d98c00;
  font-weight: 900;
}

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

.review-card,
.aqua-review {
  padding: 16px;
}

.review-card p,
.aqua-review p {
  line-height: 1.5;
}

/* =========================
   ORDER / CHECKOUT
========================= */

.order-section {
  min-height: 80vh;
}

.order-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px;
}

.order-form h1 {
  text-align: center;
  font-size: 1.8rem;
}

.order-intro,
.payment-note,
.next-discount-message {
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.stock-message {
  display: block;
  width: fit-content;
  margin: 0 auto 15px;
  padding: 8px 13px;
  font-size: 0.9rem;
}

.discount-info,
.order-warning {
  background: var(--grey-50);
  border-left: 4px solid var(--coral-500);
  padding: 12px 15px;
  margin: 18px 0;
  color: var(--text);
  line-height: 1.45;
}

.price-box,
.amazon-checkout-box {
  background: var(--grey-50);
  border-radius: var(--radius-md);
  padding: 15px;
  margin: 20px 0;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.total-line {
  color: var(--ocean-700);
  font-size: 1.25rem;
  font-weight: 900;
  border-top: 2px solid var(--ocean-700);
  border-bottom: 0;
  margin-top: 8px;
  padding-top: 12px;
}

.input-row {
  display: flex;
  gap: 15px;
}

.input-row .input-group {
  flex: 1;
}

.input-group,
.terms-check {
  margin-bottom: 15px;
}

.input-group label,
.promo-code-box label,
.aqua-buy-box label {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 800;
}

.input-group input,
.input-group textarea,
.input-group select,
.promo-code-line input,
.aqua-buy-box input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--white);
}

.promo-code-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.promo-code-line button {
  background: var(--ocean-700);
  color: var(--white);
  border: 0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 900;
}

.promo-success,
.promo-free-line strong {
  color: #007600;
}

.promo-error {
  color: #b12704;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 22px 0;
}

.checkout-step,
.delivery-method {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--grey-50);
}

.checkout-step span {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ocean-700);
  color: var(--white);
  font-weight: 900;
}

.delivery-method {
  cursor: pointer;
  margin-bottom: 10px;
}

.delivery-method.selected {
  background: var(--ocean-100);
  border-color: var(--ocean-700);
}

.delivery-method span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.europe-country-box {
  display: none;
  margin-top: 12px;
}

#paypal-button-container {
  margin-top: 20px;
}

/* =========================
   BLOG / FAQ / CONTENT
========================= */

.blog-hero,
.faq-container {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.blog-hero h1,
.faq-container h1 {
  margin: 0 0 16px;
  color: var(--ocean-700);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.blog-hero p,
.faq-intro {
  max-width: 820px;
  margin: 0 auto 38px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.65;
}

.blog-card,
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.blog-card h2,
.blog-card h3 {
  color: var(--ocean-700);
  margin-top: 0;
}

.blog-card a,
.faq-item a,
.terms-check a {
  color: var(--ocean-700);
  font-weight: 900;
  text-decoration: none;
}

.blog-card a:hover,
.faq-item a:hover,
.terms-check a:hover {
  text-decoration: underline;
}

.faq-grid {
  display: grid;
  gap: 18px;
  text-align: left;
}

.faq-table-wrapper {
  overflow-x: auto;
  margin: 14px 0;
}

.faq-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.faq-table th,
.faq-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.faq-table th {
  background: var(--ocean-100);
  color: var(--ocean-700);
}

/* =========================
   FOOTER
========================= */

.aqua-footer {
  background: linear-gradient(135deg, #014f55, #02695f, #008c91);
  color: var(--white);
  margin-top: auto;
}

.aqua-footer-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}

.aqua-footer-column h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.05rem;
}

.aqua-footer-column p,
.aqua-footer-column a {
  display: block;
  margin: 7px 0;
  color: #edf7f3;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.45;
}

.aqua-footer-column a:hover {
  text-decoration: underline;
}

.aqua-footer-note {
  color: #d8ebdf !important;
  font-weight: 900;
}

.aqua-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

/* =========================
   OLD CLASS CLEANUP
========================= */

.market-header,
.market-footer,
.footer {
  display: none !important;
}

.cart-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.cart-popup.open {
  display: flex;
}

.cart-popup-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  max-width: 470px;
  width: 100%;
  padding: 26px;
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.cart-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  color: var(--text);
  font-size: 1.6rem;
  padding: 0;
  border: 0;
}

.cart-popup-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.cart-popup-actions button,
.cart-popup-actions a {
  display: block;
  border-radius: 999px;
  padding: 12px;
  text-decoration: none;
  font-weight: 900;
}

.cart-popup-actions button {
  background: var(--white);
  color: var(--ocean-700);
  border: 1px solid var(--ocean-700);
}

.cart-popup-actions a {
  background: var(--ocean-700);
  color: var(--white);
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 1050px) {
  .home-hero {
    grid-template-columns: 1fr;
    padding: 82px 28px;
  }

  .home-hero-card {
    max-width: 420px;
  }

  .product-main-card,
  .aqua-product-container {
    grid-template-columns: 1fr;
  }

  .product-buy-column,
  .aqua-buy-box {
    max-width: none;
  }
}

@media screen and (max-width: 900px) {
  .aqua-header-main,
  .ocean-header-main {
    padding: 14px 18px;
    gap: 18px;
  }

  .aqua-main-nav,
  .ocean-main-nav {
    display: none;
  }

  .aqua-mobile-nav,
  .ocean-mobile-nav {
    display: flex;
  }

  .aqua-logo {
    height: 58px;
  }

  .ocean-brand-text strong {
    font-size: 1.5rem;
  }

  .ocean-brand-text small {
    font-size: 0.78rem;
  }

  .aqua-cart-link,
  .ocean-cart-link {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .home-use-cases,
  .home-method {
    grid-template-columns: 1fr;
  }

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

  .aqua-footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 680px) {
  .aqua-topbar,
  .ocean-topbar {
    padding: 8px 12px;
    font-size: 0.86rem;
  }

  .aqua-header-main,
  .ocean-header-main {
    padding: 12px 14px;
  }

  .aqua-logo {
    height: 48px;
  }

  .ocean-brand-text strong {
    font-size: 1.22rem;
  }

  .ocean-brand-text small {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .cart-icon {
    display: none;
  }

  .home-hero {
    min-height: auto;
    padding: 64px 18px;
    gap: 28px;
  }

  .home-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .home-subtitle {
    font-size: 1.08rem;
  }

  .home-actions {
    display: grid;
  }

  .home-proof span {
    font-size: 0.9rem;
  }

  .home-hero-card img,
  .marketplace-product-photo,
  .aqua-product-image {
    height: 260px;
    object-fit: cover;
    object-position: center;
  }

  .home-use-cases,
  .home-method,
  .home-guides,
  .blog-section,
  .faq-section,
  .order-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-detail-strip,
  .aqua-product-tabs,
  .checkout-steps {
    grid-template-columns: 1fr;
  }

  .product-detail-strip div,
  .aqua-product-tabs div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .input-row,
  .reviews-header,
  .aqua-reviews-header {
    display: block;
  }

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

  .aqua-footer-main {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 430px) {
  .ocean-brand-text small {
    display: none;
  }

  .aqua-cart-link,
  .ocean-cart-link {
    padding: 9px 12px;
  }
}

.article-hero {
  position: relative;
  min-height: 420px;

  display: flex;
  align-items: center;

  padding: 80px 24px;

  background:
    linear-gradient(rgba(0, 25, 28, 0.72), rgba(0, 25, 28, 0.72)),
    url("../sources/bannieres/recif-horizontal.png");

  background-size: cover;
  background-position: center;

  overflow: hidden;
}

.article-hero-content {
  position: relative;
  z-index: 2;

  max-width: 920px;
  margin: auto;

  color: white;
}

.article-tag {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255,255,255,0.12);

  border: 1px solid rgba(255,255,255,0.2);

  font-weight: 700;

  margin-bottom: 22px;
}

.article-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);

  line-height: 0.95;

  margin-bottom: 24px;

  max-width: 950px;
}

.article-intro {
  font-size: 1.28rem;

  line-height: 1.7;

  max-width: 760px;

  color: rgba(255,255,255,0.9);
}

.article-container {
  max-width: 1050px;

  margin: auto;

  padding: 70px 24px;
}

.article-toc {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 60px;
}

.article-toc a {
  padding: 10px 16px;

  border-radius: 999px;

  background: #eef7f5;

  text-decoration: none;

  color: #04584e;

  font-weight: 700;
}

.article-section {
  margin-bottom: 72px;
}

.article-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);

  color: #063b38;

  margin-bottom: 22px;
}

.article-section p {
  font-size: 1.12rem;

  line-height: 1.9;

  color: #294644;

  margin-bottom: 22px;
}

.article-cta {
  margin-top: 34px;

  padding: 34px;

  border-radius: 24px;

  background: linear-gradient(
    135deg,
    #0a5f5a,
    #0f8a83
  );

  color: white;
}

.article-cta h3 {
  margin-top: 0;

  font-size: 2rem;
}

.article-cta a {
  display: inline-block;

  margin-top: 18px;

  padding: 14px 24px;

  border-radius: 999px;

  background: #ff996f;

  color: white;

  text-decoration: none;

  font-weight: 800;
}

.article-references li {
  margin-bottom: 14px;

  line-height: 1.7;
}

/* =========================
   CHECKOUT ACCORDION + SHIPPING OPTIONS
========================= */

.checkout-panel {
  margin: 18px 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.checkout-panel-title {
  width: 100%;
  border: 0;
  background: var(--ocean-100);
  color: var(--ocean-700);
  padding: 14px 16px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 900;
}

.checkout-panel-body {
  padding: 16px;
}

.checkout-panel.is-closed .checkout-panel-body {
  display: none !important;
}

.checkout-panel.is-open .checkout-panel-title {
  background: linear-gradient(135deg, var(--ocean-700), var(--ocean-500));
  color: var(--white);
}

.checkout-next-button,
.shipping-refresh-button {
  width: 100%;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 900;
  background: var(--ocean-700);
  color: var(--white);
}

.checkout-next-button:disabled,
.shipping-refresh-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.shipping-actions {
  margin: 12px 0 14px;
}

.shipping-options-list,
.service-points-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.shipping-option-card,
.service-point-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--grey-50);
  cursor: pointer;
}

.shipping-option-card.selected,
.service-point-card.selected {
  background: var(--ocean-100);
  border-color: var(--ocean-700);
  box-shadow: inset 0 0 0 1px var(--ocean-700);
}

.shipping-option-card input,
.service-point-card input {
  margin-top: 4px;
}

.shipping-option-card strong,
.service-point-card strong {
  display: block;
  color: var(--text);
}

.shipping-option-card span,
.service-point-card span,
.shipping-options-message {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

.shipping-option-price {
  margin-left: auto;
  color: var(--ocean-700);
  font-weight: 900;
  white-space: nowrap;
}

.service-points-box {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.checkout-steps button.checkout-step {
  cursor: default;
  text-align: left;
}

/* =========================
   CHECKOUT V5 BACK BUTTONS
========================= */
.checkout-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ocean-700, #02695f);
  border-radius: var(--radius-sm, 8px);
  background: var(--white, #fff);
  color: var(--ocean-700, #02695f);
  padding: 10px 14px;
  margin: 0 0 14px;
  font-weight: 900;
}

.checkout-back-button:hover {
  background: var(--ocean-100, #e6f7f3);
}

.checkout-step.current {
  border-color: var(--ocean-700, #02695f);
  background: var(--ocean-100, #e6f7f3);
}

.checkout-step {
  border: 0;
  text-align: left;
}


/* =========================
   SUBSCRIPTIONS
========================= */
.home-subscriptions {
  padding: 70px 24px;
  background: linear-gradient(180deg, var(--white), var(--sand-50));
}

.home-subscriptions-header {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.home-subscriptions-header h2 {
  margin: 0 0 14px;
  color: var(--ocean-700);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.home-subscriptions-header p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
}

.subscription-plan-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.subscription-plan-card,
.subscription-checkout-card,
.subscription-billing-card,
.purchase-type-card,
.subscription-option-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.subscription-plan-card {
  padding: 28px;
}

.subscription-plan-card.highlighted {
  border-color: var(--ocean-500);
  box-shadow: 0 16px 34px rgba(2, 105, 95, 0.14);
}

.subscription-plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--white);
  background: var(--ocean-700);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 900;
}

.subscription-plan-card h3 {
  margin: 0 0 12px;
  color: var(--ocean-700);
  font-size: 1.6rem;
}

.subscription-plan-quantity {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.subscription-plan-quantity strong {
  color: var(--ocean-700);
  font-size: 3rem;
}

.subscription-plan-delivery {
  color: var(--muted);
  margin: 6px 0 14px;
}

.subscription-plan-price {
  margin: 0 0 16px;
  color: var(--ocean-700);
  font-size: 2rem;
  font-weight: 900;
}

.subscription-plan-price span {
  font-size: 1rem;
  color: var(--muted);
}

.subscription-plan-card ul {
  padding-left: 20px;
  color: var(--text);
  line-height: 1.7;
}

.subscription-plan-card a,
.checkout-next-button,
.shipping-refresh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 900;
}

.subscription-plan-card a {
  width: 100%;
  margin-top: 12px;
  padding: 14px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral-500), var(--coral-400));
}

.subscription-plan-card:not(.highlighted) a {
  background: linear-gradient(135deg, var(--ocean-700), var(--ocean-500));
}

.purchase-choice-box,
.purchase-type-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.purchase-choice-button {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ocean-700);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 900;
}

.purchase-choice-button.active {
  color: var(--white);
  background: var(--ocean-700);
  border-color: var(--ocean-700);
}

.subscription-mini-title,
.subscription-helper {
  margin: 8px 0 12px;
  color: var(--muted);
  line-height: 1.45;
}

.subscription-option-card,
.subscription-checkout-card,
.subscription-billing-card,
.purchase-type-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  cursor: pointer;
}

.subscription-option-card {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-bottom: 10px;
}

.subscription-option-card span,
.purchase-type-card span {
  display: grid;
  gap: 4px;
}

.subscription-option-card.selected,
.subscription-checkout-card.selected,
.subscription-billing-card.selected,
.purchase-type-card.active {
  border-color: var(--ocean-500);
  background: var(--ocean-100);
}

.subscription-billing-mini {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  color: var(--text);
  font-weight: 800;
}

.subscription-product-note,
.subscription-note-box {
  background: var(--ocean-100);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  color: var(--text);
  line-height: 1.45;
}

.purchase-type-card {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.subscription-checkout-panel h2,
.subscription-checkout-panel h3 {
  color: var(--ocean-700);
  margin: 18px 0 10px;
}

.subscription-checkout-grid,
.subscription-billing-grid {
  display: grid;
  gap: 12px;
}

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

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

.subscription-checkout-card,
.subscription-billing-card {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.subscription-checkout-card small,
.subscription-billing-card span {
  grid-column: 2;
  color: var(--muted);
}

.subscription-checkout-card b {
  grid-column: 2;
  color: var(--ocean-700);
  font-size: 1.2rem;
}

.subscription-note-box {
  margin: 14px 0;
}

.subscription-note-box p {
  margin: 6px 0 0;
  color: var(--muted);
}

[hidden] {
  display: none !important;
}

@media screen and (max-width: 900px) {
  .subscription-plan-grid,
  .subscription-checkout-grid,
  .subscription-billing-grid,
  .purchase-type-selector,
  .purchase-choice-box {
    grid-template-columns: 1fr;
  }
}


/* =========================
   CONTACT + ABONNEMENTS SUPPORT
========================= */
.contact-section {
  background:
    linear-gradient(180deg, rgba(0, 166, 166, 0.08), transparent 260px),
    var(--sand-50);
  padding: 70px 24px;
}

.contact-container {
  max-width: 1040px;
  margin: 0 auto;
}

.contact-container h1 {
  margin: 0 0 16px;
  color: var(--ocean-700);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.contact-intro {
  max-width: 820px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.65;
}

.contact-highlight,
.contact-email-templates,
.thank-you-next-steps {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.contact-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 26px 0;
  padding: 22px;
  border-left: 5px solid var(--coral-500);
}

.contact-highlight strong {
  color: var(--ocean-700);
  font-size: 1.25rem;
}

.contact-highlight p {
  margin: 6px 0 0;
  color: var(--muted);
}

.contact-highlight a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ocean-700), var(--ocean-500));
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

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

.contact-reason-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.contact-reason-card h2,
.contact-email-templates h2,
.thank-you-next-steps h2 {
  color: var(--ocean-700);
  margin-top: 0;
}

.contact-reason-card p,
.contact-email-templates li,
.contact-email-templates p,
.thank-you-next-steps p {
  color: var(--text);
  line-height: 1.65;
}

.contact-email-templates,
.thank-you-next-steps {
  padding: 24px;
}

.thank-you-box {
  max-width: 820px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.faq-button.secondary {
  background: var(--white);
  color: var(--ocean-700) !important;
  border: 1px solid var(--ocean-700);
}

.faq-subscription-guide {
  border-color: var(--ocean-500);
  box-shadow: 0 16px 34px rgba(2, 105, 95, 0.14);
}

@media screen and (max-width: 900px) {
  .contact-highlight {
    display: block;
  }

  .contact-highlight a {
    margin-top: 16px;
  }

  .contact-reasons-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   LEGAL / CGV
========================= */
.legal-section {
  background:
    linear-gradient(180deg, rgba(0, 166, 166, 0.08), transparent 260px),
    var(--sand-50);
  padding: 70px 24px;
}

.legal-container {
  max-width: 980px;
  margin: 0 auto;
}

.legal-container h1 {
  margin: 0 0 16px;
  color: var(--ocean-700);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.legal-intro {
  max-width: 850px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.legal-alert,
.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.legal-alert {
  padding: 18px 22px;
  margin-bottom: 18px;
  border-left: 5px solid var(--coral-500);
  line-height: 1.6;
}

.legal-card {
  padding: 24px;
  margin-bottom: 16px;
}

.legal-card h2 {
  margin-top: 0;
  color: var(--ocean-700);
  font-size: 1.35rem;
}

.legal-card p,
.legal-footer-note {
  color: var(--text);
  line-height: 1.7;
}

.legal-card a,
.legal-alert a {
  color: var(--ocean-700);
  font-weight: 900;
  text-decoration: none;
}

.legal-card a:hover,
.legal-alert a:hover {
  text-decoration: underline;
}

.legal-footer-note {
  color: var(--muted);
  text-align: center;
  margin-top: 26px;
}


/* =========================
   LEGAL PAGES — OCEABLOOM
   Fix CGV/Mentions layout and prevent full-width broken rendering
========================= */
html,
body {
  overflow-x: hidden;
}

.legal-page,
.legal-section,
.mentions-legales {
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 166, 166, 0.12), transparent 280px),
    linear-gradient(180deg, rgba(0, 166, 166, 0.08), transparent 340px),
    var(--sand-50);
  padding: 64px 20px 78px;
}

.legal-hero-panel,
.legal-container,
.mentions-content {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.legal-hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 28, 32, 0.96), rgba(2, 105, 95, 0.88)),
    url("../sources/bannieres/recif-horizontal.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-strong);
}

.legal-hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -90px -130px auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(255, 143, 112, 0.22);
  filter: blur(8px);
}

.legal-eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #c9fff1;
  font-weight: 900;
}

.legal-hero-panel h1,
.mentions-legales .section-title {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.legal-hero-panel p:not(.legal-eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.14rem;
  line-height: 1.7;
}

.legal-layout {
  width: min(1120px, 100%);
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.legal-summary-card,
.legal-card,
.legal-alert,
.mentions-content {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.legal-summary-card {
  position: sticky;
  top: 150px;
  padding: 24px;
  border-left: 5px solid var(--coral-500);
}

.legal-summary-card h2,
.legal-card h2,
.mentions-content h2 {
  margin: 0 0 12px;
  color: var(--ocean-700);
  line-height: 1.2;
}

.legal-summary-card ul {
  margin: 0 0 20px;
  padding-left: 19px;
  color: var(--text);
  line-height: 1.65;
}

.legal-contact-box {
  display: grid;
  gap: 7px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--ocean-100);
  border: 1px solid var(--border);
}

.legal-contact-box strong {
  color: var(--ocean-700);
}

.legal-contact-box a,
.legal-card a,
.legal-alert a,
.mentions-content a {
  color: var(--ocean-700);
  font-weight: 900;
  text-decoration: none;
}

.legal-contact-box span {
  color: var(--muted);
  line-height: 1.5;
}

.legal-content-stack {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.legal-card,
.mentions-content {
  padding: clamp(20px, 3vw, 30px);
}

.legal-card p,
.legal-alert,
.mentions-content p,
.legal-footer-note {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-card p:last-child,
.mentions-content p:last-child {
  margin-bottom: 0;
}

.legal-footer-note {
  color: var(--muted);
  text-align: center;
  margin: 16px auto 0;
  max-width: 780px;
}

.mentions-legales .section-title {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
  color: var(--ocean-700);
}

@media screen and (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary-card {
    position: static;
  }
}

@media screen and (max-width: 560px) {
  .legal-page,
  .legal-section,
  .mentions-legales {
    padding: 38px 14px 54px;
  }

  .legal-hero-panel,
  .legal-card,
  .legal-summary-card,
  .mentions-content {
    border-radius: 18px;
  }
}

/* =========================
   MENTIONS LÉGALES — DISCRET EDITOR BLOCK
========================= */
.legal-layout-balanced {
  grid-template-columns: 300px minmax(0, 1fr);
}

.legal-discreet-identity {
  background: rgba(247, 251, 249, 0.92);
  border-style: dashed;
  box-shadow: none;
}

.legal-discreet-identity h2 {
  font-size: 1.15rem;
  color: var(--muted);
}

.legal-discreet-identity p,
.legal-discreet-identity dt,
.legal-discreet-identity dd {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-details-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.legal-details-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.legal-details-list dt {
  font-weight: 900;
  color: var(--text);
}

.legal-details-list dd {
  margin: 0;
  color: var(--text);
}

.legal-details-list.compact div {
  grid-template-columns: 170px 1fr;
  padding: 7px 0;
}

@media screen and (max-width: 720px) {
  .legal-details-list div,
  .legal-details-list.compact div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


/* =========================================================
   RESPONSIVE PORTRAIT FIX — FAQ + MENTIONS LÉGALES
   À placer en fin de fichier pour surcharger les règles précédentes.
========================================================= */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main,
section,
.faq-section,
.faq-container,
.faq-grid,
.faq-item,
.legal-page,
.legal-section,
.mentions-legales,
.legal-hero-panel,
.legal-layout,
.legal-content-stack,
.legal-card,
.legal-summary-card,
.mentions-content {
  max-width: 100%;
  min-width: 0;
}

/* FAQ : les grands tableaux ne doivent plus casser la page en mode portrait. */
.faq-table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.faq-table {
  width: 100%;
  min-width: 620px;
}

.faq-item p,
.faq-item li,
.legal-card p,
.legal-summary-card li,
.mentions-content p,
.legal-details-list dd {
  overflow-wrap: anywhere;
}

/* Mentions légales : la règle .legal-layout-balanced arrivait après le media query
   et forçait encore 2 colonnes sur mobile. */
.legal-layout.legal-layout-balanced {
  grid-template-columns: 300px minmax(0, 1fr);
}

@media screen and (max-width: 900px) {
  .legal-layout,
  .legal-layout.legal-layout-balanced {
    grid-template-columns: 1fr !important;
  }

  .legal-summary-card {
    position: static !important;
    top: auto;
  }
}

@media screen and (max-width: 680px) {
  .faq-section,
  .legal-page,
  .legal-section,
  .mentions-legales {
    padding: 36px 14px 54px !important;
  }

  .faq-container h1,
  .legal-hero-panel h1,
  .mentions-legales .section-title {
    font-size: clamp(2rem, 12vw, 3rem);
    letter-spacing: -0.04em;
  }

  .faq-intro,
  .legal-hero-panel p:not(.legal-eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .faq-item,
  .legal-card,
  .legal-summary-card,
  .mentions-content {
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .faq-item h2,
  .legal-card h2,
  .legal-summary-card h2,
  .mentions-content h2 {
    font-size: 1.28rem;
    line-height: 1.25;
  }

  .legal-hero-panel {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  .legal-details-list div,
  .legal-details-list.compact div {
    grid-template-columns: 1fr !important;
    gap: 4px;
  }

  .legal-details-list dt,
  .legal-details-list dd {
    overflow-wrap: anywhere;
  }

  /* Header plus robuste en portrait : évite que logo + panier débordent. */
  .aqua-header-main,
  .ocean-header-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
  }

  .aqua-logo-link,
  .ocean-brand {
    min-width: 0 !important;
  }

  .ocean-brand-text {
    min-width: 0;
  }

  .ocean-brand-text strong,
  .ocean-brand-text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .aqua-cart-link,
  .ocean-cart-link {
    white-space: nowrap;
  }
}

@media screen and (max-width: 430px) {
  .faq-section,
  .legal-page,
  .legal-section,
  .mentions-legales {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .faq-item,
  .legal-card,
  .legal-summary-card,
  .mentions-content {
    padding: 16px !important;
  }

  .aqua-logo {
    height: 42px;
  }

  .ocean-brand-text strong {
    font-size: 1.05rem;
  }

  .aqua-cart-link,
  .ocean-cart-link {
    padding: 9px 10px;
  }
}


/* =========================
   MICROALGUES — VISUELS PRODUIT + ARTICLE
========================= */

.aqua-product-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.aqua-product-figure {
  margin: 0;
  background: var(--grey-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.aqua-product-figure .aqua-product-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: var(--grey-50);
}

.aqua-product-figure figcaption,
.microalgae-figure figcaption,
.microalgae-gallery figcaption {
  padding: 9px 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.microalgae-figure {
  margin: 20px 0 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.microalgae-figure img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--grey-50);
}

.microalgae-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.microalgae-gallery figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.microalgae-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media screen and (max-width: 900px) {
  .microalgae-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 680px) {
  .aqua-product-visuals {
    grid-template-columns: 1fr;
  }

  .aqua-product-figure .aqua-product-image,
  .microalgae-gallery img {
    height: 240px;
  }

  .microalgae-gallery {
    grid-template-columns: 1fr;
  }
}


/* =========================
   GALERIE CLIQUABLE + ZOOM IMAGE
========================= */
.aqua-gallery-main {
  width: 100%;
  min-height: 360px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  display: block;
  cursor: zoom-in;
  box-shadow: inset 0 0 0 1px var(--border);
}

.aqua-gallery-main img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--white);
}

.aqua-gallery-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.aqua-gallery-thumb {
  width: 98px;
  height: 98px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.aqua-gallery-thumb:hover,
.aqua-gallery-thumb.active {
  border-color: var(--ocean-700);
  box-shadow: 0 8px 20px rgba(2, 105, 95, 0.12);
  transform: translateY(-1px);
}

.aqua-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--white);
}

.js-zoom-image,
.microalgae-gallery img,
.microalgae-figure img {
  cursor: zoom-in;
}

.ob-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(1, 23, 25, 0.86);
}

.ob-lightbox.open {
  display: flex;
}

.ob-lightbox-panel {
  position: relative;
  max-width: min(1120px, 96vw);
  max-height: 92vh;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-strong);
}

.ob-lightbox-panel img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius-sm);
}

.ob-lightbox-caption {
  margin: 10px 44px 0 4px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
}

.ob-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(1, 23, 25, 0.9);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

@media screen and (max-width: 680px) {
  .aqua-gallery-main {
    min-height: 280px;
  }
  .aqua-gallery-main img {
    height: 300px;
  }
  .aqua-gallery-thumb {
    width: 84px;
    height: 84px;
  }
  .ob-lightbox {
    padding: 12px;
  }
  .ob-lightbox-panel {
    padding: 10px;
  }
}
