/* ============================================
   COLIBRI.RO — Main Stylesheet
   Clean CSS, no Tilda dependencies
   ============================================ */

/* --- Local Fonts (no Google Fonts dependency) --- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-0304, U+0306-0530;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-0304, U+0306-0530;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-0304, U+0306-0530;
}
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bebas-neue-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF;
}
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bebas-neue-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-0304, U+0306-0530;
}

/* --- CSS Custom Properties --- */
:root {
  --red: #bf2325;
  --red-soft: #be6061;
  --red-dark: #88171e;
  --text: #414042;
  --cream: #fdf8f4;
  --beige: #faf4e1;
  --form-bg: #f6f5f2;
  --white: #ffffff;
  --font-main: 'Montserrat', sans-serif;
  --font-accent: 'Bebas Neue', sans-serif;
  --nav-height: 100px;
  --nav-bottom: 56px;
  --container: 1200px;
  --transition: 0.2s ease-in-out;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 30px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn--filled {
  background: var(--red-soft);
  color: var(--white);
  border: 1px solid var(--red-soft);
}

.btn--filled:hover {
  background: var(--red);
  border-color: var(--red);
}

.btn--outlined {
  background: transparent;
  color: var(--red-soft);
  border: 1px solid var(--red-soft);
}

.btn--outlined:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn--outlined-white {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn--outlined-white:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn--outlined-red {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 40px;
}

.btn--outlined-red:hover {
  background: var(--red);
  color: var(--white);
}

.btn--nav {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--red);
  border: 1px solid var(--red);
}

.btn--nav:hover {
  background: var(--red);
  color: var(--form-bg);
  border-color: var(--red);
}

.btn--submit {
  background: var(--red-soft);
  color: var(--white);
  border: 1px solid var(--red-soft);
  border-radius: 50px;
  padding: 16px 40px;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
}

.btn--submit:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Button sweep animation */
.btn--sweep::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60px;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.5) 50%, rgba(255,255,255,0));
  animation: sweep 4s ease infinite;
  z-index: 1;
}

@keyframes sweep {
  0% { transform: translateX(0); }
  20% { transform: translateX(calc(100% + 120px)); }
  100% { transform: translateX(calc(100% + 120px)); }
}


/* ============================================
   HEADER / NAVIGATION — Floating two-level bar
   ============================================ */

/* --- Desktop floating nav container --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 244, 1);
  border-radius: 0;
  box-shadow: none;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.site-header--hidden {
  transform: translateY(calc(-100% - 10px));
}

/* Top row: phone | logo | en + button */
.site-header__top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  max-width: 1160px;
  margin: 0 auto;
  gap: 40px;
}

.site-header__left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

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

.site-header__logo img {
  max-width: 270px;
  height: auto;
}

.site-header__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.site-header__phone {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--text);
}

.site-header__phone a {
  color: var(--text);
}

/* --- Language Switcher --- */
.lang-switcher {
  position: relative;
}

.lang-switcher__current {
  font-family: var(--font-accent);
  font-size: 24px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px 0;
}

.lang-switcher__current .lang-arrow {
  transition: transform 0.3s ease;
}

.lang-switcher:hover .lang-arrow,
.lang-switcher--open .lang-arrow {
  transform: rotate(180deg);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fdf8f4;
  border-radius: 12px;
  box-shadow: 0px 10px 25px -5px rgba(0, 11, 48, 0.2);
  padding: 8px 0;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 100;
}

.lang-switcher__dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: #fdf8f4;
  transform: rotate(45deg);
}

.lang-switcher:hover .lang-switcher__dropdown,
.lang-switcher--open .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
}

.lang-switcher__item {
  display: block;
  padding: 8px 20px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text);
  transition: background 0.15s ease;
}

.lang-switcher__item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.lang-switcher__item--active {
  font-weight: 600;
  color: var(--red);
}

.site-header__divider {
  border: none;
  height: 1px;
  background: var(--red-dark);
  opacity: 0.15;
  max-width: 1160px;
  margin: 0 auto;
}

/* Bottom row: centered menu links */
.site-header__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 20px;
  box-shadow: 0px 2px 3px rgba(0, 11, 48, 0.15);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list__link {
  font-family: var(--font-accent);
  font-size: 24px;
  color: var(--text);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-list__link:hover,
.nav-list__link--active {
  color: var(--red);
}

.nav-list__link::after {
  display: none;
}

/* Arrow indicator for dropdown */
.nav-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.nav-item:hover .nav-arrow,
.nav-item--open .nav-arrow {
  transform: rotate(180deg);
}

/* --- Dropdown with arrow connector --- */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fdf8f4;
  border-radius: 20px;
  box-shadow: 0px 15px 30px -10px rgba(0, 11, 48, 0.2);
  padding: 12px 0;
  max-width: 220px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 100;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #fdf8f4;
  transform: translateX(-50%) rotate(45deg);
}

.nav-item:hover .nav-dropdown,
.nav-item--open .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  transition: background 0.15s ease;
}

.nav-dropdown__item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.nav-dropdown__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.nav-dropdown__text {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--text);
}

/* --- Compact Sticky Header (on scroll) --- */
.compact-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: calc(100% - 40px);
  max-width: 1160px;
  z-index: 1001;
  background: rgba(253, 248, 244, 0.97);
  border-radius: 20px;
  box-shadow: 0px 4px 20px rgba(0, 11, 48, 0.15);
  transition: transform 0.3s ease, opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.compact-header--hidden {
  transform: translateX(-50%) translateY(calc(-100% - 40px));
  opacity: 0;
  pointer-events: none;
}

.compact-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 40px;
}

.compact-header__logo img {
  max-width: 234px;
  height: auto;
}

.compact-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.compact-nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.compact-nav-list__link {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compact-nav-list__link:hover {
  color: var(--red);
}

.compact-header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.compact-header__phone {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--text);
}

.compact-header__lang {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--text);
}

.compact-header__lang:hover {
  color: var(--red);
}

/* --- Mobile Header (floating) --- */
.mobile-header {
  display: none;
  position: fixed;
  top: 10px;
  left: 15px;
  right: 15px;
  z-index: 1000;
  background: rgba(253, 248, 244, 1);
  border-radius: 20px;
  box-shadow: 0px 2px 3px rgba(0, 11, 48, 0.25);
  transition: transform 0.3s ease;
}

.mobile-header--hidden {
  transform: translateY(calc(-100% - 20px));
}

.mobile-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px 20px;
}

.mobile-header__logo img {
  max-width: 150px;
  height: auto;
}

/* Hamburger */
.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.hamburger__line {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--red-dark);
  transition: 0.25s ease-in-out;
  left: 0;
}

.hamburger__line:nth-child(1) { top: 0; }
.hamburger__line:nth-child(2),
.hamburger__line:nth-child(3) { top: 8px; }
.hamburger__line:nth-child(4) { top: 16px; }

.hamburger--open .hamburger__line:nth-child(1) {
  top: 8px;
  width: 0;
  left: 50%;
}

.hamburger--open .hamburger__line:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger--open .hamburger__line:nth-child(3) {
  transform: rotate(-45deg);
}

.hamburger--open .hamburger__line:nth-child(4) {
  top: 8px;
  width: 0;
  left: 50%;
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  padding: 100px 20px 40px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu--open {
  transform: translateX(0);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu__link {
  font-family: var(--font-accent);
  font-size: 28px;
  color: var(--text);
}

.mobile-menu__link:hover {
  color: var(--red);
}

.mobile-menu__sub {
  padding-left: 20px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__sub a {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--text);
}

.mobile-menu__footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-menu__langs {
  display: flex;
  gap: 16px;
}

.mobile-menu__lang {
  font-family: var(--font-accent);
  font-size: 24px;
  color: var(--text);
  opacity: 0.5;
}

.mobile-menu__lang--active {
  opacity: 1;
  color: var(--red);
}

.mobile-menu__phone {
  font-family: var(--font-accent);
  font-size: 24px;
}

@media (max-width: 979px) {
  .site-header {
    display: none;
  }
  .compact-header {
    display: none !important;
  }
  .mobile-header {
    display: block;
  }
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

/* Desktop hero */
.hero__desktop {
  display: flex;
  align-items: stretch;
  height: 100vh;
  padding-top: calc(20px + var(--nav-height) + var(--nav-bottom));
  margin: 0;
}

.hero__content {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 60px 40px 60px max(20px, calc((100vw - 1200px) / 2 + 20px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__title {
  font-family: var(--font-main);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.hero__descr {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 41%;
  overflow: hidden;
}

.hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Mobile hero */
.hero__mobile {
  display: none;
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__mobile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.30), rgba(0,0,0,0.60));
}

.hero__mobile-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  padding: 100px 20px 60px;
  color: var(--white);
}

.hero__mobile-content .hero__title {
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__mobile-content .hero__descr {
  color: var(--white);
  font-size: 18px;
}

@media (max-width: 979px) {
  .hero__desktop {
    display: none;
  }
  .hero__mobile {
    display: block;
  }
}

@media (min-width: 980px) and (max-width: 1300px) {
  .hero__title {
    font-size: 48px;
  }
  .hero__desktop {
    padding-top: calc(20px + var(--nav-height) + var(--nav-bottom) + 20px);
  }
}


/* ============================================
   DECORATIVE TOMATO
   ============================================ */
.deco-tomato {
  position: relative;
  height: 0;
  background: var(--cream);
  overflow: visible;
  z-index: 5;
}

.deco-tomato__img {
  position: absolute;
  bottom: -250px;
  left: -84px;
  width: 550px;
  transform: rotate(4deg);
  pointer-events: none;
  z-index: 5;
}

@media (max-width: 1199px) {
  .deco-tomato__img {
    width: 400px;
    left: -62px;
    bottom: -150px;
    transform: rotate(2deg);
  }
}

@media (max-width: 979px) {
  .deco-tomato {
    height: 60px;
  }
  .deco-tomato__img {
    display: none;
  }
}


/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-intro {
  background: var(--cream);
  padding: 80px 0 60px;
  text-align: center;
}

.products-intro__title {
  font-family: var(--font-main);
  font-size: 70px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.products-intro__descr {
  font-size: 20px;
  color: var(--text);
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .products-intro__title {
    font-size: 40px;
  }
  .products-intro__descr {
    font-size: 18px;
  }
}

/* --- Product Cards — Full-viewport background images --- */
.product-card {
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.product-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-left: auto;
  margin-right: max(20px, calc((100vw - 1200px) / 2 + 20px));
  padding: 40px 45px;
  background: rgba(253, 248, 244, 0.92);
  border-radius: 20px;
  text-align: center;
  color: var(--text);
}

.product-card__title {
  font-family: var(--font-main);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.product-card__descr {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text);
}

/* Product card outlined button */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 40px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  transition: background-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

/* Scroll animations */
.anim-fadein-left,
.anim-fadein-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-fadein-left {
  transform: translateX(-50px);
}

.anim-fadein-right {
  transform: translateX(50px);
}

.anim-fadein-left.is-visible,
.anim-fadein-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 979px) {
  .product-card {
    height: auto;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
  }
  .product-card::before {
    content: '';
    display: block;
    height: 50vh;
  }
  .product-overlay {
    display: none;
  }
  .product-content {
    max-width: 100%;
    margin: 0;
    padding: 30px 20px;
    border-radius: 0;
    background: rgba(253, 248, 244, 0.95);
  }
  .product-card__title {
    font-size: 26px;
  }
  .product-card__descr {
    font-size: 16px;
  }
}


/* ============================================
   ABOUT SECTION (Cine suntem)
   ============================================ */
.about-section {
  position: relative;
  overflow: visible;
  padding: 0;
  background-image: url('../images/deco-wheat-pattern.webp');
  background-size: 55% auto;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.about-section__deco {
  position: absolute;
  top: 20px;
  left: -60px;
  width: 400px;
  z-index: 3;
  pointer-events: none;
  transform: rotate(-10deg);
}

.about-section__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 600px;
}

.about-section__left {
  flex: 0 0 55%;
  max-width: 55%;
  padding: 40px 60px 80px max(20px, calc((100vw - 1200px) / 2 + 20px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-section__title {
  font-family: var(--font-main);
  font-size: 70px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 30px;
  text-align: center;
  padding-top: 100px;
}

.about-section__descr {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-section__image {
  flex: 1;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}

.about-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 979px) {
  .about-section__inner {
    flex-direction: column;
    min-height: auto;
  }
  .about-section__image {
    height: 300px;
    margin-bottom: 0;
    order: -1;
  }
  .about-section__left {
    flex: none;
    max-width: 100%;
    padding: 30px 20px 60px;
    align-items: center;
    text-align: center;
  }
  .about-section__title {
    font-size: 40px;
    padding-top: 60px;
  }
  .about-section {
    background-size: 100% auto;
    background-position: center bottom;
  }
  .about-section__deco {
    width: 200px;
    top: -30px;
  }
  .about-section__descr {
    font-size: 16px;
  }
}


/* ============================================
   NEWS SECTION (Noutati)
   ============================================ */
.news-section {
  background: var(--cream);
  padding: 80px 0 60px;
  position: relative;
  overflow: visible;
}

.news-section__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.news-section__deco--right {
  bottom: 40px;
  right: -50px;
  width: 800px;
  opacity: 0.5;
}

.news-section__deco--left {
  bottom: 40px;
  left: -100px;
  width: 700px;
  opacity: 0.5;
}

.news-section__photo {
  position: absolute;
  top: -50px;
  right: -30px;
  width: 350px;
  pointer-events: none;
  z-index: 2;
}

.news-section__title {
  font-family: var(--font-main);
  font-size: 70px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 979px) {
  .news-section {
    padding: 60px 0 30px;
  }
  .news-section__title {
    font-size: 40px;
  }
  .news-section__photo {
    width: 180px;
    top: -30px;
    right: -10px;
  }
  .news-section__deco--right,
  .news-section__deco--left {
    width: 400px;
  }
  .stiri-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .stire-grid-item {
    width: 100% !important;
  }
  .stiri-cards .stire-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 80px 0;
}

.contact-section__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  position: relative;
  z-index: 2;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  text-align: center;
}

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

.contact-item__icon {
  width: 250px;
  height: auto;
}

.contact-item__text {
  font-family: var(--font-accent);
  font-size: 24px;
  color: var(--text);
  font-weight: 400;
}

.contact-item__text a {
  color: var(--text);
}

.contact-item__text a:hover {
  color: var(--red);
}

.contact-section__heading {
  font-family: var(--font-main);
  font-size: 72px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 979px) {
  .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-section__heading {
    font-size: 40px;
  }
  .contact-section__inner {
    min-height: auto;
    padding: 60px 0;
  }
}


/* --- Social Strip --- */
.social-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 40px 0 0;
}

.social-strip__link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

.social-strip__link:hover {
  opacity: 0.7;
}

.social-strip__link img {
  width: 40px;
  height: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--red);
  color: var(--white);
  padding: 60px 0 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.site-footer__logo img {
  max-width: 180px;
  height: auto;
}

.site-footer__copy {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 4px;
}

.site-footer__credit {
  font-size: 14px;
  opacity: 0.8;
}

.site-footer__credit a {
  color: var(--white);
  text-decoration: underline;
}

.site-footer__heading {
  font-family: var(--font-accent);
  font-size: 24px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__links a {
  color: var(--white);
  font-size: 15px;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.site-footer__links a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 979px) {
  .site-footer {
    padding: 40px 20px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .site-footer__brand {
    align-items: flex-start;
  }
  .site-footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}


/* ============================================
   SCROLL-TO-TOP BUTTON — red circle
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 900;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  fill: none;
}


/* ============================================
   CHAT WIDGET — expandable contact menu
   ============================================ */
.chat-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.chat-widget__options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.chat-widget--open .chat-widget__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-widget__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chat-widget__btn:hover {
  transform: scale(1.1);
}

.chat-widget__btn--dark {
  background: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.chat-widget__btn svg {
  width: 26px;
  height: 26px;
}

.chat-widget__toggle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  background: var(--red);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.chat-widget__toggle::before,
.chat-widget__toggle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(191, 35, 37, 0.3);
  animation: chat-pulse 3s ease-out infinite;
}

.chat-widget__toggle::after {
  animation-delay: 1.5s;
}

@keyframes chat-pulse {
  0% {
    inset: 0;
    opacity: 0.4;
  }
  5% {
    inset: -2px;
    opacity: 0.5;
  }
  100% {
    inset: -16px;
    opacity: 0;
  }
}

@keyframes chat-bump {
  0%, 100% { transform: scale(1); }
  5% { transform: scale(1.05); }
  10% { transform: scale(1); }
}

.chat-widget__toggle {
  animation: chat-bump 3s ease-out infinite;
}

.chat-widget--open .chat-widget__toggle::before,
.chat-widget--open .chat-widget__toggle::after {
  animation: none;
  border: none;
}

.chat-widget--open .chat-widget__toggle {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.chat-widget__toggle:hover {
  transform: scale(1.08);
}

.chat-widget__icon-chat {
  width: 30px;
  height: 30px;
}

.chat-widget__icon-close {
  width: 24px;
  height: 24px;
  display: none;
}

.chat-widget--open .chat-widget__icon-chat {
  display: none;
}

.chat-widget--open .chat-widget__icon-close {
  display: block;
}

/* Tooltip */
.chat-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #f0f0f0;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #f0f0f0;
}

.chat-widget__toggle:hover .chat-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.chat-widget--open .chat-tooltip {
  display: none;
}


/* ============================================
   MODAL
   ============================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop--open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--form-bg);
  border-radius: 30px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 50px 40px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.modal-backdrop--open .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal__title {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.modal__descr {
  text-align: center;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.5;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.modal__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #6d6e71;
  border-radius: 8px;
  background: transparent;
  font-size: 16px;
  color: #000;
  font-family: var(--font-main);
  transition: border-color var(--transition);
}

.modal__input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.modal__input:focus {
  outline: none;
  border-color: var(--red);
}

.modal__input--error {
  border-color: var(--red) !important;
}

.modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}

.modal__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.modal__submit-wrap {
  display: flex;
  justify-content: center;
}

.modal__success {
  display: none;
  text-align: center;
  padding: 30px 20px;
  font-size: 18px;
  color: var(--text);
  line-height: 1.5;
  background: var(--cream);
  border-radius: 12px;
}

.modal__error {
  display: none;
  color: var(--red);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 600px) {
  .modal {
    padding: 30px 20px;
    border-radius: 20px;
  }
  .modal__row {
    grid-template-columns: 1fr;
  }
  .modal__title {
    font-size: 24px;
  }
}


/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.deco-section {
  position: relative;
  overflow: visible;
  pointer-events: none;
}

.deco-section__img {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}


/* ============================================
   NEWS GRID (loaded dynamically)
   ============================================ */
.stiri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.stire-grid-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.stire-grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.stire-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.stire-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.stire-grid-item:hover .stire-image-wrapper img {
  transform: scale(1.05);
}

.stire-grid-content {
  padding: 25px;
}

.stire-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0 0 15px;
  line-height: 1.3;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stire-excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 63px;
}

.stire-read-more {
  display: inline-block;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.stire-read-more:hover {
  color: var(--red-dark);
}

@media (max-width: 768px) {
  .stiri-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .stiri-grid {
    grid-template-columns: 1fr;
  }
  .stire-image-wrapper {
    height: 180px;
  }
}


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


/* ============================================
   PRODUCT PAGE — Hero variant
   ============================================ */
.product-card--hero {
  height: 75vh;
  min-height: 465px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.product-card--hero > .product-content {
  background: none !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-card--hero .product-card__title {
  color: #fff;
  font-family: var(--font-main);
  font-size: 70px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
}

.product-card--hero .product-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.40));
}

@media (max-width: 979px) {
  .product-card--hero {
    height: 40vh;
    min-height: 280px;
  }
  .product-card--hero::before {
    display: none;
  }
  .product-card--hero .product-content {
    background: none;
    padding: 20px;
  }
  .product-card--hero .product-card__title {
    font-size: 40px;
    color: #fff;
  }
  .product-card--hero .product-overlay {
    display: block;
  }
}


/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  background: transparent;
  padding: 210px 0 20px;
}

.product-card--hero + .breadcrumb {
  padding: 40px 0 20px;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 300;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: '/';
  margin: 0 10px;
  color: #858585;
}

.breadcrumb__link {
  color: var(--text);
  transition: color 0.3s ease;
}

.breadcrumb__link:hover {
  color: #9e9e9e;
}

.breadcrumb__item--active {
  color: var(--red);
  font-weight: 400;
}


/* ============================================
   PRODUCT DETAIL SECTION
   ============================================ */
.product-detail {
  background: var(--cream);
  padding: 60px 0 90px;
}

.product-detail__title {
  font-family: var(--font-heading);
  font-size: 70px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text);
}

.product-detail__descr {
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  max-width: 960px;
  margin: 0 auto 60px;
  color: var(--text);
}

@media (max-width: 979px) {
  .product-detail {
    padding: 45px 0 60px;
  }
  .product-detail__title {
    font-size: 40px;
  }
  .product-detail__descr {
    font-size: 18px;
  }
}


/* ============================================
   PRODUCT FLAVORS GRID
   ============================================ */
.product-flavors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-flavor {
  text-align: center;
  margin: 0;
}

.product-flavor__img {
  margin-bottom: 15px;
}

.product-flavor__img img {
  width: 100%;
  height: auto;
  display: block;
}

.product-flavor__name {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.product-flavors--3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-flavors--4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-flavors--5 {
  grid-template-columns: repeat(5, 1fr);
}

.product-flavors--5 .product-flavor__img img {
  max-width: 85%;
  margin: 0 auto;
}

/* Cascading animation delays */
.product-flavors .product-flavor:nth-child(1) { transition-delay: 0s; }
.product-flavors .product-flavor:nth-child(2) { transition-delay: 0.12s; }
.product-flavors .product-flavor:nth-child(3) { transition-delay: 0.24s; }
.product-flavors .product-flavor:nth-child(4) { transition-delay: 0.36s; }
.product-flavors .product-flavor:nth-child(5) { transition-delay: 0.48s; }
.product-flavors .product-flavor:nth-child(6) { transition-delay: 0.6s; }
.product-flavors .product-flavor:nth-child(7) { transition-delay: 0.72s; }
.product-flavors .product-flavor:nth-child(8) { transition-delay: 0.84s; }
.product-flavors .product-flavor:nth-child(9) { transition-delay: 0.96s; }

@media (max-width: 979px) {
  .product-flavors {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }
  .product-flavors--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-flavors--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-flavors--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 639px) {
  .product-flavors {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
    scrollbar-width: none;
  }
  .product-flavors::-webkit-scrollbar {
    display: none;
  }
  .product-flavor {
    flex: 0 0 65%;
    scroll-snap-align: center;
  }
  .product-flavor__name {
    font-size: 18px;
  }
}


/* ============================================
   PRODUCT WHY SECTION
   ============================================ */
.product-why {
  background: #fff;
  padding: 90px 0 0;
  position: relative;
  overflow: visible;
}

.product-why__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.product-why__deco--right {
  top: 200px;
  right: -100px;
  width: 350px;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInRight 1.2s ease forwards;
  animation-delay: 0.3s;
}

.product-why__deco--left {
  top: 40px;
  left: -100px;
  width: 350px;
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInLeft 1.2s ease forwards;
  animation-delay: 0.3s;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-why__title {
  font-family: var(--font-heading);
  font-size: 70px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text);
}

.product-why__descr {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  color: var(--text);
}

@media (max-width: 979px) {
  .product-why {
    padding: 60px 0 0;
  }
  .product-why__title {
    font-size: 40px;
  }
  .product-why__descr {
    font-size: 18px;
  }
  .product-why__deco--right {
    right: -250px;
    top: auto;
    bottom: -570px;
  }
  .product-why__deco--left {
    left: -250px;
    top: 300px;
  }
}


/* ============================================
   PRODUCT BENEFITS GRID
   ============================================ */
.product-benefits {
  background: #fff;
  padding: 60px 0 90px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 960px;
  margin: 0 auto;
}

.benefit-item {
  text-align: center;
}

.benefit-item__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  display: block;
}

.benefit-item__title {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
}

/* Fade-in up animation */
.anim-fadein-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-fadein-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 639px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .benefit-item__title {
    font-size: 18px;
  }
  .product-benefits {
    padding: 45px 0 60px;
  }
}


/* ============================================
   PRODUCT GALLERY
   ============================================ */
.product-gallery {
  background: #fff;
  padding: 0 0 90px;
}

.gallery-grid__row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-grid__row:last-child {
  margin-bottom: 0;
}

.gallery-grid__item {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-grid__item:hover img {
  transform: scale(1.03);
}

.gallery-grid__item--large {
  flex: 2;
  height: 680px;
}

.gallery-grid__item--small {
  flex: 1;
  height: 680px;
}

/* Full-width gallery (no container) */
.product-gallery--full {
  padding-left: 20px;
  padding-right: 20px;
}

.gallery-grid__item[data-gallery] {
  cursor: pointer;
}

@media (max-width: 639px) {
  .gallery-grid__row {
    gap: 10px;
    margin-bottom: 10px;
  }
  .gallery-grid__item--large {
    flex: 2;
    height: 220px;
  }
  .gallery-grid__item--small {
    flex: 1;
    height: 220px;
  }
  .gallery-grid__item {
    border-radius: 12px;
  }
  .product-gallery {
    padding: 0 0 60px;
  }
  .product-gallery--full {
    padding-left: 15px;
    padding-right: 15px;
  }
}


/* ============================================
   GALLERY LIGHTBOX CAROUSEL
   ============================================ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox--open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.gallery-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  background: none;
  border: none;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.gallery-lightbox__close:hover {
  opacity: 1;
}

.gallery-lightbox__prev,
.gallery-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__prev { left: 20px; }
.gallery-lightbox__next { right: 20px; }

.gallery-lightbox__prev:hover,
.gallery-lightbox__next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.gallery-lightbox__content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

.gallery-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-main);
  font-size: 14px;
}

@media (max-width: 639px) {
  .gallery-lightbox__prev,
  .gallery-lightbox__next {
    width: 40px;
    height: 40px;
    font-size: 36px;
  }
  .gallery-lightbox__prev { left: 10px; }
  .gallery-lightbox__next { right: 10px; }
  .gallery-lightbox__close {
    top: 12px;
    right: 16px;
    font-size: 36px;
  }
}


/* ============================================
   INNER PAGES — Breadcrumb
   ============================================ */

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 18px;
  font-weight: 300;
  justify-content: center;
}

.breadcrumb__item a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb__item a:hover {
  color: #9e9e9e;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  color: #858585;
  margin-right: 8px;
}

.breadcrumb__item--active {
  color: var(--red);
}

@media (max-width: 979px) {
  .breadcrumb {
    padding: 120px 0 0;
  }
  .product-card--hero + .breadcrumb {
    padding: 40px 0 20px;
  }
  .breadcrumb__list {
    font-size: 16px;
  }
}


/* ============================================
   INNER PAGES — Page Intro Title
   ============================================ */
.page-intro {
  padding: 45px 0 60px;
  text-align: center;
}

.page-intro--bg {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding: 80px 0 100px;
}

.page-intro__title {
  font-family: var(--font-main);
  font-size: 70px;
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 979px) {
  .page-intro {
    padding: 30px 0 30px;
  }
  .page-intro__title {
    font-size: 40px;
  }
}


/* ============================================
   ABOUT PAGE — Intro Section
   ============================================ */
.about-intro {
  padding: 0;
  position: relative;
  background-size: 55% auto;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.about-intro__inner {
  display: flex;
  align-items: stretch;
  min-height: 70vh;
}

.about-intro__content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 60px 60px 80px max(20px, calc((100vw - 1200px) / 2 + 20px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-intro__title {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 30px;
}

.about-intro__text {
  font-size: 20px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-intro__image {
  flex: 1;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 979px) {
  .about-intro__inner {
    flex-direction: column;
    min-height: auto;
  }
  .about-intro__image {
    height: 300px;
    order: -1;
  }
  .about-intro__content {
    flex: none;
    max-width: 100%;
    padding: 30px 20px 50px;
    align-items: center;
    text-align: center;
  }
  .about-intro__title {
    font-size: 30px;
  }
  .about-intro__text {
    font-size: 18px;
  }
}


/* ============================================
   ABOUT PAGE — Production Section
   ============================================ */
.about-production {
  background: var(--cream);
  padding: 0;
}

.about-production__title {
  font-family: var(--font-main);
  font-size: 70px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  padding: 80px 0 40px;
}

.about-production__inner {
  display: flex;
  align-items: stretch;
  min-height: 600px;
}

.about-production__image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.about-production__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-production__content {
  flex: 1;
  padding: 40px 60px 60px;
  position: relative;
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
}

.about-production__content p {
  margin-bottom: 20px;
}

.about-production__deco {
  position: absolute;
  top: -190px;
  right: -30px;
  width: 600px;
  opacity: 0.7;
  pointer-events: none;
}

@media (max-width: 979px) {
  .about-production__title {
    font-size: 40px;
    padding: 60px 20px 30px;
  }
  .about-production__inner {
    flex-direction: column;
    min-height: auto;
  }
  .about-production__image {
    height: 300px;
    flex: none;
  }
  .about-production__content {
    padding: 30px 20px;
  }
  .about-production__deco {
    width: 150px;
  }
}


/* ============================================
   ABOUT PAGE — Certificates Section
   ============================================ */
.about-certificates {
  padding: 80px 0;
  text-align: center;
}

.about-certificates__title {
  font-family: var(--font-main);
  font-size: 70px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 40px;
}

.about-certificates__grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about-certificates__item {
  margin: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.about-certificates__item:hover {
  transform: scale(1.03);
}

.about-certificates__item img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox--open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox--open .lightbox__content {
  transform: scale(1);
}

.lightbox__img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.lightbox__close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  line-height: 1;
}

.lightbox__close:hover {
  transform: scale(1.1);
}

@media (max-width: 979px) {
  .about-certificates {
    padding: 60px 0;
  }
  .about-certificates__title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}


/* ============================================
   VISUALLY HIDDEN — accessible screen reader text
   ============================================ */
.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;
}


/* ============================================
   BISCUITI PAGE — Product Hero
   ============================================ */
.product-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(var(--nav-height) + var(--nav-bottom) + 20px);
}

.product-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
  z-index: 1;
}

.product-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

.product-hero__title {
  font-family: var(--font-main);
  font-size: 70px;
  font-weight: 700;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0.5px;
}

@media (max-width: 979px) {
  .product-hero {
    min-height: 40vh;
    margin-top: 84px;
  }
  .product-hero__title {
    font-size: 40px;
  }
}


/* ============================================
   BISCUITI PAGE — Product Section
   ============================================ */
.product-section {
  padding: 80px 0 40px;
  text-align: center;
}

.product-section__title {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.product-section__descr {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 979px) {
  .product-section {
    padding: 60px 0 30px;
  }
  .product-section__title {
    font-size: 30px;
  }
  .product-section__descr {
    font-size: 16px;
  }
}


/* ============================================
   PRODUCT BADGE (centered icon + text)
   ============================================ */
.product-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 50px 0;
  background: var(--cream);
}

.product-badge__icon {
  width: 100px;
  height: 100px;
}

.product-badge__text {
  font-family: var(--font-main);
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

@media (max-width: 639px) {
  .product-badge {
    padding: 30px 0;
  }
  .product-badge__text {
    font-size: 24px;
  }
}


/* ============================================
   BISCUITI PAGE — Product Grid
   ============================================ */
.product-grid {
  padding: 0 0 80px;
}

.product-grid__row {
  display: grid;
  gap: 30px;
}

.product-grid--4col .product-grid__row {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid--3col .product-grid__row {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid__card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-grid__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-grid__figure {
  margin: 0;
  overflow: hidden;
}

.product-grid__figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.product-grid__card:hover .product-grid__figure img {
  transform: scale(1.03);
}

.product-grid__name {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  text-align: center;
  padding: 16px 12px;
  line-height: 1.4;
}

.product-grid__name strong {
  font-weight: 600;
}

@media (max-width: 979px) {
  .product-grid--4col .product-grid__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid--3col .product-grid__row {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    padding: 0 0 60px;
  }
}

@media (max-width: 640px) {
  .product-grid--4col .product-grid__row,
  .product-grid--3col .product-grid__row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 15px;
    padding-bottom: 15px;
    scrollbar-width: none;
  }
  .product-grid--4col .product-grid__row::-webkit-scrollbar,
  .product-grid--3col .product-grid__row::-webkit-scrollbar {
    display: none;
  }
  .product-grid--4col .product-grid__card,
  .product-grid--3col .product-grid__card {
    flex: 0 0 65%;
    scroll-snap-align: center;
  }
  .product-grid__name {
    font-size: 16px;
  }
}


/* ============================================
   CONTACTE PAGE — Contact Hero
   ============================================ */
.contact-hero {
  position: relative;
  padding: 60px 0 80px;
  text-align: center;
  overflow: visible;
  background: var(--cream);
}

.contact-hero__title {
  font-family: var(--font-main);
  font-size: 70px;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.contact-hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.contact-hero__deco--right {
  display: none;
}

.contact-hero__deco--left {
  top: -40px;
  left: -60px;
  width: 375px;
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInLeft 1.2s ease forwards;
  animation-delay: 0.5s;
}

@keyframes slideInLeft {
  to {
    opacity: 0.85;
    transform: translateX(0);
  }
}

@media (max-width: 979px) {
  .contact-hero__title {
    font-size: 40px;
  }
  .contact-hero__deco--right {
    width: 250px;
    top: -20px;
    right: -30px;
  }
  .contact-hero__deco--left {
    width: 220px;
    bottom: -30px;
    left: -40px;
  }
  .contact-hero {
    padding: 40px 0 60px;
  }
}


/* ============================================
   CONTACTE PAGE — Contact Details
   ============================================ */
.contact-details {
  padding: 0 0 60px;
  background: var(--cream);
}

.contact-details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

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

.contact-card__figure {
  margin: 0;
}

.contact-card__icon {
  width: 200px;
  height: auto;
}

.contact-card__text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

.contact-card__text a {
  color: var(--text);
  transition: color var(--transition);
}

.contact-card__text a:hover {
  color: var(--red);
}

.contact-card__heading {
  font-family: var(--font-accent);
  font-size: 28px;
  color: var(--text);
  margin-bottom: 8px;
}

@media (max-width: 979px) {
  .contact-details__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-card__icon {
    width: 150px;
  }
}


/* ============================================
   CONTACTE PAGE — Map Section
   ============================================ */
.contact-map {
  padding: 0 0 80px;
  background: var(--cream);
}

.contact-map__iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 30px;
  display: block;
}

@media (max-width: 979px) {
  .contact-map__iframe {
    height: 260px;
    border-radius: 20px;
  }
  .contact-map {
    padding: 0 0 60px;
  }
}


/* ============================================
   POLITICA PAGE — Policy Content
   ============================================ */
.policy-page {
  padding: 0 0 80px;
  background: var(--cream);
}

.policy-page__title {
  font-family: var(--font-main);
  font-size: 70px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  padding-top: 45px;
  margin-bottom: 40px;
}

.policy-page__content {
  max-width: 860px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
}

.policy-page__content h2 {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 16px;
}

.policy-page__content p {
  margin-bottom: 16px;
}

.policy-page__content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-page__content ul li {
  margin-bottom: 8px;
}

.policy-page__content a {
  color: var(--red);
  text-decoration: underline;
}

.policy-page__content a:hover {
  color: var(--red-dark);
}

@media (max-width: 979px) {
  .policy-page__title {
    font-size: 36px;
  }
  .policy-page {
    padding: 0 0 60px;
  }
}


/* ============================================
   LIPIE PAGE — Product Page Hero
   ============================================ */
.product-page-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.product-page-hero__title {
  font-family: var(--font-main);
  font-size: 70px;
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 979px) {
  .product-page-hero {
    padding: 40px 0 30px;
  }
  .product-page-hero__title {
    font-size: 40px;
  }
}


/* ============================================
   LIPIE PAGE — Product Detail Inner
   ============================================ */
.product-detail__inner {
  display: flex;
  align-items: stretch;
  gap: 60px;
  max-width: none;
  margin-right: calc(-50vw + 50%);
  padding-right: 0;
}

.product-detail__text {
  flex: 1;
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  padding: 20px 0;
}

.product-detail__text p {
  margin-bottom: 20px;
}

.product-detail__image {
  flex: 0 0 50%;
  max-width: 50%;
}

.product-detail__image figure {
  margin: 0;
  height: 100%;
}

.product-detail__image img {
  border-radius: 20px 0 0 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 979px) {
  .product-detail__inner {
    flex-direction: column;
    gap: 30px;
    margin-right: 0;
  }
  .product-detail__image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .product-detail__image img {
    border-radius: 20px;
    max-height: 400px;
  }
  .product-detail__text {
    font-size: 16px;
    padding: 0;
  }
}


/* --- Bleed variant: image to right edge --- */
.product-detail--bleed {
  background: var(--cream);
  overflow: hidden;
}

.product-detail--bleed .product-detail__inner {
  margin-right: calc(-50vw + 50%);
}

.product-detail--bleed .product-detail__image {
  flex: 0 0 50%;
  max-width: none;
}

.product-detail--bleed .product-detail__image img {
  border-radius: 0;
}

@media (max-width: 979px) {
  .product-detail--bleed .product-detail__inner {
    margin-right: 0;
  }
  .product-detail--bleed .product-detail__image img {
    border-radius: 20px;
  }
}


/* ============================================
   LIPIE PAGE — Product Variants
   ============================================ */
.product-variants {
  padding: 0 0 80px;
}

.product-variants__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.product-variants__card {
  text-align: center;
}

.product-variants__card figure {
  margin: 0;
}

.product-variants__card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-variants__name {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-top: 16px;
  line-height: 1.4;
}

.product-variants__name strong {
  font-weight: 700;
}

@media (max-width: 640px) {
  .product-variants__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .product-variants {
    padding: 0 0 60px;
  }
}


/* ============================================
   LIPIE PAGE — Product Advantages
   ============================================ */
.product-advantages {
  background: var(--cream);
  padding: 80px 0;
}

.product-advantages__title {
  font-family: var(--font-main);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 50px;
}

.product-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-advantages__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.product-advantages__item img {
  width: 90px;
  height: 90px;
}

.product-advantages__item h3 {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 979px) {
  .product-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-advantages__title {
    font-size: 30px;
  }
  .product-advantages {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  .product-advantages__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Advantages deco images --- */
.product-advantages--deco {
  position: relative;
  overflow: visible;
}

.product-advantages__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  width: 320px;
  opacity: 0;
}

.product-advantages__deco--left {
  left: -80px;
  top: -80px;
  transform: translateX(-100px);
  animation: slideInLeft 1.2s ease forwards;
  animation-delay: 0.3s;
}

.product-advantages__deco--right {
  right: -80px;
  bottom: -40px;
  transform: translateX(100px);
  animation: slideInRight 1.2s ease forwards;
  animation-delay: 0.3s;
}

@media (max-width: 979px) {
  .product-advantages--deco {
    overflow: hidden;
  }
  .product-advantages__deco--left {
    left: -200px;
    top: -60px;
  }
  .product-advantages__deco--right {
    right: -200px;
    bottom: 0;
  }
}


/* ============================================
   NOUTATI PAGE — News Section Page Variant
   ============================================ */
.news-section--page {
  padding: 80px 0 80px;
}

.news-section__intro {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

@media (max-width: 979px) {
  .news-section--page {
    padding: 60px 0 40px;
  }
  .news-section__intro {
    font-size: 16px;
  }
}


/* ============================================
   MOBILE MENU — Active link styling
   ============================================ */
.mobile-menu__link--active {
  color: var(--red);
}

/* ============================================
   FAQ SECTION — Cards Grid
   ============================================ */
.faq-section {
  padding: 20px 0 80px;
  background: var(--cream);
  margin-top: -40px;
}

.faq-section__title {
  font-family: var(--font-accent);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--text);
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.faq-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.faq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-card__num {
  font-family: var(--font-accent);
  font-size: 48px;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
}

.faq-card__question {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-right: 40px;
  line-height: 1.4;
}

.faq-card__answer {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  opacity: 0.8;
}

.faq-card__answer a {
  color: var(--red);
  font-weight: 600;
}

.faq-card__answer a:hover {
  text-decoration: underline;
}

/* FAQ Responsive */
@media (max-width: 960px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-section__title {
    margin-bottom: 30px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-card {
    padding: 24px 20px;
  }

  .faq-card__num {
    font-size: 36px;
    top: 12px;
    right: 16px;
  }

  .faq-card__question {
    font-size: 16px;
    padding-right: 30px;
  }
}

/* ============================================
   FAQ ACCORDION - Product Pages
   ============================================ */
.faq-accordion {
  padding: 60px 0 80px;
  background: var(--white);
}

.faq-accordion__title {
  font-family: var(--font-accent);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-accordion__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-accordion__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-accordion__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-accordion__question:hover {
  color: var(--red);
}

.faq-accordion__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
  position: relative;
}

.faq-accordion__icon::before,
.faq-accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--red);
  border-radius: 2px;
}

.faq-accordion__icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-accordion__icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.faq-accordion__item--open .faq-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-accordion__item--open .faq-accordion__answer {
  max-height: 300px;
}

.faq-accordion__answer p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  opacity: 0.8;
}

.faq-accordion__answer a {
  color: var(--red);
  font-weight: 600;
}

@media (max-width: 600px) {
  .faq-accordion {
    padding: 40px 0 60px;
  }

  .faq-accordion__question {
    font-size: 15px;
    padding: 16px 0;
  }
}
