:root {
  /* Backgrounds */
  --bg-page: #f3f0eb;
  --bg-white: #ffffff;
  --bg-dark: #090909;
  --bg-card: #ffffff;
  --bg-popup: #efeae6;

  /* Gold accents */
  --gold: #cc9c2d;
  --gold-light: #e3bc62;
  --gold-hover: #b88920;

  /* Text */
  --text-dark: #090909;
  --text-body: #000000;
  --text-muted: #9f9f9f;
  --text-placeholder: #a19f9b;
  --text-white: #ffffff;

  /* Borders */
  --border-input: #d9d9d9;
  --border-focus: #cc9c2d;

  /* Overlay */
  --overlay-dark: rgba(29, 29, 27, 0.75);

  /* Layout */
  --max-width: 1440px;
  --content-width: 1320px;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --ff_cormorant: 'Cormorant Garamond', serif;
  --ff_inter: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff_inter);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-weight: 400;
  color: var(--text-dark);
}
p + p {
  margin-top: 30px;
}

.fw-500 {
  font-weight: 500;
}
.fw-400 {
  font-weight: 400;
}
.text-inter {
  font-family: var(--ff_inter);
}
.text-cormorant {
  font-family: var(--ff_cormorant);
}
.text-uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.transition,
.transition * {
  /* transition: var(--transition) !important; */
}
.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}

.container {
  max-width: var(--max-width) !important;
  margin: 0 auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.content-container {
  max-width: var(--content-width) !important;
  margin: 0 auto;
}
.container_padding {
  padding: 68px 0 100px;
}
.container_padding + .container_padding {
  padding-top: 0;
}

.d-flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.gap-10 {
  gap: 10px;
}

.w-100 {
  width: 100%;
}
.p-0 {
  padding: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

.section-title {
  color: #000;
  font-weight: 500;
  font-size: 63px;
  line-height: 1.1;
  letter-spacing: -2%;
}
.btn {
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  background: var(--gold);
  max-width: 258px;
  width: 100%;
  padding: 15px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn:hover {
  opacity: 0.8 !important;
}
.btn::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -150%;
  width: 70px;
  height: calc(100% + 80px);
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.15)), to(transparent));
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0.15), transparent);
  z-index: -2;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  -webkit-animation: btn 4s linear infinite;
  animation: btn 4s linear infinite;
}

@-webkit-keyframes btn {
  0% {
    left: -150%;
  }
  100% {
    left: 200%;
  }
}
@keyframes btn {
  0% {
    left: -150%;
  }
  100% {
    left: 200%;
  }
}

.banner-sides {
  gap: 34px;
  max-width: 1268px !important;
}
.banner-side {
  flex: 1;
}
.banner-breadcrumb {
  font-family: var(--ff_inter);
  color: var(--text-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  opacity: 0.5;
}
.banner-title {
  font-family: var(--ff_cormorant);
  color: #000;
  position: relative;
  font-weight: 500;
  font-size: 70px;
  line-height: 105%;
  letter-spacing: -2%;
  margin: 46px 0 53px;
}
.banner-line {
  background: var(--gold);
  height: 2px;
  max-width: 110px;
  margin: 0;
  border-radius: 20px;
}
.banner-description {
  color: #0a0a0a;
  font-family: var(--ff_inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 55px;
}
.policy-images {
  gap: 42px;
}
.policy-images .policy-image {
  max-height: 410px;
  max-width: 410px;
}
.policy-images img {
  max-width: 100%;
  height: 100%;
}

.content-container_custom {
  max-width: 1270px !important;
  width: 100%;
}
.container_texts {
  background: #fff;
  padding-bottom: 103px;
}
.container_text h2 {
  font-family: var(--ff_cormorant);
  margin: 79px 0 35px;
  font-size: 38px;
  font-weight: 500;
  line-height: 132%;
}
.container_text ul li {
  list-style: disc;
  margin-left: 20px;
}
.container_text a {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .container_text h2 {
    margin: 75px 0 27px;
    line-height: 110%;
  }
}
@media (max-width: 821px) {
  .banner-breadcrumb {
    justify-content: center;
  }
}
@media (max-width: 550px) {
  .container_text h2 {
    margin: 65px 0 31px;
    line-height: 110%;
  }
}
.cookie-page .banner-breadcrumb,
.privacy-page .banner-breadcrumb {
  justify-content: flex-start;
}

.privacy-page .banner-description {
  max-width: 420px;
}
@media (max-width: 1240px) {
  .banner-side {
    flex: unset;
  }
  .policy-images {
    gap: 0;
  }
  .policy-images .policy-image:last-child {
    display: none;
  }

  .privacy-page .banner-description {
    max-width: max-content;
  }
}
@media (max-width: 991px) {
  .banner-sides {
    flex-direction: column;
  }
  .banner-title {
    line-height: 70px;
    font-size: 66px;
    margin: 19px 0 27px;
  }
  .banner-breadcrumb {
    font-size: 14px;
  }
  .banner-description {
    margin-top: 34px;
  }
  .policy-images img {
    width: 100%;
  }
}
@media (max-width: 821px) {
}

/* HEADER */
.header {
  width: 100%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header > div {
  padding: 24px 0;
}
.header-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 44px;
  font-family: var(--ff_inter);
}
.header-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
  transition: color 0.2s;
  position: relative;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
}
.header-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}
.header-burger,
.nav_close,
.nav_image {
  display: none;
}
.nav_close {
  top: 20px;
  right: 20px;
}
@media (max-width: 991px) {
  .header-burger,
  .nav_close,
  .nav_image {
    display: block;
  }
  .header-nav {
    flex-direction: column;
    text-align: right;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: -100%;
    background: #f3f0eb;
    width: 320px;
    padding: 44px;
    height: 90vh;
    transition: var(--transition);
  }
  .header-nav.active {
    right: 0;
    gap: 30px;
    align-items: flex-start;
  }
  .header-nav a {
    color: #000;
    line-height: 1;
    font-weight: 400;
    font-size: 16px;
    z-index: 1;
  }
  .nav_image {
    bottom: 0;
  }
}
@media (max-width: 550px) {
  .header-logo img {
    max-width: 160px;
  }
  .header > div {
    padding: 20px 0;
  }
}

/* HERO */
.hero {
  width: 100%;
  min-height: 730px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 2560px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 0 74px;
}
.hero-breadcrumb {
  font-family: var(--ff_inter);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1;
  opacity: 0.5;
}
.hero-title {
  font-family: var(--ff_cormorant);
  font-size: 70px;
  line-height: 110%;
  color: #000000;
  padding: 55px 0 45px;
  letter-spacing: -2%;
  max-width: 300px;
  font-weight: 500;
  position: relative;
}
.hero-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 10px;
}
.hero-noafter {
}
.hero-noafter:after {
  display: none;
}
.hero-line {
  background: var(--gold);
  height: 2px;
  max-width: 100px;
  margin: 45px 0;
  border-radius: 20px;
}
.hero-description {
  color: #0a0a0a;
  font-family: var(--ff_inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 48px;
}
.hero-btn {
  border: none;
}
.hero_mob {
  display: none;
}
.hero-description_mob {
  padding: 31px 20px 47px;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  background: #eee7e2;
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 821px) {
  .hero_desktop {
    display: none;
  }
  .hero_mob {
    display: block;
  }
  .home-page .hero {
    min-height: 850px;
  }
  .home-page .hero .hero-bg {
    object-position: bottom;
  }
  .hero {
    min-height: 920px;
  }
  .hero-content {
    padding: 0;
    margin-top: 43px;
    text-align: center;
  }
  .hero-title {
    max-width: 100%;
  }
  .hero-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 640px) {
  .hero {
    min-height: 700px;
  }
}
@media (max-width: 550px) {
  .hero-breadcrumb {
    font-size: 14px;
  }
  .hero-title {
    font-size: 38px;
    padding: 12px 0 23px;
  }
}
@media (max-width: 426px) {
  .hero {
    min-height: 600px;
  }
  .hero-bg {
    height: auto;
    /* min-height: 600px; */
    min-height: 100%;
  }
}

/* FEATURES */
.features-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.feature-card {
  text-align: center;
}
.feature-icon {
  height: 70px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}
.feature-line {
  background: var(--gold);
  height: 2px;
  max-width: 100px;
  margin: 18px auto 20px;
  border-radius: 20px;
}
.feature-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-body);
}
.features_mob {
  display: none;
}
.features_mob-card {
  gap: 20px;
  border-bottom: 2px solid var(--gold);
  padding: 15px 0;
}
.features_mob-icon {
  width: 90px;
  height: 90px;
}
.features_mob-icon img {
  margin: 0 auto;
}
.features_mob-title {
  max-width: 100px;
  font-weight: 500;
  font-size: 16px;
  line-height: 119%;
}
@media (max-width: 991px) {
  .features-grid {
    display: none;
  }
  .features_mob {
    display: block;
  }
}
@media (max-width: 821px) {
  .hero-description_mob {
    padding: 40px 90px !important;
  }
  .hero-description_mob br {
    display: none;
  }
  .features_mob {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .features_mob-card {
    justify-content: flex-start;
  }
  .container_padding.features {
    padding: 34px 0 54px;
  }
  .section-title {
    font-size: 38px;
  }
  .formulas-archive-btn {
    max-width: 100%;
  }
  .batch {
    margin-top: 0 !important;
  }
  .formula-subtitle {
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
  }
  .jars-item_last {
    align-items: center !important;
  }
  .we_believe-header {
    max-width: 420px !important;
  }
  .we_believe-item {
    max-width: 377px !important;
  }
  .we_believe-title {
    width: 100% !important;
  }
  .footer-bottom > div {
    justify-content: space-between;
    max-width: 520px;
  }
  .ingredients-page .hero {
    min-height: 820px;
  }
  .production-page .hero {
    min-height: 960px;
  }
  .production-page .hero-bg {
    object-position: center 60%;
  }
  .contact-info-text {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-info-text br {
    display: none;
  }
}
@media (max-width: 550px) {
  .ingredients-page .hero {
    min-height: 600px;
  }
  .production-page .hero {
    min-height: 600px;
  }
  .production-page .hero-bg {
    object-position: center;
  }
  .contact-info-text br {
    display: inline-block;
  }
}
@media (max-width: 450px) {
  .footer-bottom > div {
    justify-content: space-around;
  }
  .we_believe-header {
    max-width: 320px !important;
  }
  .we_believe-title {
    width: 333px !important;
  }
  .we_believe-item {
    max-width: 277px !important;
  }
  .hero-description_mob {
    padding: 31px 20px 47px !important;
  }
  .hero-description_mob br {
    display: inline-block;
  }
  .features_mob {
    display: block;
  }
  .features_mob-card {
    gap: 10px;
    justify-content: center;
  }
  .features_mob-card > * {
    transform: translateX(-5px);
  }
  .batch {
    margin-top: 60px !important;
  }
}

/* FORMULAS */
.formulas {
}
.formulas-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0 auto 50px;
}
.formulas-title {
}
.formulas-archive-btn {
}
.formulas-archive-btn:hover {
}
.formulas-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.formula-card {
  border: 1px solid #d9d9d9;
}
.formula-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.formula-image {
  width: 100%;
}
.formula-content {
  padding: 0 35px 43px;
}
.formula-name {
  color: #0a0a0a;
  padding: 27px 0 10px;
  font-weight: 500;
  font-size: 34px;
  line-height: 132%;
  letter-spacing: -2%;
  text-align: center;
}
.formula-subtitle {
  color: var(--gold);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 11px;
}
.formula-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-body);
}
@media (max-width: 991px) {
  .formulas-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* PHILOSOPHY */
.philosophy {
}
.philosophy-inner {
}
.philosophy-image {
  flex: 0 0 49%;
  height: 400px;
}
.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.philosophy-image_bg {
  max-width: 200px;
  max-height: 300px;
  opacity: 0.4;
  left: -35%;
  bottom: 0;
  transform: rotateY(180deg) rotateZ(15deg);
}
.philosophy-title {
  font-size: 65px;
}
.philosophy-subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  margin: 41px 0 37px;
}
.philosophy-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-body);
  padding-left: 20px;
}
.philosophy-text:before {
  content: '';
  width: 6px;
  height: 6px;
  position: absolute;
  top: 10px;
  left: 5px;
  background: var(--gold);
}
.philosophy-text + .philosophy-text {
  margin-top: 17px;
}
.philosophy-archive-btn {
  margin-top: 57px;
  padding: 13px;
}
.philosophy_mob {
  display: none;
}
@media (max-width: 991px) {
  .philosophy_desktop {
    display: none;
  }
  .philosophy-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .philosophy-title {
    font-size: 38px;
    padding-bottom: 27px;
    position: relative;
  }
  .philosophy-title:after {
    content: '';
    height: 2px;
    background: #cd9d2d;
    width: 80px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .philosophy-subtitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    margin: 27px 0 25px;
  }

  .philosophy_mob {
    display: block;
  }
  .philosophy_mob-content {
    margin-top: 32px;
    text-align: center;
  }
  .philosophy_mob .philosophy-archive-btn {
    margin: 32px auto 0;
  }
}
@media (max-width: 550px) {
  .philosophy-content {
    width: auto;
  }
  .philosophy_mob .philosophy-archive-btn {
    max-width: unset;
  }
}

/* PRODUCTION */
.production {
}
.production-inner {
  gap: 20px;
}
.production-content {
  max-width: 500px;
}
.production-title {
  font-size: 59px;
}
.production-info {
  gap: 24px 0;
  width: 100%;
}
.production-line {
  background: var(--gold);
  height: 2px;
  max-width: 360px;
  margin: 32px 0 47px;
  border-radius: 20px;
}
.production-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #000;
  padding-left: 15px;
  max-width: calc(100% / 2);
  width: 100%;
}
.production-text:before {
  content: '';
  width: 15px;
  height: 15px;
  top: 4px;
  left: -5px;
  position: absolute;
  transform: scale(0.7) rotate(15deg);
  transition: var(--transition) !important;
  box-shadow: inset 1em 1em 0px 1px var(--gold);
  clip-path: polygon(12% 50%, 0 64%, 50% 100%, 100% 0%, 80% 0%, 43% 66%);
}
.production-image {
  flex: 0 0 49%;
  height: 400px;
  overflow: hidden;
}
.production-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.production_mob {
  display: none;
}
@media (max-width: 991px) {
  .production_desktop {
    display: none;
  }
  .production_mob {
    display: block;
    text-align: center;
  }
  .production-title {
    font-size: 38px;
  }
  .production-line {
    margin: 25px auto 37px;
  }
  .production-image {
    flex: unset;
    height: auto;
    overflow: visible;
  }
  .production-inner {
    gap: 0;
    flex-direction: column;
  }
  .production-info {
    gap: 20px 0;
    margin-top: 33px;
    flex-direction: column;
    align-items: center;
  }
  .production-text {
    max-width: 100%;
    width: max-content;
  }
}

/* BATCH TRANSPARENCY */
.batch {
  margin: 49px 0 174px;
  padding: 0;
}
.batch-inner {
  background: #fff;
}
.batch-content {
  margin: 52px 0 52px 68px;
  max-width: 380px;
}
.batch-title {
  font-size: 42px;
}
.batch-subtitle {
  margin: 22px 0 26px;
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
}
.batch-list {
  gap: 26px;
  max-width: 280px;
}
.batch-image1 {
  max-height: 270px;
  position: relative;
  right: -20px;
}
.batch-image2 {
  right: 80px;
  bottom: -50px;
  max-width: 320px;
  transform: rotate(0deg);
}
.batch_mob {
  display: none;
}
@media (max-width: 1240px) {
  .batch-content {
    z-index: 1;
  }
  .batch-image1 {
    max-height: 100%;
    position: absolute;
    right: 20%;
  }
  .batch-image2 {
    right: 0;
    bottom: -50px;
    max-width: 290px;
  }
}
@media (max-width: 991px) {
  .batch {
    margin: 70px 0 50px;
  }
  .batch-title {
    font-size: 32px;
    line-height: 32px;
  }
  .batch-subtitle {
    max-width: 300px;
    margin: 23px 0 32px;
    font-size: 14px;
    line-height: 22px;
  }
  .batch-list {
    max-width: 260px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 22px;
  }
  .batch-image1 {
    max-height: 100%;
    position: absolute;
    right: 10%;
  }
  .batch-image2 {
    right: 0;
    bottom: 0;
    max-width: 180px;
    transform: rotate(10deg);
  }
}
@media (max-width: 821px) {
  .batch {
    overflow: hidden;
  }
  .batch-content {
    margin: 27px 40px 0;
    max-width: 100%;
    text-align: center;
  }
  .batch-inner {
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .batch-list {
    flex-direction: column;
    gap: 12px;
  }
  .batch-image1 {
    max-height: 300px;
    position: relative;
    right: 0;
    left: -37%;
    margin-top: 50px;
  }
  .batch-image2.batch_desktop {
    display: none;
  }
  .batch-image2.batch_mob {
    display: block;
    right: 0px;
    bottom: -60px;
    max-width: 46%;
    min-width: 200px;
    transform: rotate(0deg);
  }
}
@media (max-width: 550px) {
  .batch-list {
    max-width: 180px;
  }
  .batch-image2.batch_mob {
    right: -10px;
    bottom: -50px;
    max-width: 55%;
  }
}
@media (max-width: 450px) {
  .batch-image2.batch_mob {
    right: -10px;
    bottom: -36px;
    max-width: 55%;
  }
}
@media (max-width: 376px) {
  .batch-image1 {
    max-height: 170px;
  }
}

/* FOOTER */
.footer {
  width: 100%;
  background: var(--bg-dark);
  padding: 57px 0 44px;
  color: var(--text-white);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo-col > svg {
  margin: 18px 0 14px;
}
.footer-logo-wrap {
  gap: 14px;
  margin-top: 18px;
  padding-left: 60px;
}
.footer-made-in {
  font-size: 18px;
  font-weight: 500;
  color: var(--gold-light);
}
.footer-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gold-light);
}
.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-nav-col ul a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
  line-height: 40px;
}
.footer-nav-col ul a:hover {
  color: var(--gold-light);
}
.footer-contact-col {
  max-width: 400px;
}
.footer-contact-item {
  align-items: flex-start;
  gap: 16px;
}
.footer-contact-item + .footer-contact-item {
  margin-top: 20px;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 4px;
}
.footer-contact-item span {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--text-white);
}
.footer-limited-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: 20px;
}
.footer-limited-circle {
  width: 139px;
  height: 139px;
  border-radius: 50%;
  background: #d9d9d9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.footer-limited-text {
  font-family: 'Inter', sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--gold-light);
  text-align: center;
}
.footer-limited-line {
  width: 29px;
  height: 1px;
  background: var(--gold-light);
  margin-top: 4px;
}
.footer-bottom {
  font-size: 14px;
  font-weight: 400;
}
.footer-bottom a {
  color: var(--text-white);
}
.footer-bottom-left {
  display: flex;
  gap: 24px;
  color: var(--text-muted);
}
.footer-bottom-right {
  display: flex;
  gap: 24px;
  color: var(--text-muted);
}
.footer a:hover {
  color: var(--gold-light);
}
@media (max-width: 991px) {
  .footer-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-grid > div {
    max-width: calc((100% / 2) - 10px);
    width: 100%;
  }
  .footer-logo-col img {
    max-width: 240px;
  }
  .footer-limited-col img {
    margin: 0 auto;
  }
}
@media (max-width: 821px) {
  .footer-grid > div {
    text-align: center;
    max-width: 100%;
  }
  .footer-logo-col {
    align-items: center;
  }
  .footer-logo-wrap {
    gap: 19px;
    margin-top: 19px;
    padding-left: 0;
    align-items: center;
    flex-direction: column-reverse;
  }
  .footer-contact-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    padding: 30px 0;
  }
  .footer-contact-item {
    align-items: center;
    gap: 15px;
    flex-direction: column;
  }
  .footer-limited-col img {
    margin: 25px auto;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 31px;
  }
  .footer-bottom > div {
    justify-content: space-around;
    width: 100%;
  }
}
@media (max-width: 550px) {
  .footer {
    padding: 47px 0 45px;
  }
  .footer-grid {
    margin-bottom: 20px;
  }
  .footer-limited-col img {
    margin: 12px auto;
    max-width: 70px;
  }
}

/* UTILITY */
.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

/* FORMULA HERO */
.formula-hero {
  width: 100%;
  min-height: 898px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.formula-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.formula-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 90px 20px 0;
}
.formula-hero-title {
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  text-transform: lowercase;
  margin-top: 16px;
  margin-bottom: 8px;
}
.formula-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  line-height: 35px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.formula-hero-divider {
  width: 112px;
  height: 1px;
  background: var(--text-dark);
  margin: 10px 0 16px;
}
.formula-hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-body);
  max-width: 540px;
  margin-bottom: 30px;
}
.formula-hero-btn:hover {
  background: var(--gold-hover);
}

/* FORMULA INGREDIENTS */
.formula-ingredients {
  background: var(--bg-white);
  padding: 40px 20px 60px;
}
.formula-ingredients-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}
.formula-ingredients-title {
  font-size: 55px;
  font-weight: 400;
  line-height: 1.32;
  color: var(--text-dark);
  margin-bottom: 44px;
}
.formula-ingredients-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.formula-ingredient-card {
  display: flex;
  align-items: center;
  gap: 30px;
}
.formula-ingredient-img {
  width: 393px;
  height: 267px;
  flex-shrink: 0;
  overflow: hidden;
}
.formula-ingredient-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.formula-ingredient-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.formula-ingredient-info p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-body);
  max-width: 380px;
}

/* FORMULA INTAKE */
.formula-intake {
  padding: 60px 20px;
}
.formula-intake-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}
.formula-intake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.formula-intake-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.formula-intake-divider {
  width: 41px;
  height: 1px;
  background: #000;
}
.formula-intake-heading {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--gold);
  text-transform: lowercase;
  letter-spacing: 0.3px;
}
.formula-intake-icon {
  margin: 4px 0;
}
.formula-intake-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-body);
  max-width: 280px;
}
.formula-production-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.formula-production-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-body);
  padding-left: 42px;
  position: relative;
}
.formula-production-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Icons for production notes (using SVG as background) */
.formula-production-list li:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cc9c2d' stroke-width='1.5'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3Cpath d='M2 12l10 5 10-5'/%3E%3C/svg%3E");
}
.formula-production-list li:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cc9c2d' stroke-width='1.5'%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3C/svg%3E");
}
.formula-production-list li:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cc9c2d' stroke-width='1.5'%3E%3Crect x='3' y='6' width='18' height='12' rx='2'/%3E%3Cpath d='M3 10h18'/%3E%3C/svg%3E");
}
.formula-production-list li:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cc9c2d' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 1v2'/%3E%3Cpath d='M12 21v2'/%3E%3Cpath d='M4.22 4.22l1.42 1.42'/%3E%3Cpath d='M18.36 18.36l1.42 1.42'/%3E%3Cpath d='M1 12h2'/%3E%3Cpath d='M21 12h2'/%3E%3Cpath d='M4.22 19.78l1.42-1.42'/%3E%3Cpath d='M18.36 5.64l1.42-1.42'/%3E%3C/svg%3E");
}
.formula-production-list li:nth-child(5)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cc9c2d' stroke-width='1.5'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3Cpath d='M2 12l10 5 10-5'/%3E%3C/svg%3E");
}
.formula-quantity-icon {
  margin: 4px 0;
}
.formula-quantity-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
}

/* POPUP OVERLAY */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(29, 29, 27, 0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.popup-open {
  display: flex;
  overflow-y: auto;
}
.popup {
  position: relative;
  max-width: 790px;
  width: 100%;
  background: #efeae6;
  padding: 60px 74px 48px;
  height: 80vh;
  overflow: auto;
}
.popup::-webkit-scrollbar {
  width: 3px;
}
.popup::-webkit-scrollbar-thumb {
  background-color: var(--gold);
  outline: 1px solid var(--gold);
}
.popup::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #cc9c2d52;
}
.popup-close {
  position: absolute;
  top: 27px;
  right: 21px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  background: transparent;
  border: none;
}
.popup-close:hover {
  opacity: 0.7;
}
.popup-close svg {
  width: 18px;
  height: 18px;
}
.popup-header {
  font-weight: 500;
  font-size: 28px;
  line-height: 132%;
  letter-spacing: -2%;
}
.popup-separator {
  width: 79px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto 17px;
}
.popup-form {
  margin-top: 27px;
}
.popup-field {
  display: flex;
  flex-direction: column;
}
.popup-field + .popup-field {
  margin-top: 23px;
}
.popup-field label {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
  line-height: 1;
}
.popup-field label span {
  color: red;
}
.popup-field input,
.popup-field textarea {
  font-family: var(--ff_inter);
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  background: transparent;
  border-radius: 3px;
  padding: 18px 27px;
  outline: none;
  transition:
    box-shadow 0.2s,
    background 0.2s;
  border: 1px solid #a19f9c;
}
/*.popup-field input:focus, .popup-field textarea:focus {
	background: #e8e3df;
	box-shadow: 0 0 0 2px var(--gold);
}*/
.popup-field textarea {
  height: 96px;
  line-height: 1;
  resize: none;
}
.popup-field input::placeholder,
.popup-field textarea::placeholder {
  color: #a19f9c;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.popup-security {
  gap: 15px;
  margin: 24px 0 32px;
}
.popup-security span {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
}
.popup-submit {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  border: none;
  max-width: 100%;
  padding: 26px 0;
}
.anim-up {
  transform: translateY(120px);
  opacity: 0.5;
  backface-visibility: hidden;
}
.anim-opacity {
  opacity: 0;
  backface-visibility: hidden;
}
.anim-left,
.formula-slider .formula-card {
  transform: translateY(120px);
  opacity: 0.5;
  backface-visibility: hidden;
}
.swiper-backface-hidden.formula-slider .swiper-slide.formula-card {
  transform: translateY(120px) translateZ(0);
}
.formula-items .formula-item,
.principles-items .principles-item,
.principles-items .principles-item_center,
.features-items .feature-card,
.features_mob .features_mob-card,
.features-grid .feature-card,
.slides-slider .formula-card {
  transform: translateY(120px);
  opacity: 0.5;
  backface-visibility: hidden;
}
.swiper-backface-hidden .swiper-slide {
  transform: initial;
}
.btn {
  transform: translateX(-100vw);
  /* opacity: 0; */
  backface-visibility: hidden;
}
.formula-ecovit .formula-item-1 .formula-icon img {
  position: relative;
  top: 15px;
}
@media (max-width: 821px) {
  .popup {
    padding: 61px 0 36px;
    height: 85vh;
  }
  .popup-form {
    margin-top: 27px;
    padding: 0 20px;
  }
  .popup-separator {
    width: 79px;
  }
  .popup-field input,
  .popup-field textarea {
    padding: 13px 20px;
  }
  .popup-security {
    margin: 0;
    order: 1;
  }
  .popup-security span {
    text-align: center;
  }
  .popup-submit {
    padding: 18px 0;
    margin: 28px 0;
  }
}
@media (max-width: 550px) {
  .popup-close {
    top: 22px;
    right: 10px;
  }
  .popup-header-text {
    font-size: 14px;
    max-width: 311px;
    margin: 0 auto;
  }
  .popup-security {
    flex-direction: column;
    margin: 0 auto;
  }
}

.overflow {
  overflow: hidden;
}
.is_menu .header:after {
  content: '';
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: #1d1d1bbf;
  z-index: 1;
  position: absolute;
}

.swiper-slide.formula-card {
  height: auto !important;
  display: flex;
}
.slider-controls-wrapper {
  gap: 40px;
  margin: 0 auto;
}
.slider_btn {
  border: 1px solid #2b2b2b;
  padding: 6px;
  background: transparent;
  margin-top: 40px;
}
.slider_btn.swiper-button-disabled {
  border: 1px solid #b8b8b8;
  pointer-events: none;
}

@media (max-width: 1440px) {
}
@media (max-width: 1240px) {
}
@media (max-width: 991px) {
  .container_padding {
    padding: 47px 0 54px;
  }
}

@media (max-width: 550px) {
  .image_mob-full {
    width: calc(100% + 40px) !important;
    height: auto;
    object-fit: unset;
    margin: 0 -20px 0 -20px;
    max-width: unset;
  }
}
@media (min-width: 550px) and (max-width: 821px) {
  .formula-item:not(.formula-item-ecovit) .formula-text {
    max-width: 180px !important;
  }
  .formula-biostim .formula-item-2 .formula-text,
  .formula-biostim-pro .formula-item-0 .formula-text,
  .formula-bionat .formula-item-0 .formula-text {
    word-spacing: 30000px;
  }
  .formula-bionat .formula-item:not(.formula-item-ecovit).formula-item-1 .formula-text {
    max-width: 90px !important;
  }
  .footer-bottom > div {
    justify-content: space-between !important;
    max-width: 520px;
  }
  .batch-image2.batch_mob {
    max-width: 40%;
  }
  .batch-list {
    /* max-width: 100%; */
  }
  .production-content {
    max-width: 560px;
    width: 100%;
  }
  .production-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    margin-top: 50px;
  }
  .production-text {
    width: initial;
  }
  .philosophy-subtitle br {
    display: none;
  }
  .feature-vert_line,
  .feature-line {
    display: none;
  }
  .features-items {
    margin-top: 20px;
  }
  .features-items,
  .ffeatures-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card,
  .ffeatures-item {
    position: relative;
  }
  .feature-card::after,
  .ffeatures-item::after {
    content: '';
    background: var(--gold);
    width: 80px;
    height: 2px;
    border-radius: 20px;
    margin: 30px auto;
  }
  .feature-card::after {
    margin-bottom: 42px;
  }
  .feature-card {
    display: flex;
    flex-direction: column;
    margin-top: 0 !important;
  }
}
@media (min-width: 821px) and (max-width: 1025px) {
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .production-inner {
    gap: 40px;
  }
  .production-image {
    flex: 0 0 45%;
    height: 320px;
  }
  .philosophy-image {
    /* flex: 0 0 45%; */
  }
  .batch-image1 {
    right: 15%;
  }
  .batch-image2 {
    max-width: 260px;
  }
  .formulas-page .hero .hero-bg {
    object-position: 28% 0%;
  }
  .formulas-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .home-page .home .home-bg {
    object-position: 60%;
  }
}
