:root {
  --bg: #07111a;
  --bg-2: #0b1930;
  --navy: #0d1f3d;
  --navy-strong: #08162b;
  --blue: #2d69d8;
  --blue-soft: #81acff;
  --white: #f7faff;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-soft: rgba(241, 246, 252, 0.92);
  --text: #ebf2ff;
  --text-dark: #10203b;
  --muted: #a8b7d1;
  --muted-dark: #5d6c83;
  --line: rgba(128, 156, 199, 0.2);
  --line-strong: rgba(128, 156, 199, 0.36);
  --shadow-xl: 0 28px 60px rgba(2, 8, 20, 0.28);
  --shadow-lg: 0 18px 38px rgba(4, 11, 24, 0.18);
  --shadow-md: 0 12px 26px rgba(7, 16, 34, 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --container: min(1220px, calc(100vw - 48px));
  --section-space: clamp(88px, 10vw, 148px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(45, 105, 216, 0.2), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(129, 172, 255, 0.11), transparent 22%),
    linear-gradient(180deg, rgba(7, 17, 26, 0.98), rgba(7, 17, 26, 1) 44%, #07111a 100%),
    url("assets/Background/background.jpg") center top / cover fixed;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.15;
}
body.mobile-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
main, footer { position: relative; z-index: 1; }
.container { width: var(--container); margin: 0 auto; }
.page-shell { padding-top: 24px; }
.section { padding: var(--section-space) 0; position: relative; }
.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, 88vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(126, 159, 210, 0.42), transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(150%);
  background: rgba(7, 17, 26, 0.78);
  border-bottom: 1px solid rgba(128, 156, 199, 0.14);
}
.site-header.scrolled { background: rgba(7, 17, 26, 0.92); }
.nav-shell {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.logo-text { display: grid; gap: 2px; }
.logo-title {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}
.logo-subtitle {
  font-size: 0.67rem;
  color: var(--muted);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.06em;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.main-nav a,
.mobile-nav a,
.footer-links a { text-decoration: none; }
.main-nav a {
  position: relative;
  padding: 12px 14px;
  color: rgba(235, 242, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-soft), transparent);
  transform: scaleX(0.35);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.main-nav a:hover,
.main-nav a.active,
.mobile-nav a.active { color: #fff; }
.main-nav a:hover::after,
.main-nav a.active::after { opacity: 1; transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cart {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(128, 156, 199, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  text-decoration: none;
}
.header-cart svg,
.contact-link svg,
.checkout-link svg,
.whatsapp-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-count,
.badge,
.tag,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  font-size: 0.76rem;
  font-weight: 800;
  border-radius: 999px;
}
.cart-count {
  min-width: 28px;
  border: 1px solid rgba(129, 172, 255, 0.28);
  background: rgba(129, 172, 255, 0.16);
}
.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn { background: linear-gradient(135deg, #0e2140, #163260 58%, #2557af); color: #fff; box-shadow: 0 14px 30px rgba(4, 15, 35, 0.24); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(4, 15, 35, 0.28); }
.btn-light { background: linear-gradient(135deg, #ffffff, #e8eef8); color: var(--navy); }
.btn-outline,
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(16, 32, 59, 0.15);
  box-shadow: none;
}
.btn-outline:hover,
.btn-ghost:hover { background: rgba(16, 32, 59, 0.06); box-shadow: none; }
.btn-block { width: 100%; }
.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(128, 156, 199, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.02);
  color: #fff;
}
.mobile-menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; }
.mobile-menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; padding-bottom: 16px; }
.mobile-nav-panel {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(128, 156, 199, 0.14);
  border-top: 0;
  background: rgba(7, 17, 26, 0.96);
}
.mobile-nav a {
  padding: 14px 0;
  color: rgba(235, 242, 255, 0.78);
  font-weight: 700;
  border-bottom: 1px solid rgba(128, 156, 199, 0.08);
}
.mobile-nav a:last-child { border-bottom: 0; }

.hero {
  padding: 48px 0 calc(var(--section-space) - 12px);
}
.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 26px;
  align-items: stretch;
}
 
.hero-copy,
.page-hero-panel {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(127, 156, 199, 0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(150deg, rgba(8, 18, 35, 0.97), rgba(16, 34, 68, 0.93)),
    radial-gradient(circle at top left, rgba(129, 172, 255, 0.14), transparent 34%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.hero-copy::after,
.page-hero-panel::after,
.catalogue-spotlight::after,
.footer-cta::after,
.quote-card::after,
.contact-banner::after,
.pricing-cta::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 180px;
  background: radial-gradient(circle, rgba(129, 172, 255, 0.14), transparent 72%);
  pointer-events: none;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.section-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(129, 172, 255, 0.18), rgba(129, 172, 255, 0.92));
}
.hero-copy h1,
.page-hero-panel h1,
.section-heading h2,
.catalogue-spotlight-copy h2,
.footer-cta h2,
.page-hero-side h2,
.quote-card h2,
.pricing-cta-copy h2,
.contact-banner-copy h2,
.checkout-card h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.hero-copy h1,
.page-hero-panel h1,
.footer-cta h2 { color: var(--text); }
.section-heading h2,
.catalogue-spotlight-copy h2,
.page-hero-side h2,
.quote-card h2,
.pricing-cta-copy h2,
.contact-banner-copy h2,
.checkout-card h2 { color: var(--text-dark); }
h1 { font-size: clamp(2rem, 3.8vw, 3.35rem); }
h2 { font-size: clamp(1.45rem, 2.4vw, 2.2rem); }
h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}
p { margin: 0; }
.hero-copy > p {
  margin-top: 16px;
}
.hero-copy > p,
.page-hero-panel > p,
.footer-cta p,
.catalogue-spotlight-copy p,
.quote-card p,
.pricing-cta-copy p,
.contact-banner-copy p { color: rgba(235, 242, 255, 0.82); }
.lead,
.section-heading p,
.product-description,
.mosaic-copy p,
.contact-card p,
.info-card p,
.value-card p,
.metric-card p,
.service-card-featured {
  overflow: hidden;
}
.service-ribbon {
  position: absolute;
  top: 10px;
  right: -52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  padding: 6px 0;
  border-top: 1px solid rgba(120, 166, 255, 0.34);
  border-bottom: 1px solid rgba(120, 166, 255, 0.2);
  background: linear-gradient(135deg, rgba(9, 30, 66, 0.98), rgba(28, 73, 154, 0.96));
  color: #ffffff;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(4, 15, 35, 0.18);
  transform: rotate(33deg);
  z-index: 2;
}
.service-card p,
.material-card p,
.gallery-meta p,
.page-hero-side p,
.pricing-card p,
.checkout-meta,
.form-meta,
.form-feedback,
.checkout-message,
.product-minimum { color: var(--muted-dark); }
.hero-actions,
.inline-actions,
.footer-actions,
.pricing-actions,
.contact-banner-actions,
.contact-quick-actions,
.checkout-actions,
.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions { margin-top: 26px; }
.hero-note {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(235, 242, 255, 0.78);
  font-size: 0.92rem;
}
.hero-note span::before,
.footer-note span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--blue-soft);
}
.hero-stats,
.value-grid,
.pricing-grid,
.catalogue-intro-grid,
.contact-premium-grid,
.material-grid {
  background:
    linear-gradient(155deg, rgba(8, 18, 35, 0.72), rgba(13, 31, 61, 0.34)),
    radial-gradient(circle at top right, rgba(129, 172, 255, 0.12), transparent 28%);
  border-top: 1px solid rgba(129, 172, 255, 0.08);
  border-bottom: 1px solid rgba(129, 172, 255, 0.08);
}
.services-premium-shell {
  width: var(--container);
  padding: clamp(32px, 3.6vw, 46px);
  border-top: 1px solid rgba(129, 172, 255, 0.08);
  border-bottom: 1px solid rgba(129, 172, 255, 0.08);
  background:
    linear-gradient(155deg, rgba(8, 18, 35, 0.72), rgba(13, 31, 61, 0.34)),
    radial-gradient(circle at top right, rgba(129, 172, 255, 0.12), transparent 28%);
}
.services-premium-section .section-heading h2 {
  color: var(--text);
}
.service-grid,
.products-grid,
.gallery-grid,
.mosaic-grid,
.footer-columns,
.checkout-layout,
.contact-main-grid,
.split-section,
.gallery-layout,
.catalogue-spotlight,
.footer-cta {
  display: grid;
  gap: 22px;
}
.hero-stats,
.catalogue-intro-grid,
.contact-premium-grid,
.material-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.service-grid,
.products-grid,
.gallery-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.mosaic-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.split-section,
.contact-main-grid,
.checkout-layout { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr); }
.gallery-layout { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.catalogue-spotlight,
.footer-cta { grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr); align-items: center; }
.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
  max-width: 760px;
}
.metric-card,
.value-card,
.pricing-card,
.service-card,
.quote-card,
.info-card,
.mosaic-card,
.material-card,
.contact-card,
.contact-form,
.page-hero-side,
.checkout-card,
.product-card,
.gallery-card,
.cart-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,248,252,0.96));
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}
.metric-card::before,
.value-card::before,
.pricing-card::before,
.service-card::before,
.quote-card::before,
.info-card::before,
.mosaic-card::before,
.material-card::before,
.contact-card::before,
.checkout-card::before,
.product-card::before,
.gallery-card::before,
.cart-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 105, 216, 0.78), transparent);
}
.metric-card strong,
.product-price,
.summary-total-amount {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  color: var(--navy);
}
.value-grid .value-card:nth-child(1),
.value-grid .value-card:nth-child(2) { min-height: 0; }
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border: 1px solid rgba(16, 32, 59, 0.08);
  background: linear-gradient(145deg, rgba(16, 32, 59, 0.04), rgba(45, 105, 216, 0.08));
}
.icon-badge svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.page-hero-side ul,
.list-clean,
.contact-checklist,
.checkout-list,
.quote-list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.page-hero-side li,
.list-clean li,
.contact-checklist li,
.checkout-list li,
.quote-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-dark);
}
.page-hero-side li::before,
.list-clean li::before,
.contact-checklist li::before,
.checkout-list li::before,
.quote-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--blue);
}
 .hero-image,
.catalogue-spotlight-image,
.footer-showcase {
  margin: 0;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
 
.hero-image {
  margin-top: 18px;
}
.hero-carousel {
  position: relative;
}
.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroCarouselFade 15s infinite;
}
.hero-carousel-slide:nth-child(1) {
  opacity: 1;
  animation-delay: 0s;
}
.hero-carousel-slide:nth-child(2) {
  animation-delay: 5s;
}
.hero-carousel-slide:nth-child(3) {
  animation-delay: 10s;
}
@keyframes heroCarouselFade {
  0%, 30% {
    opacity: 1;
  }
  36%, 100% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-carousel-slide {
    animation: none;
    opacity: 0;
  }

  .hero-carousel-slide:nth-child(1) {
    opacity: 1;
  }
}
.hero-image img,
.catalogue-spotlight-image img,
.footer-showcase img,
.product-card-image img,
.gallery-card img,
.mosaic-card img,
.cart-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card { display: grid; grid-template-rows: auto 1fr; padding: 0; overflow: hidden; }
.product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, rgba(229, 236, 247, 0.96), rgba(246, 249, 253, 0.98));
}
.product-badges {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  gap: 8px;
  justify-items: end;
}
.badge { background: rgba(8, 22, 43, 0.84); color: #fff; }
.tag { border: 1px solid rgba(16, 32, 59, 0.1); background: rgba(16, 32, 59, 0.05); color: var(--navy); }
.filter-chip {
  border: 1px solid rgba(16, 32, 59, 0.1);
  background: rgba(255,255,255,0.72);
  color: var(--navy);
  cursor: pointer;
}
.filter-chip.is-active { background: linear-gradient(135deg, #0d1f3d, #214e9f); color: #fff; border-color: transparent; }
.product-card-body,
.gallery-card-body,
.mosaic-copy,
.cart-card-body,
.checkout-card-body { display: grid; gap: 14px; padding: 22px; }
.product-price-row,
.product-actions,
.summary-row,
.cart-row,
.map-actions,
.hero-copy .section-label,
.page-hero-panel .section-label,
.footer-cta .section-label {
  color: #c8dbff;
}

.footer-band {
  margin-top: var(--section-space);
  border-top: 1px solid rgba(129, 172, 255, 0.16);
  background: rgba(7, 17, 26, 0.96);
}

.footer-band-inner {
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  color: rgba(235, 242, 255, 0.82);
  font-size: 0.9rem;
}

.footer-band-inner > :first-child { justify-self: start; }
.footer-band-inner > :nth-child(2) { justify-self: center; }
.footer-band-inner > :last-child { justify-self: end; }
.footer-band a { text-decoration: none; }
.footer-payment {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(235, 242, 255, 0.9);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.footer-payment svg {
  width: 22px;
  height: 22px;
  stroke: #6ea0ff;
  fill: none;
  stroke-width: 1.7;
  filter: drop-shadow(0 0 12px rgba(110, 160, 255, 0.22));
}

.home-reviews-section {
  padding-top: clamp(46px, 5.2vw, 76px);
}
.home-partners-section {
  padding-top: clamp(36px, 4.6vw, 62px);
}
.home-partners-shell {
  display: grid;
  gap: 24px;
}
.home-partners-section .section-heading h2 {
  color: #ffffff;
}
.home-partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.home-partner-card {
  min-height: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.home-partner-card img {
  max-width: 100%;
  max-height: 118px;
  object-fit: contain;
  border-radius: 14px;
  transition: transform 180ms ease;
}
.home-partner-card:hover img {
  transform: scale(1.06);
}
.home-reviews-shell {
  position: relative;
  width: var(--container);
}
.home-reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}
.home-reviews-heading {
  margin-bottom: 0;
}
.home-reviews-link {
  white-space: nowrap;
}
.home-reviews-heading h2 {
  color: #ffffff;
}
.home-reviews-link {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
}
.home-reviews-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
.home-reviews-summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 28px 30px;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid rgba(127, 156, 199, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(150deg, rgba(8, 18, 35, 0.96), rgba(14, 31, 59, 0.92)),
    radial-gradient(circle at top right, rgba(129, 172, 255, 0.16), transparent 38%);
  color: var(--text);
  box-shadow: 0 18px 42px rgba(4, 10, 24, 0.34);
}
.home-reviews-summary::after {
  content: "";
  position: absolute;
  inset: auto -36px -44px auto;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(129, 172, 255, 0.13), transparent 64%);
  pointer-events: none;
}
.home-reviews-rating-wrap strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 2rem;
  color: #ffffff;
}
.home-reviews-rating-wrap span {
  color: rgba(235, 242, 255, 0.74);
  font-size: 0.92rem;
}
#home-reviews-updated {
  display: block;
  margin-top: 5px;
  color: rgba(235, 242, 255, 0.58);
  font-size: 0.8rem;
}
.home-reviews-stars {
  letter-spacing: 0.14em;
  color: #8eb6ff;
  font-size: 1rem;
  white-space: nowrap;
}
#home-reviews-caption {
  position: relative;
  z-index: 1;
  max-width: 540px;
  color: rgba(235, 242, 255, 0.82);
  line-height: 1.72;
}
.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.home-review-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  min-height: 100%;
  padding: 28px 26px 24px;
  overflow: hidden;
  border: 1px solid rgba(121, 146, 184, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.995), rgba(243,247,252,0.975));
  box-shadow: 0 16px 34px rgba(8, 19, 38, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.home-review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(58, 105, 199, 0.8), rgba(58, 105, 199, 0));
}
.home-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(8, 19, 38, 0.18);
  border-color: rgba(58, 105, 199, 0.24);
}
.home-review-mark {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 3rem;
  line-height: 0.8;
  color: rgba(58, 105, 199, 0.18);
  margin-bottom: -6px;
}
.home-review-top {
  display: grid;
  grid-template-rows: minmax(64px, auto) auto;
  gap: 12px;
  align-content: start;
}
.home-review-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.76;
  font-size: 0.98rem;
}
.home-review-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  min-height: 64px;
}
.home-review-meta strong {
  display: block;
  line-height: 1.35;
  font-size: 1rem;
  color: var(--navy);
}
.home-review-meta span {
  padding-top: 2px;
  text-align: right;
  color: rgba(43, 62, 94, 0.62);
  font-size: 0.82rem;
  white-space: nowrap;
}
.home-review-stars {
  min-height: 18px;
  color: #3a69c7;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
}

@media (max-width: 920px) {
  .home-reviews-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .home-reviews-link {
    justify-self: start;
  }
  .home-reviews-summary {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 22px;
  }
  #home-reviews-caption {
    max-width: none;
  }
  .home-reviews-grid {
    grid-template-columns: 1fr;
  }
  .home-partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-review-meta {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .home-review-meta span {
    text-align: left;
    white-space: normal;
  }
  .home-review-top {
    grid-template-rows: auto auto;
  }
}
.home-proof-section {
  padding-top: clamp(38px, 5vw, 64px);
}
.home-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.home-proof-panel {
  position: relative;
  padding: 34px;
  border-top: 1px solid rgba(129, 172, 255, 0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}

.home-proof-panel h2,
.home-proof-panel p,
.home-proof-panel li,
.home-proof-panel .section-label {
  color: var(--text);
}

.home-proof-panel p { color: rgba(235, 242, 255, 0.8); }
.home-proof-panel ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.home-proof-panel li {
  position: relative;
  padding-left: 18px;
}
.home-proof-panel li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--blue-soft);
}
.home-metric-stack {
  display: grid;
  gap: 16px;
  grid-template-rows: repeat(3, 1fr);
  height: 100%;
}
.home-metric-stack .metric-card {
  height: 100%;
}
.home-gallery-inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.home-gallery-inline .gallery-card { padding: 0; }
.home-gallery-inline .gallery-card-body { padding: 18px 20px 20px; }
.footer-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.product-actions { align-items: stretch; }
.product-actions .btn,
.product-actions .btn-outline { flex: 1; }
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-lg);
}
.pricing-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.pricing-table thead th {
  padding: 18px 20px;
  background: linear-gradient(135deg, #0d1f3d, #16305c);
  color: #fff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-align: left;
}
.pricing-table tbody th,
.pricing-table tbody td {
  padding: 18px 20px;
  border-top: 1px solid rgba(16, 32, 59, 0.08);
  color: var(--text-dark);
  text-align: left;
}
.pricing-table tbody tr:nth-child(even) th,
.pricing-table tbody tr:nth-child(even) td { background: rgba(16, 32, 59, 0.03); }
.contact-form { padding: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-field,
.form-field-full { display: grid; gap: 8px; }
.form-field-full { grid-column: 1 / -1; }
label { font-size: 0.88rem; font-weight: 800; color: var(--navy); }
input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(16, 32, 59, 0.14);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-dark);
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(45, 105, 216, 0.56);
  box-shadow: 0 0 0 4px rgba(45, 105, 216, 0.12);
}
textarea { min-height: 150px; resize: vertical; }
.contact-links { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-link,
.checkout-link,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(16, 32, 59, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(16, 32, 59, 0.04);
  color: var(--navy);
}
.contact-map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact-map-frame iframe { width: 100%; min-height: 340px; border: 0; }
.footer-panel {
  margin-top: var(--section-space);
  padding: clamp(30px, 4vw, 48px);
  border-top: 1px solid rgba(129, 172, 255, 0.18);
  background:
    linear-gradient(155deg, rgba(8, 18, 35, 0.99), rgba(13, 31, 61, 0.95)),
    radial-gradient(circle at top right, rgba(129, 172, 255, 0.09), transparent 28%);
  box-shadow: var(--shadow-xl);
}
.footer-panel,
.footer-panel h2,
.footer-panel h3,
.footer-panel a,
.footer-panel p,
.footer-panel span { color: var(--text); }
.footer-panel p,
.footer-panel .footer-meta-note { color: rgba(235, 242, 255, 0.78); }
.footer-columns { grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.85fr)); }
.footer-links { display: grid; gap: 10px; }
.footer-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid rgba(129, 172, 255, 0.12);
  flex-wrap: wrap;
}

.contact-stack,
.contact-hero-side {
  display: grid;
  gap: 18px;
}

.contact-map-card .contact-map-frame iframe {
  min-height: 220px;
}

.contact-hero {
  padding: 56px 0 calc(var(--section-space) - 36px);
}

.contact-hero-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(30px, 4.2vw, 48px) clamp(28px, 4vw, 42px);
}

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

.contact-hero-accent {
  width: 56px;
  height: 1px;
  margin: 2px 0 18px;
  background: linear-gradient(90deg, rgba(129, 172, 255, 0.92), rgba(129, 172, 255, 0.12));
}

.contact-hero-title {
  max-width: 11.6ch;
  font-size: clamp(2.05rem, 3.5vw, 3rem);
  line-height: 0.98;
}

.contact-hero-title span {
  display: block;
}

.contact-hero-lead {
  max-width: 500px;
  margin-top: 16px;
  font-size: 0.93rem;
  line-height: 1.62;
  color: rgba(235, 242, 255, 0.76) !important;
}

.contact-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(129, 172, 255, 0.18);
  color: rgba(235, 242, 255, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-meta-line span {
  position: relative;
  padding-right: 18px;
  margin-right: 18px;
}

.contact-meta-line span:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 12px;
  transform: translateY(-50%);
  background: rgba(129, 172, 255, 0.22);
}

.contact-hero-side {
  display: grid;
  gap: 18px;
  padding: 30px 24px 24px;
  align-content: start;
}

.contact-form-section {
  padding-top: 0;
  margin-top: -56px;
}

.contact-hero-panel .section-label,
.contact-hero-side .section-label {
  margin-bottom: 12px;
}

.contact-shipping-strip {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(129, 172, 255, 0.14);
}

.contact-shipping-strip p {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(235, 242, 255, 0.76);
}

.contact-shipping-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.contact-shipping-logos img {
  height: 24px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.cart-list { display: grid; gap: 16px; }
.cart-card { display: grid; grid-template-columns: 150px minmax(0, 1fr); padding: 0; overflow: hidden; }
.cart-card-media { background: linear-gradient(160deg, rgba(229, 236, 247, 0.96), rgba(246, 249, 253, 0.98)); }
.cart-card-media img { min-height: 160px; }
.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(16, 32, 59, 0.12);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.quantity-control button {
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(16, 32, 59, 0.05);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
}
.quantity-control input {
  width: 64px;
  border: 0;
  border-left: 1px solid rgba(16, 32, 59, 0.08);
  border-right: 1px solid rgba(16, 32, 59, 0.08);
  text-align: center;
  box-shadow: none;
}
.empty-state {
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: 28px;
}
.hp-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 9, 20, 0.94);
}
.lightbox.is-open { display: flex; }
.lightbox-dialog {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  background: #081629;
  box-shadow: var(--shadow-xl);
}
.lightbox-media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.lightbox-content { display: grid; gap: 16px; padding: 28px; color: var(--text); }
.lightbox-content h3,
.lightbox-content p,
.lightbox-content .section-label { color: inherit; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .hero-grid,
  .page-hero-grid,
  .split-section,
  .contact-main-grid,
  .checkout-layout,
  .gallery-layout,
  .catalogue-spotlight,
  .footer-cta,
  .footer-columns,
  .service-grid,
  .products-grid,
  .gallery-grid,
  .mosaic-grid,
  .hero-stats,
  .catalogue-intro-grid,
  .contact-premium-grid,
  .material-grid,
  .pricing-grid,
  .value-grid,
  .home-proof-layout,
  .home-gallery-inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .main-nav,
  .header-actions .btn { display: none; }
  .mobile-menu-toggle,
  .mobile-nav { display: block; }
  .lightbox-dialog { grid-template-columns: 1fr; }
  .lightbox-media img { min-height: 280px; }
}

@media (max-width: 760px) {
  .services-premium-shell {
    width: var(--container);
    padding: 28px 20px;
  }
  .contact-form-section {
    padding-top: 0;
    margin-top: -28px;
  }
  :root { --container: min(1220px, calc(100vw - 24px)); }
  .page-shell { padding-top: 18px; }
  .hero,
  .section { padding-bottom: 72px; }
  h1 { font-size: clamp(2rem, 8.6vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 6.8vw, 2.2rem); }
  .form-grid { grid-template-columns: 1fr; }
  .cart-card { grid-template-columns: 1fr; }
  .cart-card-media img { min-height: 220px; }
  .product-price-row,
  .product-actions,
  .summary-row,
  .cart-row,
  .map-actions,
  .contact-links,
  .footer-meta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .header-cart span:not(.cart-count) { display: none; }
  .header-cart {
    min-width: 46px;
    padding: 0 12px;
    justify-content: center;
  }
  .footer-band-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 18px 0;
  }
  .footer-band-inner > :first-child,
  .footer-band-inner > :nth-child(2),
  .footer-band-inner > :last-child {
    justify-self: center;
  }
  .contact-hero {
    padding-top: 42px;
  }
  .contact-hero-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 26px 20px 22px;
  }
  .contact-hero-title {
    max-width: 12ch;
    font-size: clamp(1.9rem, 7.6vw, 2.55rem);
  }
  .contact-hero-lead {
    max-width: 100%;
    font-size: 0.9rem;
  }
  .contact-meta-line {
    flex-direction: column;
    gap: 8px;
  }
  .contact-meta-line span {
    margin-right: 0;
    padding-right: 0;
  }
  .contact-meta-line span::after {
    display: none;
  }
  .contact-shipping-strip {
    margin-top: 16px;
    padding-top: 12px;
  }
  .contact-shipping-logos {
    gap: 12px;
  }
  .contact-shipping-logos img {
    height: 20px;
  }
}
.contact-shipping-logo-chrono {
  height: 34px;
  transform: scale(1.38);
  transform-origin: left center;
  margin-right: 14px;
}
.hero-shipping-strip {
  margin-top: auto;
}
@media (max-width: 760px) {
  .contact-shipping-logo-chrono {
    height: 26px;
    transform: scale(1.28);
    margin-right: 10px;
  }
}








































.tarifs-hero-grid {
  align-items: stretch;
}
.tarifs-hero-panel,
.tarifs-hero-side {
  min-height: 100%;
}
.tarifs-hero-panel {
  display: grid;
  align-content: start;
  gap: 0;
}
.tarifs-hero-note {
  margin-top: 26px;
}
.tarifs-hero-side {
  display: grid;
  gap: 14px;
  align-content: start;
}
.tarifs-choice-list {
  display: grid;
  gap: 14px;
  margin: 6px 0 0;
}
.tarifs-choice-list li {
  color: var(--muted-dark);
  line-height: 1.7;
}
.tarifs-shell,
.tarifs-table-shell {
  width: var(--container);
}
.tarifs-heading {
  max-width: 780px;
}
.pricing-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tarifs-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
}
.tarifs-card-kicker {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #507fe0;
}
.tarifs-card h3 {
  font-size: 1.28rem;
  line-height: 1.16;
}
.tarifs-card p {
  line-height: 1.72;
}
.tarifs-card-meta {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(16, 32, 59, 0.08);
}
.tarifs-card-meta strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  color: var(--navy);
}
.tarifs-card-meta span {
  color: var(--muted-dark);
  font-size: 0.88rem;
}
.tarifs-brief-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr) auto;
  gap: 26px;
  align-items: center;
  margin-top: 24px;
  padding: 28px 30px;
  background: linear-gradient(150deg, rgba(255,255,255,0.99), rgba(245,248,252,0.97));
}
.tarifs-brief-card h3 {
  font-size: 1.4rem;
}
.tarifs-brief-card p {
  margin: 0;
  line-height: 1.72;
  color: var(--muted-dark);
}
.tarifs-table-section {
  padding-top: clamp(42px, 5vw, 66px);
}
.tarifs-table-wrap {
  border-radius: 12px;
  overflow: hidden;
}
.tarifs-table-wrap .pricing-table tbody th {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.98rem;
}
.tarifs-table-wrap .pricing-table tbody td strong,
.tarifs-table-wrap .pricing-table tbody th strong {
  color: var(--navy);
}
.tarifs-bottom-grid {
  align-items: stretch;
}
.tarifs-info-card,
.tarifs-cta-card {
  min-height: 100%;
}
.tarifs-info-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.985), rgba(244,247,252,0.96));
}
.tarifs-points {
  display: grid;
  gap: 14px;
}
.tarifs-cta-card {
  display: grid;
  gap: 16px;
  align-content: start;
}
.tarifs-cta-card h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
}
.tarifs-cta-card p {
  line-height: 1.74;
}
@media (max-width: 1100px) {
  .pricing-grid--three {
    grid-template-columns: 1fr;
  }
  .tarifs-brief-card {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.catalogue-search-hero {
  padding-top: clamp(34px, 5vw, 56px);
}
.catalogue-search-shell {
  width: var(--container);
}
.catalogue-search-heading {
  max-width: 760px;
  margin-bottom: 26px;
}
.catalogue-search-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.catalogue-search-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 178px;
  padding: 22px 20px;
  border: 1px solid rgba(127, 156, 199, 0.16);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.985), rgba(244,247,252,0.965));
  color: var(--text-dark);
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.catalogue-search-card strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  line-height: 1.15;
  color: var(--navy);
}
.catalogue-search-card span {
  color: var(--muted-dark);
  line-height: 1.68;
  font-size: 0.92rem;
}
.catalogue-search-card:hover,
.catalogue-search-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(58, 105, 199, 0.3);
  box-shadow: 0 18px 36px rgba(8, 19, 38, 0.16);
}
.catalogue-search-card.is-active {
  background: linear-gradient(160deg, rgba(8, 18, 35, 0.98), rgba(16, 34, 68, 0.94));
}
.catalogue-search-card.is-active strong,
.catalogue-search-card.is-active span {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .catalogue-search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 920px) {
  .catalogue-search-grid {
    grid-template-columns: 1fr;
  }
  .catalogue-search-card {
    min-height: 0;
  }
}

.femme-page-hero {
  padding-block: clamp(24px, 3vw, 34px);
}
.femme-reference-section {
  padding-top: clamp(34px, 4vw, 46px);
}
.femme-reference-shell {
  width: var(--container);
}
.femme-reference-heading {
  margin-bottom: 24px;
}
.femme-reference-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.femme-reference-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
}
.femme-reference-image {
  aspect-ratio: 4 / 3.45;
}
.femme-reference-body {
  gap: 12px;
  padding: 18px;
  align-content: start;
}
.femme-reference-body h3 {
  font-size: 1.16rem;
}
.femme-reference-body .product-description {
  font-size: 0.95rem;
  line-height: 1.66;
}
.femme-color-picker {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}
.femme-color-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.femme-color-head span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #587fdb;
}
.femme-color-head strong {
  font-size: 0.88rem;
  color: var(--navy);
}
.femme-color-dropdown {
  position: relative;
}
.femme-color-trigger {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(16, 32, 59, 0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.98);
  color: var(--navy);
  font: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.femme-color-trigger:hover,
.femme-color-dropdown.is-open .femme-color-trigger {
  border-color: rgba(56, 96, 185, 0.28);
  box-shadow: 0 14px 28px rgba(13, 27, 52, 0.08);
}
.femme-color-trigger-value {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.femme-color-swatch {
  width: 13px;
  height: 13px;
  border-radius: 2px;
  border: 1px solid rgba(16, 32, 59, 0.16);
  flex: 0 0 13px;
}
.femme-color-trigger-icon {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid rgba(16, 32, 59, 0.56);
  border-bottom: 1.5px solid rgba(16, 32, 59, 0.56);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 160ms ease;
}
.femme-color-dropdown.is-open .femme-color-trigger-icon {
  transform: rotate(-135deg) translateY(-1px);
}
.femme-color-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 8;
  display: none;
  padding: 8px;
  border: 1px solid rgba(16, 32, 59, 0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.995);
  box-shadow: 0 18px 34px rgba(11, 24, 44, 0.14);
}
.femme-color-dropdown.is-open .femme-color-menu {
  display: grid;
  gap: 4px;
}
.femme-color-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease;
}
.femme-color-option:hover,
.femme-color-option.is-active {
  background: rgba(50, 95, 190, 0.08);
}
@media (max-width: 920px) {
  .femme-reference-grid {
    grid-template-columns: 1fr;
  }
}


.femme-reference-card {
  overflow: visible;
}
.femme-reference-image {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.femme-reference-body {
  position: relative;
  z-index: 2;
}

.header-account,
.mobile-client-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(118, 145, 191, 0.16);
  border-radius: 10px;
  background: rgba(12, 25, 47, 0.72);
  color: rgba(241, 246, 255, 0.92);
  font-weight: 700;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}
.header-account:hover,
.mobile-client-entry:hover {
  border-color: rgba(118, 145, 191, 0.3);
  background: rgba(18, 35, 66, 0.9);
  transform: translateY(-1px);
}
.mobile-client-entry {
  width: 100%;
}
.client-auth-hero {
  padding-block: clamp(38px, 5vw, 72px);
}
.client-auth-grid,
.client-overview-grid,
.client-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
}
.client-auth-copy {
  display: grid;
  gap: 22px;
}
.client-feature-list,
.client-dashboard-stats,
.client-list-grid {
  display: grid;
  gap: 16px;
}
.client-feature-card,
.client-mini-card,
.client-panel-card,
.client-auth-card {
  position: relative;
  border: 1px solid rgba(124, 149, 190, 0.18);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(9, 20, 39, 0.96), rgba(14, 31, 59, 0.92));
  box-shadow: 0 20px 42px rgba(8, 20, 40, 0.18);
}
.client-feature-card,
.client-auth-card,
.client-panel-card {
  padding: 24px;
}
.client-feature-card strong,
.client-mini-card strong,
.client-panel-card h2,
.client-panel-card h3,
.client-auth-card h2,
.client-dashboard-hero h1 {
  color: #f4f7ff;
}
.client-feature-card span,
.client-panel-card p,
.client-order-meta span,
.client-order-items li,
.client-order-note,
.client-ticket-reply,
.client-auth-copy p,
.client-auth-card-head p,
.client-mini-card span {
  color: rgba(224, 232, 246, 0.76);
}
.client-auth-panel,
.client-form-grid,
.client-profile-card,
.client-support-card {
  display: grid;
  gap: 16px;
}
.client-auth-card-light,
.client-mini-card,
.client-empty-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.995), rgba(243,247,252,0.975));
  color: var(--navy);
}
.client-auth-card-light h2,
.client-auth-card-light p,
.client-mini-card strong,
.client-mini-card span,
.client-empty-card h3,
.client-empty-card p {
  color: var(--navy);
}
.client-auth-card-head {
  display: grid;
  gap: 10px;
  margin-bottom: 6px;
}
.client-account-switches {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.client-account-switch,
.client-dashboard-tab {
  min-height: 44px;
  border: 1px solid rgba(74, 103, 156, 0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.client-account-switch.is-active,
.client-dashboard-tab.is-active {
  background: linear-gradient(135deg, #244684, #3566bf);
  color: #fff;
  border-color: transparent;
}
.client-form-grid label {
  display: grid;
  gap: 8px;
}
.client-form-grid span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(122, 155, 219, 0.9);
}
.client-form-grid input,
.client-form-grid textarea,
.client-form-grid select {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(16, 32, 59, 0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.98);
  color: var(--navy);
}
.client-form-grid textarea {
  min-height: 132px;
  resize: vertical;
}
.client-form-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.client-auth-status {
  min-height: 24px;
  margin: 0;
  color: rgba(224, 232, 246, 0.76);
}
.client-auth-status.is-success { color: #7fe3af; }
.client-auth-status.is-error { color: #ff8f8f; }
.client-auth-status.is-muted { color: rgba(224, 232, 246, 0.76); }
.client-dashboard-section {
  padding-block: clamp(36px, 4vw, 58px);
}
.client-dashboard-shell {
  width: var(--container);
  display: grid;
  gap: 22px;
}
.client-dashboard-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 28px;
  border: 1px solid rgba(124, 149, 190, 0.18);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(9, 20, 39, 0.96), rgba(14, 31, 59, 0.92));
}
.client-dashboard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.client-dashboard-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.client-mini-card {
  padding: 20px;
  display: grid;
  gap: 8px;
}
.client-mini-card strong {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 1.8rem;
}
.client-dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.client-dashboard-tab {
  padding: 0 18px;
  background: rgba(13, 27, 52, 0.55);
  color: rgba(237, 243, 255, 0.9);
  border-color: rgba(124, 149, 190, 0.18);
}
.client-dashboard-panel {
  display: grid;
  gap: 20px;
}
.client-panel-card-light {
  background: linear-gradient(180deg, rgba(255,255,255,0.995), rgba(243,247,252,0.975));
}
.client-panel-card-light h2,
.client-panel-card-light p {
  color: var(--navy);
}
.client-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.client-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.client-panel-top .btn-outline {
  color: #f7faff;
  border-color: rgba(128, 156, 199, 0.28);
  background: rgba(255, 255, 255, 0.03);
}
.client-panel-top .btn-outline:hover,
.client-panel-top .btn-outline:focus-visible {
  color: #f7faff;
  background: rgba(129, 172, 255, 0.12);
  border-color: rgba(129, 172, 255, 0.34);
}
.client-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7ea4ff;
}
.client-status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}
.client-status-chip.is-in-progress,
.client-status-chip.is-pending {
  background: rgba(74, 120, 227, 0.14);
  color: #8fb1ff;
}
.client-status-chip.is-success {
  background: rgba(80, 180, 112, 0.14);
  color: #7fe3af;
}
.client-status-chip.is-warning {
  background: rgba(226, 173, 66, 0.14);
  color: #f5c466;
}
.client-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}
.client-order-items,
.client-timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.client-order-items li,
.client-timeline li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(125, 149, 190, 0.14);
}
.client-order-items span,
.client-timeline span {
  color: rgba(224, 232, 246, 0.68);
  text-align: right;
}
.client-timeline li.is-done strong {
  color: #f4f7ff;
}
.client-empty-card {
  padding: 24px;
  border: 1px solid rgba(125, 149, 190, 0.14);
  border-radius: 14px;
}
.client-ticket-reply {
  margin: 10px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(125, 149, 190, 0.14);
}
@media (max-width: 980px) {
  .client-auth-grid,
  .client-overview-grid,
  .client-support-grid,
  .client-list-grid,
  .client-dashboard-stats,
  .client-form-two {
    grid-template-columns: 1fr;
  }
  .client-dashboard-hero,
  .client-panel-top {
    align-items: start;
    flex-direction: column;
  }
}
.client-inline-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.client-text-link {
  color: rgba(122, 155, 219, 0.92);
  font-weight: 700;
}
.client-text-link:hover {
  color: #fff;
}
.client-auth-grid-simple {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.client-auth-grid-simple .client-auth-panel {
  max-width: 760px;
  margin-inline: auto;
}
.client-auth-hero {
  padding-block: clamp(24px, 3.6vw, 42px);
}
.client-auth-grid-simple {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}
.client-auth-grid-simple .client-auth-panel {
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.client-auth-grid-simple .client-auth-card {
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(8, 20, 40, 0.14);
}
.client-auth-grid-simple .client-auth-card-head {
  gap: 8px;
  margin-bottom: 4px;
}
.client-auth-grid-simple .client-auth-card h2 {
  font-size: 1.22rem;
  line-height: 1.22;
}
.client-auth-grid-simple .client-form-grid {
  gap: 12px;
}
.client-auth-grid-simple .client-form-grid input,
.client-auth-grid-simple .client-form-grid select {
  min-height: 44px;
  padding: 10px 12px;
}
.client-auth-grid-simple .client-form-grid span {
  font-size: 0.74rem;
}
.client-auth-grid-simple .client-account-switches {
  gap: 6px;
}
.client-auth-grid-simple .client-account-switch {
  min-height: 40px;
}
.client-auth-grid-simple .client-inline-actions {
  margin-top: 2px;
}
.client-auth-grid-simple #client-auth-status {
  grid-column: 1 / -1;
  margin-top: 2px;
}
@media (max-width: 980px) {
  .client-auth-grid-simple .client-auth-panel {
    grid-template-columns: 1fr;
  }
}
.client-auth-grid-simple .client-auth-panel {
  gap: 14px;
}
.client-auth-grid-simple .client-auth-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}
.client-auth-grid-simple .client-auth-card-head {
  min-height: 66px;
  align-content: start;
  gap: 6px;
  margin-bottom: 0;
}
.client-auth-grid-simple .client-auth-card h2 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.16;
  text-wrap: balance;
}
.client-auth-grid-simple .client-form-grid {
  gap: 10px;
}
.client-auth-grid-simple .client-form-grid label {
  gap: 6px;
}
.client-auth-grid-simple .client-form-grid span {
  line-height: 1;
}
.client-auth-grid-simple .client-form-grid input,
.client-auth-grid-simple .client-form-grid select {
  min-height: 40px;
  padding: 9px 11px;
  border-radius: 9px;
}
.client-auth-grid-simple .client-form-two {
  gap: 10px;
}
.client-auth-grid-simple .client-account-switches {
  gap: 5px;
}
.client-auth-grid-simple .client-account-switch {
  min-height: 38px;
}
.client-auth-grid-simple .client-inline-actions {
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 0;
}
.client-auth-grid-simple .client-text-link {
  font-size: 0.9rem;
  line-height: 1;
}
.client-auth-grid-simple #client-auth-status {
  margin-top: 0;
}
.client-auth-grid-simple .client-auth-panel {
  align-items: stretch;
}
.client-auth-grid-simple .client-auth-card {
  grid-template-rows: auto 1fr;
  height: 100%;
}
.client-auth-grid-simple .client-auth-card form {
  align-content: start;
}
.client-auth-grid-simple .client-auth-card-light .client-auth-card-head {
  min-height: 66px;
}
.client-auth-grid-simple .client-form-grid [hidden] {
  display: none !important;
}
.client-auth-grid-simple #client-auth-status {
  justify-self: center;
  width: 100%;
  text-align: center;
}
.client-auth-grid-simple .client-auth-card form {
  max-width: 420px;
}
.client-auth-grid-simple .client-auth-card-light form {
  max-width: 100%;
}
.client-auth-grid-simple .client-auth-card {
  padding: 15px;
}
.client-auth-grid-simple .client-auth-card h2 {
  font-size: 1rem;
}
.client-auth-grid-simple .client-auth-card-light h2 {
  max-width: 18ch;
}
.client-auth-grid-simple .client-auth-card:not(.client-auth-card-light) h2 {
  max-width: 14ch;
}
.client-preview-link-row {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}
.client-dashboard-tab {
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}
.client-dashboard-tab:hover {
  transform: translateY(-1px);
}
.client-dashboard-reset {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(124, 149, 190, 0.18);
  border-radius: 10px;
  background: rgba(13, 27, 52, 0.55);
  color: rgba(237, 243, 255, 0.9);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.client-dashboard-tabs.is-focused .client-dashboard-tab:not(.is-active) {
  display: none;
}
.client-dashboard-tabs.is-focused {
  justify-content: flex-start;
}
.client-dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.client-dashboard-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.client-dashboard-tab[aria-current="page"] {
  background: linear-gradient(135deg, #244684, #3566bf);
  color: #fff;
  border-color: transparent;
}
.client-dashboard-tab[aria-current="page"]:hover {
  transform: none;
}
.admin-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, #07111f 0%, #081525 100%);
}
.admin-login-wrap {
  width: min(520px, calc(100vw - 48px));
  margin: 0 auto;
}
.admin-login-card {
  padding: 26px;
  border: 1px solid rgba(124, 149, 190, 0.18);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(9, 20, 39, 0.96), rgba(14, 31, 59, 0.92));
}
.admin-login-card p {
  margin: 0;
  color: rgba(224, 232, 246, 0.76);
}
.admin-data-card h3 {
  margin: 0;
}
.admin-data-card .client-order-note {
  margin-bottom: 0;
}
.admin-catalogue-panel {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
}
.admin-product-form {
  margin-top: 16px;
}
.admin-product-form textarea {
  min-height: 112px;
}
@media (max-width: 980px) {
  .admin-catalogue-panel {
    grid-template-columns: 1fr;
  }
}
.admin-inline-editor {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}
.admin-inline-editor select,
.admin-reply-input {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 32, 59, 0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.98);
  color: var(--navy);
  font: inherit;
}
.admin-inline-editor select {
  flex: 1 1 220px;
}
.admin-reply-input {
  margin-top: 14px;
  min-height: 96px;
  resize: vertical;
}
.admin-danger {
  border-color: rgba(173, 54, 54, 0.24);
  color: #8c2f2f;
}
.admin-danger:hover {
  border-color: rgba(173, 54, 54, 0.42);
  color: #8c2f2f;
}
.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.admin-hero-compact {
  align-items: center;
}
.admin-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.admin-page-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(124, 149, 190, 0.18);
  border-radius: 10px;
  background: rgba(10, 22, 40, 0.78);
  color: rgba(226, 233, 247, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.admin-page-nav a:hover {
  border-color: rgba(129, 163, 228, 0.36);
  background: rgba(15, 31, 56, 0.9);
  color: #f4f7ff;
  transform: translateY(-1px);
}
.admin-page-nav a.is-active {
  border-color: rgba(111, 154, 242, 0.44);
  background: linear-gradient(180deg, rgba(38, 69, 130, 0.88), rgba(22, 46, 92, 0.92));
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.admin-overview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.admin-overview-card {
  text-decoration: none;
}
.admin-overview-card h3 {
  margin: 8px 0 10px;
}
.admin-overview-card p {
  margin: 0;
}
@media (max-width: 900px) {
  .admin-overview-grid {
    grid-template-columns: 1fr;
  }
}
.admin-shell .client-dashboard-shell {
  gap: 18px;
}
.admin-shell .client-dashboard-hero {
  padding: 22px 24px;
  border-radius: 12px;
  border-color: rgba(111, 142, 201, 0.16);
  background:
    radial-gradient(circle at top right, rgba(67, 104, 177, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(8, 18, 35, 0.98), rgba(10, 22, 42, 0.96));
  box-shadow: 0 20px 50px rgba(3, 10, 22, 0.34);
}
.admin-shell .client-dashboard-hero h1 {
  margin: 6px 0 8px;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  letter-spacing: -0.04em;
}
.admin-shell .client-dashboard-hero p {
  max-width: 64ch;
  margin: 0;
  color: rgba(223, 231, 244, 0.74);
}
.admin-shell .client-dashboard-actions {
  gap: 10px;
}
.admin-page-nav {
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(111, 142, 201, 0.14);
  border-radius: 12px;
  background: rgba(7, 18, 34, 0.62);
  backdrop-filter: blur(14px);
}
.admin-page-nav a {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 8px;
  border-color: rgba(124, 149, 190, 0.12);
  background: rgba(14, 28, 51, 0.62);
  color: rgba(229, 236, 248, 0.78);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}
.admin-page-nav a:hover {
  border-color: rgba(129, 163, 228, 0.28);
  background: rgba(20, 39, 71, 0.86);
}
.admin-page-nav a.is-active {
  border-color: rgba(123, 166, 246, 0.36);
  background: linear-gradient(180deg, rgba(38, 71, 133, 0.94), rgba(23, 47, 96, 0.96));
  box-shadow: 0 10px 26px rgba(10, 24, 53, 0.28);
}
.admin-shell .client-dashboard-stats {
  gap: 12px;
}
.admin-shell .client-mini-card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(111, 142, 201, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(12, 25, 45, 0.92), rgba(10, 20, 38, 0.9));
  box-shadow: 0 16px 38px rgba(4, 11, 22, 0.24);
}
.admin-shell .client-mini-card strong {
  font-size: 1.56rem;
  color: #f5f8ff;
}
.admin-shell .client-mini-card span {
  color: rgba(224, 232, 246, 0.72);
}
.admin-shell .client-dashboard-panel {
  gap: 16px;
}
.admin-shell .client-panel-card {
  padding: 22px;
  border-radius: 12px;
  border: 1px solid rgba(111, 142, 201, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 21, 39, 0.95), rgba(8, 17, 32, 0.93));
  box-shadow: 0 18px 42px rgba(4, 10, 21, 0.28);
}
.admin-shell .client-panel-card-light {
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(244,247,252,0.975));
  box-shadow: 0 18px 42px rgba(4, 10, 21, 0.12);
}
.admin-shell .client-panel-card h2 {
  margin: 4px 0 0;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -0.03em;
}
.admin-shell .client-list-grid {
  gap: 14px;
}
.admin-shell .admin-data-card {
  padding: 18px;
  border-radius: 10px;
  border: 1px solid rgba(111, 142, 201, 0.1);
  background: linear-gradient(180deg, rgba(12, 25, 46, 0.82), rgba(9, 18, 34, 0.84));
}
.admin-shell .admin-data-card .client-order-meta {
  margin-top: 12px;
  gap: 10px 16px;
}
.admin-shell .admin-data-card .client-order-note {
  color: rgba(224, 232, 246, 0.74);
}
.admin-shell .client-status-chip {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.78rem;
}
.admin-inline-editor {
  margin-top: 12px;
  gap: 8px;
}
.admin-inline-editor select,
.admin-reply-input {
  border-radius: 8px;
  border-color: rgba(17, 34, 61, 0.14);
  background: rgba(255, 255, 255, 0.985);
}
.admin-catalogue-panel {
  gap: 14px;
}
.admin-product-form {
  margin-top: 14px;
  gap: 12px;
}
.admin-product-form textarea {
  min-height: 104px;
}
.admin-form-actions {
  gap: 8px;
}
.admin-overview-grid {
  gap: 14px;
}
.admin-overview-card {
  padding: 18px;
  border-radius: 10px;
  border: 1px solid rgba(111, 142, 201, 0.12);
  background: linear-gradient(180deg, rgba(13, 27, 48, 0.86), rgba(9, 18, 34, 0.88));
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.admin-overview-card:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 166, 246, 0.28);
  background: linear-gradient(180deg, rgba(16, 33, 59, 0.92), rgba(10, 21, 40, 0.92));
}
.admin-overview-card h3 {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}
.admin-overview-card p {
  color: rgba(224, 232, 246, 0.72);
}
@media (max-width: 980px) {
  .admin-shell .client-dashboard-hero {
    padding: 20px;
  }
  .admin-page-nav {
    padding: 10px;
  }
  .admin-page-nav a {
    flex: 1 1 calc(50% - 8px);
  }
}
@media (max-width: 640px) {
  .admin-page-nav a {
    flex-basis: 100%;
  }
  .admin-shell .client-panel-card,
  .admin-shell .client-mini-card,
  .admin-shell .admin-data-card {
    padding: 16px;
  }
}
.admin-size-fieldset {
  margin: 0;
  padding: 14px 14px 12px;
  border: 1px solid rgba(111, 142, 201, 0.12);
  border-radius: 10px;
  background: rgba(8, 18, 34, 0.36);
}
.admin-size-fieldset legend {
  padding: 0 6px;
  color: #7ea4ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.admin-size-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.admin-size-option {
  position: relative;
  display: flex;
}
.admin-size-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.admin-size-option span {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(124, 149, 190, 0.16);
  border-radius: 8px;
  background: rgba(14, 28, 51, 0.66);
  color: rgba(232, 238, 248, 0.82);
  font-weight: 700;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.admin-size-option input:checked + span {
  border-color: rgba(123, 166, 246, 0.34);
  background: linear-gradient(180deg, rgba(38, 71, 133, 0.94), rgba(23, 47, 96, 0.96));
  color: #fff;
}
.admin-image-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.admin-image-preview-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(111, 142, 201, 0.12);
  border-radius: 10px;
  background: rgba(10, 20, 38, 0.82);
}
.admin-image-preview-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.admin-image-preview-card figcaption,
.admin-image-empty {
  padding: 10px 12px;
  color: rgba(224, 232, 246, 0.72);
  font-size: 0.85rem;
}
.admin-product-thumb {
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 10px;
}
.admin-product-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.badge-stock-out {
  background: rgba(156, 69, 69, 0.16);
  color: #b94d4d;
  border-color: rgba(156, 69, 69, 0.22);
}
.product-actions .btn[disabled],
.product-actions .btn[aria-disabled="true"] {
  opacity: 0.62;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 900px) {
  .admin-size-grid,
  .admin-image-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .admin-size-grid,
  .admin-image-preview-grid {
    grid-template-columns: 1fr;
  }
}
.admin-products-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.admin-products-count {
  color: rgba(224, 232, 246, 0.74);
  font-size: 0.95rem;
  font-weight: 700;
}
.admin-products-filters {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(180px, 0.7fr));
  gap: 12px;
  margin-top: 16px;
}
.admin-products-filters label {
  display: grid;
  gap: 6px;
}
.admin-products-filters span {
  color: #7ea4ff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.admin-products-filters input,
.admin-products-filters select {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(111, 142, 201, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--navy);
  font: inherit;
}
@media (max-width: 980px) {
  .admin-products-filters {
    grid-template-columns: 1fr;
  }
}
.admin-products-filters-extended {
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(180px, 0.7fr));
}
.admin-products-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.admin-products-page {
  color: rgba(224, 232, 246, 0.72);
  font-weight: 700;
}
.admin-products-pagination .btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 1100px) {
  .admin-products-filters-extended {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .admin-products-filters-extended,
  .admin-products-pagination {
    grid-template-columns: 1fr;
  }
  .admin-products-pagination {
    justify-content: flex-start;
  }
}
.admin-price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.admin-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  background: #e52045;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}
.admin-card-prices {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-card-price {
  color: var(--navy);
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
}
.admin-card-price-old {
  color: rgba(110, 121, 141, 0.9);
  text-decoration: line-through;
  font-weight: 700;
}
.product-card-retail {
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.995), rgba(247,249,252,0.985));
  box-shadow: 0 18px 38px rgba(7, 18, 36, 0.14);
}
.product-card-retail::before {
  display: none;
}
.product-card-image-retail {
  aspect-ratio: 0.78;
  background: #f2f4f7;
}
.product-card-retail .product-card-image-retail img {
  object-fit: cover;
}
.product-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 8px;
  background: #e50039;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(229, 0, 57, 0.18);
}
.product-image-cta {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, #27b8f1, #1694d6);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(26, 148, 214, 0.24);
}
.product-card-body-retail {
  gap: 12px;
  padding: 16px 14px 14px;
}
.product-color-row {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 18px;
}
.product-color-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 59, 0.12);
  background: var(--dot, #d3d9e3);
}
.product-color-more {
  color: #3558b5;
  font-size: 0.85rem;
  font-weight: 700;
}
.product-card-copy h3 {
  margin: 0 0 3px;
  font-size: 1.03rem;
  color: var(--navy);
}
.product-card-retail .product-description {
  margin: 0;
  color: #30415e;
  font-size: 0.95rem;
  line-height: 1.45;
}
.product-price-prefix {
  color: #2f4362;
  font-size: 0.95rem;
  font-weight: 700;
}
.product-retail-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}
.product-retail-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.product-card-retail .product-price {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1;
}
.product-price-old {
  color: #d12e45;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: line-through;
}
.product-buy-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #89c756, #74b448);
  box-shadow: none;
  flex: 0 0 auto;
}
.product-buy-btn:hover {
  background: linear-gradient(180deg, #80be50, #6ba840);
}
@media (max-width: 980px) {
  .admin-price-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .product-retail-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .product-buy-btn {
    width: 100%;
  }
}
.product-card-retail {
  border-radius: 10px;
  border: 1px solid rgba(18, 36, 64, 0.08);
  box-shadow: 0 16px 34px rgba(7, 18, 36, 0.12);
}
.product-card-image-retail {
  aspect-ratio: 0.76;
}
.product-discount-badge {
  top: 12px;
  left: 12px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 9px;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}
.product-image-cta {
  right: 12px;
  bottom: 12px;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 9px;
  font-size: 0.82rem;
}
.product-card-body-retail {
  gap: 10px;
  padding: 14px 14px 13px;
}
.product-color-row {
  gap: 8px;
}
.product-color-dot {
  width: 17px;
  height: 17px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}
.product-color-more {
  font-size: 0.82rem;
  color: #4b63b8;
}
.product-card-copy h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.product-card-retail .product-description {
  color: #42516c;
  font-size: 0.92rem;
  line-height: 1.38;
}
.product-price-prefix {
  font-size: 0.88rem;
  color: #263653;
}
.product-retail-footer {
  gap: 10px;
  align-items: center;
}
.product-retail-prices {
  gap: 7px;
}
.product-card-retail .product-price {
  font-size: 1.9rem;
  letter-spacing: -0.05em;
}
.product-price-old {
  font-size: 0.95rem;
  color: #d73d53;
}
.product-buy-btn {
  min-width: 112px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  background: linear-gradient(180deg, #8fcb5f, #73b348);
  box-shadow: 0 10px 18px rgba(115, 179, 72, 0.18);
}
.product-buy-btn:hover {
  background: linear-gradient(180deg, #86c156, #6ca641);
}
.product-actions .product-buy-btn[disabled],
.product-actions .product-buy-btn[aria-disabled="true"] {
  background: linear-gradient(180deg, #9aa5b6, #828c9c);
  box-shadow: none;
}
@media (max-width: 640px) {
  .product-card-image-retail {
    aspect-ratio: 0.84;
  }
  .product-card-retail .product-price {
    font-size: 1.7rem;
  }
}

.category-empty-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.category-empty-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.category-back-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
}

.category-back-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.36);
}

.catalogue-hero-panel h1 {
  font-size: clamp(2.2rem, 4.9vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 12ch;
}

@media (max-width: 900px) {
  .catalogue-hero-panel h1 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    max-width: 100%;
  }
}

.catalogue-search-card {
  overflow: hidden;
}

.catalogue-search-thumb {
  display: block;
  width: 100%;
  height: 92px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid rgba(127, 156, 199, 0.18);
  background: rgba(12, 26, 48, 0.08);
}

.catalogue-search-card strong {
  margin-top: 2px;
}

@media (max-width: 920px) {
  .catalogue-search-thumb {
    height: 84px;
  }
}

.catalogue-search-card {
  position: relative;
  display: block;
  min-height: 178px;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
}

.catalogue-search-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 14, 26, 0.08) 0%, rgba(6, 14, 26, 0.18) 38%, rgba(6, 14, 26, 0.78) 100%);
  z-index: 1;
}

.catalogue-search-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  background: rgba(12, 26, 48, 0.08);
}

.catalogue-search-card strong {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  margin-top: 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.08rem;
  line-height: 1.1;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.catalogue-search-card span {
  display: none;
}

.catalogue-search-card:hover,
.catalogue-search-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(58, 105, 199, 0.3);
  box-shadow: 0 18px 36px rgba(8, 19, 38, 0.16);
}

.catalogue-search-card.is-active strong,
.catalogue-search-card:hover strong,
.catalogue-search-card:focus-visible strong {
  color: #ffffff;
  text-decoration: none;
}

.catalogue-search-card:focus-visible {
  outline: 2px solid rgba(129, 172, 255, 0.46);
  outline-offset: 2px;
}

.catalogue-search-card--enfant .catalogue-search-thumb {
  transform: scale(1.28);
  transform-origin: center center;
}



.catalogue-search-note {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(127, 156, 199, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.catalogue-search-note p {
  margin: 0;
  max-width: 760px;
  color: rgba(235, 242, 255, 0.82);
  line-height: 1.6;
}

.catalogue-search-note-btn {
  white-space: nowrap;
}

@media (max-width: 920px) {
  .catalogue-search-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalogue-search-note-btn {
    width: 100%;
  }
}

.header-account,
.header-account:hover,
.header-account:focus-visible,
.mobile-client-entry,
.mobile-client-entry:hover,
.mobile-client-entry:focus-visible {
  text-decoration: none;
}

.header-account,
.mobile-client-entry {
  gap: 10px;
}

.header-account svg,
.mobile-client-entry svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}

.galerie-page-hero {
  padding-top: clamp(34px, 5vw, 56px);
}

.galerie-shell {
  width: var(--container);
}

.galerie-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

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

.galerie-card {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(127, 156, 199, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 36px rgba(8, 19, 38, 0.14);
}

.galerie-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .galerie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .galerie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

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

.galerie-card img {
  transition: transform 0.35s ease;
}

.galerie-card:hover img,
.galerie-card:focus-within img {
  transform: scale(1.06);
}

.admin-hero-compact .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
}

.admin-hero-compact .btn-outline:hover,
.admin-hero-compact .btn-outline:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.36);
}

.admin-login-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #07111f 0%, #0a1830 100%);
}

.admin-login-screen {
  min-height: 100vh;
}

.admin-login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 28px;
}

.admin-login-wrap {
  width: min(460px, calc(100vw - 28px));
  margin: 0 auto;
}

.admin-login-panel {
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.998), rgba(247,249,253,0.992));
  border: 1px solid rgba(183, 195, 219, 0.6);
  box-shadow: 0 30px 70px rgba(4, 12, 26, 0.35);
}

.admin-login-brand {
  padding: 36px 32px 30px;
  text-align: center;
}

.admin-login-emblem {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: #2f69d1;
}

.admin-login-emblem svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.admin-login-brand h1 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 2.55rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: #0f2242;
}

.admin-login-brand p {
  margin: 10px 0 0;
  color: #8ca0c4;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.admin-login-divider {
  height: 1px;
  background: rgba(207, 216, 231, 0.74);
}

.admin-login-form {
  display: grid;
  gap: 16px;
  padding: 28px 30px 26px;
}

.admin-login-field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 18px;
  border-radius: 16px;
  border: 2px solid rgba(47, 105, 209, 0.92);
  background: #ffffff;
}

.admin-login-field--muted {
  border-color: rgba(204, 214, 229, 0.9);
  background: rgba(244, 247, 252, 0.98);
}

.admin-login-field-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f69d1;
}

.admin-login-field--muted .admin-login-field-icon {
  color: #92a3c0;
}

.admin-login-field-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.admin-login-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #213457;
  font-size: 1rem;
  font-weight: 500;
}

.admin-login-field input::placeholder {
  color: #6f84a8;
}

.admin-login-submit {
  min-height: 56px;
  margin-top: 8px;
  border-radius: 14px;
  border: 0;
  background: linear-gradient(180deg, #2c5fbe, #214a95);
  box-shadow: 0 14px 28px rgba(28, 66, 133, 0.22);
  color: #ffffff;
  font-size: 1.08rem;
}

.admin-login-submit:hover {
  box-shadow: 0 18px 34px rgba(28, 66, 133, 0.28);
}

.admin-login-status {
  min-height: 24px;
  margin: 0;
  text-align: center;
}

.admin-login-footer {
  padding: 18px 24px 20px;
  border-top: 1px solid rgba(207, 216, 231, 0.74);
  text-align: center;
  color: #90a2c0;
  font-size: 0.88rem;
}

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

@media (max-width: 560px) {
  .admin-login-wrap {
    width: min(100vw - 20px, 460px);
  }

  .admin-login-brand {
    padding: 30px 22px 24px;
  }

  .admin-login-form {
    padding: 24px 18px 22px;
  }

  .admin-login-field {
    min-height: 58px;
    padding: 0 16px;
    border-radius: 14px;
  }
}


.admin-docs-panel,
.admin-docs-list-card {
  gap: 16px;
}

.admin-doc-form {
  display: grid;
  gap: 16px;
}

.admin-doc-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-doc-grid-full {
  grid-column: 1 / -1;
}

.admin-doc-lines {
  display: grid;
  gap: 12px;
}

.admin-doc-lines-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-doc-lines-list {
  display: grid;
  gap: 10px;
}

.admin-doc-line {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) 110px 140px auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(111, 142, 201, 0.12);
  border-radius: 10px;
  background: rgba(8, 18, 34, 0.32);
}

.admin-doc-line input {
  min-width: 0;
}

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

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

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

  .admin-doc-lines-head,
  .admin-doc-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.catalogue-dev-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

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

.catalogue-dev-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 24, 0.72);
  backdrop-filter: blur(6px);
}

.catalogue-dev-modal__dialog {
  position: relative;
  width: min(560px, calc(100vw - 32px));
  padding: 28px 28px 24px;
  border: 1px solid rgba(126, 160, 214, 0.2);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(14, 27, 48, 0.98), rgba(10, 21, 38, 0.96));
  box-shadow: 0 30px 70px rgba(3, 9, 20, 0.42);
  text-align: left;
}

.catalogue-dev-modal__dialog .section-label {
  margin-bottom: 14px;
}

.catalogue-dev-modal__dialog h2 {
  margin: 0 0 12px;
  color: #f5f8ff;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.catalogue-dev-modal__dialog p {
  margin: 0 0 20px;
  color: rgba(230, 238, 250, 0.82);
  line-height: 1.65;
  max-width: 46ch;
}

.catalogue-dev-modal__dialog .btn {
  min-width: 170px;
}

@media (max-width: 640px) {
  .catalogue-dev-modal {
    padding: 18px;
  }

  .catalogue-dev-modal__dialog {
    padding: 22px 20px 20px;
  }

  .catalogue-dev-modal__dialog .btn {
    width: 100%;
  }
}

.page-empty-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-empty-layout .page-empty-main {
  flex: 1 0 auto;
  min-height: 0;
}

.page-empty-layout .footer-band {
  margin-top: 0;
}


/* Responsive hardening pass */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.category-empty-page,
.page-empty-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.category-empty-main,
.page-empty-main {
  flex: 1 0 auto;
}

@media (max-width: 1180px) {
  :root {
    --container: min(100vw - 40px, 1120px);
    --section-space: clamp(72px, 8vw, 110px);
  }

  .nav-shell {
    min-height: 76px;
    gap: 16px;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 20px;
  }

  .hero-copy,
  .page-hero-panel,
  .page-hero-side {
    padding: clamp(24px, 3vw, 34px);
  }

  .admin-page-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .admin-page-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100vw - 28px, 1000px);
    --section-space: clamp(56px, 9vw, 86px);
  }

  .page-shell {
    padding-top: 16px;
  }

  .nav-shell {
    gap: 12px;
    min-height: 72px;
  }

  .logo {
    gap: 10px;
    min-width: 0;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo-title {
    font-size: 0.92rem;
    letter-spacing: 0.05em;
  }

  .logo-subtitle {
    font-size: 0.61rem;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cart {
    min-height: 42px;
    padding: 0 12px;
  }

  .hero,
  .section {
    padding-top: 32px;
    padding-bottom: clamp(64px, 8vw, 84px);
  }

  .hero-grid,
  .page-hero-grid,
  .home-proof-layout,
  .client-overview-grid,
  .client-support-grid,
  .contact-main-grid,
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalogue-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .client-dashboard-hero,
  .client-panel-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .client-dashboard-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .client-auth-grid-simple .client-auth-panel {
    grid-template-columns: 1fr !important;
    max-width: 720px;
  }

  .client-auth-grid-simple .client-auth-card form {
    max-width: 100%;
  }

  .admin-shell .client-dashboard-hero {
    padding: 20px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 20px, 1000px);
    --section-space: clamp(44px, 8vw, 72px);
  }

  body::before {
    background-size: 72px 72px;
    opacity: 0.08;
  }

  .site-header {
    backdrop-filter: blur(12px) saturate(130%);
  }

  .nav-shell {
    min-height: 66px;
  }

  .logo-title {
    font-size: 0.84rem;
    letter-spacing: 0.04em;
  }

  .logo-subtitle {
    font-size: 0.57rem;
    letter-spacing: 0.04em;
  }

  .header-cart {
    min-height: 40px;
    padding: 0 10px;
  }

  .header-cart > span:first-of-type {
    display: none;
  }

  .btn,
  button.btn {
    min-height: 46px;
    padding: 0 18px;
  }

  .hero-copy,
  .page-hero-panel,
  .page-hero-side,
  .product-card,
  .gallery-card,
  .cart-card {
    padding: 20px;
  }

  h1 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  h2 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .inline-actions,
  .hero-actions,
  .footer-actions,
  .pricing-actions,
  .contact-banner-actions {
    gap: 10px;
  }

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

  .catalogue-search-grid,
  .galerie-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-search-note {
    padding: 16px;
    gap: 12px;
  }

  .footer-band-inner {
    gap: 8px;
  }

  .page-empty-main,
  .category-empty-main {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .category-back-btn {
    width: 100%;
  }

  .client-inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .client-inline-actions .btn {
    width: 100%;
  }

  .client-preview-link-row {
    justify-content: center;
  }

  .admin-page-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .admin-page-nav a {
    width: 100%;
    min-height: 42px;
  }
}

@media (max-width: 560px) {
  .mobile-nav-panel {
    padding: 14px;
  }

  .header-cart {
    min-width: 46px;
    justify-content: center;
  }

  .cart-count {
    min-width: 24px;
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .hero,
  .section {
    padding-bottom: 56px;
  }

  .contact-meta-line span {
    width: 100%;
    justify-content: flex-start;
  }

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

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

@media (max-width: 920px) {
  .client-dashboard-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .client-dashboard-tab {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-note,
  .contact-shipping-logos,
  .contact-meta-line {
    gap: 8px 12px;
  }

  .hero-note span,
  .contact-meta-line span {
    min-height: 0;
  }

  .contact-map-frame iframe {
    min-height: 300px;
  }

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

@media (max-width: 640px) {
  .client-dashboard-tabs {
    grid-template-columns: 1fr;
  }

  .contact-map-frame iframe {
    min-height: 260px;
  }

  .hero-note span,
  .contact-meta-line span,
  .contact-shipping-logos img {
    width: auto;
  }

  .hero-shipping-strip,
  .contact-shipping-strip {
    gap: 10px;
  }

  .home-proof-panel ul {
    gap: 10px;
  }
}

/* Mobile header final override */
.logo-text {
  min-width: 0;
}

.logo-title,
.logo-subtitle {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-nav[hidden],
.mobile-menu-panel[hidden] {
  display: none !important;
}

@media (max-width: 920px) {
  .nav-shell,
  .nav-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 68px;
  }

  .main-nav,
  .header-cart,
  .header-account,
  .header-actions .btn,
  .nav-wrap > .btn {
    display: none !important;
  }

  .header-actions {
    justify-content: flex-end;
    gap: 0;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }

  .mobile-nav,
  .mobile-menu-panel {
    display: none;
  }

  .mobile-nav:not([hidden]),
  .mobile-menu-panel:not([hidden]) {
    display: block;
  }

  .logo {
    max-width: 100%;
    gap: 10px;
  }

  .logo img,
  .logo-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .logo-title,
  .nav-wrap .logo span {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .logo-subtitle {
    font-size: 0.54rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .mobile-nav-panel,
  .mobile-menu-panel {
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .mobile-nav-panel {
    gap: 4px;
  }

  .mobile-nav a,
  .mobile-menu-panel a {
    padding: 12px 0;
    font-size: 1rem;
  }

  .mobile-client-entry,
  .mobile-menu-cta,
  .mobile-nav-panel .btn,
  .mobile-menu-panel .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .nav-wrap {
    min-height: 62px;
    gap: 8px;
  }

  .logo {
    gap: 8px;
  }

  .logo img,
  .logo-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .logo-title,
  .nav-wrap .logo span {
    font-size: 0.74rem;
  }

  .logo-subtitle {
    display: none;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-nav-panel,
  .mobile-menu-panel {
    padding: 12px;
  }
}

/* Mobile header polish */
.mobile-menu-toggle span {
  margin: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-menu-toggle {
  gap: 4px;
  flex-direction: column;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 560px) {
  .logo-subtitle {
    display: block;
    font-size: 0.5rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    gap: 3px;
  }

  .mobile-menu-toggle span {
    width: 17px;
  }
}


.client-dashboard-hero.admin-hero-compact .btn-outline {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}
.client-dashboard-hero.admin-hero-compact .btn-outline:hover,
.client-dashboard-hero.admin-hero-compact .btn-outline:focus-visible {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.36);
}

.client-overview-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.client-overview-link-card {
  display: grid;
  gap: 10px;
  min-height: 100%;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.client-overview-link-card p {
  margin: 0;
}
.client-overview-link-card:hover,
.client-overview-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(129, 172, 255, 0.28);
  background: linear-gradient(160deg, rgba(12, 27, 52, 0.98), rgba(20, 43, 82, 0.94));
}
@media (max-width: 980px) {
  .client-overview-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .client-overview-links {
    grid-template-columns: 1fr;
  }
}

/* Client dashboard polish */
.client-dashboard-hero {
  border: 1px solid rgba(127, 156, 199, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(8, 18, 35, 0.97), rgba(16, 34, 68, 0.93)),
    radial-gradient(circle at top left, rgba(129, 172, 255, 0.14), transparent 34%);
  box-shadow: 0 24px 54px rgba(2, 8, 20, 0.26);
}

.client-dashboard-panel {
  border: 1px solid rgba(127, 156, 199, 0.14);
  border-radius: 18px;
  background: rgba(8, 18, 35, 0.38);
  box-shadow: 0 18px 36px rgba(4, 10, 24, 0.16);
}

.client-overview-link-card,
.client-profile-card {
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(4, 12, 26, 0.12);
}

.client-dashboard-section .client-dashboard-actions .btn-outline,
.client-dashboard-section .client-dashboard-actions .btn-outline:visited,
.client-dashboard-section .client-dashboard-actions a.btn-outline {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.client-dashboard-section .client-dashboard-actions .btn-outline:hover,
.client-dashboard-section .client-dashboard-actions .btn-outline:focus-visible,
.client-dashboard-section .client-dashboard-actions a.btn-outline:hover,
.client-dashboard-section .client-dashboard-actions a.btn-outline:focus-visible {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.46) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 920px) {
  .client-dashboard-hero {
    padding: 22px;
  }

  .client-dashboard-panel {
    padding: 18px;
  }
}

@media (max-width: 560px) {
  .client-dashboard-hero {
    padding: 18px;
    border-radius: 14px;
  }

  .client-dashboard-panel,
  .client-overview-link-card,
  .client-profile-card {
    border-radius: 14px;
  }
}

/* Client profile compact form */
.client-profile-card-compact {
  gap: 14px;
}

.client-profile-card-head {
  display: grid;
  gap: 8px;
}

.client-profile-card-compact h2 {
  margin: 0;
}

.client-form-grid-compact {
  gap: 12px;
}

.client-form-grid-compact label {
  gap: 6px;
}

.client-form-grid-compact span {
  font-size: 0.74rem;
  line-height: 1;
}

.client-form-grid-compact input,
.client-form-grid-compact select {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 9px;
}

.client-form-grid-compact .client-form-two {
  gap: 10px;
}

.client-form-address-row {
  align-items: end;
}

.client-form-help,
.client-form-inline-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(224, 232, 246, 0.76);
}

.client-form-inline-note.is-success {
  color: #9fe0af;
}

.client-form-inline-note.is-error {
  color: #ff9a9a;
}

.client-form-inline-note.is-muted {
  color: rgba(224, 232, 246, 0.7);
}

@media (max-width: 760px) {
  .client-profile-card-compact {
    padding: 18px;
  }

  .client-form-grid-compact {
    gap: 10px;
  }
}

.client-city-field {
  position: relative;
}

.client-city-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 12;
  display: grid;
  gap: 4px;
  max-height: 220px;
  padding: 8px;
  overflow-y: auto;
  border: 1px solid rgba(127, 156, 199, 0.18);
  border-radius: 10px;
  background: rgba(10, 23, 44, 0.98);
  box-shadow: 0 18px 32px rgba(4, 12, 26, 0.24);
}

.client-city-suggestions[hidden] {
  display: none;
}

.client-city-suggestion {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #f2f6ff;
  text-align: left;
  cursor: pointer;
}

.client-city-suggestion:hover,
.client-city-suggestion:focus-visible {
  background: rgba(129, 172, 255, 0.18);
  outline: none;
}


/* Admin invoice databases */
.admin-invoice-data-panel {
  margin-top: 18px;
}
.admin-invoice-data-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.admin-invoice-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.admin-invoice-data-grid-reference {
  grid-template-columns: minmax(120px, 0.7fr) minmax(220px, 1.6fr) minmax(120px, 0.7fr);
}
.admin-invoice-data-span {
  grid-column: 1 / -1;
}
.admin-invoice-data-form label,
.admin-invoice-select-row {
  display: grid;
  gap: 7px;
  color: rgba(218, 228, 245, 0.82);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.admin-invoice-data-form input,
.admin-invoice-select-row select {
  min-height: 42px;
  border: 1px solid rgba(129, 163, 228, 0.22);
  border-radius: 10px;
  padding: 0 12px;
  background: rgba(235, 241, 251, 0.96);
  color: var(--navy);
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}
.admin-invoice-data-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.admin-invoice-data-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.admin-invoice-data-card {
  padding: 16px;
}
.admin-invoice-reference-tools {
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
}
.admin-invoice-reference-tools .admin-invoice-select-row {
  width: 100%;
}
@media (max-width: 760px) {
  .admin-invoice-data-grid,
  .admin-invoice-data-grid-reference,
  .admin-invoice-reference-tools {
    grid-template-columns: 1fr;
  }
}
