@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import "/styles/products.css";
@import "/styles/productDetails.css";
@import "/styles/cart.css";
@import "about.css";
@import "contact.css";
@import "policy.css";
@import "checkout.css";
html[dir=rtl] body h1,
html[dir=rtl] body h2,
html[dir=rtl] body h3,
html[dir=rtl] body h4,
html[dir=rtl] body p,
html[dir=rtl] body button,
html[dir=rtl] body a {
  font-family: "Cairo", sans-serif !important;
}

h1 {
  font-family: "Rossanova";
  font-style: normal;
  font-weight: 400;
  font-size: 72px;
  line-height: 86px;
  letter-spacing: -0.25px;
  color: #1A3C34;
  margin: 24px 0;
}

h2 {
  font-family: "Rossanova";
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.25px;
  color: #1A3C34;
}

h3 {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1A3C34;
}

h4 {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  color: #1A3C34;
}

p {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: #1A3C34;
}

h1,
h2,
h3,
h4,
p {
  text-rendering: optimizeLegibility;
}

@media (max-width: 479px) {
  h1 {
    font-size: 40px;
    line-height: 40px;
    margin: 16px 0;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 12px;
    line-height: 16px;
  }
  h4 {
    font-size: 10px;
  }
  p {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 56px;
    line-height: 56px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: 48px;
    line-height: 54px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  h1 {
    font-size: 56px;
    line-height: 54px;
  }
}
button {
  align-items: center;
  padding: 8px 32px;
  gap: 8px;
  color: #ffffff;
  background: #00594E;
  cursor: pointer;
  border: 0.75px solid rgba(248, 223, 141, 0.5);
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
button a {
  text-decoration: none;
  color: #ffffff;
}
button:hover {
  background-color: #F8DF8D;
  color: #1A3C34;
  transform: translateY(-5px);
}

@media (max-width: 479px) {
  button {
    width: 120px;
    font-size: 12px;
    padding: 0px 16px;
  }
}
.fixed {
  position: relative;
}
.fixed .cocoaBuddy {
  position: fixed;
  right: 100px;
  bottom: 48px;
  z-index: 999;
}
.fixed .cocoaBuddy button {
  width: 100%;
  padding: 12px;
  line-height: 0;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
}
.fixed .cocoaBuddy button:hover {
  background: #1A3C34;
}

.chat-container {
  position: fixed;
  bottom: 125px;
  right: 100px;
  width: 350px;
  background: #1A3C34;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  z-index: 9999;
  overflow-y: auto;
  max-height: 600px;
  border: 0.5px solid rgba(248, 223, 141, 0.5);
  font-family: "Nunito Sans", serif;
}
.chat-container .chat-header {
  color: #F8DF8D;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-container .chat-header img {
  cursor: pointer;
}
.chat-container .chat-header h3 {
  margin: 0;
  font-size: 32px;
  color: #F8DF8D;
  text-transform: none;
  font-weight: 700;
  letter-spacing: 0;
}
.chat-container .chat-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 450px;
  overflow-y: auto;
  padding: 16px;
}
.chat-container .message {
  margin: 4px 0;
  padding: 10px;
  max-width: 80%;
  font-style: normal;
  font-weight: 400;
  font-size: 0.75em;
  line-height: 1.5em;
  color: #ffffff;
  font-family: "Nunito Sans";
}
.chat-container .message a {
  color: #F8DF8D;
  text-decoration: none;
  font-weight: 600;
}
.chat-container .bot-message {
  background: #00594E;
  border: 0.5px solid rgba(248, 223, 141, 0.5);
  align-self: flex-start;
}
.chat-container .user-message {
  margin: 16px 0;
  background: #F8DF8D;
  border: 0.5px solid rgba(248, 223, 141, 0.5);
  align-self: flex-end;
  margin-left: auto;
  color: #1A3C34;
}
.chat-container .chat-input {
  display: flex;
  padding: 12px;
  background: #1A3C34;
  box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.15);
  border-top: 0.5px solid rgba(248, 223, 141, 0.5);
}
.chat-container input[type=text] {
  flex: 1;
  padding: 8px;
  background: #00594E;
  color: #ffffff;
  border: 0.5px solid rgba(248, 223, 141, 0.5);
  margin-right: 16px;
  font-family: "Nunito Sans", serif;
  font-optical-sizing: auto;
}
.chat-container input[type=text]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.chat-container input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.chat-container input[type=text]:focus {
  border-color: #F8DF8D;
  outline: none;
}
.chat-container .quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0;
}
.chat-container .quick-reply {
  background: #1A3C34;
  box-shadow: 0 0 0 0.5px #F8DF8D;
  color: #F8DF8D;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 0.75em;
}
.chat-container button {
  align-items: center;
  padding: 8px 24px;
  gap: 8px;
  color: #ffffff;
  background: #00594E;
  cursor: pointer;
  border: 0.75px solid rgba(248, 223, 141, 0.5);
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.chat-container button a {
  text-decoration: none;
  color: #ffffff;
}
.chat-container button:hover {
  background-color: #F8DF8D;
  color: #1A3C34;
  transform: translateY(-5px);
}
.chat-container .cart-link {
  position: relative;
}
.chat-container .cart-link .cart-bubble {
  position: absolute;
  bottom: 0;
  right: -10px;
  background-color: #E50046;
  color: white;
  padding: 1.5px 6px;
  border-radius: 50%;
  font-size: 12px;
  font-family: "Nunito Sans", serif;
}

@media (max-width: 767px) {
  .fixed .cocoaBuddy {
    right: 24px;
    bottom: 24px;
  }
  .fixed .cocoaBuddy button {
    padding: 8px;
  }
  .fixed .cocoaBuddy button img {
    width: 32px;
    height: 32px;
  }
  .chat-container {
    bottom: 80px;
    right: 24px;
    width: 290px;
    max-height: 450px;
  }
  .chat-container button {
    font-size: 12px;
    padding: 0px 16px;
  }
}
@media (min-width: 478px) and (max-width: 767px) {
  .fixed .cocoaBuddy {
    right: 48px;
    bottom: 48px;
  }
  .chat-container {
    bottom: 112px;
    right: 48px;
  }
  .chat-container button {
    font-size: 12px;
    padding: 0px 16px;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .fixed .cocoaBuddy {
    right: 64px;
    bottom: 64px;
  }
  .chat-container {
    bottom: 136px;
    right: 64px;
    width: 360px;
    max-height: 520px;
  }
  .chat-container button {
    font-size: 12px;
    padding: 0px 16px;
  }
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: transparent;
}
.navbar .logo img {
  height: 50px;
}
.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar ul li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
}
.navbar ul li a {
  text-decoration: none;
  color: #1A3C34;
  transition: color 0.3s ease-in-out;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
  line-height: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.navbar ul li a:hover {
  color: #F8DF8D;
}
.navbar ul li .dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.navbar ul li .dropdown .dropdown-button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  line-height: 0px;
  background: transparent;
  color: #ffffff;
}
.navbar ul li .dropdown .dropdown-button:hover {
  color: #F8DF8D;
  background-color: #00594E;
}
.navbar ul li .dropdown .dropdown-button:hover path {
  stroke: #F8DF8D;
}
.navbar ul li .dropdown .dropdown-content {
  display: none;
  position: absolute;
  width: 99%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border: 0.75px rgba(248, 223, 141, 0.5);
  border-style: none solid solid solid;
  z-index: 100;
  background-color: #00594E;
}
.navbar ul li .dropdown .dropdown-content a {
  display: block;
  padding: 8px 24px;
  text-decoration: none;
  color: #ffffff;
}
.navbar ul li .dropdown .dropdown-content a:hover {
  color: #F8DF8D;
}
.navbar ul li .dropdown .dropdown-content .show {
  display: block;
}
.navbar ul li .dropdown .dropdown-content .rotate {
  transform: rotate(180deg);
}
.navbar ul li .dropdown button {
  transition: none;
}
.navbar ul li .dropdown button:hover {
  transform: translateY(0px);
}
.navbar ul li .dropdown.active .dropdown-content {
  display: block;
}
.navbar ul li .dropdown.active .button-icon svg {
  transform: rotate(180deg);
}
.navbar ul .cart-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.navbar ul .cart-container img {
  height: 56px;
}
.navbar ul .cart-container .cart-bubble {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #ff3b30;
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  border-radius: 50%;
  padding: 4px 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 16px;
  height: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
  font-family: "Nunito Sans";
  font-style: normal;
}

.navbar-mob {
  display: none;
}

@media (max-width: 767px) {
  .navbar {
    display: none;
  }
  .navbar-mob {
    display: block;
    padding: 32px 16px;
    overflow: hidden;
  }
  .navbar-mob .main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-mob .main-container .image-button {
    position: relative;
    display: inline-block;
  }
  .navbar-mob .main-container .image-button .cart-bubble {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #ff3b30;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    border-radius: 50%;
    padding: 4px 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 8px;
    height: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    font-family: "Nunito Sans";
    font-style: normal;
  }
  .navbar-mob .mobile-nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100vh;
    background-color: #1A3C34;
    text-align: center;
    z-index: 9999;
    opacity: 0;
    background: linear-gradient(rgba(26, 60, 52, 0.2), rgba(26, 60, 52, 0.5)), url("/images/nav-background.webp") center/cover no-repeat;
    transition: left 0.2s ease-in-out, opacity 0.2s ease-in-out;
  }
  .navbar-mob .mobile-nav-menu.show {
    left: 0;
    opacity: 1;
  }
  .navbar-mob .mobile-nav-menu .mobile-nav-main {
    width: 90%;
    padding: 32px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-mob .mobile-nav-menu ul {
    width: 60%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .navbar-mob .mobile-nav-menu ul li {
    padding: 16px 0;
    width: 100%;
    border: 0.75px rgba(248, 223, 141, 0.5);
    border-style: none none solid none;
  }
  .navbar-mob .mobile-nav-menu ul li a {
    text-decoration: none;
    color: #ffffff;
    font-family: "Nunito Sans";
    font-style: normal;
    font-weight: 100;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .navbar-mob .mobile-nav-menu ul li .dropdown-mob {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  .navbar-mob .mobile-nav-menu ul li .dropdown-mob .dropdown-button-mob {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 20px 0;
    line-height: 0px;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 100;
  }
  .navbar-mob .mobile-nav-menu ul li .dropdown-mob .dropdown-button-mob .button-icon-mob img {
    width: 32px;
    height: 32px;
  }
  .navbar-mob .mobile-nav-menu ul li .dropdown-mob .dropdown-content-mob {
    display: none;
    position: absolute;
    width: 99%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 0.75px rgba(248, 223, 141, 0.5);
    border-style: solid solid solid solid;
    z-index: 100;
    margin: 16px 0;
    background: #1A3C34;
  }
  .navbar-mob .mobile-nav-menu ul li .dropdown-mob .dropdown-content-mob a {
    display: block;
    padding: 8px 24px;
    text-decoration: none;
    color: #ffffff;
  }
  .navbar-mob .mobile-nav-menu ul li .dropdown-mob .dropdown-content-mob a:hover {
    background: #F8DF8D;
    color: #1A3C34;
  }
  .navbar-mob .mobile-nav-menu ul li .dropdown-mob .dropdown-content-mob .show {
    display: block;
  }
  .navbar-mob .mobile-nav-menu ul li .dropdown-mob .dropdown-content-mob .rotate {
    transform: rotate(180deg);
  }
  .navbar-mob .mobile-nav-menu ul li .dropdown-mob.active .dropdown-content-mob {
    display: block;
  }
  .navbar-mob .mobile-nav-menu ul li .dropdown-mob.active .button-icon-mob img {
    transform: rotate(180deg);
  }
  .navbar-mob .mobile-nav-menu .social {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 16px;
    width: 60%;
    gap: 16px;
    margin-top: 24px;
  }
  .navbar-mob .mobile-nav-menu .social img {
    width: 24px;
  }
  .navbar-mob button {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    padding: 0;
  }
  .navbar-mob .show {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .navbar-mob .logo-mobile {
    width: 113px;
    height: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .navbar {
    width: 90%;
  }
  .navbar .logo img {
    height: 30px;
  }
  .navbar ul {
    gap: 0;
  }
  .navbar ul li {
    padding: 8px 12px;
  }
  .navbar ul li a {
    font-size: 0.75em;
  }
  .navbar ul li .dropdown .dropdown-button {
    font-size: 0.75em;
  }
  .navbar ul li .dropdown .dropdown-content {
    width: 98.5%;
    top: 45px;
  }
  .navbar ul .cart-container img {
    width: 50px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .navbar {
    width: 90%;
  }
  .navbar .logo img {
    height: 40px;
  }
  .navbar ul {
    gap: 16px;
  }
  .navbar ul li {
    padding: 8px 12px;
  }
  .navbar ul li a {
    font-size: 0.75em;
  }
  .navbar ul li .dropdown .dropdown-button {
    font-size: 0.75em;
  }
  .navbar ul li .dropdown .dropdown-content {
    width: 98.5%;
    top: 55px;
  }
  .navbar ul .cart-container img {
    width: 50px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .navbar {
    width: 90%;
  }
  .navbar .logo img {
    height: 50px;
  }
  .navbar ul li .dropdown .dropdown-content {
    width: 98.5%;
    top: 55px;
  }
  .navbar ul .cart-container img {
    width: 60px;
  }
}
.footer {
  margin-top: 100px;
  background: url("/images/pattern-design-fade.svg") repeat, linear-gradient(90.07deg, #006E63 0%, #1A3C34 100%);
  z-index: 9999;
  width: 100%;
  position: absolute;
}
.footer .container {
  padding: 0px;
}
.footer .footer-container {
  line-height: normal;
}
.footer .footer-container ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
}
.footer .footer-container ul li {
  padding: 16px 16px;
}
.footer .footer-container ul li a {
  text-decoration: none;
  color: #1A3C34;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: auto;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}
.footer .footer-container ul li a:hover {
  color: #F8DF8D;
}
.footer .footer-container .footer-section1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border: 0.75px rgba(248, 223, 141, 0.5);
  border-style: none none solid none;
}
.footer .footer-container .footer-section2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}
.footer .footer-container .footer-section2 .footer-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
.footer .footer-container .footer-section2 .footer-logo a {
  font-size: 12px;
}
.footer .footer-container .copy-right p {
  font-size: 12px;
  color: #ffffff;
  opacity: 0.5;
}

@media (max-width: 767px) {
  .footer {
    margin-top: 50px;
  }
  .footer .container {
    padding: 0px 16px;
  }
  .footer .footer-container .footer-section1 {
    padding: 32px 0;
    display: block;
  }
  .footer .footer-container .footer-section1 .footer-links ul {
    display: block;
    text-align: center;
    margin: 0;
  }
  .footer .footer-container .footer-section1 .footer-links ul li a {
    font-size: 12px;
  }
  .footer .footer-container .footer-section1 .footer-social {
    padding-top: 24px;
    text-align: center;
  }
  .footer .footer-container .footer-section1 .footer-social ul {
    gap: 4px;
    margin: 0 auto;
  }
  .footer .footer-container .footer-section1 .footer-social ul li {
    width: 24px;
    height: 24px;
  }
  .footer .footer-container .footer-section1 .footer-social ul li img {
    width: 100%;
    height: 100%;
  }
  .footer .footer-container .footer-section2 {
    display: block;
    padding: 32px 0;
  }
  .footer .footer-container .footer-section2 .footer-logo {
    display: block;
    text-align: center;
  }
  .footer .footer-container .footer-section2 .footer-logo img {
    width: 150px;
  }
  .footer .footer-container .footer-section2 .footer-logo .footer-policy {
    padding: 16px 0;
  }
  .footer .footer-container .footer-section2 .footer-logo .footer-policy ul {
    display: block;
    text-align: center;
  }
  .footer .footer-container .footer-section2 .copy-right {
    text-align: center;
  }
  .footer .footer-container .footer-section2 .copy-right p {
    font-size: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer {
    margin-top: 50px;
  }
  .footer .footer-container {
    padding: 0 16px;
  }
  .footer .footer-container ul li {
    padding: 8px 8px;
  }
  .footer .footer-container .footer-section2 .footer-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .footer .footer-container .footer-section2 .footer-logo ul li {
    width: 90px;
    padding: 8px 8px;
  }
  .footer .footer-container .footer-section2 .footer-logo img {
    width: 120px;
  }
  .footer .footer-container .footer-section2 .footer-logo a {
    font-size: 10px;
  }
  .footer .footer-container .copy-right p {
    font-size: 8px;
    color: #ffffff;
    opacity: 0.5;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .footer .footer-container {
    padding: 0 48px;
  }
  .footer .footer-container .footer-section2 .footer-logo img {
    width: 120px;
  }
  .footer .footer-container .footer-section2 .footer-logo a {
    font-size: 12px;
  }
  .footer .footer-container .copy-right p {
    font-size: 8px;
    color: #ffffff;
    opacity: 0.5;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .footer .footer-container {
    padding: 0 48px;
  }
}
.section1 {
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #1A3C34 0%, #00594E 100%);
  margin-bottom: 100px;
  overflow: hidden;
  position: relative;
}
.section1 .container {
  padding: 0;
}
.section1 .promotion {
  width: 200%;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: linear-gradient(90.07deg, #006E63 0%, #1A3C34 100%);
}
.section1 .promotion .scrolling-wrapper {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
.section1 .promotion .scrolling-wrapper .scrolling-text {
  display: flex;
}
.section1 .promotion .scrolling-wrapper .scrolling-text p {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #F8DF8D;
  margin: 0;
  padding: 0 80px;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.section1 .navbar {
  padding: 32px 0px;
}
.section1 .navbar a,
.section1 .navbar button {
  color: #ffffff;
}
.section1 .hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.section1 .hero .hero-main {
  text-align: center;
  width: 100%;
}
.section1 .hero .hero-main h3 {
  color: #ffffff;
}
.section1 .hero .hero-main h1 {
  color: #F8DF8D;
}
.section1 .hero-footer {
  background: url("/images/pattern-design.svg") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 175px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.section1 .cookieConsent {
  max-width: 1200px;
  width: 100%;
  background-color: #006e63;
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 999;
}
.section1 .cookieConsent .cookie-flex {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  gap: 40px;
}
.section1 .cookieConsent p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 200;
  line-height: 20px;
}
.section1 .cookieConsent a {
  color: #F8DF8D;
  font-weight: 400;
  text-decoration: none;
}
.section1 .cookieConsent button {
  height: 40px;
  line-height: 8px;
  font-size: 12px;
  transform: none;
}
.section1 .cookieConsent .cookie-flex.show {
  display: flex;
}
.section1 .cookieConsent .fade-out {
  animation: fadeOut 0.2s ease-out;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.section2 {
  text-align: center;
  padding: 100px 0;
}
.section2 .categories-grid {
  padding: 80px 0;
}
.section2 .categories-grid .grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  width: 1200px;
  margin: 0 auto;
  grid-template-areas: "category1 category2 category3" "category4 category5 category6";
}
.section2 .categories-grid .grid-container .category1 {
  grid-area: category1;
}
.section2 .categories-grid .grid-container .category2 {
  grid-area: category2;
}
.section2 .categories-grid .grid-container .category3 {
  grid-area: category3;
}
.section2 .categories-grid .grid-container .category4 {
  grid-area: category4;
}
.section2 .categories-grid .grid-container .category5 {
  grid-area: category5;
}
.section2 .categories-grid .grid-container .categories-hover {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 0;
}
.section2 .categories-grid .grid-container .categories-hover .hover-text {
  position: absolute;
  color: #1A3C34;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  font-size: 20px;
  font-family: "Rossanova";
  font-weight: 400;
  text-align: center;
  max-width: 287px;
  padding: 16px;
  background: #ffffff;
  z-index: 1;
}
.section2 .categories-grid .grid-container .categories-hover img {
  transition: transform 0.5s ease-in-out;
}
.section2 .categories-grid .grid-container .categories-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.section2 .categories-grid .grid-container .categories-hover:hover img {
  transform: scale(1.15);
}
.section2 .categories-grid .grid-container .categories-hover:hover::before {
  opacity: 1;
}
.section2 .categories-grid .grid-container .categories-hover:hover .hover-text {
  opacity: 1;
  transform: translateY(0);
}
.section2 .categories-grid .grid-container img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.section3 {
  padding: 200px 0;
}
.section3 .about-us {
  max-width: 1200px;
  margin: 0 auto;
}
.section3 .about-us .grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 0px 20px;
  grid-auto-flow: row;
  grid-template-areas: "grid1 grid2" "grid1 grid2" "grid1 grid2";
}
.section3 .about-us .grid-container .grid1 {
  grid-area: grid1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.section3 .about-us .grid-container .grid1 img {
  width: 420px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section3 .about-us .grid-container .grid1 .clipart1,
.section3 .about-us .grid-container .grid1 .clipart2 {
  width: 150px;
  height: 150px;
  position: absolute;
}
.section3 .about-us .grid-container .grid1 .clipart1 {
  right: 35px;
  top: -75px;
  z-index: -1;
}
.section3 .about-us .grid-container .grid1 .clipart2 {
  left: 35px;
  bottom: -75px;
}
.section3 .about-us .grid-container .grid2 {
  grid-area: grid2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section3 .about-us .grid-container .grid2 .about-us-title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  display: flex;
  align-items: center;
  gap: 40px;
}
.section3 .about-us .grid-container .grid2 .about-us-title .line {
  width: 250px;
  border-top: 0.5px solid rgba(26, 60, 52, 0.5);
}
.section3 .about-us .grid-container .grid2 p {
  margin: 0 0 40px 0;
}

.section4 {
  padding: 100px 0;
  text-align: center;
}
.section4 .best-sellers-section {
  margin-top: 40px;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  /* Center horizontally */
  align-items: center;
}
.section4 .best-sellers-section .best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  max-width: 1200px;
}
.section4 .best-sellers-section .best-sellers-grid .product-card {
  text-align: center;
  transition: all 0.5s;
  cursor: pointer;
}
.section4 .best-sellers-section .best-sellers-grid .product-card .product-image {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section4 .best-sellers-section .best-sellers-grid .product-card .product-name {
  color: #1A3C34;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.2px;
  max-width: 300px;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.section4 .best-sellers-section .best-sellers-grid .product-card .product-description {
  max-width: 300px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #1A3C34;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.section4 .best-sellers-section .best-sellers-grid .product-card .product-price {
  font-size: 20px;
  font-weight: bold;
  color: #00594E;
  margin-bottom: 1rem;
}
.section4 .best-sellers-section .best-sellers-grid .product-card .add-to-cart {
  width: 100%;
  background-color: #ffffff;
  color: #00594E;
  border: 1px solid #00594E;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  transform: none;
}
.section4 .best-sellers-section .best-sellers-grid .product-card .add-to-cart:hover {
  background-color: #00594E;
  color: #ffffff;
}
.section4 .best-sellers-section .best-sellers-grid .product-card:hover {
  transform: translateY(-5px) scale(1.025);
}
.section4 .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 60, 52, 0.5);
  justify-content: center;
  align-items: center;
}
.section4 .modal .modal-content {
  background-color: white;
  padding: 24px 32px;
  text-align: center;
  width: 300px;
  position: relative;
}
.section4 .modal .modal-content .modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section4 .modal .modal-content .close {
  position: absolute;
  top: 22px;
  right: 15px;
  cursor: pointer;
  width: 40px;
}
.section4 .modal .modal-content label {
  display: block;
  margin-top: 16px;
  text-align: left;
  font-family: "Nunito Sans";
  font-weight: 500;
  font-size: 16px;
  color: #1A3C34;
  letter-spacing: 0.5px;
  line-height: 24px;
}
.section4 .modal .modal-content select {
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  margin-top: 8px;
}
.section4 .modal .modal-content select:focus {
  border-color: #F8DF8D;
  outline: none;
}
.section4 .modal .modal-content #variantSelect,
.section4 .modal .modal-content #quantitySelect {
  font-family: "Nunito Sans";
  font-size: 14px;
  font-weight: 700;
  color: #1A3C34;
}
.section4 .modal .modal-content h2 {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 10px;
  letter-spacing: 0.25px;
  color: #1A3C34;
  text-transform: uppercase;
  text-align: left;
}
.section4 .modal .modal-content #confirmSelection {
  margin-top: 16px;
}

.section5 {
  margin: 100px 0 0px 0;
  position: relative;
  z-index: 999;
}
.section5 .video-container {
  position: relative;
  width: 100%;
}
.section5 .video-container video {
  width: 100%;
  height: 100vh;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.section5 .video-container .play-button {
  position: absolute;
  top: 90%;
  left: 95%;
  transform: translate(-90%, -95%);
  padding: 24px 24px;
  background: rgba(26, 60, 52, 0.5);
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  line-height: 0;
}
.section5 .video-container:hover .play-button {
  opacity: 1;
}
.section5 .video-container .fade-out {
  opacity: 0 !important;
}

.section6 {
  padding: 0 0 100px 0;
}
.section6 .specifications {
  background: url("/images/pattern-design-fade.svg") repeat, linear-gradient(180deg, #1A3C34 0%, #00594E 100%);
}
.section6 .specifications .grid-specifications {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 80px;
  grid-template-areas: "item1 item2 item3";
  max-width: 1721px;
  text-align: center;
  justify-content: space-between;
}
.section6 .specifications .grid-specifications .item1 {
  grid-area: item1;
}
.section6 .specifications .grid-specifications .item2 {
  grid-area: item2;
}
.section6 .specifications .grid-specifications .item3 {
  grid-area: item3;
}
.section6 .specifications .grid-specifications .item1,
.section6 .specifications .grid-specifications .item2,
.section6 .specifications .grid-specifications .item3 {
  display: grid;
  grid-template-columns: 1fr 5fr;
  text-align: left;
  gap: 0px 8px;
}
.section6 .specifications .grid-specifications .item1 img,
.section6 .specifications .grid-specifications .item2 img,
.section6 .specifications .grid-specifications .item3 img {
  width: 48px;
  height: 48px;
}
.section6 .specifications .grid-specifications .item1 h2,
.section6 .specifications .grid-specifications .item2 h2,
.section6 .specifications .grid-specifications .item3 h2 {
  color: #ffffff;
  margin: 0;
  padding: 0;
}
.section6 .specifications .grid-specifications .item1 p,
.section6 .specifications .grid-specifications .item2 p,
.section6 .specifications .grid-specifications .item3 p {
  color: #ffffff;
  line-height: 24px;
}

.section7 {
  padding: 100px 0;
}
.section7 .faq {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr;
  gap: 0px 200px;
}
.section7 .faq .faq-item {
  border: 0.75px rgba(26, 60, 52, 0.5);
  border-style: none none solid none;
  padding: 4px 0;
}
.section7 .faq .faq-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.section7 .faq .faq-item .faq-question h4 {
  font-size: 16px;
  letter-spacing: 0.75px;
}
.section7 .faq .faq-item .faq-question button {
  width: 32px;
  padding: 0;
  line-height: 0;
  background: transparent;
  border: 0;
}
.section7 .faq .faq-item .faq-question .icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease-in-out;
}
.section7 .faq .faq-item .faq-question .rotate {
  transform: rotate(180deg);
}
.section7 .faq .faq-item .faq-answer {
  display: none;
  transition: max-height 0.3s ease-out;
}
.section7 .faq .faq-item .faq-answer p {
  font-size: 16px;
  line-height: 24px;
}
.section7 .faq .faq-contact {
  margin-top: 64px;
}

.section8 {
  padding: 100px 0;
  max-width: 1140px;
  margin: 0 auto;
}
.section8 .instagram-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section8 .instagram-title .insta-h1 {
  font-family: "Nunito Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 33px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #1A3C34;
}
.section8 .instagram-title button {
  width: 220px;
  background: transparent;
  color: #1A3C34;
  border: 0.75px solid rgba(26, 60, 52, 0.5);
}
.section8 .instagram-title button:hover {
  background: #F8DF8D;
  border: 0.75px solid rgba(248, 223, 141, 0.5);
}
.section8 .instagram-grid {
  margin-top: 64px;
}
.section8 .instagram-grid .insta-container-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
  grid-auto-flow: row;
  grid-template-areas: "area1 area3 area5 area7" "area1 area4 area5 area8" "area1 area4 area6 area8" "area2 area4 area6 area8";
  width: 100%;
  height: 560px;
}
.section8 .instagram-grid .insta-container-grid a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.section8 .instagram-grid .insta-container-grid a img:hover {
  transform: scale(0.9);
}
.section8 .instagram-grid .area1 {
  grid-area: area1;
}
.section8 .instagram-grid .area2 {
  grid-area: area2;
}
.section8 .instagram-grid .area3 {
  grid-area: area3;
}
.section8 .instagram-grid .area4 {
  grid-area: area4;
}
.section8 .instagram-grid .area5 {
  grid-area: area5;
}
.section8 .instagram-grid .area6 {
  grid-area: area6;
}
.section8 .instagram-grid .area7 {
  grid-area: area7;
}
.section8 .instagram-grid .area8 {
  grid-area: area8;
}

@media (max-width: 479px) {
  .section1 {
    margin-bottom: 50px;
  }
  .section1 .promotion .scrolling-wrapper .scrolling-text p {
    font-size: 10px;
  }
  .section1 .hero .hero-main {
    width: 90%;
    height: 100%;
    margin: 0 auto;
  }
  .section1 .hero .hero-main h1 {
    font-size: 40px;
  }
  .section1 .hero-footer {
    height: 80px;
  }
  .section1 .cookieConsent {
    width: 100%;
    bottom: 0;
  }
  .section1 .cookieConsent .cookie-flex {
    padding: 8px 16px;
    gap: 24px;
  }
  .section1 .cookieConsent .cookie-flex p {
    font-size: 10px;
    line-height: 16px;
  }
  .section2 .categories-grid .grid-container .categories-hover .hover-text {
    font-size: 14px;
  }
  .section4 {
    padding: 50px 0;
  }
  .section4 .bestsellers-title {
    padding: 0 16px;
  }
  .section4 .best-sellers-section {
    margin-top: 64px;
  }
  .section4 .best-sellers-section .best-sellers-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card {
    text-align: left;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-card-main .product-image {
    height: 400px;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-card-main .product-price {
    font-size: 20px;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-card-main .add-to-cart {
    font-size: 16px;
    margin: 0.75rem 0;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-card-main .product-description {
    max-width: 100%;
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .section1 .hero {
    margin-top: 0px;
  }
  .section1 .cookieConsent {
    width: 100%;
    bottom: 0;
  }
  .section2 .categories-grid .grid-container {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas: "category1" "category2" "category3" "category4" "category5";
  }
  .section2 .categories-grid .grid-container img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
  .section2 .categories-grid .grid-container .categories-hover .hover-text {
    font-size: 20px;
  }
  .section3 {
    padding: 50px 0;
  }
  .section3 .about-us {
    width: 100%;
    max-width: 100%;
  }
  .section3 .about-us .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "grid1" "grid2";
  }
  .section3 .about-us .grid-container .grid1 {
    display: block;
  }
  .section3 .about-us .grid-container .grid1 .clipart1,
  .section3 .about-us .grid-container .grid1 .clipart2 {
    display: none;
  }
  .section3 .about-us .grid-container .grid1 img {
    width: 100%;
    height: 400px;
  }
  .section3 .about-us .grid-container .grid2 {
    display: block;
    padding: 40px 16px 0 16px;
  }
  .section3 .about-us .grid-container .grid2 .about-us-content {
    text-align: center;
    display: block;
  }
  .section3 .about-us .grid-container .grid2 .about-us-content .about-us-title {
    width: 100%;
    display: block;
    text-align: center;
  }
  .section3 .about-us .grid-container .grid2 .about-us-content .about-us-title .line {
    display: none;
  }
  .section3 .about-us .grid-container .grid2 .about-us-content p {
    text-align: center;
    margin: 0 0 32px 0;
  }
  .section4 .modal .modal-content {
    width: 230px;
    padding: 24px 24px;
  }
  .section4 .modal .modal-content h2 {
    font-size: 12px;
  }
  .section4 .modal .modal-content #variantSelect,
  .section4 .modal .modal-content #quantitySelect {
    font-size: 14px;
  }
  .section4 .modal .modal-content select {
    padding: 8px 16px;
    height: 56px;
  }
  .section4 .modal .modal-content label {
    font-size: 14px;
  }
  .section6 {
    padding: 0 0 50px 0;
  }
  .section6 .specifications {
    padding: 0 16px;
  }
  .section6 .specifications .grid-specifications {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "item1" "item2" "item3";
    gap: 40px 0px;
    text-align: center;
    padding: 64px 0;
  }
  .section6 .specifications .grid-specifications .item1,
  .section6 .specifications .grid-specifications .item2,
  .section6 .specifications .grid-specifications .item3 {
    display: block;
    text-align: center;
  }
  .section6 .specifications .grid-specifications .item1 img,
  .section6 .specifications .grid-specifications .item2 img,
  .section6 .specifications .grid-specifications .item3 img {
    width: 48px;
    margin-bottom: 16px;
  }
  .section6 .specifications .grid-specifications .item1 p,
  .section6 .specifications .grid-specifications .item2 p,
  .section6 .specifications .grid-specifications .item3 p {
    font-weight: 200;
    font-size: 16px;
    margin: 0;
  }
  .section7 {
    padding: 50px 0;
  }
  .section7 .faq {
    grid-template-columns: 1fr;
  }
  .section7 .faq .faq-item .faq-question button img {
    width: 24px;
  }
  .section7 .faq .faq-item .faq-question h4 {
    width: 100%;
    font-size: 14px;
    line-height: 16px;
  }
  .section7 .faq .faq-item .faq-answer p {
    font-size: 14px;
  }
  .section7 .faq .faq-contact {
    margin-top: 32px;
    text-align: center;
  }
  .section8 {
    max-width: 100%;
    padding: 50px 0;
  }
  .section8 .instagram .instagram-title {
    display: block;
    text-align: center;
  }
  .section8 .instagram .instagram-title .insta-h1 {
    letter-spacing: 2px;
  }
  .section8 .instagram .instagram-title button {
    width: 120px;
  }
  .section8 .instagram .instagram-grid .insta-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 0px;
    width: 100%;
    height: 100%;
  }
  .section8 .instagram .instagram-grid .insta-container-grid a img {
    width: 100%;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .section4 {
    padding: 50px 16px;
  }
  .section4 .bestsellers-title {
    padding: 0px;
  }
  .section4 .best-sellers-section {
    margin-top: 64px;
    padding: 0 16px;
  }
  .section4 .best-sellers-section .best-sellers-grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card {
    text-align: left;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-card-main {
    padding: 0;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-card-main .product-image {
    height: 400px;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-card-main .product-price {
    font-size: 20px;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-card-main .add-to-cart {
    font-size: 16px;
    margin: 0.75rem 0;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-card-main .product-description {
    max-width: 100%;
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section1 .navbar {
    padding: 8px 0px;
  }
  .section1 .cookieConsent {
    width: 100%;
    bottom: 0;
  }
  .section1 .cookieConsent .cookie-flex {
    padding: 24px 24px;
    gap: 24px;
  }
  .section2 .categories-grid .grid-container {
    width: 600px;
  }
  .section2 .categories-grid .grid-container .categories-hover .hover-text {
    font-size: 16px;
  }
  .section3 {
    padding: 200px 0;
  }
  .section3 .about-us {
    max-width: 100%;
    padding: 0 32px;
  }
  .section3 .about-us .grid-container {
    gap: 0px 40px;
  }
  .section3 .about-us .grid-container .grid1 img {
    width: 100%;
    height: 100%;
  }
  .section3 .about-us .grid-container .grid1 .clipart1,
  .section3 .about-us .grid-container .grid1 .clipart2 {
    width: 80px;
    height: 80px;
    position: absolute;
  }
  .section3 .about-us .grid-container .grid1 .clipart1 {
    right: -40px;
    top: -40px;
    z-index: -1;
  }
  .section3 .about-us .grid-container .grid1 .clipart2 {
    left: -40px;
    bottom: -40px;
  }
  .section3 .about-us .grid-container .grid2 .about-us-title {
    gap: 16px;
  }
  .section3 .about-us .grid-container .grid2 .about-us-title .line {
    width: 150px;
  }
  .section3 .about-us .grid-container .grid2 .about-us-title h1 {
    font-size: 40px;
  }
  .section3 .about-us .grid-container .grid2 p {
    font-size: 12px;
    line-height: 20px;
  }
  .section4 {
    padding: 50px 0;
  }
  .section4 .best-sellers-section {
    padding: 0 16px;
  }
  .section4 .best-sellers-section .best-sellers-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 16px;
    width: 100%;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card {
    text-align: left;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-name {
    color: #1A3C34;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.2px;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-description {
    font-size: 14px;
    line-height: 20px;
  }
  .section6 .specifications .grid-specifications {
    gap: 0px 8px;
    max-width: 100%;
    padding: 64px 0;
  }
  .section6 .specifications .grid-specifications .item1,
  .section6 .specifications .grid-specifications .item2,
  .section6 .specifications .grid-specifications .item3 {
    display: block;
    text-align: left;
    padding: 0 24px;
    text-align: center;
  }
  .section6 .specifications .grid-specifications .item1 img,
  .section6 .specifications .grid-specifications .item2 img,
  .section6 .specifications .grid-specifications .item3 img {
    width: 48px;
  }
  .section6 .specifications .grid-specifications .item1 h2,
  .section6 .specifications .grid-specifications .item2 h2,
  .section6 .specifications .grid-specifications .item3 h2 {
    font-size: 24px;
    line-height: 40px;
    margin: 0;
  }
  .section6 .specifications .grid-specifications .item1 p,
  .section6 .specifications .grid-specifications .item2 p,
  .section6 .specifications .grid-specifications .item3 p {
    font-size: 14px;
    line-height: 20px;
    margin: 8px 0;
    font-weight: 200;
  }
  .section7 {
    padding: 50px 0;
  }
  .section7 .faq {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .section8 {
    padding: 100px 16px;
    max-width: 100%;
  }
  .section8 .instagram-grid .insta-container-grid {
    gap: 16px;
    height: 450px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .section1 .cookieConsent {
    max-width: 1200px;
    width: 90%;
    background-color: #006e63;
    position: absolute;
    bottom: 22.5%;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 999;
  }
  .section1 .cookieConsent .cookie-flex {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
    gap: 40px;
  }
  .section1 .cookieConsent .cookie-flex.show {
    display: flex;
  }
  .section1 .cookieConsent .fade-out {
    animation: fadeOut 0.2s ease-out forwards;
  }
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  .section1 .cookieConsent p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 200;
    line-height: 20px;
  }
  .section1 .cookieConsent a {
    color: #F8DF8D;
    font-weight: 400;
    text-decoration: none;
  }
  .section1 .cookieConsent button {
    height: 40px;
    line-height: 8px;
    font-size: 12px;
    transform: none;
  }
  .section4 .best-sellers-section {
    padding: 0 16px;
  }
  .section4 .best-sellers-section .best-sellers-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    width: 100%;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-image {
    height: 300px;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-name {
    color: #1A3C34;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.2px;
  }
  .section4 .best-sellers-section .best-sellers-grid .product-card .product-description {
    font-size: 14px;
    line-height: 20px;
  }
  .section6 .specifications .grid-specifications {
    gap: 0px 8px;
    max-width: 100%;
    padding: 64px 0;
  }
  .section6 .specifications .grid-specifications .item1,
  .section6 .specifications .grid-specifications .item2,
  .section6 .specifications .grid-specifications .item3 {
    display: block;
    text-align: left;
    padding: 0 24px;
    text-align: center;
  }
  .section6 .specifications .grid-specifications .item1 img,
  .section6 .specifications .grid-specifications .item2 img,
  .section6 .specifications .grid-specifications .item3 img {
    width: 48px;
  }
  .section6 .specifications .grid-specifications .item1 h2,
  .section6 .specifications .grid-specifications .item2 h2,
  .section6 .specifications .grid-specifications .item3 h2 {
    font-size: 24px;
    line-height: 40px;
    margin: 0;
  }
  .section6 .specifications .grid-specifications .item1 p,
  .section6 .specifications .grid-specifications .item2 p,
  .section6 .specifications .grid-specifications .item3 p {
    font-size: 14px;
    line-height: 20px;
    margin: 8px 0;
    font-weight: 200;
  }
  .section7 {
    padding: 100px 0;
  }
  .section7 .faq {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
    gap: 0px 100px;
    padding: 0 40px;
  }
  .section7 .faq p {
    font-size: 16px;
    line-height: 24px;
  }
  .section7 .faq .faq-item {
    border: 0.75px rgba(26, 60, 52, 0.5);
    border-style: none none solid none;
    padding: 4px 0;
  }
  .section7 .faq .faq-item .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  .section7 .faq .faq-item .faq-question h4 {
    font-size: 16px;
    letter-spacing: 0.75px;
  }
  .section7 .faq .faq-item .faq-question button {
    padding: 0;
    line-height: 0;
    background: transparent;
    border: 0;
  }
  .section7 .faq .faq-item .faq-question .icon {
    width: 32px;
    transition: transform 0.3s ease-in-out;
  }
  .section7 .faq .faq-item .faq-question .rotate {
    transform: rotate(180deg);
  }
  .section7 .faq .faq-item .faq-answer {
    display: none;
    transition: max-height 0.3s ease-out;
  }
  .section7 .faq .faq-contact {
    margin-top: 64px;
  }
  .section8 {
    padding: 100px 16px;
    max-width: 1140px;
  }
  .section8 .instagram-grid .insta-container-grid {
    gap: 16px;
    height: 450px;
  }
}
@font-face {
  font-family: "Rossanova";
  src: url("../fonts/Rossanova-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  margin: 0;
  padding: 0;
  -ms-overflow-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body .container {
  padding: 120px 0px;
  margin: 0 auto;
  max-width: 1720px;
}

@media (max-width: 767px) {
  body .container {
    padding: 50px 16px;
    margin: 0 auto;
    max-width: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  body .container {
    padding: 80px 16px;
    margin: 0 auto;
    max-width: none;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  body .container {
    padding: 80px 40px;
    margin: 0 auto;
    max-width: none;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  body .container {
    padding: 120px 80px;
    margin: 0 auto;
    max-width: none;
  }
}
::-webkit-scrollbar {
  display: none;
}

html {
  scrollbar-width: none;
}/*# sourceMappingURL=main.css.map */