/* ============================================
   BOTTLE PAGE (single)
   ============================================ */

/* === BREAKPOINTS ===
  breakpoint-tablet: 600px;
  breakpoint-desktop-s: 900px;
  breakpoint-desktop-m: 1200px;
  breakpoint-desktop-l: 1600px;
*/

.bottle-single {
  --top-padding: calc(var(--header-height) + (var(--header-margin-top) * 3));
  width: 100%;
}

/* ==== HERO ==== */

#bottle-hero {
  position: relative;
  z-index: 1;
  background-color: var(--background-color-light);
  padding: var(--top-padding) var(--padding-m) var(--padding-m) var(--padding-m);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 900px) {
  #bottle-hero {
    height: 100vh;
  }

  .admin-bar #bottle-hero {
    height: calc(100vh - 32px);
  }
}

#bottle-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

#bottle-hero__title {
  font-weight: bold;
  text-transform: uppercase;
  color: var(--accent-color);
}

#bottle-hero__text {
  max-width: 500px;
}

/* Stats */
#bottle-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

@media (min-width: 600px) {
  .bottle-stats__item:not(:last-child) {
    padding-right: 32px;
    border-right: 1px solid var(--black-color);
  }
}

.bottle-stats__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bottle-stats__item__texts {
  line-height: 1.2;
}

.bottle-stats__title {
  font-weight: bold;
}

/* Image */
#bottle-hero__visual {
  position: relative;
  z-index: 1;
  height: 60vh;
  transform: rotate(12deg) scale(1) translateY(10%) translateX(5%);
}

@media (min-width: 600px) {
  #bottle-hero__visual {
    height: 40vh;
    transform: rotate(12deg) scale(1.8) translateY(-10%) translateX(-5%);
  }

  #bottle-hero__visual .bottle-visual {
    left: auto;
    right: 20%;
  }

  #bottle-hero__visual .bottle-visual__water {
    display: none;
  }
}

@media (min-width: 900px) {
  #bottle-hero__visual {
    position: absolute;
    top: 10%;
    right: 30%;
    height: 100%;
    transform: rotate(12deg) scale(0.85);
  }

  #bottle-hero__visual .bottle-visual {
    left: 50%;
    right: auto;
  }
}

@media (min-width: 1200px) {
  #bottle-hero__visual {
    transform: rotate(12deg) scale(1);
  }

  #bottle-hero__visual .bottle-visual__water {
    display: block;
  }
}

@media (min-width: 1600px) {
  #bottle-hero__visual {
    transform: rotate(12deg) scale(1.15);
  }
}

/* ==== SECTIONS ==== */

/* Fixed image */
.bottle-single__bg-scrolling {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Section (shared component: section 1 & section 2) */
.bottle-single__sections {
  display: flex;
  flex-direction: column;
  gap: 50vh;
  position: relative;
}

@media (min-width: 600px) {
  .bottle-single__sections {
    gap: 60vh;
  }
}

.bottle-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.bottle-section__inner {
  position: relative;
  z-index: 3;
}

.bottle-section--1 {
  background-color: var(--background-color-dark);
  padding: var(--padding-l) var(--padding-m);
}

@media (min-width: 600px) {
  .bottle-section--1 {
    width: 80%;
    margin-left: auto;
    margin-right: 0;
    border-radius: 0 0 0 24px;
  }
}

.bottle-section--1 .bottle-section__title {
  color: white;
}

.bottle-section--1 .bg-pattern {
  filter: brightness(100);
}

.bottle-section--2 {
  background-color: var(--background-color-light);
  width: 100%;
  padding: var(--padding-xl) var(--padding-m);
}

.bottle-section--2 .bottle-section__title {
  color: var(--accent-color);
}

.bottle-section--2 .omius-button__current-color {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.bottle-section--2 .bottle-section__inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  align-items: center;
}

.bottle-section--2 .bottle-section__titles {
  max-width: 600px;
}

.bottle-section__element {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  max-width: 350px;
  width: 25%;
  display: none;
}

.bottle-section__element--1 {
  bottom: 0;
  left: -10%;
}

.bottle-section__element--2 {
  top: 0;
  right: -10%;
}

@media (min-width: 900px) {
  .bottle-section__element {
    display: block;
  }
}

@media (min-width: 900px) {
  .bottle-section__element--1 {
    left: 0;
  }

  .bottle-section__element--2 {
    right: 0;
  }
}

@media (min-width: 1200px) {
  .bottle-section__element--1 {
    bottom: 24px;
    left: 0;
  }

  .bottle-section__element--2 {
    top: 24px;
    right: 0;
  }
}

/* ==== FOOTER ==== */
.site-footer {
  background-color: var(--background-color-light);
}
