body {
  background-color: #fcf9f8;
  color: #1b1c1c;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
}

html {
  scroll-behavior: smooth;
}

:root {
  --pourl-site-header-height: 6.5rem;
  --pourl-viewport-height: 100svh;
}

@media (min-width: 768px) {
  :root {
    --pourl-site-header-height: 9rem;
    --pourl-viewport-height: 100dvh;
  }
}

/* Admin bar offset for sticky header */
.admin-bar .pourl-site-header {
  top: var(--wp-admin--admin-bar--height, 32px);
}

.pourl-site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(0, 37, 30, 0.08);
}

/* Barre supérieure contact + livraison */
.pourl-top-bar a {
  text-decoration: none;
}

/* Accueil mobile — header compact pour laisser place au slider */
@media (max-width: 767px) {
  .home .pourl-top-bar > div {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .home .pourl-top-bar a {
    min-width: 0;
    font-size: 0.625rem;
    letter-spacing: 0.04em;
  }

  .home .pourl-top-bar a span.font-medium {
    display: none;
  }

  .home .pourl-top-bar p {
    margin: 0;
    min-width: 0;
    font-size: 0.5625rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home .pourl-header-bar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .home .pourl-logo--header {
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    max-width: 3rem;
  }
}

/* Bouton flottant WhatsApp — au-dessus de la nav mobile */
.pourl-whatsapp-float {
  right: 1.25rem;
  bottom: 5.5rem;
}

@media (min-width: 768px) {
  .pourl-whatsapp-float {
    bottom: 1.5rem;
  }
}

.pourl-mobile-nav .pourl-whatsapp-float {
  bottom: 5.5rem;
}

/* Panier latéral (drawer) */
.pourl-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.pourl-cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.pourl-cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 37, 30, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.pourl-cart-drawer.is-open .pourl-cart-drawer__backdrop {
  opacity: 1;
}

.pourl-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(100%, 420px);
  max-width: 100vw;
  background: #fcf9f8;
  box-shadow: -8px 0 32px rgba(0, 37, 30, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pourl-cart-drawer.is-open .pourl-cart-drawer__panel {
  transform: translateX(0);
}

.pourl-cart-drawer__body {
  -webkit-overflow-scrolling: touch;
}

body.pourl-cart-drawer-open {
  overflow: hidden;
}

/* Recherche live — modal Pour L */
.pourl-search {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.35s ease;
}

.pourl-search.is-open {
  pointer-events: auto;
  visibility: visible;
}

.pourl-search__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(254, 212, 136, 0.12), transparent 55%),
    linear-gradient(160deg, rgba(0, 37, 30, 0.72) 0%, rgba(0, 25, 20, 0.88) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}

.pourl-search.is-open .pourl-search__backdrop {
  opacity: 1;
}

.pourl-search__panel {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 680px);
  max-height: min(90vh, 760px);
  margin: 6vh auto 0;
  background:
    linear-gradient(180deg, #fffcf7 0%, #fcf9f8 40%, #f6f3f2 100%);
  border: 1px solid rgba(233, 193, 118, 0.28);
  box-shadow:
    0 0 0 1px rgba(0, 37, 30, 0.04),
    0 28px 80px rgba(0, 37, 30, 0.28);
  display: flex;
  flex-direction: column;
  transform: translateY(-18px) scale(0.985);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
  overflow: hidden;
}

.pourl-search.is-open .pourl-search__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.pourl-search__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00251e 0%, #775a19 45%, #fed488 100%);
  pointer-events: none;
}

.pourl-search__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0.25rem;
}

.pourl-search__eyebrow {
  display: block;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #775a19;
  margin-bottom: 0.35rem;
}

.pourl-search__heading {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #00251e;
}

.pourl-search__close {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192, 200, 196, 0.65);
  background: rgba(255, 255, 255, 0.55);
  color: #00251e;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pourl-search__close:hover {
  background: #00251e;
  border-color: #00251e;
  color: #fed488;
}

.pourl-search__header {
  padding: 1rem 1.5rem 1.15rem;
}

.pourl-search__form {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(192, 200, 196, 0.7);
  box-shadow: inset 0 -2px 0 0 transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pourl-search__form:focus-within {
  border-color: rgba(119, 90, 25, 0.55);
  box-shadow: inset 0 -2px 0 0 #775a19;
}

.pourl-search__icon {
  color: #775a19;
  flex-shrink: 0;
  font-size: 1.35rem !important;
}

.pourl-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.4;
  color: #00251e;
  padding: 0.15rem 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.pourl-search__input::-webkit-search-decoration,
.pourl-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.pourl-search__input::placeholder {
  color: #707976;
  opacity: 0.8;
}

.pourl-search__clear {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #f0eded;
  color: #404946;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pourl-search__clear .material-symbols-outlined {
  font-size: 1.05rem !important;
}

.pourl-search__clear:hover {
  background: #00251e;
  color: #ffffff;
}

.pourl-search__body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 1.5rem 1.75rem;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 37, 30, 0.25) transparent;
}

.pourl-search__idle,
.pourl-search__empty,
.pourl-search__loading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.5rem 0 0.25rem;
}

.pourl-search__idle-kicker {
  margin: 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #775a19;
}

.pourl-search__idle-text {
  margin: 0.65rem 0 0;
  max-width: 28rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #404946;
}

.pourl-search__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.pourl-search__chip {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00251e;
  background: transparent;
  border: 1px solid rgba(0, 37, 30, 0.22);
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pourl-search__chip:hover {
  background: #00251e;
  border-color: #00251e;
  color: #fed488;
}

.pourl-search__shop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.75rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #775a19;
  text-decoration: none;
  border-bottom: 1px solid #775a19;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.pourl-search__shop-link .material-symbols-outlined {
  font-size: 1rem !important;
  transition: transform 0.2s ease;
}

.pourl-search__shop-link:hover {
  color: #00251e;
  border-color: #00251e;
  gap: 0.65rem;
}

.pourl-search__shop-link:hover .material-symbols-outlined {
  transform: translateX(3px);
}

.pourl-search__loading {
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  padding: 1.5rem 0;
}

.pourl-search__spinner {
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid rgba(119, 90, 25, 0.2);
  border-top-color: #775a19;
  border-radius: 50%;
  animation: pourl-search-spin 0.65s linear infinite;
}

.pourl-search__loading-text {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #707976;
}

@keyframes pourl-search-spin {
  to {
    transform: rotate(360deg);
  }
}

.pourl-search__empty {
  align-items: center;
  text-align: center;
  padding: 2rem 0.5rem;
  width: 100%;
}

.pourl-search__empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  color: #775a19;
  background: rgba(254, 212, 136, 0.28);
  border: 1px solid rgba(233, 193, 118, 0.45);
}

.pourl-search__empty-icon .material-symbols-outlined {
  font-size: 1.6rem !important;
}

.pourl-search__empty-text {
  margin: 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #404946;
}

.pourl-search__label {
  margin: 0 0 0.85rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #707976;
}

.pourl-search__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.pourl-search__item {
  animation: pourl-search-item-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pourl-search__item:nth-child(1) { animation-delay: 0.02s; }
.pourl-search__item:nth-child(2) { animation-delay: 0.05s; }
.pourl-search__item:nth-child(3) { animation-delay: 0.08s; }
.pourl-search__item:nth-child(4) { animation-delay: 0.11s; }
.pourl-search__item:nth-child(5) { animation-delay: 0.14s; }
.pourl-search__item:nth-child(6) { animation-delay: 0.17s; }
.pourl-search__item:nth-child(7) { animation-delay: 0.2s; }
.pourl-search__item:nth-child(8) { animation-delay: 0.23s; }

@keyframes pourl-search-item-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pourl-search__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid transparent;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.pourl-search__link:hover {
  background: #ffffff;
  border-color: rgba(233, 193, 118, 0.45);
  transform: translateX(2px);
}

.pourl-search__thumb {
  width: 64px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  background: #eae7e7;
  position: relative;
}

.pourl-search__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 37, 30, 0.08));
  pointer-events: none;
}

.pourl-search__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pourl-search__link:hover .pourl-search__thumb img {
  transform: scale(1.06);
}

.pourl-search__meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pourl-search__name {
  font-family: "Bodoni Moda", serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #00251e;
  line-height: 1.3;
}

.pourl-search__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #404946;
}

.pourl-search__price del {
  opacity: 0.5;
  font-weight: 400;
}

.pourl-search__price ins {
  text-decoration: none;
  color: #00251e;
}

.pourl-search__badge {
  display: inline-block;
  font-style: normal;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #261900;
  background: #fed488;
  padding: 0.2rem 0.45rem;
}

.pourl-search__arrow {
  color: rgba(192, 200, 196, 0.95);
  font-size: 1.2rem !important;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.pourl-search__link:hover .pourl-search__arrow {
  color: #775a19;
  transform: translateX(4px);
}

.pourl-search__all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
  padding: 1rem 1rem 0.25rem;
  border-top: 1px solid rgba(192, 200, 196, 0.45);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #775a19;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pourl-search__all:hover {
  color: #00251e;
}

body.pourl-search-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .pourl-search__panel {
    width: 100%;
    max-height: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .pourl-search__top {
    padding: 1.25rem 1.15rem 0.15rem;
  }

  .pourl-search__header {
    padding: 0.85rem 1.15rem 1rem;
  }

  .pourl-search__body {
    padding: 0.15rem 1.15rem 1.5rem;
  }

  .pourl-search__thumb {
    width: 56px;
    height: 72px;
  }

  .pourl-search__name {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pourl-search__backdrop,
  .pourl-search__panel,
  .pourl-search__item,
  .pourl-search__thumb img,
  .pourl-search__link {
    animation: none !important;
    transition: none !important;
  }
}

.pourl-cart-toggle,
button[data-pourl-cart-toggle] {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  color: inherit;
}

/* Formulaire contact */
.pourl-contact-form input,
.pourl-contact-form textarea {
  border-radius: 0;
}

.pourl-contact-form input:focus,
.pourl-contact-form textarea:focus {
  outline: none;
  box-shadow: none;
}

.pourl-recaptcha-wrap,
.pourl-review-form .pourl-recaptcha {
  margin: 1rem 0;
}

.pourl-cart-item--unavailable {
  background: rgba(186, 26, 26, 0.04);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
}

.luxury-shadow {
  box-shadow: 0 10px 30px -10px rgba(0, 37, 30, 0.1);
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-gradient {
  background: linear-gradient(to bottom, rgba(0, 37, 30, 0) 0%, rgba(0, 37, 30, 0.6) 100%);
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Suppression soulignement sur liens (WP override) */
a {
  text-decoration: none;
  color: inherit;
}

.product-image-container:hover .hover-action {
  opacity: 1;
  transform: translateY(0);
}

/* Sidebar boutique scroll */
.sidebar-scroll::-webkit-scrollbar {
  width: 2px;
}
.sidebar-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar-scroll::-webkit-scrollbar-thumb {
  background: #775a19;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-item.active .plus-icon {
  transform: rotate(45deg);
}

.pourl-mobile-nav #site-main {
  padding-bottom: 5rem;
}

#mobile-menu:not(.hidden) {
  display: block;
}

.woocommerce-notices-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
}

@media (min-width: 768px) {
  .woocommerce-notices-wrapper {
    padding-inline: 4rem;
  }
}

.woocommerce .woocommerce-breadcrumb {
  display: none;
}

.woocommerce div.product form.cart {
  margin-bottom: 0;
}

.woocommerce div.product form.cart .button {
  width: 100%;
  background: #00251e;
  color: #ffdea5;
  border: 0;
  border-radius: 0.125rem;
  padding: 1.25rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.woocommerce div.product form.cart .button:hover {
  opacity: 0.9;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #775a19;
  font-family: "Bodoni Moda", serif;
  font-size: 24px;
  margin-bottom: 2rem;
}

.woocommerce div.product .product_title,
.pourl-product-title {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
  color: #00251e;
  letter-spacing: 0.01em;
}

.pourl-product-card__title {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0.01em;
}

.pourl-product-card__title a {
  color: inherit;
}

.woocommerce div.product .woocommerce-product-gallery {
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.woocommerce ul.products {
  display: contents;
}

.woocommerce .woocommerce-result-count {
  display: none;
}

/* Tri « maquette boutique » : select nu, uppercase, à droite du titre. */
.pourl-ordering .woocommerce-ordering select.orderby {
  border: 0;
  background: transparent;
  padding: 0 2rem 0 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00251e;
  cursor: pointer;
}

.pourl-ordering .woocommerce-ordering select.orderby:focus {
  outline: none;
  box-shadow: none;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 5rem;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #404946;
  background: transparent;
  border-bottom: 2px solid transparent;
  padding: 0.25rem 0.5rem;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  color: #00251e;
  border-bottom-color: #00251e;
}

/* Prix carte produit (boutique) : promo = ancien prix barré discret + nouveau prix. */
.pourl-card-price del {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #707976;
  text-decoration: line-through;
}

.pourl-card-price ins {
  text-decoration: none;
  color: #00251e;
  font-weight: 600;
}

/* Badge solde en haut à gauche de la photo produit. */
.pourl-sale-badge {
  line-height: 1.2;
}

.product-image-container .onsale {
  display: none; /* badge WooCommerce natif remplacé par .pourl-sale-badge */
}

/* Badge rupture de stock (listing + fiche produit). */
.pourl-oos-badge {
  line-height: 1.2;
}

.pourl-product-sold-out::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(252, 249, 248, 0.15);
  pointer-events: none;
  z-index: 5;
}

/* Bouton liste d'envies (cœur). */
.pourl-wishlist-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, transform 0.15s ease;
}

.pourl-wishlist-btn:hover {
  transform: scale(1.05);
}

.pourl-wishlist-btn.is-active {
  color: #775a19;
}

.pourl-wishlist-btn.is-active .material-symbols-outlined {
  color: #775a19;
}

.pourl-wishlist-btn:focus-visible {
  outline: 2px solid #775a19;
  outline-offset: 2px;
}

/* Section avantages page d'accueil */
.pourl-feature-icon {
  box-shadow: 0 4px 20px rgba(0, 37, 30, 0.06);
  border: 1px solid rgba(119, 90, 25, 0.08);
}

.pourl-mobile-add-to-cart .single_add_to_cart_button,
.pourl-mobile-add-to-cart .button {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  font-size: 12px;
}

.pourl-mobile-add-to-cart .quantity {
  display: none;
}

.pourl-filter-widget .woocommerce-widget-layered-nav-list,
.pourl-filter-widget .product-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pourl-filter-widget .woocommerce-widget-layered-nav-list li,
.pourl-filter-widget .product-categories li {
  margin-bottom: 0.75rem;
}

.pourl-filter-widget .woocommerce-widget-layered-nav-list a,
.pourl-filter-widget .product-categories a {
  color: #404946;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pourl-filter-widget .woocommerce-widget-layered-nav-list a:hover,
.pourl-filter-widget .product-categories a:hover {
  color: #00251e;
}

.pourl-filter-widget .count {
  color: #707976;
}

.woocommerce-ordering select {
  width: 100%;
  border: 1px solid rgba(119, 90, 25, 0.35);
  background: #fcf9f8;
  padding: 0.75rem 0.9rem;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#mobile-filters-panel:not(.hidden) {
  display: block;
}

.single-product .pourl-mobile-add-to-cart form.cart {
  margin: 0;
}

.single-product .summary .price {
  display: none;
}

@media (min-width: 768px) {
  .single-product .summary .price {
    display: block;
  }
}

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

/* ====================================================
   VARIATIONS PRODUIT — style Stitch
   ==================================================== */

/* Cache les selects natifs WooCommerce (remplacés par nos boutons) */
.pourl-variation-form table.variations {
  display: none !important;
}

/* Pastille couleur */
.pourl-color-swatch {
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.pourl-color-swatch:hover {
  transform: scale(1.12);
}
.pourl-color-swatch.border-primary {
  box-shadow: 0 0 0 2px #fcf9f8, 0 0 0 4px #00251e;
}

/* Bouton taille */
.pourl-size-btn {
  min-width: 2.75rem;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pourl-size-btn[disabled],
.pourl-size-btn.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Bouton motif */
.pourl-motif-btn {
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

/* Select custom (attribut générique) */
.pourl-attr-select {
  border-radius: 0.125rem;
}
.pourl-attr-select:focus {
  outline: none;
  box-shadow: none;
}

/* Zone variation WooCommerce (prix + stock dynamiques) */
.single_variation_wrap .woocommerce-variation-description {
  font-size: 14px;
  color: #404946;
  margin-bottom: 0.75rem;
}
.single_variation_wrap .woocommerce-variation-availability .stock {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #00251e;
  margin-bottom: 1rem;
}

/* ─── PANIER ─────────────────────────────────────────────── */
.product-image-container {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-image-container img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-image-container:hover img {
  transform: scale(1.05);
}

/* Quantité − / + (charte Pour L) */
.pourl-qty {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pourl-qty__label {
  display: block;
}
.pourl-qty-wrap {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid #707976;
  background: #fcf9f8;
}
.pourl-qty-minus,
.pourl-qty-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #00251e;
  cursor: pointer;
  overflow: hidden;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.2s ease;
}
.pourl-qty-minus:hover,
.pourl-qty-plus:hover {
  background: #f0eded;
}
.pourl-qty-minus:active,
.pourl-qty-plus:active {
  background: #eae7e7;
}
.pourl-qty-input,
.quantity .pourl-qty-input,
.pourl-qty-wrap .qty,
.pourl-qty-wrap input[type="number"] {
  width: 3rem !important;
  min-width: 3rem;
  max-width: 3rem;
  height: 2.75rem;
  flex: 0 0 auto;
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  border-left: 1px solid #c0c8c4 !important;
  border-right: 1px solid #c0c8c4 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1b1c1c;
  appearance: textfield;
  -moz-appearance: textfield;
}
.pourl-qty-input::-webkit-inner-spin-button,
.pourl-qty-input::-webkit-outer-spin-button,
.quantity .pourl-qty-input::-webkit-inner-spin-button,
.quantity .pourl-qty-input::-webkit-outer-spin-button,
.pourl-qty-wrap input[type="number"]::-webkit-inner-spin-button,
.pourl-qty-wrap input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.pourl-variation-form .quantity,
.pourl-variation-form .pourl-qty,
.cart .quantity,
form.cart .quantity {
  margin: 0 0 1rem;
}

/* Sticky summary cart */
.sticky-summary {
  top: 100px;
}

/* Scrollbar masquée cross-sells */
.cart-scroll-container::-webkit-scrollbar,
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Btn hover effect (mobile checkout CTA) */
.btn-hover-effect {
  position: relative;
  overflow: hidden;
}
.btn-hover-effect::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 300%; height: 300%;
  background: rgba(255,255,255,0.1);
  transition: transform 0.5s ease;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
}
.btn-hover-effect:active::after {
  transform: translate(-50%, -50%) scale(1);
}

/* ─── CHECKOUT ────────────────────────────────────────────── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
}
@media (max-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

/* Inputs checkout style Stitch (border-bottom sur mobile, bordered sur desktop) */
.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row,
.woocommerce-additional-fields .form-row {
  margin-bottom: 1.5rem;
}
.woocommerce-billing-fields .form-row label,
.woocommerce-shipping-fields .form-row label {
  display: block;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: uppercase;
  color: #404946;
  margin-bottom: 0.5rem;
}
.woocommerce-billing-fields .form-row input.input-text,
.woocommerce-billing-fields .form-row select,
.woocommerce-shipping-fields .form-row input.input-text,
.woocommerce-shipping-fields .form-row select,
.woocommerce-additional-fields .form-row input.input-text,
.woocommerce-additional-fields .form-row select,
.woocommerce-additional-fields .form-row textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #c0c8c4;
  padding: 0.75rem 1rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1b1c1c;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0.125rem;
  outline: none;
  -webkit-appearance: none;
}
.woocommerce-billing-fields .form-row input.input-text:focus,
.woocommerce-billing-fields .form-row select:focus,
.woocommerce-shipping-fields .form-row input.input-text:focus,
.woocommerce-shipping-fields .form-row select:focus {
  border-color: #775a19;
  box-shadow: 0 0 0 1px #775a19;
}
/* Grille 2 colonnes pour prénom/nom */
.woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.woocommerce-billing-fields__field-wrapper .form-row-wide {
  grid-column: 1 / -1;
}
.woocommerce-billing-fields__field-wrapper .form-row-first,
.woocommerce-billing-fields__field-wrapper .form-row-last {
  float: none;
  width: 100%;
}

/* Radio livraison style Stitch */
.woocommerce-shipping-methods {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.woocommerce-shipping-methods li {
  position: relative;
}
.woocommerce-shipping-methods li label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border: 1px solid #c0c8c4;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.woocommerce-shipping-methods li label:hover {
  border-color: #775a19;
}
.woocommerce-shipping-methods li input[type="radio"] {
  margin-right: 1rem;
  accent-color: #775a19;
}

/* Méthodes de paiement WooCommerce */
.wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wc_payment_methods li.payment_method_cod {
  background: transparent;
}
.wc_payment_methods .payment_box {
  background: #f6f3f2;
  padding: 1rem;
  margin-top: 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  color: #404946;
}
.wc_payment_methods li label {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00251e;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.wc_payment_methods li input[type="radio"] {
  accent-color: #775a19;
}

/* Notices WooCommerce */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  list-style: none;
  padding: 1rem 1.5rem;
  margin: 0 0 1.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  border-left: 3px solid #775a19;
}
.woocommerce-error { border-color: #ba1a1a; background: #ffdad6; }
.woocommerce-info  { border-color: #00251e; background: #f6f3f2; }
.woocommerce-message { border-color: #775a19; background: #ffdea5; }

/* ─────────────────────────────────────────────────────────── */

/* Fiche produit Stitch — prix & couleur */
.pourl-product-price,
.pourl-product-price .price,
.pourl-product-price .amount,
.pourl-product-price del .amount,
.pourl-product-price ins .amount {
  color: #775a19 !important;
  font-family: "Bodoni Moda", serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
}
.pourl-product-price del {
  opacity: 0.5;
  margin-right: 0.4rem;
}
[data-pourl-selected-color]:empty {
  display: none;
}

/* Ajouter au panier — primary + secondary-fixed */
.pourl-variation-form .single_add_to_cart_button,
.pourl-product-cart form.cart .single_add_to_cart_button {
  display: block;
  width: 100%;
  background: #00251e;
  color: #ffdea5;
  border: none;
  border-radius: 0;
  padding: 1.25rem 2rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin: 0 0 1rem;
}
.pourl-variation-form .single_add_to_cart_button:hover,
.pourl-product-cart form.cart .single_add_to_cart_button:hover {
  opacity: 0.9;
}
.pourl-variation-form .single_add_to_cart_button.disabled,
.pourl-variation-form .single_add_to_cart_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Commande rapide sans panier */
.pourl-buy-now-btn {
  display: block;
  width: 100%;
  margin: 0 0 3rem;
  padding: 1.25rem 2rem;
  background: transparent;
  color: #775a19;
  border: 1px solid #775a19;
  border-radius: 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.pourl-buy-now-btn:hover {
  background: rgba(119, 90, 25, 0.05);
}

/* Reset variation */
.pourl-variation-form .reset_variations {
  display: none;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #707976;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 0.5rem;
  background: none;
  border: none;
  padding: 0;
}

/* Barre mobile : quantité compacte + bouton */
.pourl-mobile-add-to-cart .pourl-variation-form .pourl-attr-group {
  display: none;
}
.pourl-mobile-add-to-cart .single_variation_wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.pourl-mobile-add-to-cart .woocommerce-variation-price {
  display: none;
}
.pourl-mobile-add-to-cart .pourl-qty,
.pourl-mobile-add-to-cart .quantity {
  margin: 0;
  flex-shrink: 0;
}
.pourl-mobile-add-to-cart .pourl-qty__label {
  display: none;
}
.pourl-mobile-add-to-cart .pourl-qty-wrap {
  height: 2.75rem;
}
.pourl-mobile-add-to-cart .pourl-qty-minus,
.pourl-mobile-add-to-cart .pourl-qty-plus {
  width: 2.25rem;
  height: 2.75rem;
}
.pourl-mobile-add-to-cart .pourl-qty-input {
  width: 2.25rem;
  min-width: 2.25rem;
  height: 2.75rem;
}
.pourl-mobile-add-to-cart .single_add_to_cart_button {
  flex: 1;
  margin-top: 0;
  padding: 0.85rem 1rem;
  width: auto;
}
.pourl-mobile-add-to-cart .pourl-buy-now-btn {
  display: none;
}

/* Couleur ivoire : contour visible */
.pourl-color-swatch[style*="#f3f0ef"],
.pourl-color-swatch[style*="#fcf9f8"],
.pourl-color-swatch[style*="#fff"],
.pourl-color-dot[style*="#f5f5f5"],
.pourl-color-dot[style*="#f5f0e6"] {
  border: 1px solid #c0c8c4 !important;
  box-sizing: border-box;
}

/* Slider fiche produit */
.pourl-product-slider__viewport {
  touch-action: pan-y;
  user-select: none;
}
.pourl-product-slider__track {
  will-change: transform;
}
.pourl-product-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(252, 249, 248, 0.92);
  color: #00251e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.pourl-product-slider__nav--prev {
  left: 0.75rem;
}
.pourl-product-slider__nav--next {
  right: 0.75rem;
}
.pourl-product-slider__nav:hover {
  background: #fff;
}
.pourl-product-slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #c0c8c4;
  cursor: pointer;
}
.pourl-product-slider__dot.is-active {
  background: #00251e;
  width: 1.25rem;
}
.pourl-product-slider__thumb {
  cursor: pointer;
  background: #eae7e7;
}
.pourl-product-slider__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cases taille / couleur — Stitch (grid, sélection secondary or) */
.pourl-size-btn,
.pourl-color-btn,
.pourl-option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 0.5rem;
  background: transparent;
  color: #1b1c1c;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.pourl-size-btn.border-outline,
.pourl-color-btn.border-outline,
.pourl-option-btn.border-outline {
  border: 1px solid #707976;
}
.pourl-size-btn.is-selected,
.pourl-color-btn.is-selected,
.pourl-option-btn.is-selected,
.pourl-size-btn.border-secondary.bg-secondary,
.pourl-color-btn.border-secondary.bg-secondary,
.pourl-option-btn.border-secondary.bg-secondary {
  border-color: #775a19 !important;
  background: #775a19 !important;
  color: #ffffff !important;
}
.pourl-variation-form select.pourl-attr-select,
.pourl-variation-form .variations,
.pourl-variation-form .woocommerce-variation-price,
.pourl-variation-form .woocommerce-variation-description {
  display: none !important;
}
.pourl-variation-form .single_variation_wrap {
  margin: 0;
}
.pourl-variation-form .woocommerce-variation-availability {
  margin-bottom: 0.75rem;
  font-size: 13px;
  color: #404946;
}
.pourl-product-cart .quantity,
.pourl-product-cart .pourl-qty {
  margin-bottom: 1.25rem;
}
.pourl-product-cart .pourl-qty__label {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-hide::-webkit-scrollbar {
  display: none;
}
.scroll-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ── Checkout Stitch ─────────────────────────────────────── */

/* Titre "Détails de facturation" WooCommerce inutile */
.woocommerce-billing-fields > h3,
.woocommerce-additional-fields > h3 {
  display: none;
}

/* Champs de formulaire (labels + inputs) */
.pourl-checkout-fields .form-row {
  display: flex;
  flex-direction: column;
  margin: 0 0 1.5rem;
  padding: 0;
}
.pourl-checkout-fields .form-row label {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #404946;
  margin-bottom: 0.5rem;
}
.pourl-checkout-fields .form-row label .required {
  color: #ba1a1a;
  text-decoration: none;
}
.pourl-checkout-fields .form-row label .optional {
  display: none;
}
.pourl-checkout-fields .form-row .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}
.pourl-checkout-fields .form-row input.input-text,
.pourl-checkout-fields .form-row textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #c0c8c4;
  border-radius: 0;
  padding: 0.75rem 1rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 16px;
  color: #1b1c1c;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.pourl-checkout-fields .form-row input.input-text:focus,
.pourl-checkout-fields .form-row textarea:focus {
  border-color: #775a19;
  box-shadow: 0 0 0 1px #775a19;
}
.pourl-checkout-fields .form-row.woocommerce-invalid input.input-text {
  border-color: #ba1a1a;
}

/* Bloc paiement (COD) + bouton confirmer */
.woocommerce-checkout-payment {
  background: transparent;
  margin-top: 1.5rem;
}
.woocommerce-checkout-payment ul.payment_methods {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 1.25rem;
  border: 1px solid #c0c8c4;
  background: #f6f3f2;
}
.woocommerce-checkout-payment ul.payment_methods li {
  margin: 0;
}
.woocommerce-checkout-payment ul.payment_methods label {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00251e;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0.35rem;
  vertical-align: middle;
}
.woocommerce-checkout-payment ul.payment_methods li > label img,
.wc_payment_methods li > label img {
  max-height: 24px;
  width: auto;
  height: auto;
  vertical-align: middle;
  margin: 0;
  border-radius: 0;
}
.woocommerce-checkout-payment ul.payment_methods li.payment_method_pourl_simple label,
.wc_payment_methods li.payment_method_pourl_simple label {
  flex-wrap: nowrap;
}
.woocommerce-checkout-payment ul.payment_methods li.payment_method_pourl_simple > label .pourl-simple-pay__method-icon,
.wc_payment_methods li.payment_method_pourl_simple > label .pourl-simple-pay__method-icon {
  display: inline-block;
  height: 22px;
  width: auto;
  max-width: 96px;
  max-height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  object-fit: contain;
  flex-shrink: 0;
}
.woocommerce-checkout-payment ul.payment_methods input[type="radio"] {
  accent-color: #775a19;
}
.woocommerce-checkout-payment ul.payment_methods li:only-child input[type="radio"] {
  display: none;
}
.woocommerce-checkout-payment ul.payment_methods li:only-child label {
  margin-left: 0;
}
.woocommerce-checkout-payment .payment_box {
  margin: 0.5rem 0 0;
  padding: 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  color: #404946;
}
.woocommerce-checkout-payment .form-row.place-order {
  margin: 0;
  padding: 0;
}
.woocommerce-checkout-payment button#place_order {
  display: block;
  width: 100%;
  background: #00251e;
  color: #ffdea5;
  border: none;
  border-radius: 0;
  padding: 1.25rem 2rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.woocommerce-checkout-payment button#place_order:hover {
  filter: brightness(1.1);
}
.woocommerce-checkout-payment .woocommerce-privacy-policy-text {
  font-size: 12px;
  color: #707976;
  margin-bottom: 1rem;
}
.woocommerce-checkout .blockUI.blockOverlay {
  background: rgba(252, 249, 248, 0.7) !important;
}

/* Logo Pour L — carré, tailles harmonisées header / footer */
.pourl-logo-link {
  line-height: 0;
  flex-shrink: 0;
  overflow: visible;
}

.pourl-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.pourl-logo--header {
  height: 4rem;
  width: 4rem;
  min-width: 4rem;
  max-width: 4rem;
}

@media (min-width: 768px) {
  .pourl-logo--header {
    height: 5rem;
    width: 5rem;
    min-width: 5rem;
    max-width: 5rem;
  }
}

.pourl-logo--header-compact {
  height: 3.5rem;
  width: 3.5rem;
  min-width: 3.5rem;
  max-width: 3.5rem;
}

@media (min-width: 768px) {
  .pourl-logo--header-compact {
    height: 4rem;
    width: 4rem;
    min-width: 4rem;
    max-width: 4rem;
  }
}

/* Header — nav centrée, sans chevauchement des icônes */
.pourl-header-bar {
  min-width: 0;
}

.pourl-header-nav {
  overflow: hidden;
}

.pourl-primary-nav {
  max-width: 100%;
}

.pourl-primary-nav a {
  white-space: nowrap;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .pourl-primary-nav {
    column-gap: 0.65rem;
    row-gap: 0.15rem;
  }

  .pourl-primary-nav a {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .pourl-logo--header {
    height: 4.25rem;
    width: 4.25rem;
    min-width: 4.25rem;
    max-width: 4.25rem;
  }
}

.pourl-logo--footer {
  height: 4rem;
  width: 4rem;
  min-width: 4rem;
  max-width: 4rem;
}

@media (min-width: 768px) {
  .pourl-logo--footer {
    height: 4.75rem;
    width: 4.75rem;
    min-width: 4.75rem;
    max-width: 4.75rem;
  }
}

#pourl-newsletter-form input[type="email"] {
  color: #ffffff;
  font-weight: 700;
  -webkit-text-fill-color: #ffffff;
}

#pourl-newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  font-weight: 700;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
}

#pourl-newsletter-form button {
  font-weight: 700;
}

.pourl-email-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
}

.pourl-email-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: #fed488;
}

.pourl-email-consent--footer {
  color: rgba(252, 249, 248, 0.78);
}

.pourl-email-consent--footer a {
  color: #fed488;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.pourl-nl-popup__consent {
  margin: 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #5c5754;
  text-align: left;
}

.pourl-nl-popup__consent a {
  color: #8b695a;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.pourl-checkout-fields .pourl-email-consent,
.woocommerce-additional-fields .pourl-email-consent {
  margin-top: 0.5rem;
}

.pourl-checkout-fields .pourl-email-consent label,
.woocommerce-additional-fields .pourl-email-consent label,
.woocommerce-additional-fields .form-row.pourl-email-consent label {
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #5c5754;
  text-transform: none;
  letter-spacing: 0;
}

.woocommerce-additional-fields .form-row.pourl-email-consent .input-checkbox {
  margin-right: 0.5rem;
  accent-color: #00251e;
}

.woocommerce-additional-fields .form-row.pourl-email-consent a {
  color: #8b695a;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

/* Sections below-the-fold : rendu différé (Core Web Vitals) */
.pourl-below-fold {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ========== Accueil — slider + sections ========== */
.pourl-hero-slider {
  position: relative;
  width: 100%;
  height: max(
    320px,
    calc(var(--pourl-viewport-height, 100svh) - var(--pourl-site-header-height))
  );
  min-height: 320px;
  overflow: hidden;
  background: #00251e;
}

@media (min-width: 768px) {
  .pourl-hero-slider {
    height: max(480px, calc(100dvh - var(--pourl-site-header-height)));
    min-height: 480px;
  }
}

.pourl-hero-slider__track {
  position: absolute;
  inset: 0;
}

.pourl-hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.9s ease, transform 6.5s ease;
  pointer-events: none;
}

.pourl-hero-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.pourl-hero-slider__link {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.pourl-hero-slider__link picture,
.pourl-hero-slider__img {
  display: block;
  width: 100%;
  height: 100%;
}

.pourl-hero-slider__img {
  object-fit: cover;
  object-position: center top;
}

.pourl-hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(254, 212, 136, 0.45);
  background: rgba(0, 37, 30, 0.45);
  color: #fed488;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color 0.2s ease, color 0.2s ease;
}

@media (min-width: 768px) {
  .pourl-hero-slider__nav {
    display: inline-flex;
  }
}

.pourl-hero-slider__nav:hover {
  background: #fed488;
  color: #00251e;
}

.pourl-hero-slider__nav--prev { left: 1.25rem; }
.pourl-hero-slider__nav--next { right: 1.25rem; }

.pourl-hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.55rem;
  padding: 0.35rem 0.5rem;
}

@media (min-width: 768px) {
  .pourl-hero-slider__dots {
    bottom: 1.5rem;
  }
}

.pourl-hero-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  .pourl-hero-slider__dot {
    width: 0.65rem;
    height: 0.65rem;
  }
}

.pourl-hero-slider__dot.is-active {
  width: 1.6rem;
  background: #fed488;
}

/* Catégories */
.pourl-home-cats__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .pourl-home-cats__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.pourl-home-cats__item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.pourl-home-cats__media {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eae7e7;
  margin-bottom: 0.85rem;
}

.pourl-home-cats__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pourl-home-cats__item:hover .pourl-home-cats__media img {
  transform: scale(1.06);
}

.pourl-home-cats__copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.pourl-home-cats__title {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: #00251e;
  line-height: 1.25;
}

.pourl-home-cats__count {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #707976;
}

@media (max-width: 767px) {
  .pourl-home-cats__grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 70%;
    margin-inline: auto;
  }
}

/* Collections */
.pourl-home-collections__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pourl-home-collections__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.pourl-home-collections__item {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

@media (min-width: 768px) {
  .pourl-home-collections__item {
    min-height: 480px;
  }
}

.pourl-home-collections__media {
  position: absolute;
  inset: 0;
  background-color: #eae7e7;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.pourl-home-collections__item:hover .pourl-home-collections__media {
  transform: scale(1.05);
}

.pourl-home-collections__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 37, 30, 0.1) 20%, rgba(0, 37, 30, 0.7) 100%);
}

.pourl-home-collections__label {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.75rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pourl-home-collections__kicker {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fed488;
}

.pourl-home-collections__title {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
}

.pourl-home-collections__cta {
  margin-top: 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(254, 212, 136, 0.8);
  align-self: flex-start;
  padding-bottom: 0.15rem;
  color: #fed488;
}

/* Meilleures ventes — carrousel */
.pourl-home-bestsellers__nav {
  align-items: center;
}

.pourl-home-bestsellers__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(0, 37, 30, 0.18);
  background: #fffcf8;
  color: #00251e;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pourl-home-bestsellers__btn:hover {
  background: #00251e;
  border-color: #00251e;
  color: #fff8f0;
}

.pourl-home-bestsellers__btn .material-symbols-outlined {
  font-size: 1.2rem !important;
}

.pourl-home-bestsellers__viewport {
  overflow: hidden;
  margin-inline: calc(-1 * var(--margin-mobile, 1.25rem));
  padding-inline: var(--margin-mobile, 1.25rem);
}

@media (min-width: 768px) {
  .pourl-home-bestsellers__viewport {
    margin-inline: 0;
    padding-inline: 0;
  }
}

.pourl-home-bestsellers__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.pourl-home-bestsellers__track::-webkit-scrollbar {
  display: none;
}

.pourl-home-bestsellers__slide {
  flex: 0 0 72%;
  max-width: 280px;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .pourl-home-bestsellers__slide {
    flex-basis: 46%;
    max-width: none;
  }
}

@media (min-width: 900px) {
  .pourl-home-bestsellers__track {
    gap: 1.5rem;
  }

  .pourl-home-bestsellers__slide {
    flex-basis: calc((100% - 3rem) / 3);
  }
}

@media (min-width: 1100px) {
  .pourl-home-bestsellers__slide {
    flex-basis: calc((100% - 4.5rem) / 4);
  }
}

.pourl-home-bestsellers__slide .product-image-container {
  aspect-ratio: 1 / 1;
  background: #f3eeea;
  overflow: hidden;
}

.pourl-home-bestsellers__slide .product-image-container > a.block {
  position: absolute;
  inset: 7%;
  display: block;
  overflow: hidden;
  z-index: 1;
  width: auto;
  height: auto;
}

.pourl-home-bestsellers__slide .product-image-container > a.block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pourl-home-bestsellers__slide .product-image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: url("../images/cadre-article.webp") center / 100% 100% no-repeat;
}

/* Cadre lisible : pas de bouton panier / overlay sur la photo */
.pourl-home-bestsellers__slide .hover-action,
.pourl-home-bestsellers__slide .product-image-container > a.ajax_add_to_cart,
.pourl-home-bestsellers__slide .product-image-container > a.add_to_cart_button,
.pourl-home-bestsellers__slide .product-image-container > a.md\:hidden {
  display: none !important;
}

.pourl-home-bestsellers__slide .pourl-sale-badge,
.pourl-home-bestsellers__slide .pourl-oos-badge {
  top: 12% !important;
  left: 10% !important;
  z-index: 5;
}

.pourl-home-bestsellers__slide .pourl-wishlist-btn {
  top: 10% !important;
  right: 10% !important;
  z-index: 5;
}

/* Avis */
.pourl-home-reviews__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .pourl-home-reviews__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.pourl-home-reviews__card {
  margin: 0;
  background: #fcf9f8;
  border: 1px solid rgba(192, 200, 196, 0.45);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pourl-home-reviews__stars {
  display: flex;
  gap: 0.15rem;
}

.pourl-home-reviews__stars .material-symbols-outlined {
  font-size: 1.15rem !important;
  color: #c0c8c4;
  font-variation-settings: "FILL" 1;
}

.pourl-home-reviews__stars .material-symbols-outlined.is-on {
  color: #775a19;
}

.pourl-home-reviews__text {
  font-family: "Bodoni Moda", serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.45;
  color: #00251e;
  flex: 1;
}

.pourl-home-reviews__text p {
  margin: 0 0 0.75rem;
}

.pourl-home-reviews__text p:last-child {
  margin-bottom: 0;
}

.pourl-home-reviews__author {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #707976;
}

.pourl-home-reviews__author strong {
  color: #00251e;
  font-weight: 600;
}

/* Blog */
.pourl-home-blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pourl-home-blog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.pourl-home-blog__card {
  display: flex;
  flex-direction: column;
  background: #fcf9f8;
}

.pourl-home-blog__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eae7e7;
}

.pourl-home-blog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.pourl-home-blog__card:hover .pourl-home-blog__media img {
  transform: scale(1.05);
}

.pourl-home-blog__body {
  padding: 1.25rem 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pourl-home-blog__date {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #775a19;
}

.pourl-home-blog__title {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  color: #00251e;
}

.pourl-home-blog__title a {
  color: inherit;
  text-decoration: none;
}

.pourl-home-blog__title a:hover {
  color: #775a19;
}

.pourl-home-blog__excerpt {
  margin: 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #404946;
}

.pourl-home-blog__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #775a19;
  text-decoration: none;
  border-bottom: 1px solid #775a19;
  align-self: flex-start;
  padding-bottom: 0.1rem;
}

.pourl-home-blog__more .material-symbols-outlined {
  font-size: 1rem !important;
}

.pourl-home-blog__more:hover {
  color: #00251e;
  border-color: #00251e;
}

/* ——— Bouton retour en haut (au-dessus du WhatsApp flottant) ——— */
.pourl-to-top {
  position: fixed;
  right: 1.25rem;
  /* WhatsApp: bottom 5.5rem + hauteur 3.5rem + gap 0.75rem */
  bottom: 9.75rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(119, 90, 25, 0.28);
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.92);
  color: #00251e;
  box-shadow: 0 8px 24px rgba(0, 37, 30, 0.12);
  backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.pourl-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pourl-to-top:hover {
  background: #00251e;
  color: #fff8f0;
  border-color: #00251e;
}

.pourl-to-top .material-symbols-outlined {
  font-size: 1.25rem !important;
}

@media (min-width: 768px) {
  .pourl-to-top {
    /* WhatsApp desktop: bottom 1.5rem + 3.5rem + gap 0.75rem */
    bottom: 5.75rem;
  }
}

/* ——— Mon compte ——— */
.pourl-account {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(119, 90, 25, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(0, 37, 30, 0.05), transparent 50%),
    #fffcf8;
  min-height: 60vh;
}

.pourl-account__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pourl-account__eyebrow {
  display: block;
  margin-bottom: 0.65rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #775a19;
}

.pourl-account__title {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  color: #00251e;
}

.pourl-account__rule {
  width: 3rem;
  height: 1px;
  margin: 1.1rem auto 0;
  background: #775a19;
}

.pourl-account__layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .pourl-account__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.pourl-account__nav {
  background: #fff;
  border: 1px solid rgba(0, 37, 30, 0.08);
  padding: 0.75rem;
}

.pourl-account__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pourl-account__nav-list::-webkit-scrollbar {
  display: none;
}

@media (min-width: 900px) {
  .pourl-account__nav-list {
    flex-direction: column;
    overflow: visible;
  }
}

.pourl-account__nav-list li {
  margin: 0;
  flex: 0 0 auto;
}

.pourl-account__nav-list a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.95rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #404946;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pourl-account__nav-list a:hover {
  color: #00251e;
  background: rgba(0, 37, 30, 0.04);
}

.pourl-account__nav-list .is-active a,
.pourl-account__nav-list a[aria-current="page"] {
  color: #00251e;
  background: rgba(119, 90, 25, 0.1);
  border-color: rgba(119, 90, 25, 0.22);
}

.pourl-account__nav-icon {
  font-size: 1.15rem !important;
  color: #775a19;
}

.pourl-account__content {
  background: #fff;
  border: 1px solid rgba(0, 37, 30, 0.08);
  padding: 1.5rem 1.25rem;
}

@media (min-width: 768px) {
  .pourl-account__content {
    padding: 2rem 2.25rem;
  }
}

.pourl-account__content h2,
.pourl-account__content h3,
.woocommerce-MyAccount-content > h2,
.woocommerce-Address-title h3 {
  font-family: "Bodoni Moda", serif !important;
  font-size: 1.55rem !important;
  font-weight: 500 !important;
  color: #00251e !important;
  margin: 0 0 1rem !important;
}

.pourl-account__content .woocommerce-orders-table,
.pourl-account__content .shop_table {
  border: 1px solid rgba(0, 37, 30, 0.1);
  border-collapse: collapse;
  width: 100%;
}

.pourl-account__content .shop_table th,
.pourl-account__content .shop_table td {
  border-color: rgba(0, 37, 30, 0.08);
  padding: 0.9rem 0.75rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.9rem;
}

.pourl-account__content .shop_table thead th {
  background: rgba(0, 37, 30, 0.04);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #775a19;
  font-weight: 600;
}

.pourl-account__content .button,
.pourl-account__content .woocommerce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem !important;
  border-radius: 0 !important;
  border: 1px solid #00251e !important;
  background: #00251e !important;
  color: #fff8f0 !important;
  font-family: "Hanken Grotesk", sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.pourl-account__content .button:hover,
.pourl-account__content .woocommerce-button:hover {
  background: #775a19 !important;
  border-color: #775a19 !important;
  color: #fff !important;
}

.pourl-account__content .woocommerce-form-row label,
.pourl-account-auth__form label {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #404946;
  margin-bottom: 0.45rem;
}

.pourl-account__content .woocommerce-Input,
.pourl-account__content input.input-text,
.pourl-account__content select,
.pourl-account__content textarea,
.pourl-account-auth__form .woocommerce-Input,
.pourl-account-auth__form input.input-text {
  width: 100%;
  border: 1px solid rgba(0, 37, 30, 0.15) !important;
  border-radius: 0 !important;
  background: #fffcf8 !important;
  padding: 0.85rem 1rem !important;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.95rem;
  color: #00251e;
}

.pourl-account__content .woocommerce-Input:focus,
.pourl-account__content input.input-text:focus,
.pourl-account-auth__form .woocommerce-Input:focus,
.pourl-account-auth__form input.input-text:focus {
  outline: none;
  border-color: #775a19 !important;
  box-shadow: 0 0 0 3px rgba(119, 90, 25, 0.12);
}

/* Dashboard */
.pourl-account-dashboard__hello {
  margin: 0 0 0.75rem;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #00251e;
}

.pourl-account-dashboard__hello a {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.85rem;
  color: #775a19;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pourl-account-dashboard__intro {
  margin: 0 0 1.75rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #404946;
  max-width: 42rem;
}

.pourl-account-dashboard__intro a {
  color: #775a19;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pourl-account-dashboard__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .pourl-account-dashboard__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pourl-account-dashboard__card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 1.15rem;
  border: 1px solid rgba(0, 37, 30, 0.1);
  background: #fffcf8;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.pourl-account-dashboard__card:hover {
  border-color: rgba(119, 90, 25, 0.45);
  background: #fff;
  transform: translateY(-2px);
}

.pourl-account-dashboard__card .material-symbols-outlined {
  color: #775a19;
  font-size: 1.4rem !important;
  margin-bottom: 0.35rem;
}

.pourl-account-dashboard__card-title {
  font-family: "Bodoni Moda", serif;
  font-size: 1.2rem;
  color: #00251e;
}

.pourl-account-dashboard__card-text {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.85rem;
  color: #404946;
}

.pourl-account-dashboard__shop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #775a19;
  text-decoration: none;
  border-bottom: 1px solid #775a19;
  padding-bottom: 0.15rem;
}

.pourl-account-dashboard__shop:hover {
  color: #00251e;
  border-color: #00251e;
}

.pourl-account-dashboard__shop .material-symbols-outlined {
  font-size: 1rem !important;
}

/* Auth (login / register) */
.pourl-account-auth {
  display: grid;
  gap: 1.25rem;
  max-width: 480px;
  margin: 0 auto;
}

.pourl-account-auth--split {
  max-width: 960px;
}

@media (min-width: 900px) {
  .pourl-account-auth--split {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.pourl-account-auth__panel {
  background: #fff;
  border: 1px solid rgba(0, 37, 30, 0.08);
  padding: 1.75rem 1.35rem 2rem;
}

@media (min-width: 768px) {
  .pourl-account-auth__panel {
    padding: 2.25rem 2rem 2.5rem;
  }
}

.pourl-account-auth__eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #775a19;
}

.pourl-account-auth__heading {
  margin: 0 0 0.5rem;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 500;
  color: #00251e;
}

.pourl-account-auth__lead,
.pourl-account-auth__hint {
  margin: 0 0 1.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #404946;
}

.pourl-account-auth__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.pourl-account-auth__lost {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.85rem;
  color: #775a19;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pourl-account-auth__submit {
  width: 100%;
  min-height: 3rem;
  border-radius: 0 !important;
  border: 1px solid #00251e !important;
  background: #00251e !important;
  color: #fff8f0 !important;
  font-family: "Hanken Grotesk", sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.pourl-account-auth__submit:hover {
  background: #775a19 !important;
  border-color: #775a19 !important;
}

.pourl-account-auth__panel--register {
  background:
    linear-gradient(165deg, rgba(119, 90, 25, 0.06), transparent 42%),
    #fff;
}

.woocommerce-account .woocommerce-notices-wrapper {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--margin-mobile, 1.25rem);
  padding-right: var(--margin-mobile, 1.25rem);
}

@media (min-width: 768px) {
  .woocommerce-account .woocommerce-notices-wrapper {
    padding-left: var(--margin-desktop, 2.5rem);
    padding-right: var(--margin-desktop, 2.5rem);
  }
}


/* ========== Suivi de commande ========== */
.pourl-track-form {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(27, 28, 28, 0.12);
  background:
    linear-gradient(165deg, rgba(119, 90, 25, 0.05), transparent 50%),
    #fff;
}

.pourl-track-form__field {
  display: grid;
  gap: 0.4rem;
}

.pourl-track-form__field span {
  font-family: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #775a19;
}

.pourl-track-form__field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(27, 28, 28, 0.25);
  background: transparent;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #1b1c1c;
  outline: none;
}

.pourl-track-form__field input:focus {
  border-bottom-color: #775a19;
}

.pourl-track-form__submit {
  margin-top: 0.5rem;
  border: none;
  background: #00251e;
  color: #fed488;
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pourl-track-form__submit:hover {
  background: #013b30;
}

.pourl-track-result__header {
  margin-bottom: 2rem;
}

.pourl-track-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.pourl-track-timeline__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.75rem;
}

.pourl-track-timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  top: 2.75rem;
  bottom: 0.25rem;
  width: 2px;
  background: rgba(27, 28, 28, 0.12);
}

.pourl-track-timeline__item--done:not(:last-child)::before,
.pourl-track-timeline__item--current:not(:last-child)::before {
  background: #775a19;
}

.pourl-track-timeline__marker {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 28, 28, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #707976;
  z-index: 1;
}

.pourl-track-timeline__item--done .pourl-track-timeline__marker,
.pourl-track-timeline__item--current .pourl-track-timeline__marker {
  border-color: #775a19;
  background: #00251e;
  color: #fed488;
}

.pourl-track-timeline__body strong {
  display: block;
  color: #00251e;
  margin-bottom: 0.25rem;
}

.pourl-track-timeline__body p {
  margin: 0;
  color: #404946;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pourl-track-timeline__item--upcoming {
  opacity: 0.55;
}

.pourl-track-terminal {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid rgba(27, 28, 28, 0.12);
  margin-bottom: 1.5rem;
}

.pourl-track-terminal .material-symbols-outlined {
  font-size: 2rem;
  color: #775a19;
}

.pourl-track-terminal--cancelled .material-symbols-outlined {
  color: #8a1c1c;
}

.pourl-track-terminal strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #00251e;
}

.pourl-track-terminal p {
  margin: 0;
  color: #404946;
}

.pourl-track-meta {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(27, 28, 28, 0.1);
}

@media (min-width: 640px) {
  .pourl-track-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pourl-track-meta p {
  margin: 0;
  color: #404946;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pourl-track-terminal--awaiting {
  border-color: rgba(128, 0, 235, 0.28);
  background:
    linear-gradient(165deg, rgba(128, 0, 235, 0.06), transparent 55%),
    #fff;
}

.pourl-track-terminal--awaiting .material-symbols-outlined {
  color: #8000eb;
}

.pourl-track-simple-pay {
  margin: 0 0 1.75rem;
  padding: 1.25rem 1rem;
  border: 1px solid rgba(128, 0, 235, 0.2);
  background: #fcf9f8;
}

.pourl-track-simple-pay__title {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8000eb;
  font-weight: 700;
}

.pourl-track-simple-pay .pourl-simple-pay {
  padding-top: 0;
}

.pourl-track-simple-pay__fallback {
  margin: 0;
  color: #404946;
  line-height: 1.55;
}

.pourl-track-timeline--awaiting {
  margin-top: 0.5rem;
  opacity: 0.92;
}

.pourl-track-help {
  margin-top: 1.75rem;
}

.pourl-track-ameex {
  margin: 0 0 2rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(119, 90, 25, 0.28);
  background:
    linear-gradient(135deg, rgba(254, 212, 136, 0.18), rgba(255, 255, 255, 0.9)),
    #fbf8f1;
}

.pourl-track-ameex__badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #775a19;
  font-weight: 600;
}

.pourl-track-ameex__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .pourl-track-ameex__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pourl-track-ameex__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #707976;
  margin-bottom: 0.25rem;
}

.pourl-track-ameex__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.05rem;
  color: #00251e;
  word-break: break-all;
}

.pourl-track-ameex__link {
  margin: 1rem 0 0;
}

.pourl-track-ameex__link a {
  color: #775a19;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.95rem;
}

.pourl-track-ameex__link a:hover {
  color: #00251e;
}

/* ========== Paiement Simple ========== */
.pourl-simple-pay {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0.25rem;
  box-sizing: border-box;
  text-align: left;
}

.pourl-simple-pay__intro {
  margin: 0 0 1rem;
  color: #404946;
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
}

.pourl-simple-pay__amount {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid rgba(27, 28, 28, 0.12);
  text-align: left;
}

.pourl-simple-pay__amount-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #775a19;
  font-weight: 600;
}

.pourl-simple-pay__amount-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #00251e;
}

.pourl-simple-pay__qr {
  display: block;
  width: 100%;
  margin: 0 0 1.35rem;
  text-align: center;
}

.pourl-simple-pay__qr img,
.woocommerce-checkout-payment ul.payment_methods li .pourl-simple-pay__qr img,
.wc_payment_methods li .pourl-simple-pay__qr img {
  display: block;
  width: 200px !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto;
  border: 1px solid rgba(27, 28, 28, 0.12);
  background: #fff;
  padding: 0.65rem;
  object-fit: contain;
}

.pourl-simple-pay__qr-missing {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 1rem;
  border: 1px dashed rgba(27, 28, 28, 0.25);
  background: #fff;
  color: #8a1c1c;
  font-size: 0.85rem;
  line-height: 1.45;
  text-align: center;
  box-sizing: border-box;
}

.pourl-simple-pay__merchant {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #775a19;
  text-align: center;
}

.pourl-simple-pay__guide {
  display: block;
  width: 100%;
  margin: 0 0 1.15rem;
  text-align: left;
}

.pourl-simple-pay__guide-title {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #775a19;
  font-weight: 600;
  text-align: left;
}

.pourl-simple-pay__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #1b1c1c;
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
}

.pourl-simple-pay__steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0 0 0.85rem;
  width: 100%;
  text-align: left;
}

.pourl-simple-pay__steps li:last-child {
  margin-bottom: 0;
}

.pourl-simple-pay__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  border-radius: 999px;
  background: #8000eb;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pourl-simple-pay__step-text {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: break-word;
  text-align: left;
}

.pourl-simple-pay__wa {
  display: block;
  width: 100%;
  margin: 0;
  text-align: left;
}

.pourl-simple-pay__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.95rem 1.25rem;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.pourl-simple-pay__wa-btn:hover {
  background: #1ebe57;
}

.pourl-simple-pay__wa-note {
  margin: 0;
  color: #404946;
  font-size: 0.9rem;
  text-align: left;
}

.pourl-simple-pay-thankyou {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid rgba(27, 28, 28, 0.1);
  background:
    linear-gradient(165deg, rgba(128, 0, 235, 0.04), transparent 48%),
    #fff;
}

.woocommerce-checkout-payment ul.payment_methods li.payment_method_pourl_simple .payment_box,
.wc_payment_methods li.payment_method_pourl_simple .payment_box {
  display: block;
  width: 100%;
  max-width: 100%;
  background: #fcf9f8;
  padding: 0.85rem 1rem 1rem;
  margin-top: 0.75rem;
  box-sizing: border-box;
  float: none;
  clear: both;
}

/* ——— Page À propos ——— */
.pourl-about {
  --about-ink: #1b1c1c;
  --about-muted: #5c5754;
  --about-accent: #8b695a;
  --about-line: rgba(139, 105, 90, 0.28);
  --about-soft: #f3eeea;
  color: var(--about-ink);
}

.pourl-about__hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: min(88vh, 720px);
  background: #fcf9f8;
}

@media (min-width: 900px) {
  .pourl-about__hero {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.pourl-about__hero-media {
  position: relative;
  min-height: 42vh;
  overflow: hidden;
  order: -1;
}

@media (min-width: 900px) {
  .pourl-about__hero-media {
    order: 0;
    min-height: 100%;
  }
}

.pourl-about__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transform: scale(1.04);
  animation: pourl-about-ken 20s ease-out both;
}

.pourl-about__hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(252, 249, 248, 0.55) 100%);
  pointer-events: none;
}

@media (min-width: 900px) {
  .pourl-about__hero-media::after {
    background: linear-gradient(90deg, transparent 70%, rgba(252, 249, 248, 0.65) 100%);
  }
}

.pourl-about__hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.25rem clamp(1.25rem, 4vw, 3.5rem) 3rem;
}

.pourl-about__eyebrow {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--about-accent);
  margin: 0 0 1.25rem;
}

.pourl-about__brand {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(3.25rem, 9vw, 5.75rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--about-ink);
  margin: 0 0 1.25rem;
}

.pourl-about__lead {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--about-ink);
  margin: 0 0 0.75rem;
  max-width: 18ch;
}

.pourl-about__lead-sub {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--about-muted);
  margin: 0 0 2rem;
  max-width: 34ch;
}

.pourl-about__scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--about-accent);
  border-bottom: 1px solid var(--about-line);
  padding-bottom: 0.35rem;
  width: fit-content;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.pourl-about__scroll:hover {
  color: var(--about-ink);
  border-color: var(--about-ink);
}

.pourl-about__scroll .material-symbols-outlined {
  font-size: 1rem;
  animation: pourl-about-bob 1.8s ease-in-out infinite;
}

.pourl-about__block {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.pourl-about__block--tint {
  background:
    linear-gradient(180deg, rgba(243, 238, 234, 0.55), rgba(252, 249, 248, 0.9)),
    radial-gradient(ellipse at 10% 0%, rgba(139, 105, 90, 0.08), transparent 55%);
}

.pourl-about__block-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
}

.pourl-about__block-inner--narrow {
  max-width: 760px;
}

.pourl-about__meta {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.pourl-about__num {
  font-family: "Bodoni Moda", serif;
  font-size: 1.35rem;
  color: var(--about-accent);
  font-variant-numeric: lining-nums;
}

.pourl-about__label {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--about-muted);
}

.pourl-about__title {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 1.75rem;
  color: var(--about-ink);
}

.pourl-about__intro {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--about-muted);
  max-width: 42rem;
  margin: 0 0 2.5rem;
}

.pourl-about__story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .pourl-about__story-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.pourl-about__prose p {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--about-muted);
  margin: 0 0 1.25rem;
}

.pourl-about__drop::first-letter {
  font-family: "Bodoni Moda", serif;
  font-size: 3.4rem;
  float: left;
  line-height: 0.8;
  padding: 0.15rem 0.55rem 0 0;
  color: var(--about-accent);
  font-weight: 500;
}

.pourl-about__figure {
  margin: 0;
  position: relative;
}

.pourl-about__figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.pourl-about__figure::before {
  content: "";
  position: absolute;
  inset: 0.85rem -0.85rem -0.85rem 0.85rem;
  border: 1px solid var(--about-line);
  z-index: -1;
  pointer-events: none;
}

.pourl-about__figure figcaption {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--about-muted);
  margin-top: 0.85rem;
}

.pourl-about__pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.pourl-about__pillars li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid var(--about-line);
}

.pourl-about__pillars li:last-child {
  border-bottom: 1px solid var(--about-line);
}

.pourl-about__pillar-index {
  font-family: "Bodoni Moda", serif;
  font-size: 1.5rem;
  color: var(--about-accent);
  line-height: 1;
  padding-top: 0.2rem;
}

.pourl-about__pillars h3 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  color: var(--about-ink);
}

.pourl-about__pillars p {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--about-muted);
  margin: 0;
}

.pourl-about__aside {
  margin-top: 2.75rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--about-line);
  max-width: 36rem;
}

.pourl-about__aside-kicker {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--about-accent);
  margin: 0 0 0.65rem;
}

.pourl-about__aside p:last-child {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--about-muted);
  margin: 0;
}

.pourl-about__quote {
  margin: 0 0 2rem;
  padding: 0 0 0 1.25rem;
  border-left: 2px solid var(--about-accent);
}

.pourl-about__quote p {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--about-ink);
  margin: 0;
}

.pourl-about__thanks {
  font-family: "Bodoni Moda", serif !important;
  font-style: italic;
  font-size: 1.2rem !important;
  color: var(--about-ink) !important;
  margin-top: 1.75rem !important;
}

.pourl-about__cta {
  position: relative;
  min-height: min(62vh, 520px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fcf9f8;
}

.pourl-about__cta-media {
  position: absolute;
  inset: 0;
}

.pourl-about__cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.85);
}

.pourl-about__cta-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 36rem;
}

.pourl-about__cta .pourl-about__eyebrow {
  color: rgba(252, 249, 248, 0.75);
}

.pourl-about__cta-title {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1.75rem;
  color: #fcf9f8;
}

.pourl-about__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1b1c1c;
  background: #fcf9f8;
  padding: 0.95rem 1.5rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.pourl-about__cta-btn:hover {
  transform: translateY(-2px);
  background: #fff;
}

.pourl-about__cta-btn .material-symbols-outlined {
  font-size: 1.1rem;
}

@keyframes pourl-about-ken {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

@keyframes pourl-about-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .pourl-about__hero-media img,
  .pourl-about__scroll .material-symbols-outlined {
    animation: none;
  }
}

/* ——— Guide des tailles ——— */
.pourl-size-guide-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b695a;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.pourl-size-guide-trigger .material-symbols-outlined {
  font-size: 1.15rem !important;
  text-decoration: none;
}

.pourl-size-guide-trigger:hover {
  color: #1b1c1c;
}

.pourl-size-guide {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.pourl-size-guide.is-open {
  pointer-events: auto;
  visibility: visible;
}

.pourl-size-guide__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background: rgba(27, 28, 28, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pourl-size-guide.is-open .pourl-size-guide__backdrop {
  opacity: 1;
}

.pourl-size-guide__panel {
  position: relative;
  z-index: 1;
  width: min(100% - 1.5rem, 560px);
  max-height: min(88vh, 720px);
  overflow: auto;
  margin: 6vh auto 0;
  padding: 1.5rem 1.35rem 1.75rem;
  background: #fcf9f8;
  box-shadow: 0 24px 64px rgba(27, 28, 28, 0.28);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pourl-size-guide.is-open .pourl-size-guide__panel {
  transform: translateY(0);
  opacity: 1;
}

.pourl-size-guide__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pourl-size-guide__eyebrow {
  margin: 0 0 0.35rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8b695a;
}

.pourl-size-guide__title {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 500;
  color: #1b1c1c;
}

.pourl-size-guide__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(139, 105, 90, 0.25);
  background: transparent;
  color: #1b1c1c;
  cursor: pointer;
  flex-shrink: 0;
}

.pourl-size-guide__close:hover {
  background: #1b1c1c;
  color: #fcf9f8;
  border-color: #1b1c1c;
}

.pourl-size-guide__intro {
  margin: 0 0 1.25rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5c5754;
}

.pourl-size-guide__table-wrap {
  overflow-x: auto;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(139, 105, 90, 0.2);
}

.pourl-size-guide__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.88rem;
}

.pourl-size-guide__table th,
.pourl-size-guide__table td {
  padding: 0.75rem 0.65rem;
  text-align: center;
  border-bottom: 1px solid rgba(139, 105, 90, 0.15);
}

.pourl-size-guide__table thead th {
  background: #f3eeea;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5c5754;
}

.pourl-size-guide__table tbody th {
  font-weight: 700;
  color: #1b1c1c;
  letter-spacing: 0.06em;
}

.pourl-size-guide__table tbody tr:last-child th,
.pourl-size-guide__table tbody tr:last-child td {
  border-bottom: 0;
}

.pourl-size-guide__table tbody tr:nth-child(even) {
  background: rgba(243, 238, 234, 0.35);
}

.pourl-size-guide__tips {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.1rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #5c5754;
}

.pourl-size-guide__tips li {
  margin-bottom: 0.35rem;
}

.pourl-size-guide__help {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 105, 90, 0.2);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.88rem;
  color: #5c5754;
}

.pourl-size-guide__help a {
  color: #8b695a;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-weight: 600;
}

.pourl-size-guide__help a:hover {
  color: #1b1c1c;
}

body.pourl-size-guide-open {
  overflow: hidden;
}

/* ——— Popup newsletter −15% ——— */
.pourl-nl-popup {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 1rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.pourl-nl-popup.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.pourl-nl-popup__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(27, 28, 28, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.pourl-nl-popup__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  background:
    linear-gradient(165deg, #fffcf9 0%, #fcf9f8 55%, #f3eeea 100%);
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 28px 70px rgba(27, 28, 28, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.3s ease;
}

.pourl-nl-popup.is-open .pourl-nl-popup__panel {
  transform: translateY(0) scale(1);
}

.pourl-nl-popup__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  background: transparent;
  color: #1b1c1c;
  cursor: pointer;
}

.pourl-nl-popup__close:hover {
  color: #8b695a;
}

.pourl-nl-popup__eyebrow {
  margin: 0 0 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8b695a;
}

.pourl-nl-popup__title {
  margin: 0 0 0.75rem;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.55rem, 4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.15;
  color: #1b1c1c;
}

.pourl-nl-popup__text {
  margin: 0 0 1.25rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #5c5754;
}

.pourl-nl-popup__form {
  display: grid;
  gap: 0.75rem;
}

.pourl-nl-popup__input {
  width: 100%;
  border: 1px solid rgba(139, 105, 90, 0.35);
  background: #fff;
  padding: 0.9rem 1rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  color: #1b1c1c;
}

.pourl-nl-popup__input:focus {
  outline: none;
  border-color: #8b695a;
}

.pourl-nl-popup__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  background: #00251e;
  color: #fcf9f8;
  padding: 0.95rem 1rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pourl-nl-popup__submit:hover {
  background: #003d33;
}

.pourl-nl-popup__submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.pourl-nl-popup__msg {
  margin: 0.75rem 0 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.88rem;
  color: #00251e;
}

.pourl-nl-popup__msg.is-error {
  color: #8b3a3a;
}

.pourl-nl-popup__legal {
  margin: 1rem 0 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #5c5754;
}

.pourl-nl-popup__legal a {
  color: #8b695a;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.pourl-nl-popup__success {
  text-align: center;
}

.pourl-nl-popup__success-icon {
  font-size: 2.5rem !important;
  color: #8b695a;
  margin-bottom: 0.75rem;
}

body.pourl-nl-popup-open {
  overflow: hidden;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Blog archive + article ——— */
.pourl-blog-archive {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(254, 212, 136, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 10%, rgba(0, 37, 30, 0.06), transparent 50%),
    linear-gradient(180deg, #faf7f4 0%, #f3eeea 48%, #faf7f4 100%);
}

.pourl-blog-archive__hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem 1.5rem;
}

.pourl-blog-archive__hero-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.pourl-blog-archive__eyebrow {
  margin: 0 0 0.65rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b695a;
}

.pourl-blog-archive__title {
  margin: 0 0 0.85rem;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.35rem, 7vw, 3.75rem);
  font-weight: 500;
  line-height: 1.05;
  color: #00251e;
}

.pourl-blog-archive__lead {
  margin: 0 auto;
  max-width: 34rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #5c5754;
}

.pourl-blog-archive__wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0;
  display: grid;
  gap: 1.5rem;
}

.pourl-blog-card {
  margin: 0;
  border-radius: 0;
  background: transparent;
}

.pourl-blog-card__link {
  display: grid;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease;
}

.pourl-blog-card__link:hover {
  opacity: 0.92;
}

.pourl-blog-card__link:hover .pourl-blog-card__more {
  color: #00251e;
  gap: 0.55rem;
}

.pourl-blog-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e8e0da;
}

.pourl-blog-card__img,
.pourl-blog-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.pourl-blog-card__link:hover .pourl-blog-card__img {
  transform: scale(1.03);
}

.pourl-blog-card__placeholder {
  background:
    linear-gradient(135deg, #e8e0da 0%, #d4c6bc 50%, #f3eeea 100%);
}

.pourl-blog-card__body {
  display: grid;
  gap: 0.55rem;
  padding: 0 0.15rem;
}

.pourl-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #7a746f;
}

.pourl-blog-card__cat {
  color: #8b695a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

.pourl-blog-card__title {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2;
  color: #1b1c1c;
}

.pourl-blog-card__excerpt {
  margin: 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5c5754;
}

.pourl-blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b695a;
  transition: color 0.2s ease, gap 0.2s ease;
}

.pourl-blog-card__more .material-symbols-outlined {
  font-size: 1rem !important;
}

.pourl-blog-card--featured {
  grid-column: 1 / -1;
}

.pourl-blog-card--featured .pourl-blog-card__link {
  gap: 1.25rem;
}

.pourl-blog-card--featured .pourl-blog-card__title {
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
}

.pourl-blog-archive__pager {
  grid-column: 1 / -1;
  padding: 1rem 0 0.5rem;
}

.pourl-blog-archive__pager .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.88rem;
}

.pourl-blog-archive__pager a,
.pourl-blog-archive__pager span {
  display: inline-flex;
  min-width: 2.5rem;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  color: #00251e;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.pourl-blog-archive__pager a:hover,
.pourl-blog-archive__pager .current {
  border-bottom-color: #8b695a;
}

.pourl-blog-archive__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #5c5754;
  font-family: "Hanken Grotesk", sans-serif;
}

.pourl-blog-archive__band {
  grid-column: 1 / -1;
  margin: 1.5rem 0 0;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 37, 30, 0.94), rgba(0, 37, 30, 0.86)),
    #00251e;
  color: #faf7f4;
}

.pourl-blog-archive__band-kicker {
  margin: 0 0 0.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fed488;
}

.pourl-blog-archive__band-text {
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(250, 247, 244, 0.88);
}

.pourl-blog-archive__band-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.5rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #00251e;
  background: #fed488;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pourl-blog-archive__band-btn:hover {
  background: #ffe4b0;
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .pourl-blog-archive__wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.75rem;
  }

  .pourl-blog-card--featured .pourl-blog-card__link {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 2rem;
  }

  .pourl-blog-card--featured .pourl-blog-card__media {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 1100px) {
  .pourl-blog-archive__wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pourl-blog-card--featured {
    grid-column: 1 / -1;
  }
}

/* Single article */
.pourl-blog-single {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(254, 212, 136, 0.14), transparent 55%),
    #faf7f4;
}

.pourl-blog-single__hero {
  max-width: 52rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1.25rem 0;
}

.pourl-blog-single__hero-copy {
  text-align: center;
  margin-bottom: 1.75rem;
}

.pourl-blog-single__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.55rem;
  margin-bottom: 0.85rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.8rem;
  color: #7a746f;
}

.pourl-blog-single__cat {
  color: #8b695a;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
  text-decoration: none;
}

.pourl-blog-single__cat:hover {
  color: #00251e;
}

.pourl-blog-single__title {
  margin: 0 0 0.85rem;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2rem, 5.5vw, 3.15rem);
  font-weight: 500;
  line-height: 1.12;
  color: #00251e;
}

.pourl-blog-single__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #5c5754;
}

.pourl-blog-single__cover {
  margin: 0;
  overflow: hidden;
  background: #e8e0da;
}

.pourl-blog-single__cover-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pourl-blog-single__layout {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 0;
  display: grid;
  gap: 1.5rem;
}

.pourl-blog-single__rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(139, 105, 90, 0.18);
}

.pourl-blog-single__rail-label {
  margin: 0 0.35rem 0 0;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a746f;
}

.pourl-blog-single__share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(139, 105, 90, 0.28);
  background: transparent;
  color: #00251e;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pourl-blog-single__share:hover,
.pourl-blog-single__share.is-copied {
  background: #00251e;
  border-color: #00251e;
  color: #faf7f4;
}

.pourl-blog-single__share .material-symbols-outlined {
  font-size: 1.15rem !important;
}

.pourl-blog-single__main {
  min-width: 0;
}

.pourl-blog-article__content {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.05rem;
}

.pourl-blog-article__content > *:first-child {
  margin-top: 0;
}

.pourl-blog-article__content h2 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  color: #1b1c1c;
  margin: 2.25rem 0 0.85rem;
  line-height: 1.2;
}

.pourl-blog-article__content h3 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1b1c1c;
  margin: 1.5rem 0 0.5rem;
}

.pourl-blog-article__content p {
  margin: 0 0 1.15rem;
  line-height: 1.78;
  color: #5c5754;
}

.pourl-blog-article__content ul,
.pourl-blog-article__content ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: #5c5754;
  line-height: 1.7;
}

.pourl-blog-article__content li {
  margin-bottom: 0.45rem;
}

.pourl-blog-article__content a {
  color: #8b695a;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pourl-blog-article__content a:hover {
  color: #1b1c1c;
}

.pourl-blog-article__content blockquote {
  margin: 1.75rem 0;
  padding: 0.35rem 0 0.35rem 1.15rem;
  border-left: 2px solid #8b695a;
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #1b1c1c;
}

.pourl-blog-article__content blockquote p {
  margin: 0;
  color: inherit;
}

.pourl-blog-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.92rem;
}

.pourl-blog-article__content th,
.pourl-blog-article__content td {
  border: 1px solid rgba(139, 105, 90, 0.22);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.pourl-blog-article__content thead th {
  background: #f3eeea;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pourl-blog-figure {
  margin: 1.75rem 0;
}

.pourl-blog-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #e8e0da;
}

.pourl-blog-figure figcaption {
  margin-top: 0.55rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #7a746f;
  text-align: center;
}

.pourl-blog-cta {
  margin: 2rem 0;
  padding: 1.35rem 1.25rem;
  background:
    linear-gradient(120deg, rgba(243, 238, 234, 0.95), rgba(254, 212, 136, 0.18));
  border-left: 3px solid #8b695a;
}

.pourl-blog-cta__note {
  margin: 0 0 0.85rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5c5754;
}

.pourl-blog-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #faf7f4;
  background: #00251e;
  padding: 0.75rem 1.15rem;
  transition: background 0.2s ease;
}

.pourl-blog-cta__btn:hover {
  background: #003d33;
  color: #faf7f4;
}

.pourl-blog-cta__btn .material-symbols-outlined {
  font-size: 1rem !important;
}

.pourl-blog-single__help {
  margin: 2.5rem 0 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid rgba(139, 105, 90, 0.2);
}

.pourl-blog-single__help p {
  margin: 0 0 0.85rem;
  font-family: "Hanken Grotesk", sans-serif;
  color: #5c5754;
}

.pourl-blog-single__help-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.pourl-blog-single__help-actions a {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #8b695a;
  border-bottom: 1px solid rgba(139, 105, 90, 0.35);
  padding-bottom: 0.15rem;
}

.pourl-blog-single__help-actions a:hover {
  color: #00251e;
  border-bottom-color: #00251e;
}

.pourl-blog-single__footer {
  margin-top: 2rem;
}

.pourl-blog-single__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: #00251e;
}

.pourl-blog-single__back:hover {
  color: #8b695a;
}

.pourl-blog-single__back .material-symbols-outlined {
  font-size: 1.1rem !important;
}

.pourl-blog-related {
  margin-top: 3rem;
  padding: 2.5rem 1.25rem 0;
  background: linear-gradient(180deg, transparent, rgba(243, 238, 234, 0.7) 20%);
}

.pourl-blog-related__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.pourl-blog-related__eyebrow {
  margin: 0 0 0.4rem;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b695a;
  text-align: center;
}

.pourl-blog-related__title {
  margin: 0 0 1.5rem;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #00251e;
  text-align: center;
}

.pourl-blog-related__grid {
  display: grid;
  gap: 1.25rem;
}

.pourl-blog-related__card {
  display: grid;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.pourl-blog-related__card:hover {
  opacity: 0.9;
}

.pourl-blog-related__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #e8e0da;
}

.pourl-blog-related__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.pourl-blog-related__card:hover .pourl-blog-related__media img {
  transform: scale(1.03);
}

.pourl-blog-related__body {
  display: grid;
  gap: 0.3rem;
}

.pourl-blog-related__date {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.75rem;
  color: #7a746f;
}

.pourl-blog-related__name {
  font-family: "Bodoni Moda", serif;
  font-size: 1.15rem;
  line-height: 1.25;
  color: #1b1c1c;
}

@media (min-width: 900px) {
  .pourl-blog-single__layout {
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
  }

  .pourl-blog-single__rail {
    position: sticky;
    top: 6.5rem;
    flex-direction: column;
    border-bottom: 0;
    padding-bottom: 0;
  }

  .pourl-blog-single__rail-label {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin: 0 0 0.5rem;
  }

  .pourl-blog-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pourl-blog-card__img,
  .pourl-blog-related__media img,
  .pourl-blog-card__link,
  .pourl-blog-archive__band-btn {
    transition: none;
  }

  .pourl-blog-card__link:hover .pourl-blog-card__img,
  .pourl-blog-related__card:hover .pourl-blog-related__media img {
    transform: none;
  }
}
