/** Shopify CDN: Minification failed

Line 5740:2 Unexpected "{"
Line 5740:3 Expected identifier but found "%"
Line 5741:4 Unexpected "{"
Line 5741:5 Expected identifier but found "%"
Line 5747:4 Unexpected "{"
Line 5747:5 Expected identifier but found "%"
Line 5753:4 Unexpected "{"
Line 5753:5 Expected identifier but found "%"
Line 5764:4 Unexpected "{"
Line 5764:5 Expected identifier but found "%"
... and 18 more hidden warnings

**/


/* CSS from section stylesheet tags */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background-color: var(--color-background);
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .error-404__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
  }

  .error-404__image {
    margin-bottom: 2rem;
  }

  .error-404__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .error-404__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .error-404__message {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .error-404__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
  }

  @media (min-width: 480px) {
    .error-404__actions {
      flex-direction: row;
      justify-content: center;
    }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
    min-width: 160px;
  }

  .btn--primary {
    background-color: #8b7355;
    color: white;
    border: 2px solid #8b7355;
  }

  .btn--primary:hover {
    background-color: #7a6249;
    border-color: #7a6249;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  }

  .btn--secondary {
    background-color: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
  }

  .btn--secondary:hover {
    background-color: #8b7355;
    color: white;
  }

  .error-404__suggestions {
    text-align: left;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .error-404__suggestions-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
    text-align: center;
  }

  .error-404__suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .error-404__suggestion-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
  }

  .error-404__suggestion-link:hover {
    background-color: #f5f5f5;
    color: #8b7355;
    border-color: #8b7355;
  }

  @media (max-width: 768px) {
    .error-404 {
      padding: 2rem 0;
    }

    .error-404__container {
      padding: 0 1rem;
    }

    .error-404__suggestions {
      padding: 1.5rem;
    }
  }
.about-section {
    padding: 80px 0 120px 0;
    background-color: var(--color-background);
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* En-tête */
  .about__header {
    text-align: center;
    margin-bottom: 80px;
  }

  .about__title {
    font-size: 48px;
    font-weight: 400;
    color: #000;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .about__subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #666;
    margin: 0;
    font-style: italic;
    letter-spacing: -0.01em;
  }

  /* Contenu principal */
  .about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  /* Colonne de texte */
  .about__text-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .about__block {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about__block-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .about__intro {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .about__text {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0;
    letter-spacing: -0.005em;
  }

  .about__text--italic {
    font-style: italic;
    color: #666;
  }

  /* Colonne image */
  .about__image-column {
    position: sticky;
    top: 100px;
  }

  .about__image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
  }

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

  .about__image-placeholder {
    aspect-ratio: 4/5;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about__image-placeholder .placeholder-svg {
    width: 60px;
    height: 60px;
    opacity: 0.3;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .about__content {
      grid-template-columns: 1fr;
      gap: 60px;
    }

    .about__image-column {
      position: static;
      order: -1;
      max-width: 500px;
      margin: 0 auto;
    }

    .about__header {
      margin-bottom: 60px;
    }

    .about__text-column {
      gap: 30px;
    }
  }

  @media (max-width: 768px) {
    .about-section {
      padding: 60px 0 80px 0;
    }

    .about__container {
      padding: 0 20px;
    }

    .about__header {
      margin-bottom: 60px;
    }

    .about__title {
      font-size: 36px;
      margin-bottom: 12px;
    }

    .about__subtitle {
      font-size: 20px;
    }

    .about__content {
      grid-template-columns: 1fr;
      gap: 60px;
    }

    .about__image-column {
      position: static;
      order: -1;
    }

    .about__text-column {
      gap: 32px;
    }

    .about__intro {
      font-size: 18px;
    }

    .about__text {
      font-size: 15px;
    }
  }

  @media (max-width: 480px) {
    .about-section {
      padding: 40px 0 60px 0;
    }

    .about__title {
      font-size: 28px;
    }

    .about__subtitle {
      font-size: 18px;
    }

    .about__intro {
      font-size: 16px;
    }
  }
.cart {
    background-color: var(--color-background);
    min-height: 100vh;
    padding: var(--spacing-xl, 40px) 0;
  }

  .cart__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }

  .cart__header {
    text-align: center;
    margin-bottom: var(--spacing-xxl, 60px);
  }

  .cart__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0 0 var(--spacing-sm, 12px) 0;
    text-transform: uppercase;
  }

  .cart__count {
    color: var(--color-text-secondary, #666);
    font-size: 1.1rem;
    margin: 0;
  }

  /* Layout principal */
  .cart__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-xxl, 60px);
    align-items: start;
  }

  /* Articles du panier */
  .cart__items {
    background: white;
    border-radius: 12px;
    padding: var(--spacing-xl, 40px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .cart__item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: var(--spacing-lg, 32px);
    align-items: start;
    padding: var(--spacing-lg, 32px) 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .cart__item:last-child {
    border-bottom: none;
  }

  .cart__item-image {
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
  }

  .cart__item-image img,
  .cart__item-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart__item-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm, 12px);
  }

  .cart__item-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
  }

  .cart__item-title a {
    color: var(--color-text, #333);
    text-decoration: none;
  }

  .cart__item-title a:hover {
    color: var(--color-primary, #000);
  }

  .cart__item-variant {
    color: var(--color-text-secondary, #666);
    font-size: 0.9rem;
    margin: 0;
  }

  .cart__item-properties p {
    font-size: 0.85rem;
    color: var(--color-text-secondary, #666);
    margin: 0;
  }

  .cart__item-properties span {
    font-weight: 500;
  }

  .cart__item-price {
    text-align: right;
  }

  .cart__item-original-price {
    text-decoration: line-through;
    color: var(--color-text-secondary, #666);
    font-size: 0.9rem;
    display: block;
  }

  .cart__item-final-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-accent, #d2691e);
  }

  /* Contrôles de quantité */
  .cart__item-quantity {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm, 12px);
    align-items: center;
  }

  .cart__quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: white;
    overflow: hidden;
  }

  .cart__quantity-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 36px;
  }

  .cart__quantity-btn:hover {
    background-color: #f5f5f5;
  }

  .cart__quantity-input {
    border: none;
    padding: 8px;
    text-align: center;
    width: 50px;
    font-size: 14px;
    background: transparent;
    -moz-appearance: textfield;
  }

  .cart__quantity-input:focus {
    outline: none;
  }

  /* Supprimer les flèches des inputs number */
  .cart__quantity-input::-webkit-outer-spin-button,
  .cart__quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart__remove-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary, #666);
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px 0;
    transition: color 0.3s ease;
  }

  .cart__remove-btn:hover {
    color: #d32f2f;
  }

  .cart__item-total {
    text-align: right;
  }

  .cart__item-total-price {
    font-size: 1.2rem;
    font-weight: 500;
  }

  /* Résumé du panier */
  .cart__summary {
    position: sticky;
    top: var(--spacing-xl, 40px);
  }

  .cart__summary-content {
    background: white;
    border-radius: 12px;
    padding: var(--spacing-xl, 40px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .cart__totals {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: var(--spacing-lg, 32px);
    margin-bottom: var(--spacing-lg, 32px);
  }

  .cart__subtotal,
  .cart__discounts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md, 20px);
  }

  .cart__subtotal-price {
    font-size: 1.3rem;
    font-weight: 500;
  }

  .cart__discount-amount {
    color: var(--color-accent, #d2691e);
    font-weight: 500;
  }

  .cart__shipping {
    text-align: center;
  }

  .cart__shipping small {
    color: var(--color-text-secondary, #666);
    font-size: 0.85rem;
  }

  .cart__checkout-btn {
    width: 100%;
    background: var(--color-primary, #333);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-md, 20px);
  }

  .cart__checkout-btn:hover {
    background: var(--color-primary-dark, #222);
    transform: translateY(-2px);
  }

  .cart__dynamic-checkout {
    margin-bottom: var(--spacing-md, 20px);
  }

  .cart__continue-link {
    display: block;
    text-align: center;
    color: var(--color-text-secondary, #666);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .cart__continue-link:hover {
    color: var(--color-primary, #333);
  }

  /* Panier vide */
  .cart__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
  }

  .cart__empty-content {
    text-align: center;
    max-width: 500px;
  }

  .cart__empty-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin: 0 0 var(--spacing-md, 20px) 0;
  }

  .cart__empty-content p {
    color: var(--color-text-secondary, #666);
    font-size: 1.1rem;
    margin: 0 0 var(--spacing-xl, 40px) 0;
    line-height: 1.6;
  }

  .cart__empty-btn {
    display: inline-block;
    background: var(--color-primary, #333);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }

  .cart__empty-btn:hover {
    background: var(--color-primary-dark, #222);
    transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .cart__content {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg, 32px);
    }

    .cart__summary {
      position: static;
    }

    .cart__item {
      grid-template-columns: 120px 1fr auto;
      gap: var(--spacing-md, 20px);
    }

    .cart__item-image {
      width: 120px;
      height: 120px;
    }
  }

  @media (max-width: 768px) {
    .cart {
      padding: var(--spacing-lg, 32px) 0;
    }

    .cart__content {
      grid-template-columns: 1fr;
      gap: var(--spacing-xl, 40px);
    }

    .cart__item {
      grid-template-columns: 80px 1fr;
      gap: var(--spacing-md, 20px);
      grid-template-areas: 
        "image details"
        "quantity quantity"
        "total total";
    }

    .cart__item-image {
      grid-area: image;
    }

    .cart__item-details {
      grid-area: details;
    }

    .cart__item-quantity {
      grid-area: quantity;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }

    .cart__item-total {
      grid-area: total;
      text-align: center;
      padding-top: var(--spacing-sm, 12px);
      border-top: 1px solid #f0f0f0;
    }

    .cart__summary {
      position: static;
    }
  }

  @media (max-width: 480px) {
    .cart__container {
      padding: 0 var(--page-margin, 15px);
    }

    .cart__title {
      font-size: 2rem;
    }

    .cart__item {
      grid-template-columns: 60px 1fr;
      gap: var(--spacing-sm, 12px);
      padding: var(--spacing-md, 20px) 0;
    }

    .cart__item-image {
      width: 60px;
      height: 60px;
    }

    .cart__checkout-btn {
      padding: 16px 24px;
      font-size: 14px;
    }

    .cart__empty-content h2 {
      font-size: 1.5rem;
    }

    .cart__empty-content p {
      font-size: 1rem;
    }
  }

  /* Utilities */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
.cgv-page {
    background-color: var(--background-color);
    padding: var(--section-padding-top, 60px) 0 var(--section-padding-bottom, 60px);
    font-family: var(--font-primary--family);
  }

  .cgv-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* En-tête de la page */
  .cgv-page__header {
    text-align: center;
    margin-bottom: 80px;
  }

  .cgv-page__title {
    font-size: 48px;
    font-weight: 400;
    color: #000;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-family: var(--font-heading--family);
  }

  .cgv-page__subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #666;
    margin: 0 0 24px 0;
    font-style: italic;
    letter-spacing: -0.01em;
  }

  .cgv-page__intro {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Articles */
  .cgv-page__articles {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .cgv-article {
    background: transparent;
  }

  .cgv-article__container {
    display: grid;
    align-items: start;
    min-height: 200px;
  }

  /* Article sans image */
  .cgv-article--none .cgv-article__container {
    grid-template-columns: 1fr;
  }

  .cgv-article__content--full {
    padding: 20px 0;
  }

  /* Article avec image à droite */
  .cgv-article--right .cgv-article__container {
    grid-template-columns: 1fr 400px;
  }

  /* Article avec image à gauche */
  .cgv-article--left .cgv-article__container {
    grid-template-columns: 400px 1fr;
  }

  .cgv-article--left .cgv-article__content {
    order: 2;
  }

  .cgv-article--left .cgv-article__image-wrapper {
    order: 1;
  }

  /* Contenu des articles */
  .cgv-article__content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cgv-article__title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .cgv-article__subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin: 0;
    font-style: italic;
  }

  .cgv-article__text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
  }

  .cgv-article__text p {
    margin: 0 0 16px 0;
  }

  .cgv-article__text p:last-child {
    margin-bottom: 0;
  }

  .cgv-article__text ul,
  .cgv-article__text ol {
    margin: 16px 0;
    padding-left: 24px;
  }

  .cgv-article__text li {
    margin-bottom: 8px;
  }

  /* Images */
  .cgv-article__image-wrapper {
    display: flex;
    align-items: center;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
  }

  .cgv-article__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    max-height: 500px;
  }

  .cgv-article__image-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
  }

  .cgv-article__image-placeholder .placeholder-svg {
    width: 60px;
    height: 60px;
    opacity: 0.3;
  }

  /* Séparateurs */
  .cgv-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
  }

  .cgv-separator__line {
    width: 100%;
    max-width: 200px;
    border: none;
    border-top: 2px solid #e5e5e5;
    margin: 0;
  }

  .cgv-separator__space {
    width: 100%;
  }

  .cgv-separator__dots {
    display: flex;
    gap: 8px;
  }

  .cgv-separator__dots span {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .cgv-page__container {
      padding: 0 20px;
    }

    .cgv-article--right .cgv-article__container,
    .cgv-article--left .cgv-article__container {
      grid-template-columns: 1fr;
    }

    .cgv-article--left .cgv-article__content,
    .cgv-article--left .cgv-article__image-wrapper {
      order: unset;
    }

    .cgv-page__articles {
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    .cgv-page {
      padding: var(--section-padding-top-mobile, 40px) 0 var(--section-padding-bottom-mobile, 40px);
    }

    .cgv-page__container {
      padding: 0 15px;
    }

    .cgv-page__header {
      margin-bottom: 40px;
    }

    .cgv-page__title {
      font-size: clamp(28px, 6vw, 36px);
    }

    .cgv-page__subtitle {
      font-size: 18px;
    }

    .cgv-page__intro {
      font-size: 16px;
    }

    .cgv-article__content,
    .cgv-article__content--full {
      padding: 16px 0;
    }

    .cgv-article__title {
      font-size: 24px;
    }

    .cgv-article__subtitle {
      font-size: 16px;
    }

    .cgv-article__text {
      font-size: 15px;
    }

    .cgv-article__image {
      min-height: 200px;
      max-height: 300px;
    }

    .cgv-page__articles {
      gap: 30px;
    }
  }
/* Hero Section - Style À propos */
  .collection-hero {
    padding: 80px 0 120px 0;
    background-color: var(--color-background);
    font-family: var(--font-primary--family);
  }

  .collection-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* En-tête */
  .collection-hero__header {
    text-align: center;
    margin-bottom: 80px;
  }

  .collection-hero__title {
    font-size: 48px;
    font-weight: 400;
    color: #000;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-family: var(--font-heading--family);
  }

  .collection-hero__subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #666;
    margin: 0 0 24px 0;
    font-style: italic;
    letter-spacing: -0.01em;
    font-family: var(--font-primary--family);
  }

  .collection-hero__scroll-link {
    background: none;
    border: 2px solid #8b7355;
    color: #8b7355;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: var(--font-primary--family);
    text-transform: none;
    white-space: nowrap;
    margin-top: 8px;
  }

  .collection-hero__scroll-link:hover {
    background: #8b7355;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
  }

  .collection-hero__scroll-link svg {
    transition: transform 0.3s ease;
  }

  .collection-hero__scroll-link:hover svg {
    transform: translateY(2px);
  }

  /* Contenu principal */
  .collection-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  /* Mode centré sans description */
  .collection-hero__content--centered {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: var(--centered-image-size, 700px);
    margin: 0 auto;
  }

  .collection-hero__content--centered .collection-hero__image-column {
    width: 100%;
    max-width: var(--centered-image-size, 700px);
    position: static;
  }

  .collection-hero__content--centered .collection-hero__image {
    aspect-ratio: 3/4;
  }

  /* Colonne de texte */
  .collection-hero__text-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .collection-hero__description {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .collection-hero__description p {
    margin: 0 0 16px 0;
  }

  .collection-hero__description p:last-child {
    margin-bottom: 0;
  }

  /* Colonne image */
  .collection-hero__image-column {
    position: sticky;
    top: 100px;
  }

  .collection-hero__image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
  }

  .collection-hero__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
  }

  .collection-hero__image-placeholder {
    aspect-ratio: 4/5;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collection-hero__image-placeholder .placeholder-svg {
    width: 60px;
    height: 60px;
    opacity: 0.3;
  }

  /* Deuxième image */
  .collection-hero__secondary-image-wrapper {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
  }

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

  .collection-page {
    width: 100%;
    padding: 40px 0;
  }
  
  .collection-page .collection-products {
    width: 100%;
    padding: 0;
  }

  .collection-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .collection-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0 0 20px 0;
    color: #333;
  }

  .collection-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Responsive Hero */
  @media (max-width: 1024px) {
    .collection-hero__content {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
    }

    .collection-hero__content--centered {
      max-width: min(var(--centered-image-size, 700px), 450px);
      gap: 2rem;
    }

    .collection-hero__content--centered .collection-hero__image-column {
      max-width: min(var(--centered-image-size, 700px), 400px);
    }

    .collection-hero__header {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }

    .collection-hero__image {
      order: -1;
      max-width: 500px;
      margin: 0 auto;
    }
  }

  @media (max-width: 768px) {
    .collection-hero {
      padding: 3rem 0;
    }

    .collection-hero__container {
      padding: 0 1rem;
    }

    .collection-hero__content {
      gap: 2rem;
      min-height: auto;
    }

    .collection-hero__content--centered {
      max-width: min(var(--centered-image-size, 700px), 350px);
      gap: 1.5rem;
    }

    .collection-hero__content--centered .collection-hero__image-column {
      max-width: min(var(--centered-image-size, 700px), 300px);
    }

    .collection-hero__content--centered .collection-hero__image {
      aspect-ratio: 1/1;
    }

    .collection-hero__title {
      font-size: clamp(2rem, 6vw, 2.5rem);
      margin-bottom: 1.5rem;
    }

    .collection-hero__header {
      margin-bottom: 1.5rem;
    }

    .collection-hero__description {
      font-size: 1rem;
    }

    .collection-hero__scroll-link {
      padding: 0.6rem 1.2rem;
      font-size: 0.85rem;
    }

    .collection-hero__secondary-image-wrapper {
      margin-top: 15px;
    }

    .collection-hero__secondary-image {
      aspect-ratio: 3/2;
    }
  }

  /* Grille de produits collection - 100% width avec bordures optimisées */
  .collection-products-grid {
    display: grid;
    gap: 0;
    margin-bottom: 40px;
    width: 100%;
    max-width: none;
  }

  /* Grilles responsives 100% width */
  .collection-products-grid[data-columns-desktop="3"] {
    grid-template-columns: repeat(3, 1fr);
  }

  .collection-products-grid[data-columns-desktop="4"] {
    grid-template-columns: repeat(4, 1fr);
  }

  .collection-products-grid[data-columns-desktop="5"] {
    grid-template-columns: repeat(5, 1fr);
  }

  /* Cartes produits avec bordures uniformes simplifiées */
  .collection-product-card {
    background: #f8f8f8;
    border: 1px solid var(--border-color, #ffffff);
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
  }

  /* Logique pour éviter les doublons de bordures - Desktop */
  .collection-products-grid[data-columns-desktop="3"] .collection-product-card:not(:nth-child(3n)) {
    border-right: none;
  }
  .collection-products-grid[data-columns-desktop="4"] .collection-product-card:not(:nth-child(4n)) {
    border-right: none;
  }
  .collection-products-grid[data-columns-desktop="5"] .collection-product-card:not(:nth-child(5n)) {
    border-right: none;
  }
  /* Bordures du bas selon la grille */
  .collection-products-grid[data-columns-desktop="3"] .collection-product-card:not(:nth-last-child(-n+3)) {
    border-bottom: none;
  }
  .collection-products-grid[data-columns-desktop="4"] .collection-product-card:not(:nth-last-child(-n+4)) {
    border-bottom: none;
  }
  .collection-products-grid[data-columns-desktop="5"] .collection-product-card:not(:nth-last-child(-n+5)) {
    border-bottom: none;
  }

  .collection-product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
  }

  .collection-product-card__image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f8f8f8;
    margin-bottom: 1rem;
  }

  .collection-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
  }

  .collection-product-card__image--primary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
  }

  .collection-product-card__image--secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }

  .collection-product-card:hover .collection-product-card__image--primary {
    opacity: 0;
  }

  .collection-product-card:hover .collection-product-card__image--secondary {
    opacity: 1;
  }

  .collection-product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
  }

  .collection-product-card__info {
    display: flex;
    flex-direction: column;
    min-height: 100px;
    text-align: center;
    padding: 0 0.5rem 1rem 0.5rem;
  }

  .collection-product-card__title {
    font-size: 1rem;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 auto 0;
    line-height: 1.3;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
    flex-grow: 1;
  }

  .collection-product-card:hover .collection-product-card__title {
    text-decoration: underline;
  }

  .collection-product-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
  }

  .collection-product-card__price-regular {
    font-size: 1rem;
    font-weight: 600;
    color: #8b7355;
  }

  .collection-product-card__price-sale {
    font-size: 1rem;
    font-weight: 600;
    color: #d2691e;
  }

  .collection-product-card__price-compare {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
  }

  .collection-empty {
    text-align: center;
    padding: 80px 20px;
    color: #666;
  }

  .collection-empty h2 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 400;
  }

  /* Filtres - CSS copié exactement du carousel similar-products */
  .collection-filters {
    margin-bottom: 40px;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  /* Dropdown mobile pour filtres de types */
  .collection-filters__mobile-dropdown {
    display: none; /* Caché par défaut */
    margin-bottom: 15px;
  }

  .collection-filters__mobile-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    text-align: left;
  }

  .collection-filters__select-wrapper {
    position: relative;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    transition: border-color 0.3s ease;
  }

  .collection-filters__select-wrapper:hover {
    border-color: #8b7355;
  }

  .collection-filters__select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    appearance: none;
    cursor: pointer;
    font-family: inherit;
  }

  .collection-filters__select:focus {
    outline: none;
  }

  .collection-filters__select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: transform 0.3s ease;
  }

  .collection-filters__select-wrapper:hover .collection-filters__select-icon {
    color: #8b7355;
  }

  /* Affichage multi-lignes desktop */
  .collection-filters[data-multiline="true"] .collection-filters__track {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 12px;
    overflow-x: visible;
    overflow-y: visible;
    padding: 1rem 1rem 0 1rem;
  }

  .collection-filters[data-multiline="true"] .filter-btn-wrapper {
    flex: 0 0 auto;
  }
  
  .collection-filters__carousel {
    position: relative;
    overflow: hidden;
    padding: 0;
  }

  .collection-filters__track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 1rem 15px 1rem; /* Moins de padding */
  }

  .filter-btn-wrapper {
    flex: 0 0 auto; /* Largeur automatique pour les boutons */
    min-width: 0;
  }

  /* Scrollbar personnalisée pour desktop */
  @media (min-width: 1025px) {
    .collection-filters__track::-webkit-scrollbar {
      height: 6px;
    }

    .collection-filters__track::-webkit-scrollbar-track {
      background: rgba(139, 115, 85, 0.1);
      border-radius: 10px;
    }

    .collection-filters__track::-webkit-scrollbar-thumb {
      background: rgba(139, 115, 85, 0.4);
      border-radius: 10px;
      transition: background 0.3s ease;
    }

    .collection-filters__track::-webkit-scrollbar-thumb:hover {
      background: rgba(139, 115, 85, 0.7);
    }
  }


  .filter-btn {
    background: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .filter-btn:hover {
    border-color: #8b7355;
    color: #8b7355;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.2);
  }

  .filter-btn.active {
    background-color: #8b7355;
    border-color: #8b7355;
    color: white;
  }

  .filter-btn.active:hover {
    background-color: #7a6249;
    border-color: #7a6249;
    color: white;
  }

  .collection-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
  }

  .collection-no-results h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 400;
    color: #333;
  }

  .collection-no-results p {
    margin: 0;
    font-size: 1rem;
  }

  /* Animation pour les produits filtrés */
  .collection-product-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .collection-product-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
  }

  /* Responsive Collection Grid */
  @media (max-width: 1024px) {
    .collection-products-grid[data-columns-desktop="4"],
    .collection-products-grid[data-columns-desktop="5"] {
      grid-template-columns: repeat(3, 1fr);
    }
    /* Bordures responsive tablette - 3 colonnes pour grilles 4 et 5 */
    .collection-products-grid[data-columns-desktop="4"] .collection-product-card:not(:nth-child(3n)),
    .collection-products-grid[data-columns-desktop="5"] .collection-product-card:not(:nth-child(3n)) {
      border-right: none;
    }
    .collection-products-grid[data-columns-desktop="4"] .collection-product-card:not(:nth-last-child(-n+3)),
    .collection-products-grid[data-columns-desktop="5"] .collection-product-card:not(:nth-last-child(-n+3)) {
      border-bottom: none;
    }

    .collection-product-card__image-container {
      height: 250px;
    }
  }

  @media (max-width: 768px) {
    .collection-page {
      padding: 20px 15px;
    }

    .collection-title {
      font-size: 2rem;
    }

    .collection-filters {
      padding: 15px 0;
      margin-bottom: 30px;
    }

    /* Affichage mobile : dropdown pour filtres de types, boutons pour prix */
    .collection-filters--types .collection-filters__mobile-dropdown {
      display: block;
      padding: 0 15px;
    }

    .collection-filters--types .collection-filters__carousel {
      display: none;
    }

    /* Les filtres de prix restent en boutons sur mobile */
    .collection-filters--price .collection-filters__mobile-dropdown {
      display: none;
    }

    .collection-filters--price .collection-filters__carousel {
      display: block;
    }

    .filter-btn {
      font-size: 0.8rem;
      padding: 6px 12px;
      min-width: auto;
    }

    .collection-products-grid[data-columns-mobile="1"] {
      grid-template-columns: 1fr !important;
      gap: 0;
    }
    .collection-products-grid[data-columns-mobile="1"] .collection-product-card {
      border-right: 1px solid var(--border-color, #ffffff);
      border-bottom: none;
    }
    .collection-products-grid[data-columns-mobile="1"] .collection-product-card:last-child {
      border-bottom: 1px solid var(--border-color, #ffffff);
    }

    .collection-products-grid[data-columns-mobile="2"] {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 0;
    }
    .collection-products-grid[data-columns-mobile="2"] .collection-product-card:not(:nth-child(2n)) {
      border-right: none;
    }
    .collection-products-grid[data-columns-mobile="2"] .collection-product-card:not(:nth-last-child(-n+2)) {
      border-bottom: none;
    }

    .collection-product-card__image-container {
      height: 200px;
    }

    .collection-product-card__info {
      padding: 0 0.25rem 0.75rem 0.25rem;
    }
  }

  @media (max-width: 480px) {
    .collection-products-grid[data-columns-mobile="2"] {
      grid-template-columns: repeat(2, 1fr) !important;
    }

    .collection-product-card__image-container {
      height: 180px;
    }

    .collection-product-card__title {
      font-size: 0.9rem;
    }

    .collection-product-card__price-regular,
    .collection-product-card__price-sale {
      font-size: 0.9rem;
    }

    .collection-product-card__price-compare {
      font-size: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    .collection-hero {
      padding: 60px 0 80px 0;
    }

    .collection-hero__container {
      padding: 0 15px;
    }

    .collection-hero__title {
      font-size: clamp(1.8rem, 5vw, 2.2rem);
      margin-bottom: 1rem;
    }

    .collection-hero__content--centered {
      max-width: min(var(--centered-image-size, 700px), 280px);
      gap: 1rem;
    }

    .collection-hero__content--centered .collection-hero__image-column {
      max-width: min(var(--centered-image-size, 700px), 250px);
    }

    .collection-page {
      padding: 15px 10px;
    }

    .collection-title {
      font-size: 1.8rem;
    }

    .filter-btn {
      font-size: 0.8rem;
      padding: 6px 12px;
    }

    .collection-product-card__image-container {
      height: 220px;
    }

    .collection-product-card__info {
      padding: 0.5rem 0.25rem 0.75rem 0.25rem;
      min-height: 80px;
    }

    .collection-product-card__title {
      font-size: 0.9rem;
      line-height: 1.2;
    }

    .collection-product-card__price-regular,
    .collection-product-card__price-sale {
      font-size: 0.85rem;
    }
  }
.collections-split {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
  }

  .collections-split__container {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .collections-split__item {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .collections-split__item:hover {
    flex: 1.1;
  }

  /* Style pour une seule section affichée */
  .collections-split__container--single .collections-split__item {
    flex: 1;
    max-width: 100%;
  }

  .collections-split__container--single .collections-split__item:hover {
    flex: 1;
  }

  .collections-split__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .collections-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .collections-split__item:hover .collections-split__image img {
    transform: scale(1.05);
  }

  .collections-split__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }

  .collections-split__item:hover .collections-split__overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
  }

  .collections-split__content {
    text-align: center;
    color: white;
    padding: 40px 20px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
  }

  .collections-split__item:hover .collections-split__content {
    transform: translateY(0);
  }

  .collections-split__title {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0 0 16px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .collections-split__description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0 0 24px 0;
    opacity: 0.9;
    max-width: 300px;
  }

  .collections-split__button {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .collections-split__button:hover {
    background: white;
    color: #000;
    transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .collections-split {
      height: 100vh;
    }

    .collections-split__container {
      flex-direction: column;
    }

    .collections-split__item {
      flex: 1;
      min-height: 50vh;
    }

    .collections-split__item:hover {
      flex: 1;
    }

    .collections-split__title {
      font-size: 2rem;
    }

    .collections-split__description {
      font-size: 1rem;
    }

    .collections-split__content {
      padding: 20px;
    }
  }

  @media (max-width: 480px) {
    .collections-split__title {
      font-size: 1.5rem;
    }

    .collections-split__button {
      padding: 10px 24px;
      font-size: 0.8rem;
    }
  }
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.contact-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background-color: var(--color-background);
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
  }

  /* Contenu principal */
  .contact__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .contact__title {
    font-size: 48px;
    font-weight: 400;
    color: #000;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
    width: 100%;
  }

  /* Image wrapper */
  .contact__image-wrapper--below {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .contact__image-wrapper--side {
    flex: 0 0 45%;
    max-width: 500px;
  }

  .contact__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }

  /* Wrapper principal pour layout gauche/droite */
  .contact__main-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  /* Layout avec image à gauche ou droite */
  .contact__content--left .contact__main-wrapper,
  .contact__content--right .contact__main-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  /* Inverser l'ordre pour l'image à gauche */
  .contact__content--left .contact__main-wrapper {
    flex-direction: row-reverse;
  }

  /* Contenu texte */
  .contact__text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* Centrer le texte seulement si pas d'image sur les côtés */
  .contact__content--below_title .contact__text-content,
  .contact__content .contact__text-content {
    text-align: center;
    align-items: center;
  }

  /* Aligner le texte à gauche si image sur les côtés */
  .contact__content--left .contact__text-content,
  .contact__content--right .contact__text-content {
    text-align: left;
    align-items: flex-start;
  }

  .contact__intro {
    max-width: 600px;
  }

  .contact__text {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .contact__email-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .contact__email-text {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin: 0;
    letter-spacing: -0.005em;
  }

  .contact__email-link {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    padding: 16px 32px;
    border: 2px solid #000;
    border-radius: 8px;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
    background-color: transparent;
  }

  .contact__email-link:hover {
    background-color: #000;
    color: #eae2cf;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }

  .contact__email-link:active {
    transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .contact-section {
      padding: 80px 0;
      min-height: 75vh;
    }

    .contact__container {
      padding: 0 30px;
    }

    /* Passer en colonne pour les layouts côte à côte */
    .contact__content--left .contact__main-wrapper,
    .contact__content--right .contact__main-wrapper {
      flex-direction: column;
      gap: 40px;
    }

    .contact__image-wrapper--side {
      flex: none;
      max-width: 100%;
      width: 100%;
    }

    /* Centrer le texte sur tablette */
    .contact__content--left .contact__text-content,
    .contact__content--right .contact__text-content {
      text-align: center;
      align-items: center;
    }

    .contact__title {
      font-size: 42px;
    }

    .contact__text {
      font-size: 18px;
    }

    .contact__email-text {
      font-size: 17px;
    }

    .contact__email-link {
      font-size: 22px;
      padding: 14px 28px;
    }
  }

  @media (max-width: 768px) {
    .contact-section {
      padding: 80px 0;
      min-height: 70vh;
    }

    .contact__container {
      padding: 0 20px;
    }

    .contact__content {
      gap: 32px;
    }

    .contact__main-wrapper {
      gap: 32px;
    }

    .contact__title {
      font-size: 36px;
    }

    .contact__text {
      font-size: 18px;
    }

    .contact__email-text {
      font-size: 16px;
    }

    .contact__email-link {
      font-size: 20px;
      padding: 14px 24px;
    }
  }

  @media (max-width: 480px) {
    .contact-section {
      padding: 60px 0;
    }

    .contact__title {
      font-size: 28px;
    }

    .contact__text {
      font-size: 16px;
    }

    .contact__email-link {
      font-size: 18px;
      padding: 12px 20px;
    }

    .contact__text-content {
      gap: 24px;
    }
  }
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
.customer-account {
    min-height: 60vh;
    padding: var(--section-padding-top, 2rem) 0 var(--section-padding-bottom, 2rem);
    background-color: var(--color-background);
  }

  .customer-account__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  @media (max-width: 1024px) {
    .customer-account__container {
      padding: 0 1rem;
    }
  }

  .customer-account__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid #ddd;
  }

  .customer-account__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.25rem;
  }

  .customer-account__subtitle {
    color: #666;
    font-size: 1rem;
  }

  .customer-account__content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
  }

  @media (max-width: 768px) {
    .customer-account__header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    
    .customer-account__content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

  .customer-account__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .account-nav {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .account-nav__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
    margin-bottom: 0.25rem;
  }

  .account-nav__item:hover {
    background-color: #f8f6f2;
    color: #8b7355;
  }

  .account-nav__item--active {
    background-color: #8b7355;
    color: white;
  }

  .account-nav__icon {
    font-size: 1.125rem;
  }

  .account-summary {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .account-summary__item {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0.5rem 0;
  }

  .account-summary__item + .account-summary__item {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
  }

  .account-summary__number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 0.25rem;
  }

  .account-summary__label {
    font-size: 0.875rem;
    color: #666;
  }

  .customer-account__main {
    min-height: 400px;
  }

  .account-section {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .account-section--active {
    display: block;
  }

  .account-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .account-section__header h2 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
  }

  .orders-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .order-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.2s ease;
  }

  .order-card:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .order-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
  }

  .order-card__number {
    display: flex;
    flex-direction: column;
  }

  .order-card__date {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
  }

  .status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .status-badge--fulfilled {
    background-color: #d1f2d1;
    color: #2d5d2d;
  }

  .status-badge--unfulfilled {
    background-color: #fff3cd;
    color: #856404;
  }

  .status-badge--partial {
    background-color: #d4edda;
    color: #155724;
  }

  .order-card__items {
    margin-bottom: 1rem;
  }

  .order-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .order-item__image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
  }

  .order-item__details {
    flex: 1;
    min-width: 0;
  }

  .order-item__title {
    display: block;
    font-size: 0.875rem;
    color: #2c2c2c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .order-item__quantity {
    font-size: 0.75rem;
    color: #666;
  }

  .order-item__more {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
  }

  .order-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
  }

  .order-card__total {
    font-size: 1.125rem;
    color: #8b7355;
  }

  .order-card__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .tracking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
  }

  .tracking-btn__icon {
    font-size: 0.875rem;
  }

  .tracking-btn:hover {
    transform: translateY(-1px);
  }

  .profile-card {
    background: #f8f6f2;
    border-radius: 8px;
    padding: 2rem;
  }

  .profile-info {
    display: grid;
    gap: 1.5rem;
  }

  .profile-info__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .profile-info__item label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .profile-info__item span {
    font-size: 1rem;
    color: #2c2c2c;
  }

  .addresses-grid {
    display: grid;
    gap: 1rem;
  }

  .address-card {
    position: relative;
    background: #f8f6f2;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
  }

  .address-card__badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: #8b7355;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
  }

  .address-card__content {
    line-height: 1.5;
    color: #2c2c2c;
  }

  .empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .empty-state--small {
    padding: 2rem 1rem;
  }

  .empty-state__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .empty-state h3, .empty-state h4 {
    font-family: "Instrument Sans", sans-serif;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
  }

  .empty-state h3 {
    font-size: 1.5rem;
  }

  .empty-state h4 {
    font-size: 1.25rem;
  }

  .empty-state p {
    color: #666;
    margin-bottom: 1.5rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
  }

  .btn--sm {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .btn--primary {
    background-color: #8b7355;
    color: white;
  }

  .btn--primary:hover {
    background-color: #7a6249;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  }

  .btn--outline {
    background-color: transparent;
    border-color: #8b7355;
    color: #8b7355;
  }

  .btn--outline:hover {
    background-color: #8b7355;
    color: white;
  }

  /* Styles pour le formulaire d'édition de profil */
  .profile-edit-form {
    background: #f8f6f2;
    border: 1px solid #e5e5e5;
  }

  .profile-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .form-input {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    color: #2c2c2c;
    background-color: white;
    transition: border-color 0.2s ease;
    font-family: inherit;
  }

  .form-input:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
  }

  .form-input::placeholder {
    color: #999;
  }

  .form-error {
    font-size: 0.75rem;
    color: #d32f2f;
    font-weight: 500;
    min-height: 1rem;
  }

  .profile-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
  }

  .profile-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
  }

  .profile-message--success {
    background-color: #d1f2d1;
    color: #2d5d2d;
    border: 1px solid #a8d8a8;
  }

  .profile-message--error {
    background-color: #ffeaea;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
  }

  @media (max-width: 768px) {
    * {
      box-sizing: border-box;
    }
    
    .customer-account {
      padding: var(--section-padding-top-mobile, 1.5rem) 0 var(--section-padding-bottom-mobile, 1.5rem);
      overflow-x: hidden;
      width: 100%;
    }
    
    .customer-account__container {
      padding: 0 1rem;
      max-width: 100vw;
      overflow-x: hidden;
      width: 100%;
    }
    
    .customer-account__header {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding: 1.5rem 0 1rem;
      width: 100%;
      overflow-x: hidden;
    }
    
    .customer-account__title {
      font-size: 1.75rem;
      word-wrap: break-word;
      hyphens: auto;
    }
    
    .customer-account__content {
      display: block;
      width: 100%;
      overflow-x: hidden;
    }
    
    .customer-account__sidebar {
      margin-bottom: 1.5rem;
      width: 100%;
      overflow-x: hidden;
    }
    
    .customer-account__main {
      width: 100%;
      overflow-x: hidden;
    }
    
    .account-nav {
      display: flex;
      gap: 0.25rem;
      padding: 0.75rem;
      width: 100%;
      border-radius: 8px;
      background: white;
      justify-content: space-between;
    }
    
    .account-nav__item {
      flex: 1;
      text-align: center;
      margin-bottom: 0;
      padding: 0.5rem 0.25rem;
      font-size: 0.75rem;
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .account-nav__icon {
      font-size: 1rem;
      margin-bottom: 0.125rem;
    }
    
    .account-section {
      padding: 1rem;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      box-sizing: border-box;
    }
    
    .orders-grid {
      gap: 1rem;
      width: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .order-card {
      width: 100%;
      max-width: 100%;
      padding: 1rem;
      box-sizing: border-box;
      overflow: hidden;
      word-wrap: break-word;
    }
    
    .order-card__header {
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
      margin-bottom: 1rem;
      width: 100%;
    }
    
    .order-card__number {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }
    
    .order-card__number strong {
      word-wrap: break-word;
      hyphens: auto;
    }
    
    .order-card__items {
      margin-bottom: 1rem;
      width: 100%;
    }
    
    .order-item {
      display: block;
      width: 100%;
      padding: 0.75rem;
      background: #f9f9f9;
      border-radius: 6px;
      margin-bottom: 0.5rem;
      text-align: center;
      box-sizing: border-box;
    }
    
    .order-item__image {
      width: 50px;
      height: 50px;
      margin: 0 auto 0.5rem auto;
      display: block;
    }
    
    .order-item__details {
      width: 100%;
      display: block;
    }
    
    .order-item__title {
      font-size: 0.875rem;
      line-height: 1.3;
      word-wrap: break-word;
      hyphens: auto;
      margin-bottom: 0.25rem;
      display: block;
      width: 100%;
    }
    
    .order-item__quantity {
      font-size: 0.75rem;
      display: block;
      margin-top: 0.25rem;
    }
    
    .order-item__more {
      text-align: center;
      font-size: 0.8rem;
      margin-top: 0.5rem;
      padding: 0.5rem;
      background: #f0f0f0;
      border-radius: 4px;
      width: 100%;
      box-sizing: border-box;
    }
    
    .order-card__footer {
      display: block;
      width: 100%;
      padding-top: 1rem;
      border-top: 1px solid #f0f0f0;
    }

    .order-card__total {
      text-align: center;
      font-size: 1.125rem;
      padding: 0.75rem;
      background: #f9f7f4;
      border-radius: 6px;
      margin-bottom: 1rem;
      width: 100%;
      box-sizing: border-box;
    }

    .order-card__actions {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }

    .order-card__actions .btn {
      width: 100%;
      justify-content: center;
      padding: 0.875rem;
      font-size: 0.875rem;
      box-sizing: border-box;
      word-wrap: break-word;
    }
    
    .account-summary {
      display: block;
      margin-top: 1rem;
      width: 100%;
    }
    
    .account-summary__item {
      width: 100%;
      text-align: center;
      padding: 0.75rem 0.5rem;
      background: white;
      border-radius: 8px;
      box-sizing: border-box;
    }
    
    .account-summary__number {
      font-size: 1.25rem;
      font-weight: 600;
      word-wrap: break-word;
    }
    
    .account-summary__label {
      font-size: 0.75rem;
      word-wrap: break-word;
    }
    
    /* Sections profil et adresses aussi en mode vertical */
    .profile-card {
      width: 100%;
      padding: 1.5rem;
      box-sizing: border-box;
    }
    
    .profile-info {
      width: 100%;
      display: block;
      gap: 1rem;
    }
    
    .profile-info__item {
      margin-bottom: 1rem;
      width: 100%;
    }
    
    .addresses-grid {
      display: block;
      width: 100%;
      gap: 1rem;
    }
    
    .address-card {
      width: 100%;
      margin-bottom: 1rem;
      box-sizing: border-box;
    }
    
    /* Force le word-wrap sur tous les textes */
    .order-card strong,
    .order-card span,
    .order-card p {
      word-wrap: break-word;
      hyphens: auto;
      max-width: 100%;
    }

    /* Styles responsive pour le formulaire de profil */
    .profile-form-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    
    .profile-form-actions {
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .profile-form-actions .btn {
      width: 100%;
      justify-content: center;
    }
    
    .form-input {
      padding: 0.75rem;
      font-size: 0.9rem;
    }
    
    .form-label {
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .customer-account__container {
      padding: 0 0.75rem;
    }
    
    .customer-account__title {
      font-size: 1.5rem;
    }
    
    .order-card {
      padding: 0.75rem;
    }
    
    .order-item {
      padding: 0.5rem;
    }
    
    .order-item__image {
      width: 40px;
      height: 40px;
    }
    
    .order-item__title {
      font-size: 0.8rem;
    }
    
    .order-item__quantity {
      font-size: 0.7rem;
    }
    
    .account-summary__item {
      padding: 0.5rem 0.25rem;
    }
    
    .account-summary__number {
      font-size: 1.1rem;
    }
    
    .account-summary__label {
      font-size: 0.7rem;
    }
    
    .btn {
      padding: 0.75rem 0.5rem;
      font-size: 0.8rem;
    }
  }
.customer-addresses {
    min-height: 60vh;
    padding: 2rem 0;
    background-color: var(--color-background);
  }

  .customer-addresses__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .customer-addresses__header {
    margin-bottom: 2rem;
  }

  .customer-addresses__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }

  .breadcrumb-link {
    color: #8b7355;
    text-decoration: none;
    font-weight: 500;
  }

  .breadcrumb-link:hover {
    text-decoration: underline;
  }

  .breadcrumb-separator {
    color: #999;
  }

  .addresses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .addresses-header__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c2c2c;
  }

  @media (max-width: 768px) {
    .addresses-header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .addresses-header__title {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }
  }

  .address-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
  }

  .address-form__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .address-form__header h2 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
  }

  .btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
  }

  .btn-close:hover {
    color: #2c2c2c;
  }

  .field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  @media (max-width: 480px) {
    .field-group {
      grid-template-columns: 1fr;
    }
  }

  .field {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .field-group .field {
    margin-bottom: 0;
  }

  .field__input,
  .field__select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
    font-family: inherit;
  }

  .field__input:focus,
  .field__select:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
  }

  .field__input:focus + .field__label,
  .field__input:not(:placeholder-shown) + .field__label,
  .field__input[value]:not([value=""]) + .field__label {
    opacity: 0;
    visibility: hidden;
  }

  .field__label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    background: transparent;
    padding: 0;
  }

  .field__optional {
    font-size: 0.85rem;
    color: #999;
    font-weight: normal;
  }

  .field__label--select {
    position: static;
    transform: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2c2c2c;
    opacity: 1;
    visibility: visible;
  }

  .default-checkbox {
    margin: 1.5rem 0;
  }

  .address-form__actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }

  @media (max-width: 480px) {
    .address-form__actions {
      flex-direction: column;
    }
  }

  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
  }

  .addresses-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  @media (min-width: 769px) {
    .addresses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
  }

  .address-card {
    position: relative;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .address-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .address-card__badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: #8b7355;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
  }

  .address-display {
    margin-bottom: 1.5rem;
  }

  .address-line {
    line-height: 1.5;
    color: #2c2c2c;
    margin-bottom: 0.25rem;
  }

  .address-line--company {
    font-weight: 600;
    color: #8b7355;
  }

  .address-line--name {
    font-weight: 500;
  }

  .address-line--phone {
    color: #666;
    font-size: 0.95rem;
  }

  .address-edit-form {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
  }

  .address-edit-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .address-form-inline .field {
    margin-bottom: 1rem;
  }

  .address-form-inline .field-group {
    margin-bottom: 1rem;
  }

  .address-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
  }

  .address-actions {
    display: flex;
    gap: 0.5rem;
  }

  .empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .empty-state__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .empty-state h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
  }

  .empty-state p {
    color: #666;
    margin-bottom: 1.5rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
  }

  .btn--sm {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .btn--primary {
    background-color: #8b7355;
    color: white;
  }

  .btn--primary:hover {
    background-color: #7a6249;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  }

  .btn--outline {
    background-color: transparent;
    border-color: #8b7355;
    color: #8b7355;
  }

  .btn--outline:hover {
    background-color: #8b7355;
    color: white;
  }

  .btn--ghost {
    background-color: transparent;
    border-color: #e5e5e5;
    color: #666;
  }

  .btn--ghost:hover {
    border-color: #c5c5c5;
    color: #2c2c2c;
  }

  .form__message--error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  .form__errors {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .form__errors li {
    margin-bottom: 0.5rem;
  }


  @media (max-width: 768px) {
    .customer-addresses__container {
      padding: 0 1rem;
    }
    
    .address-form-wrapper {
      padding: 1.5rem;
    }
    
    
    .address-card {
      padding: 1.5rem;
    }
  }
.customer-edit-address {
    min-height: 60vh;
    padding: 2rem 0;
    background-color: var(--color-background);
  }

  .customer-edit-address__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .customer-edit-address__header {
    margin-bottom: 2rem;
  }

  .customer-edit-address__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }

  .breadcrumb-link {
    color: #8b7355;
    text-decoration: none;
    font-weight: 500;
  }

  .breadcrumb-link:hover {
    text-decoration: underline;
  }

  .breadcrumb-separator {
    color: #999;
  }

  .edit-address-header__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c2c2c;
  }

  .address-form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  @media (max-width: 480px) {
    .field-group {
      grid-template-columns: 1fr;
    }
  }

  .field {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .field-group .field {
    margin-bottom: 0;
  }

  .field__input,
  .field__select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
    font-family: inherit;
  }

  .field__input:focus,
  .field__select:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
  }

  .field__input:focus + .field__label,
  .field__input:not(:placeholder-shown) + .field__label,
  .field__input[value]:not([value=""]) + .field__label {
    opacity: 0;
    visibility: hidden;
  }

  .field__label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    background: transparent;
    padding: 0;
  }

  .field__label--select {
    position: static;
    transform: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2c2c2c;
    opacity: 1;
    visibility: visible;
  }

  .field__optional {
    font-size: 0.85rem;
    color: #999;
    font-weight: normal;
  }

  .default-checkbox {
    margin: 1.5rem 0;
  }

  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
  }

  .address-form__actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }

  @media (max-width: 480px) {
    .address-form__actions {
      flex-direction: column;
    }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
  }

  .btn--primary {
    background-color: #8b7355;
    color: white;
  }

  .btn--primary:hover {
    background-color: #7a6249;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  }

  .btn--outline {
    background-color: transparent;
    border-color: #8b7355;
    color: #8b7355;
  }

  .btn--outline:hover {
    background-color: #8b7355;
    color: white;
  }

  .form__message--error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  .form__errors {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .form__errors li {
    margin-bottom: 0.5rem;
  }

  @media (max-width: 768px) {
    .customer-edit-address__container {
      padding: 0 1rem;
    }
    
    .address-form-wrapper {
      padding: 1.5rem;
    }
    
    .edit-address-header__title {
      font-size: 1.75rem;
    }
  }
.customer-login {
    min-height: 60vh;
    padding: var(--section-padding-top, 2rem) 0 var(--section-padding-bottom, 2rem);
    background-color: var(--color-background);
  }

  .customer-login__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .customer-login__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .customer-login__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
  }

  .customer-login__subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
  }

  .customer-login__content {
    display: flex;
    justify-content: center;
    align-items: start;
  }

  .customer-login__form-section {
    max-width: 500px;
    width: 100%;
  }

  @media (max-width: 768px) {
    .customer-login__form-section {
      max-width: 100%;
    }
  }

  .customer-login__form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .customer-form {
    margin-bottom: 1.5rem;
  }

  .field {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .field__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
  }

  .field__input:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
  }

  .field__input:focus + .field__label,
  .field__input:not(:placeholder-shown) + .field__label,
  .field__input[value]:not([value=""]) + .field__label {
    opacity: 0;
    visibility: hidden;
  }

  .field__label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    background: transparent;
    padding: 0;
  }

  .field:has(.field__help) .field__label {
    top: calc(50% - 10px);
  }

  .field__help {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.4;
    display: block;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
  }

  .btn--primary {
    background-color: #8b7355;
    color: white;
  }

  .btn--primary:hover {
    background-color: #7a6249;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  }

  .btn--full-width {
    width: 100%;
  }

  .form__message--error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  .form__message--success {
    background-color: #d1f2d1;
    border: 1px solid #a3d9a3;
    color: #2d5d2d;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  .form__message--info {
    background-color: #d4f1f4;
    border: 1px solid #b3d9e0;
    color: #2c5b61;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  .login-step {
    transition: opacity 0.3s ease;
  }

  .customer-login__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .field__help {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.4;
  }

  .form__errors {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .form__errors li {
    margin-bottom: 0.5rem;
  }

  .customer-login__forgot {
    text-align: center;
    padding: 1rem 0;
  }

  .customer-login__recovery {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
  }

  .customer-login__recovery-text {
    color: #666;
    font-size: 0.95rem;
  }

  .link {
    color: inherit;
    text-decoration: none;
  }

  .link--accent {
    color: #8b7355;
    font-weight: 500;
  }

  .link--accent:hover {
    text-decoration: underline;
  }

  .link--button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
  }

  .link--button:hover {
    text-decoration: underline;
  }


  .password-recover-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  @media (max-width: 768px) {
    .password-recover-form {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  .password-recover-content {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .password-recover-form h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
  }

  .password-recover-form p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .btn--outline {
    background-color: transparent;
    border: 2px solid #8b7355;
    color: #8b7355;
  }

  .btn--outline:hover {
    background-color: #8b7355;
    color: white;
  }

  .password-recover-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .password-recover-info-card h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
  }

  .password-recover-info-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .recovery-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .recovery-steps__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .recovery-steps__number {
    width: 2rem;
    height: 2rem;
    background-color: #8b7355;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
  }

  .recovery-steps__item strong {
    display: block;
    color: #2c2c2c;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .recovery-steps__item p {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
  }


  @media (max-width: 1024px) {
    .customer-login__container {
      padding: 0 1rem;
    }
  }

  @media (max-width: 768px) {
    .customer-login {
      padding: var(--section-padding-top-mobile, 1.5rem) 0 var(--section-padding-bottom-mobile, 1.5rem);
    }
    
    .customer-login__title {
      font-size: 2rem;
    }
    
    .customer-login__header {
      margin-bottom: 2rem;
    }
    
    .customer-login__form-section,
    .password-recover-content,
    .password-recover-info-card {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .customer-login__container {
      padding: 0 0.75rem;
    }
    
    .customer-login__title {
      font-size: 1.75rem;
    }
    
    .customer-login__form-section,
    .password-recover-content,
    .password-recover-info-card {
      padding: 1.25rem;
    }
  }
.customer-order {
    min-height: 60vh;
    padding: 2rem 0;
    background-color: var(--color-background);
  }

  .customer-order__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .customer-order__header {
    margin-bottom: 2rem;
  }

  .customer-order__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }

  .breadcrumb-link {
    color: #8b7355;
    text-decoration: none;
    font-weight: 500;
  }

  .breadcrumb-link:hover {
    text-decoration: underline;
  }

  .breadcrumb-separator {
    color: #999;
  }

  .order-header__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
  }

  .order-header__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .order-date {
    color: #666;
    font-size: 1rem;
  }

  .status-badge {
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .status-badge--fulfilled {
    background-color: #d1f2d1;
    color: #2d5d2d;
  }

  .status-badge--unfulfilled {
    background-color: #fff3cd;
    color: #856404;
  }

  .status-badge--partial {
    background-color: #d4edda;
    color: #155724;
  }

  .order-cancelled {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .customer-order__content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
  }

  @media (max-width: 768px) {
    .customer-order__content {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .customer-order__sidebar {
      order: -1;
    }
  }

  .order-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .order-section__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .order-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .order-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
  }

  @media (max-width: 640px) {
    .order-item {
      grid-template-columns: 80px 1fr;
      gap: 0.75rem;
    }
    
    .order-item__quantity,
    .order-item__pricing {
      grid-column: 2;
      justify-self: start;
      margin-top: 0.5rem;
    }
  }

  .order-item__image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
  }

  @media (max-width: 640px) {
    .order-item__image {
      width: 80px;
      height: 80px;
    }
  }

  .order-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .order-item__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    color: #999;
    font-size: 0.75rem;
    text-align: center;
  }

  .order-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
  }

  .order-item__property,
  .order-item__variant {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
  }

  .property-name {
    font-weight: 500;
  }

  .order-item__subscription {
    background: #f0f8ff;
    color: #0066cc;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
  }

  .order-item__quantity {
    text-align: right;
  }

  .quantity-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.25rem;
  }

  .quantity-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c2c2c;
  }

  .order-item__pricing {
    text-align: right;
  }

  .item-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 0.25rem;
  }

  .item-unit-price {
    font-size: 0.75rem;
    color: #666;
  }

  .address-card {
    background: #f8f6f2;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
  }

  .address-content {
    line-height: 1.5;
    color: #2c2c2c;
  }

  .order-summary {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .order-summary__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .order-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
  }

  .order-summary__discount {
    color: #d63384;
  }

  .order-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid #f0f0f0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #2c2c2c;
  }

  .fulfillment-status {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .fulfillment-status__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
  }

  .fulfillment-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    opacity: 0.5;
  }

  .timeline-item--completed {
    opacity: 1;
  }

  .timeline-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .timeline-item--completed .timeline-icon {
    background: #8b7355;
    color: white;
  }

  .timeline-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.25rem;
  }

  .timeline-content span {
    font-size: 0.875rem;
    color: #666;
  }

  .order-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
    text-align: center;
  }

  .btn--primary {
    background-color: #8b7355;
    color: white;
  }

  .btn--primary:hover {
    background-color: #7a6249;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  }

  .btn--outline {
    background-color: transparent;
    border-color: #8b7355;
    color: #8b7355;
  }

  .btn--outline:hover {
    background-color: #8b7355;
    color: white;
  }

  .btn--full-width {
    width: 100%;
  }

  @media (max-width: 768px) {
    .order-header__title {
      font-size: 1.75rem;
    }
    
    .order-section {
      padding: 1.5rem;
    }
    
    .order-summary,
    .fulfillment-status {
      padding: 1.5rem;
    }
  }
.customer-recover {
    min-height: 60vh;
    padding: var(--section-padding-top, 2rem) 0 var(--section-padding-bottom, 2rem);
    background-color: var(--color-background);
  }

  .customer-recover__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .customer-recover__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .customer-recover__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
  }

  .customer-recover__subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
  }

  .customer-recover__content {
    display: grid;
    grid-template-columns: var(--grid-columns-desktop, 1fr 1fr);
    gap: var(--grid-gap-desktop, 4rem);
    align-items: start;
  }

  .customer-recover__content:not(:has(.customer-recover__help)) {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .customer-recover__content:not(:has(.customer-recover__help)) .customer-recover__form-section {
    max-width: 500px;
    width: 100%;
  }

  @media (max-width: 1024px) {
    .customer-recover__content {
      gap: var(--grid-gap-tablet, 3rem);
    }
  }

  @media (max-width: 768px) {
    .customer-recover__content {
      grid-template-columns: 1fr !important;
      gap: var(--grid-gap-mobile, 2rem);
    }
    
    .customer-recover__content:not(:has(.customer-recover__help)) .customer-recover__form-section {
      max-width: 100%;
    }
  }

  .customer-recover__form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .customer-form {
    margin-bottom: 1.5rem;
  }

  .field {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .field__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
  }

  .field__input:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
  }

  .field__input:focus + .field__label,
  .field__input:not(:placeholder-shown) + .field__label,
  .field__input[value]:not([value=""]) + .field__label {
    opacity: 0;
    visibility: hidden;
  }

  .field__label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    background: transparent;
    padding: 0;
  }

  .field:has(.field__help) .field__label {
    top: calc(50% - 10px);
  }

  .field__help {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.4;
    display: block;
  }


  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
  }

  .btn--primary {
    background-color: #8b7355;
    color: white;
  }

  .btn--primary:hover {
    background-color: #7a6249;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  }

  .btn--secondary {
    background-color: transparent;
    color: #8b7355;
    border: 2px solid #8b7355;
  }

  .btn--secondary:hover {
    background-color: #8b7355;
    color: white;
    transform: translateY(-1px);
  }

  .btn--full-width {
    width: 100%;
  }

  .customer-recover__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .form__message--error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  .form__message--success {
    background-color: #d1f2d1;
    border: 1px solid #a3d9a3;
    color: #2d5d2d;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  .form__errors {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .form__errors li {
    margin-bottom: 0.5rem;
  }

  .customer-recover__help-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .customer-recover__help-card h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
  }

  .customer-recover__help-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .recovery-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .recovery-steps__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .recovery-steps__number {
    width: 2rem;
    height: 2rem;
    background-color: #8b7355;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .recovery-steps__content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.25rem 0;
  }

  .recovery-steps__content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
  }

  @media (max-width: 1024px) {
    .customer-recover__container {
      padding: 0 1rem;
    }
  }

  @media (max-width: 768px) {
    .customer-recover {
      padding: var(--section-padding-top-mobile, 1.5rem) 0 var(--section-padding-bottom-mobile, 1.5rem);
    }
    
    .customer-recover__title {
      font-size: 2rem;
    }
    
    .customer-recover__header {
      margin-bottom: 2rem;
    }
    
    .customer-recover__form-section,
    .customer-recover__help-card {
      padding: 1.5rem;
    }

    .recovery-steps {
      gap: 1rem;
    }

    .recovery-steps__number {
      width: 1.75rem;
      height: 1.75rem;
    }
  }
  
  @media (max-width: 480px) {
    .customer-recover__container {
      padding: 0 0.75rem;
    }
    
    .customer-recover__title {
      font-size: 1.75rem;
    }
    
    .customer-recover__form-section,
    .customer-recover__help-card {
      padding: 1.25rem;
    }
  }
.customer-register {
    min-height: 60vh;
    padding: var(--section-padding-top, 2rem) 0 var(--section-padding-bottom, 2rem);
    background-color: var(--color-background);
  }

  .customer-register__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .customer-register__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .customer-register__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
  }

  .customer-register__subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
  }

  .customer-register__content {
    display: grid;
    grid-template-columns: var(--grid-columns-desktop, 1.2fr 1fr);
    gap: var(--grid-gap-desktop, 4rem);
    align-items: start;
  }

  .customer-register__content:not(:has(.customer-register__benefits)) {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .customer-register__content:not(:has(.customer-register__benefits)) .customer-register__form-section {
    max-width: 600px;
    width: 100%;
  }

  @media (max-width: 1024px) {
    .customer-register__content {
      gap: var(--grid-gap-tablet, 3rem);
    }
  }

  @media (max-width: 768px) {
    .customer-register__content {
      grid-template-columns: 1fr !important;
      gap: var(--grid-gap-mobile, 2rem);
    }
    
    .customer-register__content:not(:has(.customer-register__benefits)) .customer-register__form-section {
      max-width: 100%;
    }
  }

  .customer-register__form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .customer-form {
    margin-bottom: 1.5rem;
  }

  .field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  @media (max-width: 480px) {
    .field-group {
      grid-template-columns: 1fr;
    }
  }

  .field {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .field-group .field {
    margin-bottom: 0;
  }

  .field__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
  }

  .field__input:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
  }

  .field__input:focus + .field__label,
  .field__input:not(:placeholder-shown) + .field__label,
  .field__input[value]:not([value=""]) + .field__label {
    opacity: 0;
    visibility: hidden;
  }

  .field__label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    background: transparent;
    padding: 0;
  }

  .field:has(.field__help) .field__label {
    top: calc(50% - 10px);
  }

  .field__optional {
    font-size: 0.85rem;
    color: #999;
    font-weight: normal;
  }

  .field__help {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.4;
    display: block;
  }

  .customer-register__terms {
    margin-bottom: 2rem;
  }

  .checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
  }

  .checkbox__input {
    display: none;
  }

  .checkbox__checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
    margin-top: 2px;
  }

  .checkbox__input:checked + .checkbox__checkmark {
    background-color: #8b7355;
    border-color: #8b7355;
  }

  .checkbox__input:checked + .checkbox__checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
  }

  .checkbox__label {
    font-size: 0.95rem;
    color: #666;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
  }

  .btn--primary {
    background-color: #8b7355;
    color: white;
  }

  .btn--primary:hover {
    background-color: #7a6249;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  }

  .btn--full-width {
    width: 100%;
  }

  .form__message--error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  .form__errors {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .form__errors li {
    margin-bottom: 0.5rem;
  }

  .customer-register__login {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
  }

  .customer-register__login-text {
    color: #666;
    font-size: 0.95rem;
  }

  .link {
    color: inherit;
    text-decoration: none;
  }

  .link--accent {
    color: #8b7355;
    font-weight: 500;
  }

  .link--accent:hover {
    text-decoration: underline;
  }

  .customer-register__benefits-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .customer-register__benefits-card h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
  }

  .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .benefits-list__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .benefits-list__item:last-child {
    margin-bottom: 0;
  }

  .benefits-list__icon {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f6f2;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .benefits-list__content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 0.25rem 0;
  }

  .benefits-list__content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
  }


  @media (max-width: 1024px) {
    .customer-register__container {
      padding: 0 1rem;
    }
  }

  @media (max-width: 768px) {
    .customer-register {
      padding: var(--section-padding-top-mobile, 1.5rem) 0 var(--section-padding-bottom-mobile, 1.5rem);
    }
    
    .customer-register__title {
      font-size: 2rem;
    }
    
    .customer-register__header {
      margin-bottom: 2rem;
    }
    
    .customer-register__form-section,
    .customer-register__benefits-card {
      padding: 1.5rem;
    }

    .benefits-list__item {
      gap: 0.75rem;
    }

    .benefits-list__icon {
      width: 2rem;
      height: 2rem;
      font-size: 1.25rem;
    }
  }
  
  @media (max-width: 480px) {
    .customer-register__container {
      padding: 0 0.75rem;
    }
    
    .customer-register__title {
      font-size: 1.75rem;
    }
    
    .customer-register__form-section,
    .customer-register__benefits-card {
      padding: 1.25rem;
    }
  }
.customer-reset {
    min-height: 60vh;
    padding: 2rem 0;
    background-color: var(--color-background);
  }

  .customer-reset__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .customer-reset__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .customer-reset__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
  }

  .customer-reset__subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
  }

  .customer-reset__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  @media (max-width: 768px) {
    .customer-reset__content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  .customer-reset__form-section {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .customer-form {
    margin-bottom: 1.5rem;
  }

  .field {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .field__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
  }

  .field__input:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
  }

  .field__input:focus + .field__label,
  .field__input:not(:placeholder-shown) + .field__label,
  .field__input[value]:not([value=""]) + .field__label {
    opacity: 0;
    visibility: hidden;
  }

  .field__label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    background: transparent;
    padding: 0;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: inherit;
  }

  .btn--primary {
    background-color: #8b7355;
    color: white;
  }

  .btn--primary:hover {
    background-color: #7a6249;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  }

  .btn--full-width {
    width: 100%;
  }

  .form__message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
  }

  .form__message--success {
    background-color: #d1f2d1;
    border: 1px solid #a3d9a3;
    color: #2d5d2d;
  }

  .form__message--error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
  }

  .form__errors {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .form__errors li {
    margin-bottom: 0.5rem;
  }

  .customer-reset__back {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
  }

  .link {
    color: inherit;
    text-decoration: none;
  }

  .link--accent {
    color: #8b7355;
    font-weight: 500;
  }

  .link--accent:hover {
    text-decoration: underline;
  }

  .customer-reset__info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .customer-reset__info-card h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
  }

  .customer-reset__info-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .help-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .help-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .help-step__number {
    width: 2rem;
    height: 2rem;
    background: #8b7355;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
  }

  .help-step__content {
    flex: 1;
  }

  .help-step__content strong {
    display: block;
    color: #2c2c2c;
    margin-bottom: 0.25rem;
    font-size: 1rem;
  }

  .help-step__content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
  }

  .field__help {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.4;
  }


  @media (max-width: 768px) {
    .customer-reset__title {
      font-size: 2rem;
    }
    
    .customer-reset__form-section,
    .customer-reset__info-card {
      padding: 1.5rem;
    }
    
    .help-step {
      gap: 0.75rem;
    }
    
    .help-step__number {
      width: 1.75rem;
      height: 1.75rem;
      font-size: 0.75rem;
    }
  }
.featured-collection {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: var(--spacing-xxl) var(--page-margin);
    background-color: var(--color-background);
  }

  .featured-collection__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }

  .featured-collection__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: var(--font-primary--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
  }

  .featured-collection__description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .featured-collection__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
  }

  .featured-collection__footer {
    text-align: center;
  }

  .featured-collection__view-all {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
  }

  .featured-collection__empty {
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 1.125rem;
  }

  /* Grid variations based on settings */
  {% case section.settings.columns_desktop %}
    {% when 2 %}
      @media (min-width: 750px) {
        .featured-collection__grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
    {% when 3 %}
      @media (min-width: 750px) {
        .featured-collection__grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
    {% when 4 %}
      @media (min-width: 990px) {
        .featured-collection__grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      @media (min-width: 750px) and (max-width: 989px) {
        .featured-collection__grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
    {% when 5 %}
      @media (min-width: 1200px) {
        .featured-collection__grid {
          grid-template-columns: repeat(5, 1fr);
        }
      }
      @media (min-width: 990px) and (max-width: 1199px) {
        .featured-collection__grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      @media (min-width: 750px) and (max-width: 989px) {
        .featured-collection__grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
  {% endcase %}

  /* Mobile columns */
  {% if section.settings.columns_mobile == '2' %}
    @media (max-width: 749px) {
      .featured-collection__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
      }
    }
  {% endif %}

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .featured-collection {
      padding: var(--spacing-xl) 0;
    }

    .featured-collection__header {
      margin-bottom: var(--spacing-lg);
    }

    .featured-collection__grid {
      margin-bottom: var(--spacing-lg);
    }
  }
.footer {
    background-color: #eae2cf;
    border-top: 1px solid #e5e5e5;
    padding: 80px 0 40px;
    margin-top: auto;
  }

  .footer__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Newsletter Section */
  .footer__newsletter {
    text-align: center;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .footer__newsletter-title {
    font-size: 28px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .footer__newsletter-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    letter-spacing: -0.005em;
  }

  .footer-newsletter__fields {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 12px;
  }

  .footer-newsletter__email {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    font-size: 16px;
    color: #000;
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .footer-newsletter__email:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  }

  .footer-newsletter__email::placeholder {
    color: rgba(0, 0, 0, 0.5);
  }

  .footer-newsletter__submit {
    flex-shrink: 0;
    padding: 16px 24px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.005em;
  }

  .footer-newsletter__submit:hover {
    background-color: #333;
    transform: translateY(-1px);
  }

  /* Links Section */
  .footer__links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }

  /* Assurer que les colonnes s'affichent correctement sur desktop avec 4 colonnes */
  @media (min-width: 1024px) {
    .footer__links-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .footer__link-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    color: #333;
  }

  .footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer__link-item {
    margin-bottom: 8px;
  }

  .footer__link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer__link:hover {
    color: #333;
  }

  .footer__contact-item {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
  }

  /* Social Media - Nouvelle version simplifiée */
  .footer__social-new {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    color: #666;
    transition: all 0.2s ease;
    text-decoration: none;
  }

  .social-btn:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
  }

  .social-btn svg {
    width: 20px;
    height: 20px;
  }

  /* Brand Logos */
  .footer__brands {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
  }

  .footer__brands-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
    color: #666;
  }

  .footer__brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer__brand-logo {
    max-height: 40px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
  }

  .footer__brand-link:hover .footer__brand-logo {
    opacity: 1;
    filter: grayscale(0%);
  }

  /* Footer Bottom */
  .footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #e5e5e5;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer__copyright {
    font-size: 12px;
    color: #666;
  }

  .footer__payment {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .footer__payment-icon {
    height: 24px;
    width: auto;
  }

  /* Tablet adjustments */
  @media (max-width: 1023px) {
    .footer__links-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
  }

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .footer {
      padding: 60px 0 30px;
    }

    .footer__content {
      padding: 0 16px;
    }

    .footer__links-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }

    .footer-newsletter__fields {
      flex-direction: column;
    }

    .footer__bottom {
      justify-content: center;
      text-align: center;
      flex-direction: column;
    }

    .footer__brands-grid {
      gap: 20px;
    }
  }

  @media (max-width: 480px) {
    .footer__links-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
/* Global background color */
  * {
    box-sizing: border-box;
  }
  
  html, body {
    background-color: var(--color-background) !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  /* Compensate for fixed header */
  body {
    padding-top: 70px;
  }
  
  /* La Louème Header Custom Styles */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--color-background);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-family: var(--font-heading--family);
  }

  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 70px;
  }

  /* Logo */
  .header__logo {
    flex-shrink: 0;
  }

  .header__logo-link {
    display: block;
    color: #000;
    text-decoration: none;
  }

  .header__logo-text {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #000;
  }

  .header__logo-img {
    height: 40px;
    width: auto;
  }

  /* Navigation */
  .header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .header__nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 48px;
  }

  .header__nav-item {
    position: relative;
  }

  .header__nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease;
    padding: 24px 0;
  }

  .header__nav-link:hover {
    opacity: 0.6;
  }

  .header__nav-arrow {
    font-size: 12px;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
  }

  .header__nav-item--dropdown:hover .header__nav-arrow {
    transform: rotate(180deg);
  }

  /* Mega Dropdown */
  .header__mega-dropdown {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-background);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    transform: translateY(-6px);
    z-index: 10000;
  }

  .header__nav-item--dropdown:hover .header__mega-dropdown,
  .header__nav-item--dropdown:hover .header__simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.2s ease;
  }
  .header__simple-dropdown:not(:hover) {
      transition-delay: 1s;
  }
  .header__mega-dropdown:not(:hover) {
      transition-delay: 1s; /* attend 2s avant de commencer la transition */
  }

  .header__mega-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 8px 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  /* Catégories principales */
  .header__category {
    position: relative;
    text-align: center;
  }

  .header__category-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    cursor: pointer;
    transition: color 0.15s ease;
    border-radius: 3px;
    white-space: nowrap;
  }

  .header__category:hover .header__category-title {
    color: #000;
  }

  .header__category-arrow {
    font-size: 10px;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
  }

  .header__category:hover .header__category-arrow {
    transform: rotate(180deg);
  }

  /* Sous-catégories dropdown */
  .header__subcategory-dropdown {
    position: fixed;
    left: 0;
    right: 0;
    background-color: var(--color-background);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    transform: translateY(-1px);
    z-index: 10001;
  }

  .header__category:hover .header__subcategory-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__subcategory-list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .header__subcategory-list li {
    margin: 0;
  }

  .header__subcategory-link {
    display: block;
    padding: 4px 10px;
    font-size: 11px;
    color: #555;
    text-decoration: none;
    transition: all 0.15s ease;
    border-radius: 3px;
    white-space: nowrap;
  }

  .header__subcategory-link:hover {
    color: #000;
    background-color: #eee;
  }

  /* Simple Dropdown */
  .header__simple-dropdown {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-background);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    transform: translateY(-6px);
    z-index: 10000;
  }

  .header__dropdown-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .header__dropdown-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: #555;
    text-decoration: none;
    transition: all 0.15s ease;
    border-radius: 3px;
    white-space: nowrap;
    cursor: pointer;
  }

  .header__dropdown-link:hover {
    color: #000;
    background-color: #f5f5f5;
  }

  .header__dropdown-link--with-sub {
    position: relative;
  }

  .header__dropdown-arrow {
    font-size: 10px;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
  }

  .header__dropdown-link--with-sub:hover .header__dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Actions */
  .header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
  }

  .header__account,
  .header__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    transition: opacity 0.2s ease;
    text-decoration: none;
  }

  .header__account:hover,
  .header__cart:hover {
    opacity: 0.6;
  }

  .header__cart {
    position: relative;
  }

  .header__cart-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    border-radius: 50%;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
  }

  /* Mobile Toggle */
  .header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .header__mobile-line {
    width: 20px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
  }

  .header__mobile-toggle[aria-expanded="true"] .header__mobile-line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .header__mobile-toggle[aria-expanded="true"] .header__mobile-line:nth-child(2) {
    opacity: 0;
  }

  .header__mobile-toggle[aria-expanded="true"] .header__mobile-line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }


  /* Mobile Menu */
  .header__mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-background) 0%, #f5f1e8 100%);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
  }

  .header__mobile-menu.active {
    transform: translateX(0);
  }

  .header__mobile-content {
    height: 100%;
    overflow-y: auto;
    padding: 80px 32px 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .header__mobile-close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .header__mobile-close:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
  }

  .header__mobile-close-line {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .header__mobile-close-line:first-child {
    transform: rotate(45deg);
  }

  .header__mobile-close-line:last-child {
    transform: rotate(-45deg);
  }

  .header__mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
  }

  .header__mobile-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 8px;
  }

  .header__mobile-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 0;
    font-size: 20px;
    font-weight: 300;
    color: #000;
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    font-family: var(--font-heading--family);
  }

  .header__mobile-link:hover {
    color: #333;
    transform: translateX(8px);
  }

  .header__mobile-toggle {
    font-family: var(--font-heading--family);
  }

  .header__mobile-arrow {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #666;
    margin-left: auto;
  }

  .header__mobile-toggle.active .header__mobile-arrow {
    transform: rotate(45deg);
  }

  .header__mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.1);
    margin: 0 -32px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: left;
  }

  .header__mobile-submenu.active {
    max-height: 1000px;
  }

  .header__mobile-section {
    padding: 24px 32px 8px 32px;
    text-align: left;
  }

  .header__mobile-section:last-child {
    padding-bottom: 24px;
  }

  .header__mobile-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    text-align: left;
  }

  .header__mobile-sublist {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
  }

  .header__mobile-sublist:last-child {
    margin-bottom: 0;
  }

  .header__mobile-sublist li {
    margin-bottom: 8px;
  }

  .header__mobile-sublist li:last-child {
    margin-bottom: 0;
  }

  .header__mobile-sublink {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .header__mobile-sublink:hover {
    color: #000;
  }

  .header__mobile-sublink--all-products {
    font-weight: 600;
    color: #8b7355;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 12px;
    margin-top: 8px;
  }

  .header__mobile-sublink--all-products:hover {
    color: #7a6249;
  }

  .header__mobile-actions {
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    margin-top: 24px;
    padding-top: 24px;
    border-bottom: none;
  }

  .header__mobile-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .header__mobile-action:last-child {
    border-bottom: none;
  }

  .header__mobile-action:hover {
    color: #666;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .header__container {
      padding: 0 20px;
    }

    .header__nav-list {
      gap: 32px;
    }

    .header__mega-dropdown {
      min-width: 420px;
    }

    .header__subcategory-dropdown {
      min-width: 240px;
    }

    .header__subcategory-list {
      padding: 6px;
    }

    .header__actions {
      gap: 16px;
    }
  }

  @media (max-width: 768px) {
    .header__nav {
      display: none;
    }

    .header__mobile-toggle {
      display: flex;
    }

    .header__search-input {
      font-size: 24px;
    }

    .header__search-content {
      padding: 20px;
    }

    .header__search-close {
      top: 20px;
      right: 20px;
    }
  }

  /* Prevent dropdown from closing when hovering */
  .header__nav-item--dropdown:hover .header__mega-dropdown,
  .header__mega-dropdown:hover,
  .header__nav-item--dropdown:hover .header__simple-dropdown,
  .header__simple-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.2s ease;

  }

  /* Keep subcategory dropdown visible when hovering */
  .header__category:hover .header__subcategory-dropdown,
  .header__subcategory-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Styles pour "Voir tous les produits" - même niveau que les types */

  .header__category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

  .header__category-link:hover {
    color: var(--color-primary, #333);
  }

  /* Style spécial pour "Tous les produits" */
  .header__category--all-products .header__category-title {
    font-weight: 600;
    color: #8b7355;
  }

  .header__category--all-products:hover .header__category-title {
    color: #7a6249;
  }

  /* Language Selector */
  .header__language-selector {
    position: relative;
    display: flex;
    align-items: center;
  }

  .header__language-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
    border-radius: 4px;
    font-family: var(--font-heading--family);
  }

  .header__language-toggle:hover {
    opacity: 0.6;
    background-color: rgba(0, 0, 0, 0.02);
  }

  .header__language-current {
    font-size: 13px;
    font-weight: 500;
  }

  .header__language-arrow {
    transition: transform 0.2s ease;
    opacity: 0.6;
  }

  .header__language-toggle[aria-expanded="true"] .header__language-arrow {
    transform: rotate(180deg);
  }

  .header__language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 10000;
    min-width: 140px;
  }

  .header__language-selector.active .header__language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__language-form {
    display: flex;
    flex-direction: column;
    padding: 6px;
  }

  .header__language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s ease;
    border-radius: 4px;
    font-family: var(--font-heading--family);
  }

  .header__language-option:hover {
    background-color: rgba(0, 0, 0, 0.04);
  }

  .header__language-option.active {
    background-color: rgba(139, 115, 85, 0.1);
    color: #8b7355;
  }

  .header__language-code {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .header__language-name {
    font-size: 12px;
    opacity: 0.7;
  }

  .header__language-option.active .header__language-name {
    opacity: 1;
  }

  /* Responsive Language Selector */
  @media (max-width: 768px) {
    .header__language-selector {
      display: none;
    }
  }
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

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

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--spacing-md);
    color: var(--color-text);
  }

  .hero__heading {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: var(--font-primary--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
  }

  .hero__subheading {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    color: inherit;
    opacity: 0.9;
  }

  .hero__button {
    display: inline-block;
    margin-top: var(--spacing-md);
  }

  @media (max-width: 768px) {
    .hero {
      min-height: 70vh;
    }

    .hero__content {
      padding: 0 var(--spacing-sm);
    }
  }
.inspiration-fullscreen {
    position: relative;
    width: 100%;
    /* Hauteur minimale pour occuper l'écran visible */
    min-height: calc(100vh - 120px);
    background-color: var(--color-background);
    padding: 0;
  }

  .inspiration-fullscreen__desktop,
  .inspiration-fullscreen__mobile {
    position: relative;
    width: 100%;
    /* Laisse l'image déterminer sa propre hauteur */
    min-height: inherit;
  }

  .inspiration-fullscreen__image {
    width: 100%;
    height: auto;
    display: block;
    /* Garde les proportions de l'image originale */
    object-fit: contain;
    object-position: center;
  }

  /* Affichage conditionnel desktop/mobile */
  .inspiration-fullscreen__mobile {
    display: none;
  }

  .inspiration-fullscreen__desktop {
    display: block;
  }

  /* Placeholder quand aucune image */
  .inspiration-fullscreen__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(100vh - 120px);
    background-color: #f8f8f8;
    color: #666;
  }

  .inspiration-fullscreen__placeholder-content {
    text-align: center;
    padding: 40px;
  }

  .inspiration-fullscreen__placeholder-content svg {
    margin-bottom: 16px;
    opacity: 0.5;
  }

  .inspiration-fullscreen__placeholder-content p {
    font-size: 16px;
    margin: 0;
  }

  /* Option plein écran avec cover pour ceux qui le souhaitent */
  .inspiration-fullscreen--cover .inspiration-fullscreen__image {
    height: calc(100vh - 120px);
    object-fit: cover;
  }

  /* Responsive : basculement sur image mobile */
  @media (max-width: 768px) {
    .inspiration-fullscreen {
      min-height: calc(100vh - 100px);
    }

    .inspiration-fullscreen__desktop {
      display: none;
    }

    .inspiration-fullscreen__mobile {
      display: block;
    }

    .inspiration-fullscreen__placeholder {
      min-height: calc(100vh - 100px);
    }

    .inspiration-fullscreen--cover .inspiration-fullscreen__image {
      height: calc(100vh - 100px);
    }
  }

  /* Très petits écrans */
  @media (max-width: 480px) {
    .inspiration-fullscreen {
      min-height: calc(100vh - 80px);
    }

    .inspiration-fullscreen__placeholder {
      min-height: calc(100vh - 80px);
    }

    .inspiration-fullscreen--cover .inspiration-fullscreen__image {
      height: calc(100vh - 80px);
    }
  }

  /* Ajustements pour très grands écrans */
  @media (min-width: 2560px) {
    .inspiration-fullscreen {
      min-height: calc(100vh - 150px);
    }

    .inspiration-fullscreen--cover .inspiration-fullscreen__image {
      height: calc(100vh - 150px);
    }
  }
.inspirations-canvas {
    position: relative;
    width: 100%;
    height: var(--canvas-height);
    min-height: 400px;
    background-color: var(--color-background);
    overflow: hidden;
  }

  .inspirations-canvas__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .inspirations-canvas__background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .inspirations-canvas__content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  /* Styles pour les blocs texte */
  .inspiration-text {
    position: absolute;
    left: var(--x-position);
    top: var(--y-position);
    transform: rotate(var(--rotation));
    font-size: var(--font-size);
    color: var(--text-color);
    z-index: var(--z-index);
    white-space: nowrap;
    pointer-events: none;
    font-family: var(--font-primary--family);
    line-height: 1.2;
  }

  .inspiration-text--title {
    font-weight: 700;
    font-family: var(--font-heading--family);
  }

  .inspiration-text--subtitle {
    font-weight: 400;
    font-style: italic;
  }

  .inspiration-text--normal {
    font-weight: 400;
  }

  .inspiration-text--script {
    font-family: cursive;
    font-style: italic;
  }

  .inspiration-text--bold {
    font-weight: 700;
  }

  .inspiration-text--light {
    font-weight: 300;
  }

  /* Styles pour les blocs images */
  .inspiration-image {
    position: absolute;
    left: var(--x-position);
    top: var(--y-position);
    transform: rotate(var(--rotation));
    width: var(--width);
    height: var(--height);
    z-index: var(--z-index);
    opacity: var(--opacity);
    transition: all 0.3s ease;
  }

  .inspiration-image__link {
    display: block;
    width: 100%;
    height: 100%;
  }

  .inspiration-image__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
  }

  .inspiration-image__placeholder {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ddd;
  }

  .inspiration-image__placeholder .placeholder-svg {
    width: 40px;
    height: 40px;
    opacity: 0.5;
  }

  /* Styles d'image */
  .inspiration-image--shadow {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  }

  .inspiration-image--vintage {
    filter: sepia(20%) contrast(1.1) brightness(0.9);
  }

  .inspiration-image--bw {
    filter: grayscale(100%);
  }

  .inspiration-image--hover:hover .inspiration-image__img {
    transform: scale(1.05);
  }

  .inspiration-image--polaroid {
    background: white;
    padding: 10px 10px 40px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  .inspiration-image--polaroid .inspiration-image__img {
    border-radius: 0;
  }

  /* Responsive - Ajustements automatiques sur mobile */
  @media (max-width: 768px) {
    .inspirations-canvas {
      min-height: 300px;
    }

    /* Réduire la taille des éléments sur mobile */
    .inspiration-text {
      font-size: calc(var(--font-size) * 0.7) !important;
    }

    .inspiration-image {
      width: calc(var(--width) * 0.7) !important;
      height: calc(var(--height) * 0.7) !important;
    }
  }

  @media (max-width: 480px) {
    .inspirations-canvas {
      min-height: 250px;
    }

    /* Réduire encore plus sur très petit écran */
    .inspiration-text {
      font-size: calc(var(--font-size) * 0.5) !important;
    }

    .inspiration-image {
      width: calc(var(--width) * 0.5) !important;
      height: calc(var(--height) * 0.5) !important;
    }
  }
.instagram-feed {
    background-color: var(--color-background);
    width: 100%;
  }

  .instagram-feed__content {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: var(--spacing-xxl) var(--page-margin);
  }

  .instagram-feed__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }

  .instagram-feed__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: var(--font-primary--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
  }

  .instagram-feed__description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-sm);
    line-height: 1.6;
  }

  .instagram-feed__link {
    display: inline-block;
    font-size: 16px;
    font-weight: var(--font-primary--weight-bold);
    color: var(--color-text);
    text-decoration: none;
    transition: opacity var(--transition-duration) var(--transition-easing);
  }

  .instagram-feed__link:hover {
    opacity: 0.7;
  }

  .instagram-feed__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-xl);
  }

  .instagram-feed__post {
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .instagram-feed__post:hover {
    transform: translateY(-8px) rotate(1deg);
  }

  /* Style Polaroid */
  .polaroid {
    background: white;
    padding: 20px;
    box-shadow: 
      0 4px 8px rgba(0, 0, 0, 0.1),
      0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
  }

  .instagram-feed__post:hover .polaroid {
    box-shadow: 
      0 8px 16px rgba(0, 0, 0, 0.15),
      0 16px 32px rgba(0, 0, 0, 0.1);
  }

  .polaroid__image {
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f500;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
  }

  .polaroid__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .instagram-feed__post:hover .polaroid__image img {
    transform: scale(1.05);
  }

  .polaroid__content {
    padding: 0;
  }

  .polaroid__caption {
    margin-bottom: 12px;
    min-height: 40px;
  }

  .polaroid__caption p {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .polaroid__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
  }

  .polaroid__stats {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .polaroid__likes,
  .polaroid__comments {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
  }

  .polaroid__likes svg {
    color: #e91e63;
  }

  .polaroid__comments svg {
    color: #666;
  }

  .polaroid__date {
    font-size: 12px;
    color: #999;
  }

  .instagram-feed__footer {
    text-align: center;
  }

  .instagram-feed__follow-btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
  }

  /* Placeholder styling */
  .instagram-feed__post--placeholder .polaroid__image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
  }

  .instagram-placeholder {
    width: 60px;
    height: 60px;
    opacity: 0.4;
  }

  /* Grid variations based on settings */
  {% case section.settings.columns_desktop %}
    {% when 3 %}
      @media (min-width: 750px) {
        .instagram-feed__grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
    {% when 4 %}
      @media (min-width: 990px) {
        .instagram-feed__grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      @media (min-width: 750px) and (max-width: 989px) {
        .instagram-feed__grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
    {% when 5 %}
      @media (min-width: 1200px) {
        .instagram-feed__grid {
          grid-template-columns: repeat(5, 1fr);
        }
      }
      @media (min-width: 990px) and (max-width: 1199px) {
        .instagram-feed__grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      @media (min-width: 750px) and (max-width: 989px) {
        .instagram-feed__grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
    {% when 6 %}
      @media (min-width: 1200px) {
        .instagram-feed__grid {
          grid-template-columns: repeat(6, 1fr);
        }
      }
      @media (min-width: 990px) and (max-width: 1199px) {
        .instagram-feed__grid {
          grid-template-columns: repeat(4, 1fr);
        }
      }
      @media (min-width: 750px) and (max-width: 989px) {
        .instagram-feed__grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
  {% endcase %}

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .instagram-feed {
      padding: var(--spacing-xl) 0;
    }

    .instagram-feed__grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-bottom: var(--spacing-lg);
    }

    .polaroid {
      padding: 15px;
    }

    .polaroid__caption {
      min-height: 35px;
    }

    .polaroid__caption p {
      font-size: 13px;
      -webkit-line-clamp: 3;
    }

    .instagram-feed__post:hover {
      transform: translateY(-4px);
    }
  }

  @media (min-width: 769px) and (max-width: 1024px) {
    .instagram-feed__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }
.location-section {
    padding: 3rem 0;
    background-color: var(--color-background);
    min-height: 60vh;
  }

  .location-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  /* Hero Section */
  .location-hero {
    margin-bottom: 4rem;
  }

  .location-hero__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
  }

  .location-hero__text {
    max-width: 70ch;
  }

  .location-hero__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .location-hero__subtitle {
    font-family: "Instrument Sans", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #8b7355;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .location-hero__description,
  .location-hero__additional {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
  }

  .location-hero__description p,
  .location-hero__additional p {
    margin-bottom: 1rem;
  }

  .location-hero__description p:last-child,
  .location-hero__additional p:last-child {
    margin-bottom: 0;
  }

  .location-hero__action {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
  }

  .location-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .btn--primary {
    background-color: #8b7355;
    color: white;
    border: 2px solid #8b7355;
  }

  .btn--primary:hover {
    background-color: #7a6249;
    border-color: #7a6249;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
  }

  /* Sections de contenu répétables */
  .location-content-section {
    width: 100%;
    margin: 3rem 0;
    text-align: left;
  }

  .location-content-section__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .location-content-section__text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
  }

  .location-content-section__text p {
    margin-bottom: 1rem;
  }

  .location-content-section__text p:last-child {
    margin-bottom: 0;
  }

  .location-content-section__text ul,
  .location-content-section__text ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
  }

  .location-content-section__text li {
    margin-bottom: 0.5rem;
  }

  /* Galerie Photos */
  .location-gallery {
    margin-top: 4rem;
  }

  .location-gallery__title {
    font-family: "Instrument Sans", sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 3rem;
  }

  .location-gallery__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-desktop, 3), 1fr);
    gap: 1.5rem;
    align-items: start;
    grid-auto-rows: auto;
  }

  .location-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .location-gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }

  .location-gallery__image-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .location-gallery__image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .location-gallery__item:hover .location-gallery__image {
    transform: scale(1.05);
  }

  .location-gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    font-size: 0.95rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(2px);
  }

  .location-gallery__item:hover .location-gallery__caption {
    transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .location-section {
      padding: 2rem 0;
    }

    .location-section__container {
      padding: 0 1rem;
    }

    .location-hero__content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: left;
    }

    .location-hero__title {
      font-size: 2.2rem;
    }

    .location-hero__subtitle {
      font-size: 1.3rem;
    }

    .location-hero__action {
      justify-content: flex-start;
      padding-top: 0;
    }

    .location-hero__button {
      padding: 0.875rem 1.5rem;
      font-size: 1rem;
    }

    .location-gallery {
      margin-top: 3rem;
    }

    .location-gallery__title {
      font-size: 1.8rem;
      margin-bottom: 2rem;
    }

    .location-gallery__grid {
      grid-template-columns: repeat(var(--columns-mobile, 1), 1fr);
      gap: 1rem;
    }
    
    .location-gallery__image {
      max-height: 300px;
    }

    .location-content-section__title {
      font-size: 1.6rem;
    }
  }

  @media (max-width: 480px) {
    .location-hero__title {
      font-size: 1.8rem;
    }

    .location-hero__subtitle {
      font-size: 1.1rem;
    }

    .location-gallery__grid {
      grid-template-columns: 1fr;
    }

    .location-content-section__title {
      font-size: 1.4rem;
    }
  }
/* Page password - Style Pass the Bread */
  .password-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
    padding: var(--section-padding-top) 20px var(--section-padding-bottom) 20px;
    font-family: var(--font-primary--family);
  }

  .password-page__container {
    width: 100%;
    max-width: 500px;
    text-align: center;
  }

  /* Logo */
  .password-page__logo {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
  }

  .password-page__logo-img {
    max-width: 200px;
    height: auto;
  }

  .password-page__logo-text {
    font-family: var(--font-heading--family);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-foreground);
    margin: 0;
  }

  /* Contenu principal */
  .password-page__content {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
  }

  /* En-tête */
  .password-page__header {
    margin-bottom: 2.5rem;
  }

  .password-page__title {
    font-family: var(--font-heading--family);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-foreground);
    margin: 0 0 1rem 0;
    line-height: 1.3;
  }

  .password-page__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
  }

  /* Formulaire */
  .password-page__form-wrapper {
    margin-bottom: 2rem;
  }

  .password-form {
    width: 100%;
  }

  /* Messages d'erreur */
  .form__message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: left;
  }

  .form__message--error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
  }

  .form__error-text {
    margin: 0;
    font-size: 0.9rem;
  }

  /* Champs de formulaire */
  .field {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .field__input {
    width: 100%;
    padding: 1.2rem 1rem 1rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary--family);
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .field__input:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
  }

  .field__input:focus + .field__label,
  .field__input:not(:placeholder-shown) + .field__label {
    transform: translateY(-0.8rem) scale(0.8);
    color: #8b7355;
  }

  .field__label {
    position: absolute;
    top: 1.2rem;
    left: 1rem;
    font-size: 1rem;
    color: #999;
    pointer-events: none;
    transition: all 0.2s ease;
    transform-origin: left top;
    background: white;
    padding: 0 0.25rem;
  }

  /* Bouton */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-primary--family);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .btn--primary {
    background-color: #8b7355;
    color: white;
  }

  .btn--primary:hover:not(:disabled) {
    background-color: #7a6249;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
  }

  .btn--primary:active {
    transform: translateY(0);
  }

  .btn--full-width {
    width: 100%;
  }

  .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
  }

  .btn__spinner {
    width: 20px;
    height: 20px;
    color: currentColor;
  }

  /* Message d'info */
  .password-page__info {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
  }

  .password-page__info-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .password-page {
      padding: var(--section-padding-top-mobile) 15px var(--section-padding-bottom-mobile) 15px;
      min-height: 100svh; /* Support viewport units pour mobile */
    }

    .password-page__content {
      padding: 2rem 1.5rem;
    }

    .password-page__title {
      font-size: 1.5rem;
    }

    .password-page__subtitle {
      font-size: 1rem;
    }

    .password-page__logo {
      margin-bottom: 2rem;
    }

    .password-page__logo-text {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .password-page__content {
      padding: 1.5rem 1rem;
    }

    .password-page__title {
      font-size: 1.3rem;
    }

    .field__input {
      padding: 1rem 0.8rem 0.8rem 0.8rem;
    }

    .field__label {
      top: 1rem;
      left: 0.8rem;
    }
  }
.product {
    background-color: var(--color-background);
    min-height: 100vh;
    padding: 0;
    font-family: var(--font-primary--family);
  }

  .product__container {
    display: flex;
    height: calc(100vh - 80px);
    max-height: calc(100vh - 80px);
    overflow: hidden;
  }

  /* Galerie carousel style Embla (50% gauche) */
  .product__gallery {
    width: 50%;
    background: white;
    position: relative;
    height: 100%;
  }

  /* Structure Embla */
  .embla {
    height: 100%;
    position: relative;
  }

  .embla__viewport {
    overflow: hidden;
    height: 100%;
  }

  .embla__container {
    display: flex;
    height: 100%;
    touch-action: pan-x pinch-zoom;
  }

  .embla__slide {
    flex: 0 0 100%;
    min-width: 0;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .embla__slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    user-select: none;
  }

  .embla__slide:hover .embla__slide__img {
    transform: scale(1.02);
  }

  /* Contrôles Embla */
  .embla__controls {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .embla__buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .embla__button {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.5);
    -webkit-appearance: none;
    appearance: none;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: #333;
    transition: all 0.2s ease;
    outline: none;
    touch-action: manipulation;
  }

  .embla__button:hover:not(:disabled) {
    background-color: white;
    transform: scale(1.1);
  }

  .embla__button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
  }

  .embla__button__svg {
    width: 40%;
    height: 40%;
  }

  .embla__button--prev .embla__button__svg {
    transform: rotate(-90deg);
  }

  .embla__button--next .embla__button__svg {
    transform: rotate(-90deg);
  }

  /* Dots Embla */
  .embla__dots {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.4rem;
    max-width: 200px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

  .embla__dot {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.5);
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 1.5rem;
    height: 1.5rem;
    touch-action: manipulation;
    outline: none;
    flex-shrink: 0;
  }

  .embla__dot:after {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    content: '';
    display: flex;
    height: 0.6rem;
    width: 0.6rem;
    transition: all 0.2s ease;
  }

  .embla__dot--selected:after {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
  }

  .embla__dot:hover:not(.embla__dot--selected):after {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
  }

  /* Informations produit (50% droite) */
  .product__info {
    width: 50%;
    background: var(--color-background);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .product__header {
    margin-bottom: 1rem;
  }

  .product__vendor {
    color: #8b7355;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .product__title {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    color: #2c2c2c;
  }

  .product__price {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }

  .product__price-current {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c2c2c;
  }

  .product__price-regular {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #8b7355;
    opacity: 0.7;
  }

  .product__price-sale {
    font-size: 1.6rem;
    font-weight: 600;
    color: #d2691e;
  }

  .product__price-badge {
    background: #d2691e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .product__description {
    font-size: 1rem;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    max-width: 70ch;
  }

  .product__description p {
    margin-bottom: 0.75rem;
  }

  .product__description p:last-child {
    margin-bottom: 0;
  }

  /* Formulaire */
  .product__form {
    margin-bottom: 1.5rem;
  }

  .product__variants {
    margin-bottom: 1rem;
  }

  .product__variant-label,
  .product__quantity-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-size: 0.9rem;
  }

  .product__variant-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d4c5a9;
    border-radius: 8px;
    background: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
  }

  .product__variant-select:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
  }

  .product__quantity-cart {
    display: flex;
    gap: 1.5rem;
    align-items: end;
  }

  .product__quantity {
    min-width: 150px;
  }

  .product__quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #d4c5a9;
    border-radius: 8px;
    background: white;
    overflow: hidden;
    justify-content: space-between;
  }

  .product__quantity-btn {
    background: none;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 45px;
    color: #2c2c2c;
  }

  .product__quantity-btn:hover {
    background-color: #f9f6f0;
  }

  .product__quantity-input {
    border: none;
    padding: 0.75rem;
    text-align: center;
    width: 55px;
    font-size: 0.95rem;
    background: transparent;
    color: #2c2c2c;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
  }

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

  .product__quantity-input:focus {
    outline: none;
  }

  .product__add-to-cart-btn {
    flex: 1;
    background: #8b7355;
    color: white;
    border: 2px solid #8b7355;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 180px;
    text-transform: none;
    letter-spacing: normal;
  }

  .product__add-to-cart-btn:hover:not(:disabled) {
    background: #7a6249;
    border-color: #7a6249;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
  }

  .product__add-to-cart-btn:active:not(:disabled) {
    transform: translateY(0);
  }

  .product__add-to-cart-btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  /* Détails additionnels */
  .product__details {
    border-top: 1px solid rgba(139, 115, 85, 0.2);
    padding-top: 1rem;
  }

  .product__features,
  .product__tags {
    margin-bottom: 1rem;
  }

  .product__features h3,
  .product__tags h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
  }

  .product__features-content {
    color: #4a4a4a;
    line-height: 1.5;
    font-size: 0.9rem;
  }

  .product__tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .product__tag {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #2c2c2c;
    border: 1px solid #d4c5a9;
    transition: all 0.2s ease;
  }

  .product__tag:hover {
    background: white;
    border-color: #8b7355;
  }

  /* Bandeau de réduction */
  .product__discount-banner {
    background: linear-gradient(135deg, #8b7355, #a68b5b);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(139, 115, 85, 0.15);
    margin-top: 1rem;
    animation: fadeIn 0.4s ease-out;
    position: relative;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .product__discount-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
  }

  .product__discount-text {
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
    line-height: 1.2;
  }

  .product__discount-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #8b7355;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .product__discount-btn:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }


  /* Section Newsletter */
  .product__newsletter-section {
    background: #f5f5f0;
    padding: 3rem 2rem;
    margin-top: 2rem;
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .product__newsletter-section.show {
    opacity: 1;
    transform: translateY(0);
  }

  .newsletter-signup {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .newsletter-signup__title {
    font-size: 2rem;
    font-weight: 600;
    color: #8b7355;
    margin: 0 0 1rem 0;
    line-height: 1.2;
  }

  .newsletter-signup__description {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 2rem 0;
    line-height: 1.6;
  }

  .newsletter-signup__fields {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .newsletter-signup__email {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.2s ease;
  }

  .newsletter-signup__email:focus {
    outline: none;
    border-color: #8b7355;
  }

  .newsletter-signup__submit {
    background: #8b7355;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .newsletter-signup__submit:hover {
    background: #7a6249;
    transform: translateY(-2px);
  }

  .newsletter-signup__success {
    background: #d4edda;
    color: #155724;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .newsletter-signup__errors {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
  }

  .newsletter-signup__disclaimer {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
  }

  /* Newsletter responsive */
  @media (max-width: 768px) {
    .product__newsletter-section {
      padding: 2rem 1rem;
      margin-top: 1.5rem;
    }

    .newsletter-signup__title {
      font-size: 1.5rem;
    }

    .newsletter-signup__description {
      font-size: 1rem;
    }

    .newsletter-signup__fields {
      flex-direction: column;
      gap: 0.75rem;
    }

    .newsletter-signup__email,
    .newsletter-signup__submit {
      padding: 0.875rem 1.25rem;
    }
  }

  /* Section Produits Similaires - Pleine largeur avec grid */
  .similar-products {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 4rem;
    padding: 0;
    background: var(--color-background);
    font-family: var(--font-primary--family);
  }

  .similar-products__container {
    width: 100%;
    padding: 0;
  }

  .similar-products__title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin: 0 0 2rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    padding: 0 2rem;
  }

  .similar-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
  }

  .similar-products-grid[data-columns-desktop="4"] {
    grid-template-columns: repeat(4, 1fr);
  }

  .similar-products-grid[data-columns-desktop="3"] {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Cartes produits style grid unifié */
  .similar-product-card {
    display: flex;
    flex-direction: column;
    background: #f8f8f8;
    border: 1px solid var(--border-color, #ffffff);
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  /* Logique pour éviter les doublons de bordures */
  .similar-products-grid[data-columns-desktop="4"] .similar-product-card:not(:nth-child(4n)) {
    border-right: none;
  }
  .similar-products-grid[data-columns-desktop="3"] .similar-product-card:not(:nth-child(3n)) {
    border-right: none;
  }
  .similar-products-grid .similar-product-card:not(:nth-last-child(-n+4)) {
    border-bottom: none;
  }

  .similar-product-card:hover {
    transform: translateY(-2px);
    z-index: 2;
  }

  /* Grid gap gère les bordures automatiquement */

  .similar-product-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }

  .similar-product-card__image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f8f8;
  }

  .similar-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
  }

  .similar-product-card__image--primary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
  }

  .similar-product-card__image--secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }

  .similar-product-card:hover .similar-product-card__image--primary {
    opacity: 0;
  }

  .similar-product-card:hover .similar-product-card__image--secondary {
    opacity: 1;
  }

  .similar-product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #ccc;
  }

  .similar-product-card__info {
    display: flex;
    flex-direction: column;
    padding: 1rem 0.75rem;
    text-align: center;
    flex: 1;
    min-height: 100px;
  }

  .similar-product-card__title {
    font-size: 1rem;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 auto 0;
    line-height: 1.3;
    text-decoration: none;
    transition: text-decoration 0.2s ease;
    flex-grow: 1;
  }

  .similar-product-card:hover .similar-product-card__title {
    text-decoration: underline;
  }

  .similar-product-card__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    flex-wrap: wrap;
  }

  .similar-product-card__price-regular {
    font-size: 1rem;
    font-weight: 600;
    color: #8b7355;
  }

  .similar-product-card__price-sale {
    font-size: 1rem;
    font-weight: 600;
    color: #d2691e;
  }

  .similar-product-card__price-compare {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
  }

  /* Responsive Grid Produits Similaires */
  @media (max-width: 1024px) {
    .similar-products-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    /* Bordures responsive tablette - 3 colonnes */
    .similar-products-grid .similar-product-card:not(:nth-child(3n)) {
      border-right: none;
    }
    .similar-products-grid .similar-product-card:not(:nth-last-child(-n+3)) {
      border-bottom: none;
    }

    .similar-product-card__info {
      padding: 0.75rem 0.5rem;
    }
  }

  @media (max-width: 768px) {
    .similar-products__title {
      font-size: 1.75rem;
      padding: 0 1rem;
    }

    .similar-products-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Bordures responsive mobile - 2 colonnes */
    .similar-products-grid .similar-product-card:not(:nth-child(2n)) {
      border-right: none;
    }
    .similar-products-grid .similar-product-card:not(:nth-last-child(-n+2)) {
      border-bottom: none;
    }

    .similar-product-card__info {
      padding: 0.75rem 0.5rem;
    }

    .similar-product-card__title {
      font-size: 0.9rem;
    }

    .similar-product-card__price-regular,
    .similar-product-card__price-sale {
      font-size: 0.9rem;
    }

    .similar-product-card__price-compare {
      font-size: 0.8rem;
    }
  }

  @media (max-width: 480px) {
    .similar-products__title {
      font-size: 1.5rem;
    }

    .similar-products-grid {
      grid-template-columns: 1fr;
    }

    /* Bordures responsive mobile étroit - 1 colonne */
    .similar-products-grid .similar-product-card {
      border-right: 1px solid var(--border-color, #ffffff);
      border-bottom: none;
    }
    .similar-products-grid .similar-product-card:last-child {
      border-bottom: 1px solid var(--border-color, #ffffff);
    }

    .similar-product-card__info {
      padding: 0.75rem;
    }

    .similar-product-card__title {
      font-size: 0.9rem;
    }

    .similar-product-card__price-regular,
    .similar-product-card__price-sale {
      font-size: 0.9rem;
    }

    .similar-product-card__price-compare {
      font-size: 0.8rem;
    }
  }

  .newsletter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
  }

  .newsletter-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
    font-family: var(--font-primary--family);
  }

  .newsletter-close {
    background: none;
    border: none;
    color: #8b7355;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .newsletter-close:hover {
    background: rgba(139, 115, 85, 0.1);
    color: #2c2c2c;
  }

  .newsletter-content {
    padding: 1rem 2rem 2rem 2rem;
  }

  .newsletter-description {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
  }

  .newsletter-form {
    margin-bottom: 1rem;
  }

  .newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #d4c5a9;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
  }

  .newsletter-input:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
  }

  .newsletter-submit {
    background: #8b7355;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .newsletter-submit:hover {
    background: #7a6249;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
  }

  .newsletter-disclaimer {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .product__info {
      padding: 2rem;
    }

    .product__title {
      font-size: 2.5rem;
    }

    .product__price-current,
    .product__price-sale {
      font-size: 1.75rem;
    }
  }

  @media (max-width: 768px) {
    .product__container {
      flex-direction: column;
      height: auto;
      max-height: none;
    }

    .product__gallery {
      width: 100%;
      height: 60vh;
      min-height: 400px;
    }

    .product__info {
      width: 100%;
      height: auto;
      padding: 1.5rem;
      justify-content: flex-start;
    }

    .product__header {
      margin-bottom: 0.75rem;
    }

    .product__title {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
    }

    .product__price {
      margin-bottom: 1rem;
    }

    .product__price-current,
    .product__price-sale {
      font-size: 1.4rem;
    }

    .product__description {
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }

    .product__form {
      margin-bottom: 1rem;
    }

    .product__variants {
      margin-bottom: 0.75rem;
    }

    .product__quantity-cart {
      flex-direction: column;
      gap: 1rem;
    }

    .product__quantity {
      min-width: auto;
      width: 100%;
    }

    .product__add-to-cart-btn {
      min-width: auto;
      width: 100%;
      padding: 1rem 1.5rem;
    }

    .product__details {
      padding-top: 0.75rem;
    }

    .embla__controls {
      bottom: 0.75rem;
    }

    .embla__buttons {
      padding: 0.4rem 0.8rem;
      gap: 0.6rem;
    }

    .embla__button {
      width: 1.75rem;
      height: 1.75rem;
    }

    .embla__button__svg {
      width: 45%;
      height: 45%;
    }

    /* Bandeau mobile */
    .product__discount-banner {
      padding: 0.6rem 0.8rem;
      margin-top: 0.75rem;
      border-radius: 6px;
    }

    .product__discount-content {
      gap: 0.75rem;
    }

    .product__discount-text {
      font-size: 0.85rem;
    }

    .product__discount-btn {
      padding: 0.4rem 0.8rem;
      font-size: 0.75rem;
    }


    /* Popup Newsletter mobile */
    .newsletter-modal {
      margin: 0.5rem;
      border-radius: 15px;
    }

    .newsletter-header {
      padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .newsletter-title {
      font-size: 1.3rem;
    }

    .newsletter-content {
      padding: 1rem 1.5rem 1.5rem 1.5rem;
    }

    .newsletter-input-group {
      flex-direction: column;
      gap: 0.75rem;
    }

    .newsletter-input,
    .newsletter-submit {
      padding: 0.9rem 1rem;
    }
  }

  @media (max-width: 480px) {
    .product__gallery {
      height: 50vh;
      min-height: 300px;
    }

    .product__info {
      padding: 1rem;
    }

    .product__title {
      font-size: 1.5rem;
    }

    .product__price-current,
    .product__price-sale {
      font-size: 1.2rem;
    }

    .product__description {
      font-size: 0.9rem;
    }

    .embla__controls {
      bottom: 0.5rem;
    }

    .embla__buttons {
      padding: 0.3rem 0.6rem;
      gap: 0.5rem;
      border-radius: 15px;
    }

    .embla__button {
      width: 1.5rem;
      height: 1.5rem;
    }

    /* Bandeau très petit écran */
    .product__discount-banner {
      padding: 0.5rem;
      margin-top: 0.5rem;
      border-radius: 6px;
    }

    .product__discount-content {
      gap: 0.5rem;
    }

    .product__discount-text {
      font-size: 0.8rem;
      line-height: 1.3;
    }

    .product__discount-btn {
      padding: 0.35rem 0.7rem;
      font-size: 0.7rem;
      border-radius: 15px;
    }


    /* Popup Newsletter très petit écran */
    .newsletter-header {
      padding: 1.25rem 1.25rem 0.75rem 1.25rem;
    }

    .newsletter-title {
      font-size: 1.2rem;
    }

    .newsletter-content {
      padding: 0.75rem 1.25rem 1.25rem 1.25rem;
    }
  }
/* Search Page Layout */
  .search-page {
    background-color: var(--color-background);
    min-height: 100vh;
    padding: var(--spacing-xl) 0;
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .search-page__content {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  /* Header */
  .search-page__header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
  }

  .search-page__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
  }

  .search-page__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Search Form */
  .search-page__form-wrapper {
    margin-bottom: var(--spacing-xxl);
    display: flex;
    justify-content: center;
  }

  .search-form {
    width: 100%;
    max-width: 600px;
  }

  .search-form__input-wrapper {
    position: relative;
    display: flex;
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }

  .search-form__input-wrapper:focus-within {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  }

  .search-form__input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 20px 24px;
    font-size: 16px;
    color: var(--color-text);
    font-family: inherit;
    border-radius: 50px 0 0 50px;
  }

  .search-form__input:focus {
    outline: none;
  }

  .search-form__input::placeholder {
    color: var(--color-text-secondary);
  }

  .search-form__submit {
    background: var(--color-text);
    border: none;
    padding: 20px 24px;
    color: white;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-form__submit:hover {
    background: #333;
    transform: scale(1.05);
  }

  /* Results Header */
  .search-results__header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
  }

  .search-results__title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
  }

  .search-results__title--no-results {
    color: #d32f2f;
  }

  .search-results__terms {
    font-style: italic;
    color: var(--color-text-secondary);
  }

  .search-results__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
  }

  /* No Results Suggestions */
  .search-results__suggestions {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
  }

  .search-results__suggestions p {
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
  }

  .search-results__suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .search-results__suggestions li {
    padding: var(--spacing-xs) 0;
    color: var(--color-text-secondary);
    position: relative;
    padding-left: var(--spacing-md);
  }

  .search-results__suggestions li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-text);
    font-weight: bold;
  }

  /* Results Grid */
  .search-results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
  }

  /* Search Result Cards */
  .search-result-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }

  .search-result-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .search-result-card__image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
  }

  .search-result-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .search-result-card:hover .search-result-card__img {
    transform: scale(1.05);
  }

  .search-result-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: #ccc;
  }

  .search-result-card__type {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
  }

  /* Card Content */
  .search-result-card__content {
    padding: var(--spacing-lg);
  }

  .search-result-card__title {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
  }

  .search-result-card__price {
    margin-bottom: var(--spacing-sm);
  }

  .search-result-card__price-regular {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
  }

  .search-result-card__price-compare {
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-decoration: line-through;
    margin-right: var(--spacing-xs);
  }

  .search-result-card__price-sale {
    font-size: 1.125rem;
    font-weight: 600;
    color: #d32f2f;
  }

  .search-result-card__excerpt {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

  /* Pagination */
  .search-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xxl);
  }

  .search-pagination a,
  .search-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 44px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .search-pagination a:hover {
    background: var(--color-text);
    color: white;
    transform: translateY(-2px);
  }

  .search-pagination .current {
    background: var(--color-text);
    color: white;
  }

  .search-pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
  }

  /* Mobile Responsive */
  @media (max-width: 1024px) {
    .search-results__grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: var(--spacing-md);
    }

    .search-page__form-wrapper {
      margin-bottom: var(--spacing-lg);
    }

    .search-form {
      max-width: 500px;
    }

    .search-page__title {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
  }

  @media (max-width: 768px) {
    .search-page {
      padding: var(--spacing-lg) 0;
    }

    .search-form__input,
    .search-form__submit {
      padding: 16px 20px;
    }

    .search-results__grid {
      grid-template-columns: 1fr;
      gap: var(--spacing-md);
    }

    .search-result-card__content {
      padding: var(--spacing-md);
    }

    .search-pagination {
      flex-wrap: wrap;
      gap: var(--spacing-xs);
    }

    .search-pagination a,
    .search-pagination span {
      padding: 10px 14px;
      min-width: 40px;
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .search-results__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-sm);
    }

    .search-result-card__content {
      padding: var(--spacing-sm);
    }

    .search-result-card__title {
      font-size: 1rem;
    }
  }
.table-setting-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background-color: var(--color-background);
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .table-setting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
  }

  /* Contenu principal */
  .table-setting__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 60vh;
  }

  /* Colonne image (à gauche) */
  .table-setting__image-column {
    display: flex;
    justify-content: center;
  }

  .table-setting__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background-color: #f5f5f5;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .table-setting__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
  }

  .table-setting__image-placeholder {
    aspect-ratio: 4/5;
    background-color: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .table-setting__image-placeholder .placeholder-svg {
    width: 60px;
    height: 60px;
    opacity: 0.3;
  }

  /* Colonne texte (à droite) */
  .table-setting__text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding-left: 20px;
  }

  .table-setting__title {
    font-size: 48px;
    font-weight: 400;
    color: #000;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .table-setting__coming-soon {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .table-setting__text {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.01em;
    font-style: italic;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .table-setting-section {
      min-height: auto;
      padding: 60px 0;
    }

    .table-setting__container {
      padding: 0 20px;
    }

    .table-setting__content {
      grid-template-columns: 1fr;
      gap: 60px;
    }

    .table-setting__image-column {
      order: -1;
    }

    .table-setting__text-column {
      padding-left: 0;
      text-align: center;
      gap: 30px;
    }

    .table-setting__title {
      font-size: 36px;
    }

    .table-setting__text {
      font-size: 18px;
    }
  }

  @media (max-width: 480px) {
    .table-setting-section {
      padding: 40px 0;
    }

    .table-setting__content {
      gap: 40px;
    }

    .table-setting__title {
      font-size: 28px;
      line-height: 1.2;
    }

    .table-setting__text {
      font-size: 16px;
    }
  }

  /* Animation subtile au hover */
  .table-setting__image-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .table-setting__image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }

/* CSS from block stylesheet tags */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
.newsletter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .newsletter-modal[open] {
    opacity: 1;
    visibility: visible;
  }

  .newsletter-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
  }

  .newsletter-modal__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
  }

  .newsletter-modal__inner {
    position: relative;
    background: #fff;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px 40px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(-20px) scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .newsletter-modal[open] .newsletter-modal__inner {
    transform: translateY(0) scale(1);
  }

  .newsletter-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
  }

  .newsletter-modal__close:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    color: #000;
    transform: scale(1.05);
  }

  .newsletter-modal__title {
    font-size: 28px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .newsletter-modal__description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    letter-spacing: -0.005em;
  }

  .newsletter-form__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .newsletter-form__email {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    font-size: 16px;
    color: #000;
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .newsletter-form__email:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  }

  .newsletter-form__email::placeholder {
    color: rgba(0, 0, 0, 0.5);
  }

  .newsletter-form__submit {
    width: 100%;
    padding: 16px 24px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.005em;
  }

  .newsletter-form__submit:hover {
    background-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }

  .newsletter-form__submit:active {
    transform: translateY(0);
  }

  .newsletter-form__success {
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    padding: 20px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(76, 175, 80, 0.3);
  }

  .newsletter-form__errors {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 8px;
    text-align: left;
  }

  .newsletter-form__errors p {
    margin: 4px 0;
  }

  @media (max-width: 768px) {
    .newsletter-modal__content {
      padding: 20px;
      align-items: center;
    }

    .newsletter-modal__inner {
      width: 95%;
      max-width: none;
      padding: var(--spacing-lg) var(--spacing-md);
    }

    .newsletter-modal__close {
      top: 12px;
      right: 12px;
      width: 40px;
      height: 40px;
      font-size: 18px;
    }

    .newsletter-form__fields {
      gap: var(--spacing-md);
    }
  }
.pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 40px 0;
    font-family: var(--font-primary--family, 'Instrument Sans', sans-serif);
  }

  .pagination__wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    background: white;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 36px;
    box-sizing: border-box;
  }

  .pagination__btn:hover:not(.pagination__btn--disabled) {
    background: #f8f8f8;
    border-color: #8b7355;
    color: #8b7355;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.15);
  }

  .pagination__btn--disabled {
    border-color: #e5e5e5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
  }

  .pagination__btn-text {
    font-weight: 500;
  }

  .pagination__pages {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: white;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .pagination__page:hover:not(.pagination__page--current) {
    border-color: #8b7355;
    color: #8b7355;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.2);
  }

  .pagination__page--current {
    background: #8b7355;
    color: white;
    border-color: #8b7355;
    cursor: default;
    font-weight: 600;
  }

  .pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #999;
    font-size: 14px;
    font-weight: 500;
  }

  .pagination__info {
    margin-top: 8px;
  }

  .pagination__info-text {
    font-size: 14px;
    color: #666;
    font-weight: 400;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .pagination {
      margin: 30px 0;
      gap: 12px;
    }

    .pagination__wrapper {
      gap: 6px;
    }

    .pagination__btn {
      padding: 6px 10px;
      font-size: 12px;
      min-height: 32px;
    }

    .pagination__btn-text {
      display: none;
    }

    .pagination__pages {
      margin: 0 8px;
      gap: 3px;
    }

    .pagination__page,
    .pagination__ellipsis {
      width: 36px;
      height: 36px;
      font-size: 13px;
    }

    .pagination__info-text {
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .pagination {
      margin: 20px 0;
    }

    .pagination__wrapper {
      gap: 4px;
    }

    .pagination__btn {
      padding: 6px 10px;
      font-size: 11px;
      min-height: 30px;
    }

    .pagination__pages {
      margin: 0 6px;
      gap: 2px;
    }

    .pagination__page,
    .pagination__ellipsis {
      width: 32px;
      height: 32px;
      font-size: 12px;
    }

    /* Show only a few pages on very small screens */
    .pagination__pages {
      max-width: 200px;
      overflow: hidden;
    }

    .pagination__info-text {
      font-size: 12px;
    }
  }

  /* Focus styles for accessibility */
  .pagination__btn:focus,
  .pagination__page:focus {
    outline: 2px solid #8b7355;
    outline-offset: 2px;
  }

  .pagination__btn:focus:not(.pagination__btn--disabled) {
    background: #8b7355;
    color: white;
  }

  .pagination__page:focus:not(.pagination__page--current) {
    border-color: #8b7355;
    color: #8b7355;
  }
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--color-background);
    transition: transform var(--transition-duration) var(--transition-easing);
  }

  .product-card:hover {
    transform: translateY(-2px);
  }

  .product-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
  }

  .product-card__image-wrapper {
    position: relative;
    overflow: hidden;
  }

  .product-card__image {
    position: relative;
    width: 100%;
    background-color: #f8f8f8;
    overflow: hidden;
  }

  .product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-duration) var(--transition-easing);
  }

  .product-card__image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-duration) var(--transition-easing);
  }

  .product-card:hover .product-card__image-secondary {
    opacity: 1;
  }

  .product-card:hover .product-card__img:not(.product-card__img--secondary) {
    opacity: 0;
  }

  .product-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
  }

  .product-card__badge {
    position: absolute;
    top: var(--spacing-xs);
    right: var(--spacing-xs);
    z-index: 2;
    font-size: 12px;
    font-weight: var(--font-primary--weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 4px 8px;
    border-radius: 2px;
    line-height: 1;
  }

  .product-card__badge--sale {
    background-color: var(--color-foreground);
    color: var(--color-background);
  }

  .product-card__badge--soldout {
    background-color: var(--color-text-secondary);
    color: var(--color-background);
  }

  .product-card__details {
    flex: 1;
    padding: var(--spacing-sm) 0;
    text-align: left;
  }

  .product-card__vendor {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .product-card__title {
    font-size: 16px;
    font-weight: var(--font-primary--weight);
    line-height: 1.3;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
    text-transform: capitalize;
  }

  .product-card__rating {
    margin-bottom: var(--spacing-xs);
  }

  .rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
  }

  .rating__stars {
    color: #ffc107;
    line-height: 1;
  }

  .rating__text {
    font-size: 12px;
    color: var(--color-text-secondary);
  }

  .product-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--spacing-xs);
    font-size: 16px;
  }

  .product-card__price--regular,
  .product-card__price--sale {
    font-weight: var(--font-primary--weight-bold);
    color: var(--color-text);
  }

  .product-card__price--compare {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-decoration: line-through;
  }

  .product-card__savings {
    font-size: 12px;
    color: #d32f2f;
    font-weight: var(--font-primary--weight-bold);
  }

  .product-card__actions {
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-duration) var(--transition-easing);
    padding-top: var(--spacing-xs);
  }

  .product-card:hover .product-card__actions {
    opacity: 1;
    transform: translateY(0);
  }

  .product-card__add-button {
    width: 100%;
    font-size: 14px;
    padding: 8px 16px;
  }

  .btn__spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
  }

  .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .hidden {
    display: none;
  }

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .product-card__actions {
      opacity: 1;
      transform: translateY(0);
    }
  }
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 350px;
  }

  .toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 100%;
    word-wrap: break-word;
    position: relative;
    background: white;
    border: 1px solid #e5e5e5;
  }

  .toast.show {
    opacity: 1;
    transform: translateX(0);
  }

  .toast--success {
    background-color: #f0f9f4;
    border-color: #86d49d;
    color: #166534;
  }

  .toast--error {
    background-color: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626;
  }

  .toast--info {
    background-color: #f0f9ff;
    border-color: #7dd3fc;
    color: #1e40af;
  }

  .toast__icon {
    flex-shrink: 0;
    font-size: 1.2rem;
  }

  .toast__message {
    flex-grow: 1;
  }

  .toast__close {
    background: none;
    border: none;
    padding: 0;
    margin-left: 0.5rem;
    cursor: pointer;
    opacity: 0.6;
    font-size: 1.2rem;
    color: currentColor;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
  }

  .toast__close:hover {
    opacity: 1;
  }

  @media (max-width: 768px) {
    .toast-container {
      left: 1rem;
      right: 1rem;
      max-width: none;
    }
    
    .toast {
      padding: 0.875rem 1rem;
      font-size: 0.9rem;
    }
  }