:root {
  --font-family: 'Outfit', sans-serif;
  --text-color: #fff;
  --accent-color: #e16e36;
  --surface-color: rgba(6, 21, 18, 0.82);
  --nav-bg: rgba(8, 12, 14, 0.95);
  --hero-overlay: rgba(0, 0, 0, 0.1);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: var(--font-family);
  color: var(--text-color);
  scroll-behavior: smooth;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  scroll-padding-top: 72px;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  margin: 0;
  padding: env(safe-area-inset-top, 0) 0 env(safe-area-inset-bottom, 0);
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  height: 100vh;
  height: 100svh;
  margin: 0;
  padding: 0;
  background: url('og-image.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.16) 20%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.22) 52%,
    rgba(255,255,255,0.06) 64%,
    rgba(255,255,255,0) 100%);
  transform: translateX(-100%) skewX(-20deg);
  filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  animation: heroGlassShine 4.5s ease-in-out infinite;
}

@keyframes heroGlassShine {
  0% {
    transform: translateX(-100%) skewX(-20deg);
    opacity: 0;
  }
  25% {
    opacity: 0.45;
  }
  50% {
    transform: translateX(120%) skewX(-20deg);
    opacity: 0.15;
  }
  100% {
    transform: translateX(250%) skewX(-20deg);
    opacity: 0;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeSlideUp 0.65s ease-out forwards;
  animation-delay: 0.2s;
  will-change: opacity, transform;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-socials .social-link {
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  animation: socialBounceIn 0.5s ease-out forwards;
  will-change: opacity, transform;
}

.hero-socials .social-link:nth-child(1) {
  animation-delay: 0.7s;
}

.hero-socials .social-link:nth-child(2) {
  animation-delay: 0.85s;
}

.hero-socials .social-link:nth-child(3) {
  animation-delay: 1s;
}

.hero-socials .social-link:nth-child(4) {
  animation-delay: 1.15s;
}

@keyframes socialBounceIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-color);
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (hover: hover) {
  .social-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
  }
}

@media (hover: none) {
  .social-link,
  .menu {
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
}

.social-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.social-text {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero .container.socials.bottom {
  position: absolute;
  bottom: calc(2rem + env(safe-area-inset-bottom, 0));
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.social-box {
  position: absolute;
  bottom: 2rem;
  width: 60vw;
  display: flex;
  justify-content: space-around;
}

section {
  width: 100%;
  background: url('drink.png') center/cover no-repeat;
}

section:not(.hero) {
  margin: 12px 0;
  padding: 2em 0;
}

h2 {
  font-size: 2.4em;
  font-weight: 600;
  margin-bottom: 10px;
}

.title {
  text-align: center;
  margin-bottom: 2em;
}

.logo-isau {
  width: 50px;
  height: 50px;
  display: inline-block;
  background: url('favicon/android-icon-192x192.png') center/cover no-repeat;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.menu {
  width: 100%;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out, box-shadow 0.25s ease;
  will-change: opacity, transform;
}

.menu.visible {
  opacity: 1;
  transform: translateY(0);
}

.allergen-legend {
  margin: 1.5rem auto 1rem;
  padding: 0.75rem 0.75rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: center;
  max-width: 560px;
}

.allergen-title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.allergen-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

.allergen-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc((100% - 4rem) / 5);
  max-width: 84px;
  min-width: 54px;
  height: 54px;
  padding: 0.25rem;
}

.allergen-item img {
  width: 100%;
  height: 100%;
  min-width: 54px;
  min-height: 54px;
}

@media (max-width: 720px) {
  .allergen-row {
    gap: 0.9rem;
  }

  .allergen-item {
    flex: 0 0 calc((100% - 3.6rem) / 4);
    max-width: 82px;
    min-width: 54px;
    height: 54px;
  }
}

@media (max-width: 520px) {
  .allergen-row {
    gap: 0.8rem;
  }

  .allergen-item {
    flex: 0 0 calc((100% - 3.2rem) / 3);
    max-width: 72px;
    min-width: 54px;
    height: 54px;
  }
}

@media (max-width: 380px) {
  .allergen-row {
    gap: 0.7rem;
  }

  .allergen-item {
    flex: 0 0 calc((100% - 2.8rem) / 2);
    max-width: 68px;
    min-width: 54px;
    height: 54px;
  }
}

.allergen-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 500px) {
  .allergen-row {
    gap: 0.6rem;
    max-width: 100%;
  }
}

@media (hover: hover) {
  .menu:hover {
    transform: translateY(0) scale(1.01);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
  }
}

.menu:active {
  transform: translateY(0) scale(0.998);
}

.item,
.item-inline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0 1em;
}

.item .title-bloc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 5px;
}

#mocktail .item .title-bloc {
  height: 1em;
}

#cocktail .item .title-bloc {
  height: 1.5em;
}

.item .title-bloc h3,
.item .title-bloc h4 {
  font-size: 1.2em;
  font-weight: 600;
  display: inline-block;
  margin: 0;
}

.title-spotlight {
  display: flex;
  flex-direction: column;
  padding-top: 1em;
}

.title-spotlight span {
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
}

.title-spotlight span.best {
  font-size: 1.5em;
  margin-bottom: 16px;
}

.enlight .title-spotlight span.best {
  font-size: 1.65em;
  letter-spacing: 0.015em;
}

.spotlight {
  height: auto !important;
}

.spotlight div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-top: 0;
  height: auto;
}

.item .title-bloc .sub-title,
.item .title-bloc .brand-title {
  margin: 1em 0 0.2em;
  font-size: 1.05em;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 215, 170, 0.92);
}

.item .title-bloc .brand-title,
.item .title-bloc .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.item .title-bloc .brand-title::after,
.item .title-bloc .sub-title::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(255, 140, 80, 0.55);
  transform: translateY(-1px);
}

.item .title-bloc h4.title-spirit {
  color: var(--accent-color);
  font-size: 1.4em;
  font-weight: 800;
  text-transform: capitalize;
  transform: translateX(-16px);
  padding-top: 1em;
}

.item .recipe-bloc {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 0.9em;
  text-align: left;
  padding: 0 1em;
  max-width: 100%;
  flex-wrap: wrap;
}

.item .recipe-bloc p {
  margin: 0;
  max-width: 80%;
}

.item .info-text {
  font-size: 0.8em;
  color: var(--accent-color);
  font-weight: 600;
  font-style: italic;
  margin: 0;
  padding: 0 1em;
  max-width: 100%;
  display: flex;
}

.item .recipe-bloc .info-text:nth-last-of-type(1) {
  padding-left: 1em;
}

.pei-made {
  display: flex;
  flex-direction: column;
  margin: 16px 0;
  font-size: 1.1em;
  font-weight: bold;
  transform: rotate(-35deg);
}

.pei-made span {
  color: var(--accent-color);
  text-align: center;
}

.item .title-bloc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 1fr);
  align-items: center;
  gap: 0.75rem;
}

.item .title-bloc .info-title {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(2.5rem, max-content));
  justify-content: flex-end;
  justify-items: end;
  gap: 0.5rem;
  min-width: 120px;
  text-align: right;
}

.item .title-bloc .info-title span {
  min-width: 2.5rem;
}

.item .title-bloc .info-title .volume {
  color: var(--accent-color);
  font-weight: 600;
}

.item .title-bloc div .origin {
  display: block;
  margin-top: 0.25rem;
  color: var(--accent-color);
  font-size: 0.92rem;
  font-weight: 600;
}

.item .title-bloc .info-title .price,
.item .title-bloc .price,
.item .title-bloc > span.price,
.item .title-bloc h3 + .price,
.item .title-bloc h4 + .price {
  color: var(--text-color);
  font-weight: 600;
}

#cocktail .item .title-bloc,
#mocktail .item .title-bloc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  height: auto;
}

#cocktail .item .title-bloc .price,
#mocktail .item .title-bloc .price {
  justify-self: end;
  text-align: right;
}

#cocktail .item,
#mocktail .item {
  position: relative;
}

#cocktail .item .recipe-bloc,
#mocktail .item .recipe-bloc {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding-right: 3.5rem;
}

#cocktail .item .recipe-bloc .pei-made,
#mocktail .item .recipe-bloc .pei-made {
  position: absolute;
  right: 0.5rem;
  top: 0;
  margin: 0;
  width: fit-content;
  transform-origin: top right;
}

.item .inline-product {
  display: flex;
  flex-direction: row;
}

.title-bloc.entry-gap {
  margin-top: 12px;
}

#wine .title-bloc div {
  max-width: 220px;
}

@media (max-width: 387px) {
  .item .title-bloc {
    grid-template-columns: minmax(0, 1fr) minmax(100px, auto);
    gap: 0.5rem;
  }

  .item .title-bloc .info-title {
    justify-content: flex-end;
    width: auto;
    grid-auto-columns: minmax(2.5rem, max-content);
  }
}


#partner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em 0;
  background: #fff !important;
}

span.logo-isautier {
  width: 100px;
  height: 100px;
  display: inline-block;
  margin-left: 1em;
  background: url('favicon/favicon-96x96.png') center/cover no-repeat;
}

.text-footer {
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}

#section-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13, 74, 63, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
  padding-top: env(safe-area-inset-top, 0);
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: none;
  -webkit-mask-image: none;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

#section-nav.nav-hidden:not(.nav-open) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-100%);
}

#section-nav.nav-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

#section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav-inner {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  gap: 0.75rem;
  white-space: nowrap;
}

.section-nav-inner .section-link {
  padding: 10px 18px;
  font-size: 0.95rem;
}

.section-tab {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1004;
  width: 100%;
  padding: calc(0.75rem + env(safe-area-inset-top, 0)) 1rem 0.75rem;
  border-radius: 0 0 18px 18px;
  border: none;
  background: var(--surface-color);
  color: #f5f0e8;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  overflow: visible;
}

.section-tab::before {
  display: none;
}

.section-tab.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.section-tab:hover {
  background: rgba(13, 74, 63, 0.82);
}
#scroll-top {
  position: fixed;
  right: 1rem;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0));
  z-index: 1005;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(225, 110, 54, 0.96);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scroll-top:hover {
  background: rgba(255, 140, 80, 1);
}

@media (max-width: 400px) {
  #scroll-top {
    right: 0.8rem;
    bottom: 1rem;
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}
.section-link {
  display: inline-block;
  padding: 8px 14px;
  color: #f5f0e8;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.section-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-1px);
}

.section-link.active {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.16);
  border-bottom-color: transparent;
}

@media (max-width: 600px) {
  .section-header {
    gap: 1.5rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-text {
    font-size: 0.8rem;
  }

  .section-link {
    padding: 8px 12px;
    font-size: 0.72rem;
  }
}

@media (max-width: 400px) {
  .social-text {
    display: none;
  }
}

@media (max-width: 360px) {
  h2 {
    font-size: 2rem;
  }

  .container {
    max-width: 100%;
    padding: 0 0.7rem;
  }

  .social-box {
    width: min(15rem, 78vw);
    bottom: 1.5rem;
  }

  .item,
  .item-inline {
    padding: 0 0.75rem;
  }

  .item .title-bloc {
    grid-template-columns: minmax(0, 1fr) minmax(88px, auto);
    gap: 0.45rem;
  }

  .item .title-bloc h3,
  .item .title-bloc h4 {
    font-size: 1.08em;
  }

  .item .title-bloc .info-title {
    min-width: 88px;
    gap: 0.35rem;
    grid-template-columns: repeat(2, minmax(2rem, max-content));
  }

  .item .recipe-bloc {
    padding: 0 0.75rem;
  }

  #cocktail .item .recipe-bloc,
  #mocktail .item .recipe-bloc {
    padding-right: 3rem;
  }

  #wine .title-bloc div {
    max-width: 180px;
  }

  .section-nav-inner {
    padding: 10px 14px;
    gap: 0.5rem;
  }

  .section-link {
    padding: 7px 11px;
    font-size: 0.68rem;
  }
}

@media (max-width: 320px) {
  .social-box {
    width: min(14rem, 82vw);
  }

  .item .title-bloc {
    grid-template-columns: minmax(0, 1fr) minmax(78px, auto);
  }

  .item .title-bloc .info-title {
    min-width: 78px;
  }

  #wine .title-bloc div {
    max-width: 160px;
  }
}

@media (max-height: 430px) and (orientation: landscape) {
  .hero .container.socials.bottom {
    top: 50%;
    right: max(0.9rem, env(safe-area-inset-right, 0));
    bottom: auto;
    left: auto;
    width: auto;
    transform: translateY(-50%);
  }

  .social-box {
    position: static;
    bottom: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .section-tab {
    padding: 0.65rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo,
  .hero-socials .social-link {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.enlight  {
  position: relative;
  margin-bottom: 1.2rem;
  padding: 0.9rem 1rem 1rem;
  border: 1px solid rgba(255, 140, 80, 0.45);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 178, 102, 0.035), transparent 36%),
    linear-gradient(145deg, rgba(225, 110, 54, 0.02), rgba(6, 21, 18, 0.72) 62%);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.enlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.015), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.008));
  pointer-events: none;
}

#cocktail .item.enlight .title-bloc {
  position: relative;
  z-index: 1;
}

#cocktail .item.enlight .title-bloc:first-child {
  margin-bottom: 0.35rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#cocktail .item.enlight .spotlight h3 {
  font-size: 1.28em;
}

#cocktail .item.enlight .price {
  font-size: 1.02em;
}