@font-face {
  font-family: "Aoboshi One";
  src: url(../fonts/AoboshiOne-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
:root {
  --primary-color: #CC0D39;
  --secondary-color: #F7941F;
  --secondary-light-color: #FEEB9D;
  --primary-dark-color: #13172B;
  --white-color: #ffffff;
  --text-color: #5E626F;
  --light-gray: #AEB0B6;
  --main-bg: #FFFAF3;
  --gray-bg: #F9F3F0;
  --heading-font: "Aoboshi One", sans-serif;
  --body-font: "DM Sans", sans-serif;
}
body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;
  color: var(--text-color);
  background-color: var(--main-bg);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 400;
  color: var(--primary-dark-color);
}
h2 {
  font-size: 36px;
  line-height: 54px;
}
h3 {
  font-size: 30px;
  line-height: 45px;
}
h4 {
  font-size: 24px;
  line-height: 36px;
}
h5 {
  font-size: 20px;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
}

.theme-btn.style-one {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  padding: 20px 40px;
  line-height: 16px;
  border-radius: 50px;
  background-color: var(--primary-dark-color);
  color: var(--white-color);
  border: none;
  transition: all 0.3s;
}
.theme-btn.style-one:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.header-area {
  background-color: var(--white-color);
}
.header-navigation {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.brand-logo img {
  width: 150px;
}
.small {
  color: var(--primary-dark-color);
}

.main-bg {
  background-color: var(--main-bg);
}

.product-gallery-area .product-big-slider .product-img img {
  border-radius: 20px;
  width: 100%;
}
.product-thumbnails-wrapper {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.product-thumbnails-wrapper .product-img {
  flex: 1;
  cursor: pointer;
}
.product-thumbnails-wrapper .product-img img {
  border-radius: 10px;
  width: 100%;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.product-thumbnails-wrapper .product-img.active img {
  border-color: var(--primary-color);
}

.shop-details-wrapper .product-info .title {
  font-size: 36px;
  font-family: var(--heading-font);
  color: var(--primary-dark-color);
  margin-bottom: 17px;
}
.ratings svg {
  margin-bottom: 23px;
}
.product-price {
  padding-top: 20px;
  border-top: 1px solid #E7E8EB;
  margin-bottom: 10px;
}
.product-price .prev-price {
  font-size: 20px;
  text-decoration: line-through;
  color: var(--text-color);
  font-family: var(--heading-font);
  margin-right: 10px;
}
.product-price .new-price {
  font-size: 30px;
  color: var(--primary-dark-color);
  font-family: var(--heading-font);
}
.product-price .currency {
  font-size: inherit;
}

.quantity-input {
  display: flex;
  align-items: center;
  max-width: 140px;
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  padding: 4px;
}
.quantity-input button {
  background: none;
  border: none;
  padding: 7px 14px;
  font-size: 18px;
  color: var(--primary-dark-color);
}
.quantity-input .quantity {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 20px;
  color: var(--primary-dark-color);
  background: transparent;
}
.quantity-input .quantity:focus {
  outline: none;
}

.product-cart-variation ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.additional-information-wrapper {
  margin-top: 50px;
}
.additional-info-box {
  border: 1px solid var(--secondary-light-color);
  border-radius: 10px;
  padding: 24px;
}
.additional-info-box h3 {
  margin-bottom: 40px;
}
.additional-info-box ul li {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-dark-color);
  margin-bottom: 17px;
}
.additional-info-box ul li span {
  float: right;
  font-weight: 400;
  color: var(--text-color);
}

.pesco-tabs .nav-tabs {
  border: none;
  margin-bottom: 30px;
}
.pesco-tabs .nav-link {
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 18px;
  color: var(--primary-dark-color);
  margin-right: 16px;
}
.pesco-tabs .nav-link.active {
  background-color: var(--primary-dark-color);
  color: var(--white-color);
  border-color: transparent;
}
.tab-content p {
  margin-bottom: 25px;
}

.features-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--white-color);
  border-radius: 20px;
  border: 1px dashed var(--light-gray);
  padding: 30px 30px 5px;
  row-gap: 16px;
}
.iconic-box-item {
  display: flex;
  max-width: 285px;
}
.iconic-box-item .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  flex-shrink: 0;
  background: var(--white-color);
}
.iconic-box-item .icon img {
  width: 30px;
}
.iconic-box-item .content h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-dark-color);
}
.iconic-box-item .content p {
  font-size: 14px;
  color: var(--primary-dark-color);
}
.features-wrapper .divider {
  display: flex;
  align-items: center;
}

.releted-product-slider .slick-slide {
  margin: 0 16px;
}
.product-item.style-one {
  text-align: center;
}
.product-item.style-one .product-thumbnail {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.product-item.style-one .product-thumbnail img {
  width: 100%;
}
.product-item.style-one .product-info h4 {
  font-size: 16px;
  color: var(--primary-dark-color);
  margin-bottom: 5px;
}
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.product-item.style-one .product-price .price {
  font-size: 16px;
  color: var(--primary-dark-color);
  font-family: var(--heading-font);
}
.releted-product-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-wrapper {
  background-color: var(--white-color);
  border-radius: 20px;
  padding: 55px 60px 60px;
  position: relative;
  overflow: hidden;
}
.contact-wrapper h3 {
  font-size: 40px;
  margin-bottom: 47px;
  color: var(--primary-dark-color);
}
.pesco-contact-form .form_control {
  width: 100%;
  border: 1px solid var(--light-gray);
  background: transparent;
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  color: var(--primary-dark-color);
}
.pesco-contact-form .form_control:focus {
  outline: none;
}
.shape.shape-one {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.footer-main {
  background-color: var(--gray-bg);
  padding-top: 80px;
}
.footer-widget .widget-title {
  margin-bottom: 35px;
  color: var(--primary-dark-color);
}
.footer-widget .widget-content p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-color);
}
.footer-widget .widget-menu li {
  margin-bottom: 10px;
}
.footer-widget .widget-menu li a {
  color: #5A5858;
  font-size: 18px;
}
.footer-widget .widget-menu li a:hover {
  color: var(--primary-color);
}
.footer-logo img {
  width: 150px;
  margin-bottom: 25px;
}
.copyright-area {
  padding: 40px 0;
  border-top: 1px solid var(--secondary-light-color);
  text-align: center;
}
.copyright-area p {
  font-size: 18px;
  color: var(--primary-dark-color);
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  border: none;
}

@media (max-width: 991px) {
  .features-wrapper {
    justify-content: center;
    gap: 20px;
  }
  .features-wrapper .divider {
    display: none;
  }
  .footer-main {
    padding-top: 75px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .contact-wrapper {
    padding: 35px 30px 40px;
  }
  .contact-wrapper h3 {
    font-size: 30px;
    margin-bottom: 27px;
  }
  .header-area .d-flex {
    flex-direction: column;
    row-gap: 6px;
    text-align: center;
  }
  .shop-details-section {
    padding-top: 50px !important;
  }
    .shop-details-section .row {
      row-gap: 20px;
    }
    .releted-product-slider {
      grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 575px) {
  .iconic-box-item {
    max-width: 100%;
  }
    .additional-info-box ul li {
      display: flex;
      flex-direction: column;
    }
}

.pt-80 {
  padding-top: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pt-75 {
  padding-top: 75px;
}
.pb-70 {
  padding-bottom: 70px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.gap-3 {
  gap: 1rem;
}

.slick-prev,
.slick-next {
  z-index: 10;
}
.slick-prev:before,
.slick-next:before {
  color: var(--primary-dark-color);
}
.header-area {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: var(--white-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.header-area.sticky-header-init {
  will-change: transform;
}

.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  background-color: var(--white-color);
  transform: translateY(0);
}

.header-area.sticky-hidden {
  transform: translateY(-100%);
}

.header-area.sticky-visible {
  transform: translateY(0);
}

.header-area.sticky+main,
.header-area.sticky~main {
  padding-top: 80px;
}

.header-navigation {
  transition: padding 0.3s ease;
}

.header-area.sticky .header-navigation {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 3px 10px rgb(0 0 0 / .4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}
.cookPopup_desc {
  font-size: 16px
}
#cookPopup.show {
  display: flex !important
}
.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 150px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
}
.thanks p.thanks-text {
  font-weight: 700;
}
.docs {
  word-break: break-word;
  padding: 80px 0;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--primary-color);
}
.docs a:hover {
  color: var(--primary-dark-color);
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 100px 0px 50px;
  }
}