:root {
    --color-background: #f7f5f0;
    --color-surface: #ffffff;
    --color-text: #1e211f;
    --color-muted: #737770;
    --color-dark: #17241d;
    --color-dark-soft: #22352a;
    --color-gold: var(--accent-color, #ba9360);
    --color-border: #e5e1d8;

    --shadow-soft:
      0 12px 36px rgba(25, 35, 29, 0.07);

    --container-width: 1240px;
    --radius-large: 18px;
    --radius-medium: 12px;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background: var(--color-background);
    color: var(--color-text);
    font-family:
      Inter,
      Arial,
      Helvetica,
      sans-serif;
    line-height: 1.6;
  }

  img {
    display: block;
    max-width: 100%;
  }

  button,
  a {
    -webkit-tap-highlight-color: transparent;
  }

  a {
    color: inherit;
  }

  .hidden {
    display: none !important;
  }

  .container {
    width: min(
      calc(100% - 40px),
      var(--container-width)
    );
    margin: 0 auto;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229,225,216,.85);
    transition: box-shadow .25s ease, background .25s ease;
  }

  .header.is-scrolled{
    background: rgba(255,255,255,.94);
    box-shadow: 0 10px 28px rgba(23,36,29,.08);
  }

  .header__inner {

    width: min(
      calc(100% - 40px),
      var(--container-width)
    );
    min-height: 190px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
  }

  .header__logo-wrapper {
    flex: 0 0 auto;
  }

  .header__logo {
    width: 345px;
    max-width: 42vw;
    max-height: 170px;
    object-fit: contain;
  }

  .header__identity {
    display: none;
  }

  .header__eyebrow,
    .section-heading__eyebrow,
  .order-banner__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--color-gold);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .header__title {
    margin: 0;
    color: var(--color-dark);
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    font-weight: 500;
    line-height: 1.1;
  }

  .header__contact {
    padding: 11px 18px;
    border: 1px solid rgba(23, 36, 29, 0.28);
    border-radius: 999px;
    color: var(--color-dark);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition:
      background 180ms ease,
      color 180ms ease;
  }

  .header__contact:hover {
    background: var(--color-dark);
    color: #ffffff;
  }

  .hero {
    position: relative;
    min-height: min(680px, calc(100vh - 190px));
    overflow: hidden;
    background: var(--color-dark);
  }

  .hero__slides,
  .hero__slide {
    position: absolute;
    inset: 0;
  }

  .hero__slide {
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
    transition:
      opacity 800ms ease,
      transform 6s ease;
  }

  .hero__slide.is-active {
    opacity: 1;
    transform: scale(1.08);
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        90deg,
        rgba(9, 19, 13, 0.56) 0%,
        rgba(9, 19, 13, 0.30) 46%,
        rgba(9, 19, 13, 0.08) 100%
      );
  }

  .hero__content {
    position: relative;
    z-index: 3;
    width: min(
      calc(100% - 40px),
      var(--container-width)
    );
    min-height: min(680px, calc(100vh - 190px));
    margin: 0 auto;
    padding-top: 72px;
    padding-bottom: 78px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #ffffff;
  }

  .hero__title {
    max-width: 620px;
    margin: 0 0 24px;
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: clamp(2.4rem, 3.9vw, 3.9rem);
    font-weight: 400;
    letter-spacing: -0.024em;
    line-height: 1.04;
  }

  .hero__arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    background: rgba(9, 19, 13, 0.3);
    color: #ffffff;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
  }

  .hero__arrow--previous {
    left: 24px;
  }

  .hero__arrow--next {
    right: 24px;
  }

  .hero__indicators {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 30px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
  }

  .hero__indicator {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
  }

  .hero__indicator.is-active {
    background: #ffffff;
  }

  .fallback-hero {
    min-height: 540px;
    display: flex;
    align-items: center;
    background:
      radial-gradient(
        circle at 75% 30%,
        rgba(186, 147, 96, 0.25),
        transparent 35%
      ),
      linear-gradient(
        135deg,
        var(--color-dark),
        var(--color-dark-soft)
      );
    color: #ffffff;
  }

  .fallback-hero__content {
    width: min(
      calc(100% - 40px),
      var(--container-width)
    );
    margin: 0 auto;
  }

  .fallback-hero__content > span {
    color: var(--color-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .fallback-hero h2 {
    max-width: 800px;
    margin: 14px 0 20px;
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .fallback-hero p {
    max-width: 580px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.05rem;
  }

  .button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 750;
    text-decoration: none;
    transition:
      transform 180ms ease,
      background 180ms ease;
  }

  .button:hover {
    transform: translateY(-2px);
  }

  .button--light {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(12px);
  }

  .button--light:hover {
    background: rgba(255, 255, 255, 0.23);
  }

  .button--gold {
    background: var(--color-gold);
    color: #ffffff;
  }

  .presentation {
    padding: 48px 0 42px;
    background: var(--color-surface);
  }

  .presentation__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.55fr);
    gap: 72px;
    align-items: start;
  }

  .section-heading__title {
    max-width: 420px;
    margin: 0;
    color: var(--color-dark);
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: clamp(2.15rem, 4.25vw, 3.65rem);
    font-weight: 400;
    letter-spacing: -0.028em;
    line-height: 1.08;
  }

  .section-heading__description {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--color-muted);
  }

  .section-heading--center {
    margin-bottom: 52px;
    text-align: center;
  }

  .presentation__text {
    max-width: 820px;
    padding-top: 0;
    color: #545951;
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: clamp(0.98rem, 1.25vw, 1.16rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.86;
    white-space: pre-line;
    text-wrap: pretty;
  }

  .presentation__text p:first-child {
    margin-top: 0;
  }

  .products {
    padding: 48px 0 58px;
  }

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

  .product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    transition:
      transform 220ms ease,
      box-shadow 220ms ease;
  }

  .product-card:hover {
    transform: translateY(-3px);
    box-shadow:
      0 18px 46px rgba(25, 35, 29, 0.11);
  }

  .product-card__visual {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f7f3;
  }

  .product-card__image {
    width: 100%;
    height: 270px;
    object-fit: contain;
    padding: 20px;
    transition: transform 300ms ease;
  }

  .product-card:hover .product-card__image {
    transform: scale(1.025);
  }

  .product-card__placeholder {
    width: 92px;
    height: 230px;
    border: 2px solid rgba(23, 36, 29, 0.35);
    border-radius: 44px 44px 18px 18px;
    position: relative;
  }

  .product-card__placeholder::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 50%;
    width: 29px;
    height: 46px;
    border: 2px solid rgba(23, 36, 29, 0.35);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    transform: translateX(-50%);
  }

  .product-card__placeholder::after {
    content: "VINIFLOW";
    position: absolute;
    top: 47%;
    right: 8px;
    left: 8px;
    padding: 14px 2px;
    border-top: 1px solid rgba(23, 36, 29, 0.23);
    border-bottom: 1px solid rgba(23, 36, 29, 0.23);
    color: rgba(23, 36, 29, 0.55);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .product-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px;
  }

  .product-card__format {
    margin-bottom: 9px;
    color: var(--color-gold);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .product-card__name {
    margin: 0;
    color: var(--color-dark);
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.15;
  }

  .product-card__description {
    flex: 1;
    margin: 17px 0 24px;
    color: var(--color-muted);
    font-size: 0.94rem;
  }

  .product-card__footer {
    min-height: 48px;
    padding-top: 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid var(--color-border);
  }

  

  .product-card__button {
    padding: 9px 17px;
    border: 0;
    border-radius: 999px;
    background: var(--color-dark);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .empty-state {
    padding: 60px 20px;
    border: 1px dashed #cbc6bb;
    border-radius: var(--radius-large);
    text-align: center;
  }

  .empty-state h3 {
    margin: 0;
    color: var(--color-dark);
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: 1.8rem;
    font-weight: 400;
  }

  .empty-state p {
    margin-bottom: 0;
    color: var(--color-muted);
  }

  .order-banner {
    padding: 70px 0;
    background: var(--color-dark);
    color: #ffffff;
  }

  .order-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }

  .order-banner h2 {
    margin: 0 0 8px;
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: clamp(1.8rem, 3.3vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -0.03em;
  }

  .order-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
  }

 
/* ==========================================================
   Footer ViniFlow — version premium V1
   ========================================================== */

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

.footer{
    padding:50px 0 28px;
    background:#0b110e;
    color:#fafafa;
}

.footer__inner{
    display:grid;
    grid-template-columns:320px 320px;
    justify-content:space-between;
    align-items:start;
    column-gap:80px;
    row-gap:28px;
    padding:0 55px;
}

.footer__inner > div:first-of-type{
    justify-self:start;
}

.footer__inner > div:last-of-type{
    justify-self:end;
    text-align:left;
}
.footer__domain{

    grid-column:1 / -1;

    text-align:center;

    margin:0 0 8px;

    font-size:1.2rem !important;

    font-weight:300;

    letter-spacing:.08em;

    text-transform:uppercase;
}

.footer__title{

    margin:0 0 22px;

    color:#ffffff;

    font-size:.72rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.footer__link,
.footer__address,
.footer__legal a{

    display:block;

    color:rgba(250,250,250,.72);

    font-size:.88rem;

    line-height:1.9;

    text-decoration:none;
}

.footer__link:hover,
.footer__legal a:hover{

    color:var(--color-gold);
}

.footer__address{
    margin:0;
    white-space:pre-line;
}

.footer__link + .footer__link,
.footer__link + .footer__address{
    margin-top:.55rem;
}

.footer__legal{

    display:grid;

    gap:6px;
}

.footer__credits{

    margin-top:34px;

    color:rgba(250,250,250,.45);

    font-size:.75rem;

    line-height:1.6;
}

.footer__copyright{

    margin:0;
}

.footer__signature{

    margin:4px 0 0;
}

.footer__bottom{

    margin-top:42px;

    padding-top:18px;

    border-top:1px solid rgba(255,255,255,.08);
}

.footer__warning{

    margin:0;

    text-align:center;

    color:rgba(250,250,250,.55);

    font-size:.88rem;

    line-height:1.6;
}


/* ==========================================================
   Mobile
   ========================================================== */

@media (max-width:680px){

.footer{

    padding:42px 0 100px;
}

.footer__inner{

    grid-template-columns:1fr;

    gap:42px;
}

.footer__credits{

    margin-top:26px;
}

.footer__warning{

    font-size:.70rem;
}
}

  .error-screen {
    position: fixed;
    z-index: 100;
    inset: 0;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 25, 20, 0.92);
  }

  .error-screen__card {
    max-width: 520px;
    padding: 38px;
    border-radius: var(--radius-large);
    background: #ffffff;
    text-align: center;
  }

  .error-screen__card h2 {
    margin-top: 0;
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: 2rem;
    font-weight: 400;
  }

  @media (max-width: 960px) {
    .products__grid {
      grid-template-columns:
        repeat(2, minmax(0, 1fr));
    }

    .presentation__inner {
      grid-template-columns: 1fr;
      gap: 35px;
    }

    .footer__inner {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer__signature {
      justify-self: center;
    }
  }

  @media (max-width: 680px) {
    .container,
    .header__inner,
    .hero__content,
    .fallback-hero__content {
      width: min(calc(100% - 28px), var(--container-width));
    }

    .header__inner {
      min-height: 88px;
      gap: 14px;
    }

    .header__logo {
      max-width: 165px;
      max-height: 68px;
    }

    .header__eyebrow {
      display: none;
    }

    .header__contact {
      display: none !important;
    }

    .hero,
    .hero__content {
      min-height: 520px;
    }

    .hero__overlay {
      background:
        linear-gradient(
          0deg,
          rgba(9, 19, 13, 0.70),
          rgba(9, 19, 13, 0.18)
        );
    }

    .hero__content {
      justify-content: flex-end;
      padding-bottom: 88px;
    }

    .hero__title {
      max-width: 92%;
      font-size: clamp(2.45rem, 10.5vw, 3.55rem);
    }

    .hero__arrow {
      top: auto;
      bottom: 25px;
      width: 42px;
      height: 42px;
    }

    .hero__arrow--previous {
      left: 14px;
    }

    .hero__arrow--next {
      right: 14px;
    }

    .fallback-hero {
      min-height: 500px;
    }

    .fallback-hero h2 {
      font-size: clamp(2.7rem, 15vw, 4.5rem);
    }

    .presentation,
    .products {
      padding: 75px 0;
    }

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

    .product-card__visual,
    .product-card__image {
      height: 250px;
      min-height: 250px;
    }

    .order-banner__inner {
      align-items: flex-start;
      flex-direction: column;
    }
  }
  .header__actions {
    position:absolute;
    right:calc((100vw - min(calc(100% - 40px), var(--container-width)))/2);
    margin-left:0;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .button--borderless {
    border: 0;
    cursor: pointer;
  }

  .button--dark {
    background: var(--color-dark);
    color: #ffffff;
  }

  .cart-button {
    min-height: 46px;
    padding: 7px 8px 7px 17px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(23, 36, 29, 0.24);
    border-radius: 999px;
    background: transparent;
    color: var(--color-dark);
    cursor: pointer;
    font-weight: 750;
    transition:
      background 180ms ease,
      color 180ms ease,
      transform 180ms ease;
  }

  .cart-button:hover,
  .cart-button--active {
    background: var(--color-dark);
    color: #ffffff;
  }

  .cart-button:hover {
    transform: translateY(-1px);
  }

  .cart-button__count {
    min-width: 31px;
    height: 31px;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-gold);
    color: #ffffff;
    font-size: 0.82rem;
  }

  .quantity-control {
    display: inline-grid;
    grid-template-columns: 38px 38px 38px;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: #ffffff;
    transition:
      border-color 180ms ease,
      box-shadow 180ms ease;
  }

  .quantity-control--active {
    border-color: var(--color-dark);
    box-shadow:
      0 5px 18px rgba(23, 36, 29, 0.09);
  }

  .quantity-control__button {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-dark);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
  }

  .quantity-control__button:hover:not(:disabled) {
    background: #f0ede6;
  }

  .quantity-control__button:disabled {
    color: #b7b8b5;
    cursor: default;
  }

  .quantity-control__button--add {
    background: var(--color-dark);
    color: #ffffff;
  }

  .quantity-control__button--add:hover:not(:disabled) {
    background: var(--color-dark-soft);
  }

.quantity-control__value {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;

    color: var(--color-dark);

    font-size: 0.94rem;
    font-weight: 800;

    text-align: center;

    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity-control__value::-webkit-inner-spin-button,
.quantity-control__value::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-control__value:focus {
    background: #f7f5f0;
}

  .cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 89;

  background: rgba(15, 18, 17, 0.34);

  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);

  opacity: 0;
  transition:
    opacity .25s ease,
    backdrop-filter .25s ease;
}

.cart-overlay:not(.hidden){
  opacity:1;
}

  .cart-drawer {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(480px, 100%);
    display: flex;
    flex-direction: column;
    background: var(--color-background);
    box-shadow:
      -20px 0 70px rgba(10, 18, 13, 0.22);
    transform: translateX(105%);
    transition: transform 260ms ease;
  }

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

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

  .cart-drawer__header {
    min-height: 112px;
    padding: 24px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(23,36,29,.06);
  }

  .cart-drawer__eyebrow {
    display: block;
    margin-bottom: 3px;
    color: var(--color-gold);
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .cart-drawer__header h2 {
    margin: 0;
    color: var(--color-dark);
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: 2rem;
    font-weight: 400;
  }

  .cart-drawer__close {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: transparent;
    color: var(--color-dark);
    cursor: pointer;
    font-size: 1.9rem;
    line-height: 1;
  }

  .cart-drawer__content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
  }

  .cart-items {
    padding: 4px 25px 15px;
  }

  .cart-item {
    padding: 21px 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 15px;
    border-bottom: 1px solid rgba(23,36,29,.06);
  }

  .cart-item__visual {
    width: 72px;
    height: 92px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f1eee7;
  }

  .cart-item__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 7px;
  }

  .cart-item__visual--placeholder {
    font-size: 2.1rem;
  }

  .cart-item__information {
    min-width: 0;
    align-self: center;
  }

  .cart-item__name {
    margin: 0 0 3px;
    color: var(--color-dark);
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.2;
  }

  .cart-item__format {
    display: block;
    margin-bottom: 7px;
    color: var(--color-muted);
    font-size: 0.78rem;
  }

  .cart-item__total {
    color: var(--color-dark);
    font-size: 0.98rem;
  }

  .cart-item__actions {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .cart-item__remove {
    padding: 5px;
    border: 0;
    background: transparent;
    color: #8a6a5f;
    cursor: pointer;
    font-size: 0.76rem;
    text-decoration: underline;
  }

  .cart-drawer__footer {
    padding: 21px 25px 25px;
    border-top: 1px solid rgba(23,36,29,.06);
    background: #fbfaf7;
  }

  .cart-summary{
    display:grid;
    gap:14px;
}

  .cart-summary__line{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;

    color:var(--color-muted);

    font-size:.88rem;

    letter-spacing:.01em;
}

  .cart-summary__line strong {
    color: var(--color-dark);
  }

  .cart-summary__line--total{

    margin-top:6px;
    padding-top:18px;

    border-top:1px solid rgba(23,36,29,.06);

    color:var(--color-dark);

    font-size:1rem;
}

  .cart-summary__line--total strong{

    font-family:Georgia,"Times New Roman",serif;

    font-size:1.6rem;

    font-weight:400;

    letter-spacing:-.02em;

    color:var(--color-dark);
}

  .cart-drawer__notice {
    margin: 16px 0;
    color: var(--color-muted);
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .cart-checkout-button {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    background: var(--color-dark);
    color: #ffffff;
    cursor: pointer;
    font-size: 0.94rem;
    font-weight: 800;
  }

  .cart-checkout-button:hover {
    background: var(--color-dark-soft);
  }

  .cart-clear-button {
    width: 100%;
    margin-top: 10px;
    padding: 9px;
    border: 0;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    font-size: 0.79rem;
    text-decoration: underline;
  }

  .cart-empty-state {
    flex: 1;
    padding: 70px 34px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .cart-empty-state__icon {
    margin-bottom: 20px;
    font-size: 4rem;
  }

  .cart-empty-state h3 {
    margin: 0;
    color: var(--color-dark);
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: 1.8rem;
    font-weight: 400;
  }

  .cart-empty-state p {
    max-width: 310px;
    margin: 12px 0 25px;
    color: var(--color-muted);
  }

  .mobile-cart-button {
    position: fixed;
    z-index: 60;
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 62px;
    padding: 10px 17px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    border-radius: 18px;
    background: var(--color-dark);
    box-shadow:
      0 18px 45px rgba(10, 18, 13, 0.3);
    color: #ffffff;
    cursor: pointer;
  }

  .mobile-cart-button strong {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.74rem;
    font-weight: 500;
  }

  @media (min-width: 681px) {
    .mobile-cart-button {
      display: none !important;
    }
  }

  @media (max-width: 680px) {
    body {
      padding-bottom: 84px;
    }

    .header__actions {
      margin-left: auto;
    }

    .cart-button {
      padding-left: 8px;
    }

    .cart-button__label {
      display: none;
    }

    .cart-button__count {
      min-width: 34px;
      height: 34px;
    }

    .product-card__footer {
      align-items: flex-end;
    }

    .cart-drawer {
      top: 0;
      width: 100%;
    }

    .cart-drawer__header {
      min-height: 90px;
      padding: 17px 18px;
    }

    .cart-items {
      padding-right: 18px;
      padding-left: 18px;
    }

    .cart-drawer__footer {
      padding: 18px;
    }

    .mobile-cart-button:not(.hidden) {
      display: flex;
    }
  }

  .customer-step {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
  }

  .customer-step__content {
    padding: 22px 25px 35px;
  }

  .customer-step__back {
    margin: 0 0 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 700;
  }

  .customer-step__back:hover {
    color: var(--color-dark);
  }

  .customer-step__summary {
    margin-bottom: 28px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #f7f5f0;
  }

  .customer-step__summary div {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .customer-step__summary span {
    color: var(--color-muted);
    font-size: 0.75rem;
  }

  .customer-step__summary strong {
    color: var(--color-dark);
  }

  .customer-form {
  display: grid;
  gap: 20px;
}

  .customer-form__section {
  display: grid;
  gap: 12px;
}

  .customer-form__section h3 {
    margin: 0 0 2px;
    color: var(--color-dark);
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: 1.35rem;
    font-weight: 400;
  }

  .customer-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }

  .customer-form__grid--postal {
    grid-template-columns: minmax(120px, 0.75fr) minmax(0, 1.25fr);
  }

  .form-field {
  display: grid;
  gap: 5px;
}

  .form-field label {
    color: var(--color-dark);
    font-size: 0.79rem;
    font-weight: 750;
  }

  .form-field input,
  .form-field select {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    outline: none;
    background: #ffffff;
    color: var(--color-dark);
    font: inherit;
    font-size: 0.92rem;
    transition:
      border-color 160ms ease,
      box-shadow 160ms ease;
  }

  .form-field input:focus,
  .form-field select:focus {
    border-color: var(--color-dark);
    box-shadow:
      0 0 0 3px rgba(23, 36, 29, 0.09);
  }

  .form-field--error input,
  .form-field--error select {
    border-color: #a74132;
    box-shadow:
      0 0 0 3px rgba(167, 65, 50, 0.08);
  }

  .form-field__error {
    min-height: 14px;
    color: #a74132;
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .customer-form__global-error {
    padding: 12px 14px;
    border-radius: 10px;
    background: #f9e9e6;
    color: #8e3327;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .customer-form__notice {
    margin: -14px 0 0;
    color: var(--color-muted);
    font-size: 0.72rem;
    line-height: 1.5;
    text-align: center;
  }

  @media (max-width: 680px) {
    .customer-step__content {
      padding: 18px 18px 30px;
    }

    .customer-form__grid,
    .customer-form__grid--postal {
      grid-template-columns: 1fr;
    }

    .customer-step__summary {
      padding: 14px;
    }
  }


  /* ==========================================================
     Finitions premium ViniFlow
     ========================================================== */

  .header {
    box-shadow: 0 1px 0 rgba(23, 36, 29, 0.03);
  }

  .header__inner {
    padding-top: 3px;
    padding-bottom: 3px;
  }

    .hero__arrow {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(9, 19, 13, 0.18);
    transition:
      background 180ms ease,
      border-color 180ms ease,
      transform 180ms ease;
  }

  .hero__arrow:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(9, 19, 13, 0.30);
  }

  .hero__indicator {
    width: 22px;
    height: 3px;
    border-radius: 999px;
  }

  .section-heading__eyebrow,
  .order-banner__eyebrow {
    letter-spacing: 0.20em;
  }

  

  .product-card__button,
  .cart-checkout-button,
  .button--dark,
  .button--gold {
    transition:
      background 180ms ease,
      transform 180ms ease,
      box-shadow 180ms ease;
  }

  .product-card__button:hover,
  .cart-checkout-button:hover,
  .button--dark:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(23, 36, 29, 0.16);
  }

  .cart-button {
    box-shadow: none;
  }

  .cart-button:hover,
  .cart-button--active {
    box-shadow: 0 8px 22px rgba(23, 36, 29, 0.12);
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
    }
  }


  /* ==========================================================
     Composition premium
     ========================================================== */

  .header__identity {
    display: none !important;
  }

  .header__logo-wrapper {
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto;
  }

  .header__actions {
    margin-left: auto;
  }

  .presentation .section-heading__eyebrow {
    margin-bottom: 15px;
    font-size: 0;
  }

  .presentation .section-heading__eyebrow::after {
    content: "LA MAISON";
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  
  .presentation .section-heading__title {
    display: none !important;
  }


  

  @media (max-width: 680px) {
    .header__inner {
      min-height: 116px;
    }

    .header__logo {
      width: 215px;
      max-width: 58vw;
      max-height: 96px;
    }

    .hero,
    .hero__content {
      min-height: 520px;
    }

    .hero__content {
      padding-top: 42px;
      padding-bottom: 84px;
      justify-content: flex-start;
    }

    .hero__title {
      max-width: 94%;
      font-size: clamp(2.2rem, 9.3vw, 3.15rem);
    }

    .presentation__inner {
      gap: 28px;
    }

    .presentation .section-heading__title {
      max-width: 100%;
    }

    

    .presentation__text {
      max-width: 100%;
      padding-top: 0;
      font-size: 1rem;
      line-height: 1.76;
    }
  }


  /* ==========================================================
     Sections éditoriales cohérentes
     ========================================================== */

  .products .section-heading--center {
    max-width: 470px;
    margin: 0 0 34px;
    text-align: left;
  }

  .products .section-heading__eyebrow {
    display: block;
    margin: 0 0 15px;
    color: var(--color-gold);
    font-size: 0;
    font-weight: 750;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .products .section-heading__eyebrow::after {
    content: "NOTRE COLLECTION";
    display: inline-block;
    font-size: 0.76rem;
  }

  .products .section-heading__title {
    display: block !important;
    max-width: 470px;
    margin: 0;
    color: var(--color-dark);
    font-family:
      Georgia,
      "Times New Roman",
      serif;
    font-size: clamp(2.45rem, 4.1vw, 3.9rem);
    font-weight: 400;
    letter-spacing: -0.032em;
    line-height: 1.06;
    text-wrap: balance;
  }

  .products .section-heading__description {

    display: block !important;

    margin-top: 18px;

    max-width: 560px;

    color: var(--color-muted);

    font-size: .88rem;

    line-height: 1.6;
}

  @media (max-width: 680px) {
    .presentation {
      padding: 38px 0 32px;
    }

    .products {
      padding: 38px 0 48px;
    }

    .products .section-heading--center {
      max-width: 100%;
      margin-bottom: 26px;
      text-align: left;
    }

    .products .section-heading__title {
      max-width: 100%;
      font-size: clamp(2rem, 9.8vw, 2.95rem);
    }
  }


  /* ==========================================================
     Sections — version finale
     ========================================================== */

  .presentation .section-heading__title,
  .presentation .section-heading__title::before,
  .presentation .section-heading__title::after {
    display: none !important;
    content: none !important;
  }

  .presentation .section-heading__eyebrow,
  .products .section-heading__eyebrow {
    display: block;
    margin: 0;
    color: var(--color-gold);
    font-size: 0;
    font-weight: 750;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .presentation .section-heading__eyebrow::after {
    content: "LA MAISON";
    display: inline-block;
    font-size: 0.76rem;
  }

  .presentation__text {
    padding-top: 0;
  }

  .products .section-heading--center {
    max-width: 470px;
    margin: 0 0 26px;
    text-align: left;
  }

  .products .section-heading__eyebrow::before {
    display: none !important;
    content: none !important;
  }

  .products .section-heading__eyebrow::after {
    content: "NOTRE COLLECTION";
    display: inline-block;
    width: auto;
    height: auto;
    background: none;
    font-size: 0.76rem;
  }

  .products .section-heading__title {
  display: none !important;
}

.products .section-heading__description {
  display: block !important;
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

  @media (max-width: 680px) {
    .presentation {
      padding: 36px 0 30px;
    }

    .products {
      padding: 34px 0 46px;
    }

    .presentation__inner {
      gap: 22px;
    }

    .products .section-heading--center {
      max-width: 100%;
      margin-bottom: 22px;
      text-align: left;
    }
  }

.presentation .section-heading__eyebrow::after,
.products .section-heading__eyebrow::after {
    font-size: 16px !important;
    font-weight: 750;
    letter-spacing: 0.20em;
}

.hero__title{
    font-size:clamp(2.9rem,4.8vw,4.7rem) !important;
}

/* Header sticky rétractable — version finale */

.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(229, 225, 216, 0.85);
  box-shadow: 0 1px 0 rgba(23, 36, 29, 0.03);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    background 280ms ease,
    box-shadow 280ms ease;
}

.header__inner {
  min-height: 190px;
  padding-top: 3px;
  padding-bottom: 3px;
  transition:
    min-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header__logo {
  width: 345px;
  max-width: 42vw;
  max-height: 170px;
  transition:
    width 320ms cubic-bezier(0.22, 1, 0.36, 1),
    max-width 320ms cubic-bezier(0.22, 1, 0.36, 1),
    max-height 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(23, 36, 29, 0.08);
}

.header.is-scrolled .header__inner {
  min-height: 88px;
}

.header.is-scrolled .header__logo {
  width: 240px;
  max-width: 36vw;
  max-height: 88px;
}

@media (max-width: 680px) {
  .header__inner {
    min-height: 116px;
  }

  .header__logo {
    width: 215px;
    max-width: 58vw;
    max-height: 96px;
  }

  .header.is-scrolled .header__inner {
    min-height: 76px;
  }

  .header.is-scrolled .header__logo {
    width: 188px;
    max-width: 52vw;
    max-height: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header,
  .header__inner,
  .header__logo {
    transition: none !important;
  }
}


/* ==========================================================
   Prix produits — style élégant et lisible
   ========================================================== */

.product-card .product-card__price,
.product-card .product-card__price strong,
.product-card .product-card__price span {
  color: var(--color-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.1;
  font-variant-numeric: lining-nums tabular-nums;
}




/* ==========================================================
   Finitions mobile — ViniFlow
   ========================================================== */

@media (max-width: 680px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    overflow-x: hidden;
  }

  .container,
  .header__inner,
  .hero__content,
  .fallback-hero__content {
    width: min(calc(100% - 28px), var(--container-width));
  }

  .header__inner {
    min-height: 92px;
    gap: 12px;
  }

  .header__logo {
    width: 188px;
    max-width: 54vw;
    max-height: 78px;
  }

  .header.is-scrolled .header__inner {
    min-height: 70px;
  }

  .header.is-scrolled .header__logo {
    width: 164px;
    max-width: 48vw;
    max-height: 60px;
  }

  .header__contact {
    min-height: 42px;
    padding: 9px 13px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .hero,
  .hero__content {
    min-height: min(620px, calc(100svh - 92px));
  }

  .hero__content {
    justify-content: flex-end;
    padding-bottom: 72px;
  }

  .hero__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(9, 19, 13, 0.86) 0%,
        rgba(9, 19, 13, 0.36) 58%,
        rgba(9, 19, 13, 0.12) 100%
      );
  }

  .hero__title {
    max-width: 95%;
    margin-bottom: 0;
    font-size: clamp(2.75rem, 13vw, 4.4rem);
    line-height: 0.98;
  }

  .hero__arrow {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    font-size: 1.65rem;
    transform: none;
  }

  .hero__arrow--previous {
    left: 14px;
  }

  .hero__arrow--next {
    right: 14px;
  }

  .hero__indicators {
    bottom: 35px;
  }

  .presentation,
  .products {
    padding: 72px 0;
  }

  .presentation__inner {
    gap: 26px;
  }

  .presentation__text {
    font-size: 1rem;
    line-height: 1.75;
  }

  .section-heading--center {
    margin-bottom: 34px;
  }

  .section-heading__title {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-card:hover {
    transform: none;
  }

  .product-card__visual,
  .product-card__image {
    height: 290px;
    min-height: 290px;
  }

  .product-card__image {
    padding: 24px;
  }

  .product-card__content {
    padding: 22px 20px 20px;
  }

  .product-card__name {
    font-size: 1.55rem;
  }

  .product-card__description {
    margin: 13px 0 20px;
    font-size: 0.92rem;
  }

  .product-card__footer {
    min-height: 54px;
    padding-top: 17px;
    gap: 12px;
  }

  .quantity-control {
    grid-template-columns: 44px 42px 44px;
    min-height: 46px;
  }

  .quantity-control__button,
  .quantity-control__value {
    min-height: 44px;
  }

  .order-banner {
    padding: 54px 0;
  }

  .order-banner__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 26px;
  }

  .order-banner .button {
    width: 100%;
  }

  .footer {
    padding-bottom: 110px;
  }

  .mobile-cart-button {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
  }
}

@media (max-width: 390px) {
  .header__contact {
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .hero__title {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .product-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .quantity-control {
    width: 100%;
    grid-template-columns: 1fr 52px 1fr;
  }
}
/* Corrige l’arrivée sur la section après clic sur
   « Découvrir nos cuvées » */
#productsSection {
  scroll-margin-top: 145px;
}

@media (max-width: 680px) {
  #productsSection {
    scroll-margin-top: 90px;
  }
}
/* Hero : on masque définitivement les flèches */
.hero__arrow,
.hero__arrow--previous,
.hero__arrow--next {
    display: none !important;
}


/* ==========================================================
   RESPONSIVE SÛR — ViniFlow
   Cette couche finale conserve le header sticky existant et
   corrige uniquement les ajustements selon largeur/orientation.
   ========================================================== */

/* Le header reste sticky sur tous les formats */
.header {
  position: sticky !important;
  top: 0 !important;
  z-index: 80 !important;
}

/* Évite qu'un overflow horizontal transforme la page en
   conteneur de défilement et perturbe position: sticky */
html,
body {
  overflow-x: clip;
}

/* Ajustement de l'ancre "Découvrir nos cuvées" */
#productsSection {
  scroll-margin-top: 102px;
}

/* ---------- Ordinateurs portables : 1025–1440 px ---------- */
@media (min-width: 1025px) and (max-width: 1440px) {
  .header__inner {
    min-height: 160px;
  }

  .header__logo {
    width: 305px;
    max-height: 142px;
  }

  .header.is-scrolled .header__inner {
    min-height: 82px;
  }

  .header.is-scrolled .header__logo {
    width: 224px;
    max-height: 80px;
  }

  .hero,
  .hero__content {
    min-height: min(640px, calc(100vh - 160px));
  }

  .hero__content {
    padding-top: 58px;
    padding-bottom: 72px;
  }
}

/* ---------- Tablettes : règles communes ---------- */
@media (min-width: 681px) and (max-width: 1024px) {
  .container,
  .header__inner,
  .hero__content,
  .fallback-hero__content {
    width: min(calc(100% - 48px), var(--container-width));
  }

  .header__inner {
    min-height: 126px;
  }

  .header__logo {
    width: 242px;
    max-width: 38vw;
    max-height: 106px;
  }

  .header.is-scrolled .header__inner {
    min-height: 78px;
  }

  .header.is-scrolled .header__logo {
    width: 198px;
    max-height: 70px;
  }

  .presentation__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .product-card__visual,
  .product-card__image {
    height: 260px;
    min-height: 260px;
  }

  #productsSection {
    scroll-margin-top: 90px;
  }
}

/* ---------- Tablette portrait ---------- */
@media (min-width: 681px) and (max-width: 1024px) and (orientation: portrait) {
  .hero,
  .hero__content {
    min-height: min(680px, calc(100svh - 126px));
  }

  .hero__content {
    justify-content: flex-end;
    padding-top: 48px;
    padding-bottom: 82px;
  }

  .hero__title {
    max-width: 88%;
    font-size: clamp(3rem, 7vw, 4.4rem) !important;
  }

  .hero__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(9, 19, 13, 0.74) 0%,
        rgba(9, 19, 13, 0.25) 60%,
        rgba(9, 19, 13, 0.08) 100%
      );
  }
}

/* ---------- Tablette paysage ---------- */
@media (min-width: 681px) and (max-width: 1024px) and (orientation: landscape) {
  .header__inner {
    min-height: 100px;
  }

  .header__logo {
    width: 210px;
    max-height: 86px;
  }

  .header.is-scrolled .header__inner {
    min-height: 70px;
  }

  .header.is-scrolled .header__logo {
    width: 176px;
    max-height: 62px;
  }

  .hero,
  .hero__content {
    min-height: max(430px, calc(100svh - 100px));
  }

  .hero__content {
    justify-content: center;
    padding-top: 36px;
    padding-bottom: 58px;
  }

  .hero__title {
    max-width: 600px;
    font-size: clamp(2.6rem, 5.8vw, 4rem) !important;
  }
}

/* ---------- Mobile : règles communes ---------- */
@media (max-width: 680px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 84px;
    overflow-x: clip;
  }

  .container,
  .header__inner,
  .hero__content,
  .fallback-hero__content {
    width: min(calc(100% - 28px), var(--container-width));
  }

  .header__inner {
    min-height: 90px;
    gap: 10px;
  }

  .header__logo {
    width: 184px;
    max-width: 54vw;
    max-height: 76px;
  }

  .header.is-scrolled .header__inner {
    min-height: 68px;
  }

  .header.is-scrolled .header__logo {
    width: 158px;
    max-width: 47vw;
    max-height: 58px;
  }

  .header__contact {
    display: none !important;
  }

  .header__actions {
    right: 14px;
    margin-left: 0;
  }

  .cart-button {
    min-height: 42px;
    padding: 5px 6px;
  }

  .cart-button__label {
    display: none;
  }

  .cart-button__count {
    min-width: 32px;
    height: 32px;
  }

  .hero__content {
    justify-content: flex-end;
    padding-top: 36px;
    padding-bottom: 70px;
  }

  .hero__title {
    max-width: 96%;
    margin-bottom: 20px;
    line-height: 1;
  }

  .hero__indicators {
    bottom: 27px;
  }

  .presentation {
    padding: 38px 0 32px;
  }

  .products {
    padding: 34px 0 46px;
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card__visual,
  .product-card__image {
    height: 278px;
    min-height: 278px;
  }

  .product-card__content {
    padding: 21px 19px 19px;
  }

  .order-banner__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .order-banner .button {
    width: 100%;
  }

  #productsSection {
    scroll-margin-top: 76px;
  }
}

/* ---------- Mobile portrait ---------- */
@media (max-width: 680px) and (orientation: portrait) {
  .hero,
  .hero__content {
    min-height: min(610px, calc(100svh - 90px));
  }

  .hero__title {
    font-size: clamp(2.6rem, 12.2vw, 3.95rem) !important;
  }
}

/* ---------- Mobile paysage ---------- */
@media (max-width: 932px) and (orientation: landscape) and (max-height: 500px) {
  body {
    padding-bottom: 72px;
  }

  .header__inner {
    min-height: 66px;
  }

  .header__logo {
    width: 148px;
    max-width: 36vw;
    max-height: 54px;
  }

  .header.is-scrolled .header__inner {
    min-height: 58px;
  }

  .header.is-scrolled .header__logo {
    width: 134px;
    max-height: 48px;
  }

  .hero,
  .hero__content {
    min-height: max(350px, calc(100svh - 66px));
  }

  .hero__content {
    justify-content: center;
    padding-top: 26px;
    padding-bottom: 46px;
  }

   .hero__title {
    max-width: 74%;
    margin-bottom: 14px;
    font-size: clamp(2rem, 7vw, 3rem) !important;
  }

  .hero__indicators {
    bottom: 15px;
  }

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

  .product-card__visual,
  .product-card__image {
    height: 220px;
    min-height: 220px;
  }

  .product-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .quantity-control {
    width: 100%;
    grid-template-columns: 1fr 48px 1fr;
  }

  #productsSection {
    scroll-margin-top: 66px;
  }
}

/* ---------- Très petits mobiles ---------- */
@media (max-width: 390px) and (orientation: portrait) {
  .header__logo {
    width: 170px;
  }

  .hero__title {
    font-size: clamp(2.35rem, 12vw, 3.4rem) !important;
  }

  .product-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .quantity-control {
    width: 100%;
    grid-template-columns: 1fr 50px 1fr;
  }
}



/* ==========================================================
   Ajustement final de l'ancre Collection
   Empêche le titre d'être masqué sous le header sticky.
   ========================================================== */
#productsSection {
  scroll-margin-top: 120px;
}

@media (min-width: 681px) and (max-width: 1024px) {
  #productsSection {
    scroll-margin-top: 108px;
  }
}

@media (max-width: 680px) {
  #productsSection {
    scroll-margin-top: 82px;
  }
}

@media (max-width: 932px) and (orientation: landscape) and (max-height: 500px) {
  #productsSection {
    scroll-margin-top: 70px;
  }
}
/* Bouton panier — icône sobre */

.cart-button {
  position: relative;
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 0;

  border: 1px solid rgba(23, 36, 29, 0.18);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.7);
  color: var(--color-dark);

  box-shadow: none;
}

.cart-button__label {
  display: none !important;
}

.cart-button__icon {
  width: 22px;
  height: 22px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button__count {
  position: absolute;
  top: -4px;
  right: -5px;

  min-width: 21px;
  height: 21px;
  padding: 0 5px;

  border: 2px solid #ffffff;
  border-radius: 999px;

  background: var(--color-gold);
  color: #ffffff;

  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
}

.cart-button:hover,
.cart-button--active {
  background: var(--color-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 680px) {
  .cart-button {
    width: 42px;
    height: 42px;
    min-height: 42px;
  }

  .cart-button__icon {
    width: 20px;
    height: 20px;
  }

  .cart-button__count {
    min-width: 19px;
    height: 19px;
    font-size: 0.6rem;
  }
}
/* Réduction du panier lorsque le header se rétracte */

.cart-button {
  transition:
    width 320ms cubic-bezier(0.22, 1, 0.36, 1),
    height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    min-height 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.cart-button__icon {
  transition:
    width 320ms cubic-bezier(0.22, 1, 0.36, 1),
    height 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header.is-scrolled .cart-button {
  width: 40px;
  height: 40px;
  min-height: 40px;
}

.header.is-scrolled .cart-button__icon {
  width: 18px;
  height: 18px;
}

.header.is-scrolled .cart-button__count {
  top: -5px;
  right: -5px;
  min-width: 19px;
  height: 19px;
  font-size: 0.6rem;
}


/* ==========================================================
   Notification de paiement confirmé
   ========================================================== */

.payment-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;

  width: 360px;
  max-width: calc(100vw - 32px);

  padding: 16px 18px;

  background: #ffffff;
  border: 1px solid rgba(23, 36, 29, 0.12);
  border-left: 4px solid var(--color-gold);
  border-radius: 10px;

  box-shadow: 0 12px 30px rgba(23, 36, 29, 0.16);

  color: var(--color-text);

  opacity: 0;
  transform: translateY(-12px);

  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

.payment-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.payment-toast__title {
  margin-bottom: 5px;

  color: var(--color-dark);
  font-size: 1rem;
  font-weight: 750;
}

.payment-toast__text {
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.payment-toast__reference {
  color: var(--color-dark);
  font-weight: 750;
}

@media (max-width: 680px) {
  .payment-toast {
    top: 12px;
    right: 12px;
    left: 12px;

    width: auto;
    max-width: none;
  }
}