.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-copy {
  display: none;
  min-width: 0;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.9;
  color: rgb(55 36 46);
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(141 90 114);
  white-space: nowrap;
}

.brand-logo {
  width: 84px;
  flex: none;
  border-radius: 28px;
  border: 1px solid rgba(205, 142, 161, 0.24);
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(141, 90, 114, 0.12);
}

.mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  margin-left: auto;
  border: 1px solid rgba(205, 142, 161, 0.24);
  border-radius: 9999px;
  background-color: rgba(255, 250, 252, 0.9);
  box-shadow: 0 18px 48px rgba(141, 90, 114, 0.12);
  color: rgb(82 63 73);
  padding: 0.8rem 1rem;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.mobile-nav-toggle:hover {
  border-color: rgba(141, 90, 114, 0.34);
  background-color: rgba(255, 255, 255, 0.95);
  color: rgb(55 36 46);
}

.mobile-nav-toggle:focus-visible {
  outline: 2px solid rgba(141, 90, 114, 0.34);
  outline-offset: 3px;
}

.mobile-nav-toggle-box {
  display: grid;
  gap: 0.22rem;
  width: 1rem;
}

.mobile-nav-toggle-box span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 9999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.mobile-nav-toggle-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-nav-panel {
  position: absolute;
  inset: 100% 0 auto;
  padding: 0 0 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 248, 251, 0.96), rgba(249, 232, 238, 0.94));
  box-shadow: 0 30px 70px rgba(141, 90, 114, 0.1);
}

.mobile-nav {
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(205, 142, 161, 0.22);
  border-radius: 28px;
  background-color: rgba(255, 252, 253, 0.96);
  box-shadow: 0 24px 60px rgba(141, 90, 114, 0.08);
  padding: 0.55rem;
}

.mobile-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.mobile-nav .nav-link::after {
  content: "→";
  font-size: 0.9rem;
  color: rgba(141, 90, 114, 0.78);
  transition: transform 0.18s ease, color 0.18s ease;
}

.mobile-nav .nav-link:hover::after {
  transform: translateX(2px);
  color: rgb(141 90 114);
}

.mobile-nav .nav-link.is-active::after {
  color: rgba(255, 255, 255, 0.9);
}

.footer-logo {
  width: min(240px, 60vw);
  border-radius: 40px;
}

.footer-brand-column {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.footer-copy {
  margin-top: 0.95rem;
  max-width: 29ch;
  line-height: 1.88;
  color: rgb(96 80 89);
}

.footer-contact-block {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-contact-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(141 90 114);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  width: fit-content;
  max-width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(205, 142, 161, 0.2);
  background-color: rgba(255, 250, 252, 0.78);
  padding: 0.72rem 0.95rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgb(82 63 73);
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.footer-contact-link:hover {
  border-color: rgba(141, 90, 114, 0.28);
  background-color: rgba(255, 255, 255, 0.92);
  color: rgb(55 36 46);
}

.footer-contact-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  flex: none;
  border-radius: 12px;
  background: linear-gradient(145deg, rgb(141, 90, 114), rgb(197, 144, 163));
  color: rgb(255, 255, 255);
}

.footer-contact-icon svg {
  width: 1rem;
  height: 1rem;
}

body[data-page="home"] .stat-card-option strong {
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

@media (min-width: 640px) {
  .brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
}

@media (min-width: 768px) {
  .brand-logo {
    width: 94px;
  }

  .mobile-nav-toggle {
    padding-inline: 1.08rem;
  }

  .footer-copy {
    max-width: 31ch;
  }

  body[data-page="home"] .stat-card-option strong {
    font-size: 1.68rem;
  }
}

@media (min-width: 1024px) {
  .mobile-nav-toggle,
  .mobile-nav-panel {
    display: none !important;
  }

  body[data-page="home"] .nav-shell,
  body[data-page="catalog"] .nav-shell,
  body[data-page="product"] .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
  }

  body[data-page="home"] .brand-link,
  body[data-page="catalog"] .brand-link,
  body[data-page="product"] .brand-link {
    grid-column: 1;
    justify-self: start;
  }

  body[data-page="home"] .site-nav,
  body[data-page="catalog"] .site-nav,
  body[data-page="product"] .site-nav {
    grid-column: 2;
    justify-self: center;
    margin: 0;
  }
}

.order-card {
  border: 1px solid rgba(226, 190, 202, 0.8);
  background:
    radial-gradient(circle at top right, rgba(215, 239, 236, 0.48), transparent 34%),
    linear-gradient(180deg, rgba(255, 251, 252, 0.98), rgba(255, 246, 249, 0.96));
  box-shadow: 0 28px 70px rgba(141, 90, 114, 0.1);
}

.detail-layout {
  align-items: start;
}

.media-card {
  align-self: start;
}

.detail-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.hero-note {
  display: grid;
  align-content: start;
  gap: 0;
}

.hero-gallery {
  align-items: start;
}

.hero-tile {
  display: block;
}

.hero-gallery .hero-tile:first-child,
.hero-gallery .hero-tile:nth-child(4) {
  transform: none;
}

.hero-note .eyebrow {
  display: block;
  margin: 0 0 0.65rem;
}

.hero-note h2,
.hero-title {
  margin: 0 0 1rem;
  line-height: 0.92;
}

.hero-note p:last-child {
  margin: 0;
  line-height: 1.85;
}

.back-link {
  margin-bottom: 1.4rem;
}

#commande {
  scroll-margin-top: 8.5rem;
}

body[data-page="catalog"] .filter-panel {
  margin-bottom: 1.5rem;
}

.hero-support-copy {
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgb(102, 89, 98);
}

.cta-band .button {
  align-self: center;
  flex: none;
}

.footer-link-list,
.footer-checklist {
  display: grid;
  gap: 0.68rem;
  margin-top: 0.95rem;
}

.footer-link-list a {
  position: relative;
  display: inline-flex;
  padding-left: 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgb(82, 63, 73);
  transition: color 0.18s ease;
}

.footer-link-list a::before {
  content: "";
  position: absolute;
  top: 0.78rem;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 9999px;
  background: rgb(141, 90, 114);
}

.footer-link-list a:hover {
  color: rgb(55, 36, 46);
}

.footer-checklist li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgb(90, 72, 80);
}

.footer-checklist li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 9999px;
  background: rgb(197, 144, 163);
}

.footer-social-link {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(205, 142, 161, 0.2);
  background-color: rgba(255, 250, 252, 0.78);
  padding: 0.9rem 1rem;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.footer-social-link:hover {
  border-color: rgba(141, 90, 114, 0.28);
  background-color: rgba(255, 255, 255, 0.92);
}

.footer-social-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  flex: none;
  border-radius: 9999px;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.footer-social-icon svg {
  width: 100%;
  height: 100%;
}

.footer-social-label {
  display: grid;
  gap: 0.18rem;
}

.footer-social-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(141, 90, 114);
}

.footer-social-label strong {
  font-size: 1rem;
  line-height: 1.3;
  color: rgb(55, 36, 46);
}

.footer-social-copy {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgb(99, 88, 95);
}

.footer-mini-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgb(120, 113, 108);
}

@media (min-width: 768px) {
  .hero-note .eyebrow {
    margin-bottom: 0.8rem;
  }

  .hero-note h2,
  .hero-title {
    margin-bottom: 1.1rem;
  }

  .back-link {
    margin-bottom: 1.75rem;
  }

  body[data-page="catalog"] .filter-panel {
    margin-bottom: 1.85rem;
  }

  .hero-support-copy {
    font-size: 0.98rem;
  }

  .footer-link-list,
  .footer-checklist {
    gap: 0.72rem;
  }
}


.order-card-header {
  display: grid;
  gap: 1rem;
}

.order-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  border-radius: 9999px;
  border: 1px solid rgba(205, 142, 161, 0.25);
  background-color: rgba(255, 248, 251, 0.92);
  padding: 0.5rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(141, 90, 114);
}

.order-pill svg {
  width: 1rem;
  height: 1rem;
  color: rgb(205, 142, 161);
}

.order-intro {
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.9;
  color: rgb(87, 83, 78);
}

.order-info-grid {
  margin-top: 1.65rem;
  display: grid;
  gap: 1.15rem;
}

.order-info-card {
  display: grid;
  grid-template-columns: 3.1rem minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  border-radius: 28px;
  border: 1px solid rgba(226, 190, 202, 0.75);
  background-color: rgba(255, 249, 251, 0.88);
  padding: 1.35rem 1.45rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.order-info-card-soft {
  background:
    linear-gradient(135deg, rgba(255, 247, 250, 0.98), rgba(252, 239, 244, 0.94));
}

.order-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  flex: none;
  border-radius: 20px;
  background: linear-gradient(145deg, rgb(141, 90, 114), rgb(197, 144, 163));
  color: rgb(255, 255, 255);
  box-shadow: 0 16px 36px rgba(141, 90, 114, 0.18);
}

.order-info-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.order-info-copy h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: rgb(55, 36, 46);
}

.order-info-copy p {
  margin-top: 0.5rem;
  max-width: 48ch;
  font-size: 0.96rem;
  line-height: 1.9;
  color: rgb(99, 88, 95);
}

.order-cta {
  margin-top: 1.85rem;
  display: grid;
  gap: 1rem;
}

.order-action-row {
  margin-top: 0;
}

.order-action-row .button {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  box-shadow: 0 20px 40px rgba(141, 90, 114, 0.18);
}

.order-cta-note {
  max-width: 48ch;
  font-size: 0.94rem;
  line-height: 1.75;
  color: rgb(102, 89, 98);
}

@media (min-width: 768px) {
  .order-action-row .button {
    width: auto;
    min-width: 19rem;
  }
}
