* {
  margin: 0;
  padding: 0;
  z-index: 2;
}

html {
  min-height: 100%;
  font-size: 14px;
}

body {
  height: 100%;
  font-family: "Nunito", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

.header-text-blue {
  color: #379EFF;
}

:root {
  --blue: #379EFF;
  --white: #ffffff;
  --grey: #333;
  --dark-blue: #081F46;
  --light-blue: #EEF9FF;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.default-button {
  padding: 0.63rem 1.575rem;
  border: 0;
  border-radius: 90px;
  box-shadow: 0 20px 40px 0 rgba(41, 112, 250, 0.2);
  font-size: 1.2rem;
}

.button-gradient-blue {
  background: linear-gradient(90deg, rgb(103, 181, 255) 0%, rgb(77, 134, 255) 100%);
  color: #fff;
}

.button-white {
  background-color: var(--white);
  color: var(--dark-blue);
}

.stroke-button {
  background-color: transparent;
  border-radius: 90px;
  padding: 0.5rem 2rem;
  box-shadow: none;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.stroke-button i {
  color: var(--dark-blue);
}

.submit-button {
  display: flex;
  width: fit-content;
  padding: 0.5rem 5rem;
  margin-left: auto;
  margin-right: 0.75rem;
  margin-top: 1rem;
  transition: 0.3s;
}
.submit-button:hover {
  transition: 0.3s;
  transform: scale(1.05);
}

a {
  text-decoration: none;
  outline: none;
}

img {
  width: 100%;
  height: 100%;
}

.default-input {
  border-radius: 1rem;
  height: 2.1rem;
  border: 1px solid #E4E5E7;
  padding: 0.5rem 1rem;
  outline: none;
}
.default-input:focus {
  border: 1px solid var(--blue);
}

.default-select {
  border-radius: 1rem;
  height: 2.1rem;
  border: 1px solid #E4E5E7;
  padding: 0 0.5rem;
  outline: none;
}
.default-select:focus {
  border: 1px solid var(--blue);
}

.default-textarea {
  border-radius: 0.5rem;
  border: 1px solid #E4E5E7;
  padding: 0.5rem 1rem;
  outline: none;
  resize: none;
}
.default-textarea:focus {
  border: 1px solid var(--blue);
}

.required-input {
  position: absolute;
  right: 0.5rem;
  top: -0.5rem;
  color: red;
  font-size: 1.15rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.choices {
  padding-left: 1.25rem;
}
.choices-coolers {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--blue);
}
.choices-item label {
  padding-left: 0.5rem;
}

.container-default {
  max-width: 90.72rem;
  height: 100%;
  margin: 0 auto;
}

.container-1200 {
  max-width: 75.6rem;
  height: 100%;
  margin: 0 auto;
}

.container-1100 {
  max-width: 69.3rem;
  height: 100%;
  margin: 0 auto;
}

.container-1000 {
  max-width: 63rem;
  height: 100%;
  margin: 0 auto;
}

.header {
  height: 6.3rem;
  padding: 0.63rem 0;
}
.header .logo img {
  max-height: 5rem;
  width: auto;
}
.header .header-menu ul {
  display: flex;
  justify-content: center;
}
.header .header-menu ul li {
  font-size: 1rem;
  padding-right: 1.5rem;
}
.header .header-menu ul li a {
  color: var(--dark-blue);
  position: relative;
  padding: 0.2rem 0.3rem;
  transition: 0.4s;
}
.header .header-menu ul li a:hover {
  transition: 0.4s;
  color: var(--blue);
}
.header-phone {
  color: var(--dark-blue);
  justify-content: end;
}
.header-phone__inner {
  width: fit-content;
  position: relative;
}
.header-phone__inner:hover i {
  transition: 0.3s;
  color: var(--blue);
}
.header-phone__inner i {
  transition: 0.3s;
}
.header-phone__number {
  font-size: 0.9rem;
  padding: 0.2rem 0.5rem;
  color: var(--dark-blue);
}
.header-phone__number:hover {
  color: var(--dark-blue);
}
.header-phone__number span {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: -0.1rem;
  background-color: var(--blue);
  border-radius: 10px;
  display: none;
}

.main-block-wrapper {
  position: relative;
}
.main-block-wrapper .main-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.main-block-wrapper .cta {
  margin-top: 3rem;
}
.main-block-wrapper .cta-img {
  text-align: end;
  position: relative;
}
.main-block-wrapper .cta-img__arrow {
  width: fit-content;
  position: absolute;
  left: -25%;
  bottom: -40%;
}
.main-block-wrapper .cta-img__arrow img {
  max-width: 22rem;
}
.main-block-wrapper .cta-img__bottles {
  max-width: 90%;
}
.main-block-wrapper .cta-text {
  margin-top: 3rem;
}
.main-block-wrapper .cta-text__header {
  font-size: 3rem;
  font-weight: 700;
  line-height: 4rem;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
}
.main-block-wrapper .cta-text__description {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 0.3rem;
}
.main-block-wrapper .cta-text__description:before {
  content: "";
  position: absolute;
  display: block;
  left: 0.3rem;
  top: 0;
  width: 0.25rem;
  height: 1.26rem;
  background-color: var(--blue);
  border-radius: 20%;
}
.main-block-wrapper .cta-buttons {
  padding-left: 0.3rem;
}
.main-block-wrapper .cta-buttons__order {
  margin-right: 1.75rem;
}
.main-block-wrapper .cta-buttons__order, .main-block-wrapper .cta-buttons__more {
  transition: 0.3s;
  display: inline-block;
}
.main-block-wrapper .cta-buttons__order:hover, .main-block-wrapper .cta-buttons__more:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.main-block-wrapper .cta-buttons__order:hover{
  color: #fff;
}

.products {
  margin-top: 15rem;
  margin-bottom: 12rem;
  position: relative;
  padding-bottom: 3rem;
}
.products-bg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.products-header {
  margin-bottom: 1rem;
}
.products-subheader {
  font-family: "Comfortaa", sans-serif;
  color: var(--dark-blue);
  margin-bottom: 3rem;
  font-size: 1.26rem;
  display: block;
}
.products-item {
  background-color: #fff;
  height: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 40px 0 rgba(41, 112, 250, 0.2);
  width: 85%;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products-item__img {
  max-height: 12.6rem;
  width: auto;
  margin-bottom: 1.5rem;
}
.products-item__img.pump-image {
  max-height: 8.19rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
.products-item__header {
  font-size: 1.2rem;
  font-family: "Comfortaa", sans-serif;
  font-weight: 500;
  color: var(--dark-blue);
  margin-bottom: 0.4rem;
}
.products-item__subheader {
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}
.products-item__rate {
  margin-bottom: 1.75rem;
}
.products-item__rate i {
  padding: 0 0.1rem;
  color: var(--dark-blue);
}
.products-item__button {
  font-size: 1rem;
  transition: 0.3s;
}
.products-item__button i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}
.products-item__button:hover {
  transition: 0.3s;
  border-color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 40px 0 rgba(41, 112, 250, 0.2);
}

.services {
  padding: 0 1.3rem;
  display: flex;
  justify-content: center;
}
.services-padding {
  background-color: var(--white);
  box-shadow: 0 0 40px 0 rgba(41, 112, 250, 0.2);
  border-radius: 1rem;
  padding: 5rem 0;
  width: 100%;
}
.services-image {
  padding-right: 0;
}
.services-image img {
  max-width: 90%;
}
.services-info__header {
  margin-bottom: 3rem;
}
.services-info__item {
  position: relative;
  margin-bottom: 3rem;
}
.services-info__item:before {
  content: "";
  width: 3.15rem;
  height: 3.15rem;
  background-color: var(--light-blue);
  position: absolute;
  left: 0.7rem;
  top: -0.6rem;
  border-radius: 50%;
}
.services-info__item i {
  font-size: 2rem;
}
.services-info__item span {
  font-size: 1.26rem;
  margin-left: 5rem;
  font-weight: 600;
  position: relative;
  font-family: "Comfortaa", sans-serif;
}
.services-info__item span:before {
  position: absolute;
  content: "";
  width: 0.25rem;
  height: 1.7rem;
  background-color: var(--blue);
  left: -1rem;
  top: 0;
  border-radius: 2px;
}
.services-info__button {
  transition: 0.3s;
  width: fit-content;
}
.services-info__button a {
  padding: 0.63rem 4.4rem;
  color: #fff;
}
.services-info__button:hover {
  transition: 0.3s;
  transform: translateY(-5px);
}
.services-info__button:hover a {
  color: #fff;
}

.safety {
  position: relative;
  padding: 15rem 0;
  margin-top: 5rem;
}
.safety-bg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.safety-image img {
  max-width: 85%;
}
.safety-info__header {
  line-height: 2.75rem;
  margin-bottom: 1.26rem;
}
.safety-info__subheader {
  font-size: 1.26rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}
.safety-info__description {
  padding-right: 1.6rem;
  margin-bottom: 3rem;
}
.safety-info__link {
  padding: 0.5rem 0;
  font-size: 1.26rem;
}
.safety-info__link:hover i {
  animation: arrow-move ease-in 0.7s infinite;
}
.safety-info__link i {
  margin-left: 0.75rem;
  color: var(--dark-blue);
}

.cooler {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 15rem;
}
.cooler-image img {
  max-width: 85%;
}
.cooler-info__header {
  line-height: 2.75rem;
  margin-bottom: 3rem;
}
.cooler-info__description {
  padding-right: 1.6rem;
  margin-bottom: 1.5rem;
}
.cooler-info__description b {
  font-size: 1.26rem;
}
.cooler-info__button {
  margin-top: 2rem;
  padding: 0.63rem 4.4rem;
  transition: 0.3s;
}
.cooler-info__button:hover {
  transition: 0.3s;
  transform: translateY(-5px);
}

.composition {
  margin-bottom: 15rem;
}
.composition-image {
  padding: 0 6rem;
  text-align: left;
}
.composition-image img {
  max-width: 75%;
  animation: bottle-rotate 4.5s linear infinite;
}
.composition-info {
  display: flex;
  align-items: center;
}
.composition-info_item {
  position: relative;
}
.composition-info_item img {
  position: absolute;
  left: -3rem;
  top: -2rem;
  max-width: 7rem;
  height: auto;
  z-index: -1;
}
.composition-info_item span {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
}
.composition-info_item__number {
  color: var(--blue);
}

.privileges {
  position: relative;
  padding: 14.2rem 0;
}
.privileges-bg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.privileges-item {
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 20px 40px 0 rgba(41, 112, 250, 0.2);
  border-radius: 1rem;
  text-align: center;
  height: 100%;
}
.privileges-item img {
  max-width: 6.5rem;
  height: auto;
  margin-bottom: 2rem;
}
.privileges-item__truck {
  max-width: 8rem !important;
  height: auto;
  margin-bottom: 0.6rem !important;
}
.privileges-item__header {
  margin-bottom: 0.85rem;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
}
.privileges-item__description {
  font-size: 1rem;
}

.clients-inner {
  padding: 0 7.1rem;
}
.clients-text__subheader {
  font-size: 1.4rem;
  letter-spacing: 1.5px;
}
.clients-swiper {
  margin-bottom: 14rem;
}
.clients .swiper-wrapper {
  overflow: visible;
}
.clients .swiper-wrapper .swiper-slide {
  background-color: #fff;
  border: 1px solid #379eff;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clients .swiper-wrapper .swiper-slide img {
  max-width: 80%;
  height: auto;
}
.clients .swiper-button-next {
  right: 3rem;
}
.clients .swiper-button-prev {
  left: 3rem;
}

.contact {
  position: relative;
  margin-bottom: 7rem;
  color: var(--dark-blue);
}
.contact h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  position: relative;
  color: var(--dark-blue);
}
.contact h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 1.5rem;
  background-color: var(--blue);
  border-radius: 1.5rem;
}
.contact-bg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.contact-map {
  background-color: #fff;
  padding: 1.4rem;
  box-shadow: 0 20px 40px 0 rgba(41, 112, 250, 0.2);
  border-radius: 1rem;
}
.contact-info__office {
  margin-bottom: 1.5rem;
  background-color: #fff;
  padding: 1.4rem;
  box-shadow: 0 20px 40px 0 rgba(41, 112, 250, 0.2);
  border-radius: 1rem;
}
.contact-info__office i {
  font-size: 1.5rem;
  margin-left: -0.3rem;
}
.contact-info__office span {
  margin-left: 0.4rem;
  display: block;
  color: var(--dark-blue);
  font-weight: 500;
}
.contact-info__days {
  background-color: #fff;
  padding: 1.4rem;
  box-shadow: 0 20px 40px 0 rgba(41, 112, 250, 0.2);
  border-radius: 1rem;
}
.contact-info__days span {
  display: block;
  color: var(--dark-blue);
  font-weight: 500;
}

.footer {
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  background-color: #120d48;
}
.footer-bg {
  display: none;
}
.footer-header {
  font-weight: 600;
  padding-left: 1rem;
  margin-bottom: 1.75rem;
  font-size: 1.4rem;
  position: relative;
}
.footer-header:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 1.5rem;
  background-color: var(--blue);
  border-radius: 1.5rem;
}
.footer-menu__inner {
  position: relative;
}
.footer-menu__inner:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 110%;
  background-color: var(--white);
  opacity: 0.45;
}
.footer-menu__side a {
  font-size: 1rem;
  color: var(--white);
  transition: 0.3s;
  margin-bottom: 0.7rem;
}
.footer-menu__side a:hover {
  transition: 0.3s;
  color: var(--blue);
}
.footer-social__item {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.6rem;
  background-color: var(--blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 1.5rem;
}
.footer-copyright {
  padding: 1rem 0;
  font-size: 0.85rem;
  margin-top: 5.6rem;
  position: relative;
}
.footer-copyright:after {
  content: "";
  position: absolute;
  width: 110%;
  height: 1px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: var(--white);
  opacity: 0.45;
}
.footer-copyright a {
  margin-left: 0.5rem;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  transition: 0.4s;
}
.footer-copyright a:hover {
  transition: 0.4s;
  color: var(--blue);
}

@keyframes bottle-shake {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bottle-rotate {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(0);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes arrow-move {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ============================================================
   MOBILE BURGER MENU
   ============================================================ */
.header-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 6px;
  z-index: 1000;
}
.header-burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--dark-blue);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.header-burger.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.header-burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header-burger.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 31, 70, 0.5);
  z-index: 997;
  backdrop-filter: blur(2px);
}
.mobile-nav-overlay.is-active {
  display: block;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* Phone link inside mobile nav — hidden on desktop */
.header-menu-phone {
  display: none;
}

/* ============================================================
   TABLET & MOBILE  (< 992px)
   ============================================================ */
@media (max-width: 991.98px) {
  /* ----- Header ----- */
  .header-burger {
    display: flex;
  }
  .header-phone {
    display: none !important;
  }

  .header .header-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(85vw, 320px);
    height: 100dvh;
    background-color: #fff;
    z-index: 998;
    display: flex !important;
    flex-direction: column;
    padding: 6rem 1.75rem 2rem;
    box-shadow: 4px 0 32px rgba(8, 31, 70, 0.18);
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .header .header-menu.is-active {
    left: 0;
  }
  .header .header-menu ul {
    flex-direction: column;
    width: 100%;
  }
  .header .header-menu ul li {
    padding-right: 0;
    border-bottom: 1px solid #eef2f7;
    font-size: 1.1rem;
  }
  .header .header-menu ul li a {
    display: block;
    padding: 0.75rem 0;
  }

  /* Phone link in mobile nav */
  .header-menu-phone {
    display: flex;
    align-items: center;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--blue);
    color: var(--dark-blue);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: "Comfortaa", sans-serif;
  }
  .header-menu-phone i {
    color: var(--blue);
    font-size: 1.2rem;
    margin-right: 0.6rem;
  }
  .header-menu-phone a {
    color: var(--dark-blue);
  }

  /* ----- Hero / CTA ----- */
  .main-block-wrapper .cta {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }
  .main-block-wrapper .cta .row {
    flex-direction: column-reverse;
  }
  .main-block-wrapper .cta-text {
    margin-top: 2rem;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .main-block-wrapper .cta-text__header {
    font-size: 2.2rem;
    line-height: 3rem;
    margin-bottom: 1.25rem;
  }
  .main-block-wrapper .cta-text__description {
    margin-bottom: 2rem;
  }
  .main-block-wrapper .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-left: 0;
  }
  .main-block-wrapper .cta-buttons__order {
    margin-right: 0;
  }
  .main-block-wrapper .cta-img {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .main-block-wrapper .cta-img__bottles {
    max-width: 55%;
  }
  .main-block-wrapper .cta-img__arrow {
    display: none;
  }

  /* ----- Products ----- */
  .products {
    margin-top: 4rem;
    margin-bottom: 5rem;
  }
  .products .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 3rem;
  }
  .products-item {
    width: 100%;
  }

  /* ----- Services ----- */
  .services-padding {
    padding: 3rem 2rem;
  }
  .services-image,
  .services-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .services-image {
    text-align: center;
    padding-right: 0;
    margin-bottom: 2.5rem;
  }
  .services-image img {
    max-width: 55%;
  }
  .services-info__header {
    font-size: 1.5rem;
    line-height: 2.1rem;
    white-space: nowrap;
  }
  .services-info__button {
    width: 100%;
  }
  .services-info__button a {
    display: block;
    text-align: center;
    padding: 0.63rem 1rem;
  }

  /* ----- Safety ----- */
  .safety {
    padding: 5rem 1rem;
    margin-top: 2rem;
  }
  .safety-image,
  .safety-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .safety-image {
    text-align: center;
    margin-bottom: 2rem;
  }
  .safety-image img {
    max-width: 65%;
  }

  /* ----- Cooler ----- */
  .cooler {
    margin-bottom: 5rem;
  }
  .cooler-image,
  .cooler-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cooler-image {
    text-align: center;
    margin-bottom: 2rem;
    order: -1;
  }
  .cooler-image img {
    max-width: 55%;
  }
  .cooler-info__header {
    margin-bottom: 1.5rem;
  }

  /* ----- Composition ----- */
  .composition {
    margin-bottom: 5rem;
  }
  .composition .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .composition-image {
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  .composition-image img {
    max-width: 55%;
  }
  .composition-info_item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0.75rem 0.75rem 0.75rem 1rem;
    border-bottom: 1px solid #eef2f7;
  }
  .composition-info_item img {
    display: none;
  }
  .composition-info_item span {
    font-size: 1rem;
  }

  /* ----- Privileges ----- */
  .privileges {
    padding: 5rem 0;
  }
  .privileges .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .privileges .col-lg-4:last-child {
    margin-bottom: 0;
  }

  /* ----- Clients ----- */
  .clients-inner {
    padding: 0 1rem;
  }
  .clients-swiper {
    margin-bottom: 5rem;
    padding: 0 3rem;
  }
  .clients .swiper-wrapper .swiper-slide {
    height: 8rem;
  }
  .clients .swiper-button-next {
    right: 0;
  }
  .clients .swiper-button-prev {
    left: 0;
  }

  /* ----- Contact ----- */
  .contact {
    margin-bottom: 4rem;
  }
  .contact .col-lg-4,
  .contact .col-lg-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contact .col-lg-4 {
    margin-bottom: 2rem;
  }

  /* ----- Footer ----- */
  .footer {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  .footer .col-lg-3,
  .footer .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: flex-start !important;
    margin-bottom: 2rem;
  }
  .footer-copyright {
    margin-top: 1.5rem;
  }
  .footer-copyright .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ============================================================
   SMALL MOBILE  (< 576px)
   ============================================================ */
@media (max-width: 575.98px) {
  .header {
    height: 4.5rem;
  }
  .header .logo img {
    max-height: 3.5rem;
  }

  .main-block-wrapper .cta-text__header {
    font-size: 1.7rem;
    line-height: 2.5rem;
  }
  .main-block-wrapper .cta-img__bottles {
    max-width: 75%;
  }

  /* Products — single column on small phones */
  .products {
    margin-top: 2.5rem;
  }
  .products .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .products-item {
    width: 85%;
    margin: 0 auto;
  }

  .services-info__item span {
    margin-left: 3.5rem;
    font-size: 1.05rem;
  }

  .clients-inner {
    padding: 0 1rem;
  }
  .clients .swiper-button-next {
    right: 0.5rem;
  }
  .clients .swiper-button-prev {
    left: 0.5rem;
  }

  /* Contact form — stack columns */
  .contact .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .submit-button {
    width: 100%;
    justify-content: center;
    margin-right: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .footer-header {
    font-size: 1.2rem;
  }
}


@media (max-width: 576px) {
  .container-1000, .container-1100, .container-1200, .container-default {
    max-width: none;
    height: 100%;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
  }

  .footer-copyright:after{
    width: 100%;
  }
}