@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
.gap-6 {
  gap: 6px !important;
}

.gap-8 {
  gap: 8px !important;
}

.gap-12 {
  gap: 12px !important;
}

.gap-16 {
  gap: 16px !important;
}

.gap-20 {
  gap: 20px !important;
}

.gap-24 {
  gap: 24px !important;
}

.gap-32 {
  gap: 32px !important;
}

.gap-64 {
  gap: 64px !important;
}

.gap-80 {
  gap: 80px !important;
}

.br-4 {
  border-radius: 4px !important;
}

.br-5 {
  border-radius: 5px !important;
}

.br-8 {
  border-radius: 8px !important;
}

.br-12 {
  border-radius: 12px !important;
}

.br-16 {
  border-radius: 16px !important;
}

.br-24 {
  border-radius: 24px !important;
}

.br-32 {
  border-radius: 32px !important;
}

.br-64 {
  border-radius: 64px !important;
}

.text-black-900 {
  color: #031612;
}

.bg-black-900 {
  background-color: #031612;
}

.text-black-800 {
  color: #01150f;
}

.bg-black-800 {
  background-color: #01150f;
}

.text-black-100 {
  color: #102b26;
}

.bg-black-100 {
  background-color: #102b26;
}

.text-red {
  color: #c31818;
}

.bg-red {
  background-color: #c31818;
}

.text-red-dark {
  color: #d50000;
}

.bg-red-dark {
  background-color: #d50000;
}

.text-gray {
  color: #EAEAEA;
}

.bg-gray {
  background-color: #EAEAEA;
}

.text-gray-700 {
  color: #7b7b7b;
}

.bg-gray-700 {
  background-color: #7b7b7b;
}

.text-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.text-light-yellow {
  color: #f8f5f0;
}

.bg-light-yellow {
  background-color: #f8f5f0;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}

.paddingTop {
  padding-top: 52px !important;
}
@media (max-width: 992px) {
  .paddingTop {
    padding-top: 38px !important;
  }
}

.paddingBottom {
  padding-bottom: 52px !important;
}
@media (max-width: 992px) {
  .paddingBottom {
    padding-bottom: 38px !important;
  }
}

.fs-18 {
  font-size: 18px;
}

.fs-16 {
  font-size: 16px;
}

.fs-15 {
  font-size: 15px;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.main_heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}

.base_text_regular {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}

.base_text_bold {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

.base_text_medium {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

.section_main_title {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section_main_title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Crimson Text", serif;
}

.product-badge {
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  text-transform: uppercase;
}

.product-badge--sale {
  background-color: #d50000;
  color: #fff;
}

.product-badge--winter {
  background: #047df7 !important;
  color: #fff;
}

.product-badge--best {
  background: #030303;
  color: #fff;
}

.btnwrap {
  height: 48px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media (max-width: 380px) {
  .btnwrap {
    font-size: 13px !important;
    gap: 4px;
  }
}
.btnwrap .icon svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 380px) {
  .btnwrap .icon svg {
    width: 14px;
    height: 14px;
  }
}

.btn-sm {
  height: 36px !important;
}

.btn-primary-outline {
  font-weight: 300;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.btn-primary-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;
  width: 130%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
  transform: translate3d(-100%, 0, 0) skew(30deg);
  transition: transform 500ms cubic-bezier(0.33, 0, 0, 1);
}
.btn-primary-outline:hover:not([disabled]), .btn-primary-outline:focus:not([disabled]) {
  color: #fff;
  border-color: #fff;
  z-index: 1;
}
.btn-primary-outline:hover:not([disabled])::before, .btn-primary-outline:focus:not([disabled])::before {
  transform: translate3d(0, 0, 0) skew(30deg);
}

.btn-primary-outline--black {
  font-weight: 300;
  border: 1px solid #000;
  background-color: transparent;
  color: #000;
  border-radius: 0;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
  position: relative;
  text-transform: uppercase;
}
.btn-primary-outline--black::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;
  width: 130%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
  transform: translate3d(-100%, 0, 0) skew(30deg);
  transition: transform 500ms cubic-bezier(0.33, 0, 0, 1);
}
.btn-primary-outline--black:hover:not([disabled]), .btn-primary-outline--black:focus:not([disabled]) {
  color: #000;
  border-color: rgb(0, 0, 0);
  z-index: 1;
}
.btn-primary-outline--black:hover:not([disabled])::before, .btn-primary-outline--black:focus:not([disabled])::before {
  transform: translate3d(0, 0, 0) skew(30deg);
}

.product_card_container {
  position: relative;
  padding: 20px;
  border: 1px solid #fff;
}
.product_card_container:hover {
  border: 1px solid #030303;
}
.product_card_container:hover .front-image {
  opacity: 0;
  pointer-events: none;
}
.product_card_container:hover .back-image {
  opacity: 1;
}
.product_card_container:hover .back-image img {
  transform: scale(1.02);
}
.product_card_container .image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2/2;
  overflow: hidden;
}
.product_card_container .front-image,
.product_card_container .back-image {
  position: absolute;
  inset: 0;
  transition: opacity 0.4s ease;
}
.product_card_container .front-image {
  opacity: 1;
  z-index: 2;
}
.product_card_container .back-image {
  opacity: 0;
  z-index: 1;
}
.product_card_container .front-image img,
.product_card_container .back-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
  will-change: transform;
}
.product_card_container .tag_container {
  position: absolute;
  top: 16px;
  left: 14px;
  right: 14px;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.product_card_container .tag_container .product-badges {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product_card_container .tag_container .wishlist_btn svg {
  width: 20px;
}
.product_card_container .product_content_info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.product_card_container .product_content_info .product_title {
  letter-spacing: 0.002em;
}
.product_card_container .product_content_info .product_info {
  letter-spacing: 0.002em;
}
.product_card_container .product_content_info .product_price_info .old_price {
  text-decoration: line-through;
  opacity: 0.65;
  color: #102b26;
}
.product_card_container .product_content_info .product_price_info .new_price {
  color: #c31818;
}
.product_card_container .product_content_info .product_ml_info {
  gap: 5px;
  margin-top: 8px;
}
.product_card_container .product_content_info .product_ml_info .swatch_option {
  padding: 5px 6px;
  font-size: 12px;
  cursor: pointer;
}
.product_card_container .product_content_info .product_ml_info .swatch_option.selected {
  background-color: #111;
  color: #fff;
}

.product_card_container--recent {
  position: relative;
  padding: 20px;
  border: 1px solid #fff;
}
.product_card_container--recent:hover {
  border: 1px solid #030303;
}
.product_card_container--recent .image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2/2;
  overflow: hidden;
}
.product_card_container--recent .front-image {
  position: relative;
  inset: 0;
  transition: opacity 0.4s ease;
}
.product_card_container--recent .front-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
  will-change: transform;
}
.product_card_container--recent .tag_container {
  position: absolute;
  top: 16px;
  left: 14px;
  right: 14px;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.product_card_container--recent .tag_container .product-badges {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product_card_container--recent .tag_container .wishlist_btn svg {
  width: 20px;
}
.product_card_container--recent .product_content_info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.product_card_container--recent .product_content_info .product_title {
  letter-spacing: 0.002em;
}
.product_card_container--recent .product_content_info .product_info {
  letter-spacing: 0.002em;
}
.product_card_container--recent .product_content_info .product_price_info .old_price {
  text-decoration: line-through;
  opacity: 0.65;
  color: #102b26;
}
.product_card_container--recent .product_content_info .product_price_info .new_price {
  color: #c31818;
}
.product_card_container--recent .product_content_info .product_ml_info {
  gap: 5px;
  margin-top: 8px;
}
.product_card_container--recent .product_content_info .product_ml_info .swatch_option {
  padding: 5px 6px;
  font-size: 12px;
  cursor: pointer;
}
.product_card_container--recent .product_content_info .product_ml_info .swatch_option.selected {
  background-color: #111;
  color: #fff;
}

.sale_text_wrapper {
  padding: 10px 0;
}
.sale_text_wrapper .announcement_bar {
  position: relative;
}
.sale_text_wrapper .announcement_bar .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 0 20px;
  text-align: center;
}
.sale_text_wrapper .announcement_bar .swiper-wrapper .swiper-slide a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.sale_text_wrapper .announcement_bar .swiper-wrapper .swiper-slide a:hover {
  text-decoration: underline;
}
.sale_text_wrapper .announcement_bar .custom-prev,
.sale_text_wrapper .announcement_bar .custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  opacity: 0.5;
}
.sale_text_wrapper .announcement_bar .custom-prev:hover,
.sale_text_wrapper .announcement_bar .custom-next:hover {
  opacity: 1;
}
.sale_text_wrapper .announcement_bar .custom-prev {
  left: 0;
}
.sale_text_wrapper .announcement_bar .custom-next {
  right: 0;
}
.sale_text_wrapper .announcement_bar .swiper_icon {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_header {
  background-color: #fff;
}
@media (max-width: 992px) {
  .main_header {
    padding: 14px 0;
  }
}
.main_header.sticky-header-lg {
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (max-width: 992px) {
  .main_header.sticky-header-lg {
    display: none;
  }
}
@media (max-width: 992px) {
  .main_header.sticky-header-sm {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}
.main_header .logo_wrapper {
  flex-grow: 1;
}
.main_header .logo_wrapper .logo_wrap .logo_img {
  height: 45px;
  width: auto;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 576px) {
  .main_header .logo_wrapper .logo_wrap .logo_img {
    height: 30px;
  }
}
.main_header .main_header_top {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 20px 0;
}
@media (max-width: 992px) {
  .main_header .main_header_top {
    padding: 6px 0;
  }
}
.main_header .main_header_top .left_content {
  display: none;
  gap: 8px;
  align-items: center;
}
@media (max-width: 992px) {
  .main_header .main_header_top .left_content {
    display: flex;
  }
}
.main_header .main_header_top .left_content .menu_icon svg {
  width: 24px;
  height: 24px;
  color: #031612;
}
.main_header .main_header_top .left_content .search_icon svg {
  width: 24px;
  height: 24px;
  color: #031612;
}
.main_header .main_header_top .right_content {
  display: none;
  gap: 8px;
  align-items: center;
}
@media (max-width: 992px) {
  .main_header .main_header_top .right_content {
    display: flex;
  }
}
.main_header .main_header_top .right_content .account_icon a {
  display: flex;
  color: #031612;
}
.main_header .main_header_top .right_content .account_icon a svg {
  width: 24px;
  height: 24px;
}
.main_header .main_header_top .right_content .cart_icon a {
  display: flex;
  position: relative;
  color: #031612;
}
.main_header .main_header_top .right_content .cart_icon a svg {
  width: 24px;
  height: 24px;
}
.main_header .main_header_top .right_content .cart_icon a .cart_count {
  position: absolute;
  background-color: #031612;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0px;
  bottom: -3px;
  border: 1px solid #fff;
  flex-shrink: 0;
}
.main_header .main_header_btm {
  padding: 20px 0;
}
@media (max-width: 992px) {
  .main_header .main_header_btm {
    display: none;
  }
}
.main_header .main_header_btm .search_container {
  position: relative;
  width: 100%;
}
.main_header .main_header_btm .search_container input {
  border: 1px solid #000;
  height: 48px;
  width: 100%;
  padding: 10px 10px 10px 36px;
}
.main_header .main_header_btm .search_container input:focus {
  border: 1px solid #000;
  box-shadow: none;
  outline: none;
}
.main_header .main_header_btm .search_container .icon {
  position: absolute;
  left: 10px;
  top: 10px;
}
.main_header .main_header_btm .search_container .icon svg {
  width: 18px;
  height: 18px;
  color: #000;
}
.main_header .main_header_btm .nav_menu_wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.main_header .main_header_btm .nav_menu_wrapper .menu-list .dropdown-toggle {
  background-color: #fff;
  padding: 0;
  border-radius: 0;
  color: #031612;
  border: 0;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.main_header .main_header_btm .nav_menu_wrapper .menu-list .dropdown-toggle::after {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m7 10l5 5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  margin-left: 0px;
}
.main_header .main_header_btm .nav_menu_wrapper .menu-list .menu-link {
  text-decoration: none;
  color: #031612;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.main_header .main_header_btm .nav_menu_wrapper .menu-list .menu-link:hover {
  text-decoration: underline;
}
.main_header .main_header_btm .menu_icons_wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}
.main_header .main_header_btm .menu_icons_wrapper .account_icon a {
  display: flex;
  color: #031612;
}
.main_header .main_header_btm .menu_icons_wrapper .account_icon a svg {
  width: 24px;
  height: 24px;
}
.main_header .main_header_btm .menu_icons_wrapper .cart_icon a {
  display: flex;
  position: relative;
  color: #031612;
}
.main_header .main_header_btm .menu_icons_wrapper .cart_icon a svg {
  width: 24px;
  height: 24px;
}
.main_header .main_header_btm .menu_icons_wrapper .cart_icon a .cart_count {
  position: absolute;
  background-color: #031612;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0px;
  bottom: -3px;
  border: 1px solid #fff;
  flex-shrink: 0;
}
.main_header .main_header_btm .menu_icons_wrapper .wishlist_icon a {
  display: flex;
  color: #031612;
}
.main_header .main_header_btm .menu_icons_wrapper .wishlist_icon a svg {
  width: 20px;
  height: 20px;
}

footer {
  background-color: #030303;
}
footer .footer_container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 992px) {
  footer .footer_container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  footer .footer_container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
footer .footer_container .footer-content .footer-link img {
  max-width: 200px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .footer_container .footer-content .footer_header {
  margin-bottom: 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
footer .footer_container .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .footer_container .footer-links li a {
  color: rgba(255, 255, 255, 0.7019607843);
  font-size: 15px;
  text-decoration: none;
}
footer .footer_container .footer-links li a:hover {
  text-decoration: underline;
}
footer .footer_container .footer_subscribe_content {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
footer .footer_container .footer__newsletter-inner {
  position: relative;
}
footer .footer_container .footer__newsletter-inner .input {
  padding: 16px 0;
  background-color: #030303;
  outline: 0;
  border: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
footer .footer_container .footer__newsletter-inner .footer__newsletter-button {
  position: absolute;
  right: 0;
  border: 0;
  text-transform: uppercase;
  font-size: 12px;
  background-color: #030303;
  color: rgba(255, 255, 255, 0.7019607843);
  top: 20px;
}
footer .footer_container .social-icons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
footer .footer_container .social-icons li a .icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
footer .footer_bottom_content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
@media (max-width: 992px) {
  footer .footer_bottom_content {
    flex-direction: column;
    align-items: start;
  }
}
footer .footer_bottom_content .left-content .footer__credits p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7019607843);
  margin-bottom: 0;
}
footer .footer_bottom_content .left-content .footer__credits p a {
  color: rgba(255, 255, 255, 0.7019607843);
  text-decoration: none;
}
footer .footer_bottom_content .right-content .payment-icons {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
}
.hero_banner .hero-swiper {
  position: relative;
  height: min(65vh, 650px);
}
@media (max-width: 768px) {
  .hero_banner .hero-swiper {
    height: 100%;
  }
}
.hero_banner .hero-swiper .swiper-wrapper {
  height: 100%;
}
.hero_banner .hero-swiper .swiper-wrapper .swiper-slide {
  height: 100%;
}
.hero_banner .hero-swiper .swiper-wrapper .swiper-slide .hero-slide-contents {
  position: relative;
  height: 100%;
}
.hero_banner .hero-swiper .swiper-wrapper .swiper-slide .hero-slide-contents .image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero_banner .hero-swiper .swiper-wrapper .swiper-slide .hero-slide-contents .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero_banner .hero-swiper .swiper-wrapper .swiper-slide .hero-slide-contents .overlay_container {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.hero_banner .hero-swiper .swiper-wrapper .swiper-slide .hero-slide-contents .content-wrapper {
  position: relative;
  z-index: 3;
  height: 100%;
  color: #fff;
  padding-bottom: 100px;
}
.hero_banner .hero-swiper .swiper-wrapper .swiper-slide .hero-slide-contents .content-wrapper .title-wrapper {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero_banner .navigation-wrapper {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2px;
}
.hero_banner .swiper-button-prevs,
.hero_banner .swiper-button-nexts {
  position: static;
  margin: 0;
  color: #fff;
}
.hero_banner .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
}
.hero_banner .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: transparent;
  opacity: 1;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero_banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  display: none;
}
.hero_banner .swiper-pagination-bullet::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0.4;
}
.hero_banner .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) .ring-bg {
  display: none;
}
.hero_banner .swiper-pagination-bullet svg {
  transform: rotate(-90deg);
}
.hero_banner .ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 4;
}
.hero_banner .ring-progress {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.hero_banner .swiper-pagination-bullet-active .ring-progress {
  animation: ring-progress 5s linear forwards;
}
@keyframes ring-progress {
  to {
    stroke-dashoffset: 0;
  }
}

.about_section .about_content-wrapper .text-content {
  max-width: 750px;
}
.about_section .about_content-wrapper .text-content .section_subtext {
  font-size: 15px;
}
.about_section .about_content-wrapper .about_imagewrapper {
  max-width: 450px;
  margin: auto;
}
.about_section .about_content-wrapper .about_imagewrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.catergory_type_section .category_grid_wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
@media (max-width: 768px) {
  .catergory_type_section .category_grid_wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.catergory_type_section .category_grid_wrapper .category_card .image_wrapper {
  display: flex;
}
.catergory_type_section .category_grid_wrapper .category_card .image_wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.catergory_type_section .category_grid_wrapper .category_card .category_content .category_title {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .catergory_type_section .category_grid_wrapper .category_card .category_content .category_title {
    font-size: 18px;
  }
}

.discovery_set_section .heading-wrapper .left-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.discovery_set_section .heading-wrapper .left-content .viewall-btn {
  font-size: 15px;
  font-weight: 300;
}
.discovery_set_section .heading-wrapper .right-content {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 768px) {
  .discovery_set_section .heading-wrapper .right-content {
    display: none;
  }
}
.discovery_set_section .heading-wrapper .right-content .prev-btn {
  cursor: pointer;
  transition: opacity 0.3s ease;
  transform: rotate(180deg);
}
.discovery_set_section .heading-wrapper .right-content .prev-btn.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.discovery_set_section .heading-wrapper .right-content .prev-btn .icon-wrapper svg {
  width: 34px;
  height: 34px;
}
.discovery_set_section .heading-wrapper .right-content .next-btn {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.discovery_set_section .heading-wrapper .right-content .next-btn.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.discovery_set_section .heading-wrapper .right-content .next-btn .icon-wrapper svg {
  width: 34px;
  height: 34px;
}

.collection_section .heading-wrapper .left-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.collection_section .heading-wrapper .left-content .slider_tab-container .nav {
  gap: 14px;
}
.collection_section .heading-wrapper .left-content .slider_tab-container .nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 16px;
  color: #102b26;
  opacity: 0.7;
  padding: 4px 2px;
}
.collection_section .heading-wrapper .left-content .slider_tab-container .nav .nav-item .nav-link h4 {
  font-size: 16px;
  margin-bottom: 0;
}
.collection_section .heading-wrapper .left-content .slider_tab-container .nav .nav-item .nav-link.active {
  padding: 4px 2px;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 2px solid #102b26;
  opacity: 1;
}
.collection_section .heading-wrapper .right-content .tab-arrows {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 768px) {
  .collection_section .heading-wrapper .right-content {
    display: none;
  }
}
.collection_section .heading-wrapper .right-content .collection_prev-btn {
  cursor: pointer;
  transition: opacity 0.3s ease;
  transform: rotate(180deg);
}
.collection_section .heading-wrapper .right-content .collection_prev-btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.collection_section .heading-wrapper .right-content .collection_prev-btn .icon-wrapper svg {
  width: 34px;
  height: 34px;
}
.collection_section .heading-wrapper .right-content .collection_next-btn {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.collection_section .heading-wrapper .right-content .collection_next-btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.collection_section .heading-wrapper .right-content .collection_next-btn .icon-wrapper svg {
  width: 34px;
  height: 34px;
}

.sale_set_section .heading-wrapper .left-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sale_set_section .heading-wrapper .left-content .viewall-btn {
  font-size: 15px;
  font-weight: 300;
}
.sale_set_section .heading-wrapper .right-content {
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (max-width: 768px) {
  .sale_set_section .heading-wrapper .right-content {
    display: none;
  }
}
.sale_set_section .heading-wrapper .right-content .saleprev-btn {
  cursor: pointer;
  transition: opacity 0.3s ease;
  transform: rotate(180deg);
}
.sale_set_section .heading-wrapper .right-content .saleprev-btn.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.sale_set_section .heading-wrapper .right-content .saleprev-btn .icon-wrapper svg {
  width: 34px;
  height: 34px;
}
.sale_set_section .heading-wrapper .right-content .salenext-btn {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.sale_set_section .heading-wrapper .right-content .salenext-btn.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.sale_set_section .heading-wrapper .right-content .salenext-btn .icon-wrapper svg {
  width: 34px;
  height: 34px;
}

.recent_products .recentProduct_slider_container .swiper-pagination {
  position: relative;
  display: none;
  bottom: 0px;
}
@media (max-width: 768px) {
  .recent_products .recentProduct_slider_container .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.recent_products .recentProduct_slider_container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.recent_products .recentProduct_slider_container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #666;
}
.recent_products .recentProduct_slider_container .swiper-button-next,
.recent_products .recentProduct_slider_container .swiper-button-prev {
  color: #666;
  width: 36px;
  height: 36px;
}
@media (max-width: 768px) {
  .recent_products .recentProduct_slider_container .swiper-button-next,
  .recent_products .recentProduct_slider_container .swiper-button-prev {
    display: none;
  }
}

.hero-content-wrapper {
  position: relative;
}
.hero-content-wrapper .hero-image-link {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-content-wrapper .hero-image-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-content-wrapper .hero-image-link .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.hero-content-wrapper .text-container {
  display: flex;
  justify-content: end;
  text-align: end;
}
@media (max-width: 576px) {
  .hero-content-wrapper .text-container {
    text-align: start;
  }
}
.hero-content-wrapper .text-content {
  position: relative;
  padding: 140px 0;
  max-width: 520px;
  color: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 14px;
}
@media (max-width: 576px) {
  .hero-content-wrapper .text-content {
    padding: 90px 0;
    align-items: flex-start;
  }
}
.hero-content-wrapper .text-content .subtitle {
  letter-spacing: 1px;
}
.hero-content-wrapper .text-content h3 {
  font-size: 36px;
}

.testimonial_section .header-title .title-wrappper {
  font-size: 22.5px;
  color: #102b26;
}
.testimonial_section .testimonial_slider_container .testimonialslider {
  padding: 10px;
  height: 100%;
}
.testimonial_section .testimonial_slider_container .testimonialslider .swiper-wrapper .swiper-slide {
  height: auto;
}
.testimonial_section .testimonial_slider_container .testimonialslider .swiper-wrapper .swiper-slide .testimonial_slider_card {
  background-color: white;
  box-shadow: 0px 0px 12.8px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
  overflow: hidden;
  padding: 20px;
  height: 100%;
}
.testimonial_section .testimonial_slider_container .testimonialslider .swiper-wrapper .swiper-slide .testimonial_slider_card .img-wrapper {
  aspect-ratio: 2/2;
  width: 100%;
  flex-shrink: 0;
}
.testimonial_section .testimonial_slider_container .testimonialslider .swiper-wrapper .swiper-slide .testimonial_slider_card .img-wrapper img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial_section .testimonial_slider_container .testimonialslider .swiper-wrapper .swiper-slide .testimonial_slider_card .testimonial_content {
  flex-grow: 1;
}
.testimonial_section .testimonial_slider_container .testimonialslider .swiper-wrapper .swiper-slide .testimonial_slider_card .testimonial_content .testimonial_review-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.testimonial_section .testimonial_slider_container .testimonialslider .swiper-wrapper .swiper-slide .testimonial_slider_card .testimonial_content .testimonial_review-wrapper .rating {
  list-style: none;
  padding: 0;
  margin: 0;
}
.testimonial_section .testimonial_slider_container .testimonialslider .swiper-wrapper .swiper-slide .testimonial_slider_card .testimonial_content .testimonial_review-wrapper .rating li {
  width: 20px;
  height: 20px;
}
.testimonial_section .testimonial_slider_container .testimonialslider .swiper-wrapper .swiper-slide .testimonial_slider_card .testimonial_content .testimonial_review-wrapper .rating li.filled svg {
  color: #f7c053;
}
.testimonial_section .testimonial_slider_container .testimonialslider .swiper-wrapper .swiper-slide .testimonial_slider_card .testimonial_content .testimonial_review-wrapper .review-content .review-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial_section .testimonial_slider_container .navigation-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  margin-top: 18px;
}
.testimonial_section .testimonial_slider_container .navigation-wrap .testimonial-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.testimonial_section .testimonial_slider_container .navigation-wrap .testimonial-nav-btn svg {
  width: 48px;
  height: 48px;
  color: #030303;
  cursor: pointer;
}
.testimonial_section .testimonial_slider_container .navigation-wrap .testimonial-nav-btn svg:hover {
  opacity: 0.6;
}

.product_bannerInfo--container .product_bannerInfo-wrap {
  background-color: #000;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .product_bannerInfo--container .product_bannerInfo-wrap {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.product_bannerInfo--container .product_bannerInfo-wrap .image-container img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.product_bannerInfo--container .product_bannerInfo-wrap .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 56px 46px 80px;
  gap: 32px;
}
@media (max-width: 768px) {
  .product_bannerInfo--container .product_bannerInfo-wrap .content-wrapper {
    padding: 42px 24px;
  }
}
.product_bannerInfo--container .product_bannerInfo-wrap .content-wrapper .logo img {
  max-width: 220px;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product_bannerInfo--container .product_bannerInfo-wrap .content-wrapper .info-text {
  font-size: 18px;
}
.multi_column_info--container .column-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .multi_column_info--container .column-grid-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.multi_column_info--container .column-grid-wrapper .grid-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.multi_column_info--container .column-grid-wrapper .grid-card .img-wrapper svg {
  width: 50px;
  height: 50px;
  color: #102b26;
}

.image_feed_container .main-title {
  font-size: 22px;
  margin-bottom: 24px;
}
.image_feed_container .image-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 3px;
}
@media (max-width: 992px) {
  .image_feed_container .image-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .image_feed_container .image-grid .insta_card-link:nth-child(n+9) {
    display: none;
  }
}
@media (max-width: 768px) {
  .image_feed_container .image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .image_feed_container .image-grid .insta_card-link:nth-child(n+7) {
    display: none;
  }
}
@media (max-width: 576px) {
  .image_feed_container .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .image_feed_container .image-grid .insta_card-link:nth-child(n+5) {
    display: none;
  }
}
.image_feed_container .image-grid .insta_card-link {
  position: relative;
  display: flex;
}
.image_feed_container .image-grid .insta_card-link img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.image_feed_container .image-grid .insta_card-link .overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
}
.image_feed_container .image-grid .insta_card-link .overlay .instafeed-hover-layer {
  position: relative;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.image_feed_container .image-grid .insta_card-link .overlay .instafeed-hover-layer:hover {
  opacity: 1;
}
.image_feed_container .image-grid .insta_card-link .overlay .instafeed-hover-layer .hover-icon {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  display: flex;
  align-items: center;
  z-index: 1000;
}
.image_feed_container .image-grid .insta_card-link .overlay .instafeed-hover-layer .hover-icon svg {
  width: 26px;
  height: 26px;
}

.blog_container .blog-posts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .blog_container .blog-posts__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.blog_container .blog-posts__grid .article-item {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
}
@media (max-width: 1200px) {
  .blog_container .blog-posts__grid .article-item {
    display: block;
  }
}
.blog_container .blog-posts__grid .article-item:hover .article-imgwrapper img {
  transform: scale(1.1);
}
.blog_container .blog-posts__grid .article-item .article-imgwrapper {
  grid-column: 1/16;
  grid-row: 1;
  overflow: hidden;
}
.blog_container .blog-posts__grid .article-item .article-imgwrapper .img-wrap {
  overflow: hidden;
}
.blog_container .blog-posts__grid .article-item .article-imgwrapper .img-wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  transition: transform 0.6s ease-in-out;
}
.blog_container .blog-posts__grid .article-item .article-item__content {
  grid-column: 11/25;
  grid-row: 1;
  margin-top: 28px;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .blog_container .blog-posts__grid .article-item .article-item__content {
    margin-top: -40px;
    padding: 0 12px;
  }
}
.blog_container .blog-posts__grid .article-item .article-item__content .article-item__content-inner {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .blog_container .blog-posts__grid .article-item .article-item__content .article-item__content-inner {
    padding: 18px;
  }
}
.blog_container .blog-posts__grid .article-item .article-item__content .article-item__content-inner .article-item__excerpt p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}/*# sourceMappingURL=main.css.map */