@charset "UTF-8";
/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
/**
 * * Sass variables for Cosmetsy Child Theme
 * */
/**
 * * Breakpoint mixins for responsive design
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * *
 * * Available mixins:
 * * @include below-mobile    - 425px and below
 * * @include mobile-only     - 321px to 767px
 * * @include tablet-up       - 768px and up
 * * @include tablet-only     - 768px to 1199px
 * * @include desktop-up      - 1200px and up
 * * @include below-tablet    - 767px and below
 * * @include below-desktop   - 1199px and below
 * * @include breakpoint($min, $max) - Custom breakpoint
 * */
/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
.module-border--inner {
  display: none;
}

@media screen and (min-width: 1200px) {
  .no-pad {
    padding-right: 0;
    padding-left: 0;
  }
  .row.no-pad {
    margin-right: 0;
    margin-left: 0;
  }
  .row.no-pad > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
  }
}
/**
 * * DM Sans Variable Font Loading
 * */
@font-face {
  font-family: "DM Sans";
  src: url("/wp-content/themes/cosmetsy-child/dist/fonts/DMSans-Variable.ttf") format("truetype");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/wp-content/themes/cosmetsy-child/dist/fonts/DMSans-Italic-Variable.ttf") format("truetype");
  font-weight: 100 1000;
  font-style: italic;
  font-display: swap;
}
/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
/**
 * * Global styles for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
:root {
  --size-topbar-height: 38px;
  --size-header-height: 120px;
  --size-navigation-height: 50px;
  --size-mobile-header-height: 40px;
  --size-desktop-logo-height: 40px;
  --size-mobile-logo-height: 40px;
}

body {
  font-family: "DM Sans", sans-serif;
  margin: 0;
}

.csm-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .csm-container {
    max-width: 750px;
  }
}
@media screen and (min-width: 1200px) {
  .csm-container {
    max-width: 1410px;
  }
}

.container-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .container-wrapper {
    padding: 0 16px;
  }
}

.csm-row {
  margin-left: -15px;
  margin-right: -15px;
}

.csm-col {
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 767px) {
  .csm-hide-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .csm-hide-tablet {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .csm-hide-desktop {
    display: none !important;
  }
}

.csm-show-mobile-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .csm-show-mobile-only {
    display: block !important;
  }
}

.csm-show-tablet-only {
  display: none !important;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .csm-show-tablet-only {
    display: block !important;
  }
}

.csm-show-desktop-only {
  display: none !important;
}
@media screen and (min-width: 1200px) {
  .csm-show-desktop-only {
    display: block !important;
  }
}

@media screen and (max-width: 425px) {
  .col-xs-12 {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .col.col-xs-center,
  .col-xs-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
  }
}

ul {
  padding-left: 0;
  margin: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
.btn-secondary {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: transparent;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #674717;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: #FFF7EB;
  border-color: #B8924F;
  color: #674717;
}
.btn-secondary:active, .btn-secondary:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.btn-secondary:disabled, .btn-secondary.disabled {
  background: transparent;
  border-color: #C8C8C8;
  color: #FFFFFF;
  cursor: not-allowed;
}

.csm-product-grid-module-button {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 50px;
}
.btn:hover {
  background: #B8924F;
  border-color: #B8924F;
  color: #FFFFFF;
}
.btn:active, .btn:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.btn:disabled, .btn.disabled {
  background: #D0C7B8;
  border-color: #D0C7B8;
  color: #FFFFFF;
  cursor: not-allowed;
}

.field {
  margin-bottom: 24px;
}
.field .form__label {
  position: relative;
  display: block;
  color: #1A1814;
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}
.field .form__label::after {
  position: absolute;
  content: "*";
  color: #674717;
}
.field input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #D0C7B8;
  border-radius: 8px;
  background: #fff;
  color: #1A1814;
  font-size: 16px;
  box-sizing: border-box;
}
.field input:focus {
  border: 1px solid #D0A360;
  outline: none;
  box-shadow: none;
}

/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
/**
 * * Benefits Banner Component Styles
 * */
.benefits-banner {
  display: flex;
  gap: 0 24px;
  align-items: stretch;
  margin: 24px auto 0;
}
@media screen and (min-width: 1200px) {
  .benefits-banner {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
  }
}
@media screen and (max-width: 1199px) {
  .benefits-banner {
    flex-direction: column;
    gap: 32px;
  }
}
.benefits-banner__image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits-banner__image img {
  width: 792px;
  height: 388px;
  object-fit: cover;
  border-radius: 8px;
}
@media screen and (max-width: 1199px) {
  .benefits-banner__image img {
    width: 100%;
    max-width: 100%;
    height: 388px;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 425px) {
  .benefits-banner__image img {
    width: 100%;
    max-width: 288px;
    height: 288px;
    margin: 0 auto;
    display: block;
  }
}
.benefits-banner__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .benefits-banner__content {
    gap: 0;
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0 24px;
}
@media screen and (max-width: 767px) {
  .benefit-item {
    gap: 12px;
  }
}
.benefit-item__icon {
  flex: 0 0 68px;
}
.benefit-item__icon img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}
.benefit-item.benefit-item-2, .benefit-item.benefit-item-1 {
  padding: 16px 24px;
  align-items: center;
}
.benefit-item.benefit-item-2 .benefit-item__icon, .benefit-item.benefit-item-1 .benefit-item__icon {
  align-self: center;
}
.benefit-item.benefit-item-2 .benefit-item__icon img {
  width: 39px;
  height: 46px;
  margin: 0 auto;
  display: flex;
}
.benefit-item__text {
  flex: 1;
}
.benefit-item__title {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #1A1814;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .benefit-item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
  }
}
.benefit-item__description {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #1A1814;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .benefit-item__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
  }
}
.benefit-item.benefit-item--special .benefit-item__description {
  margin-bottom: 8px;
}
.benefit-item__button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.benefit-item__button:hover {
  background: #B8924F;
  border-color: #B8924F;
  color: #FFFFFF;
}
.benefit-item__button:active, .benefit-item__button:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.benefit-item__button:disabled, .benefit-item__button.disabled {
  background: #D0C7B8;
  border-color: #D0C7B8;
  color: #FFFFFF;
  cursor: not-allowed;
}
@media screen and (max-width: 767px) {
  .benefit-item__button {
    padding: 10px 20px;
    font-size: 13px;
  }
}
.benefit-item--special {
  background: #FFF7EB;
  padding: 20px 24px;
  margin-top: 16px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .benefit-item--special {
    padding: 21px 16px;
    border-radius: 8px;
  }
}
.benefit-item--special .benefit-item__title {
  color: #1A1814;
}
.benefit-item--special .benefit-item__description {
  color: #5A4A3A;
}
.elementor-widget-aspl-cosmetsy-benefits-banner .elementor-widget-container {
  padding: 0;
}
@media screen and (max-width: 1199px) {
  .elementor-widget-aspl-cosmetsy-benefits-banner .benefits-banner {
    padding: 0 16px;
  }
}

/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
/**
 * * ASPL Product Grid Component Styles
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
.aspl-product-grid-wrapper {
  margin: 24px 0;
}
.aspl-product-grid-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (min-width: 1200px) {
  .aspl-product-grid-wrapper .container {
    margin: 0 auto;
  }
}

.aspl-products {
  display: grid;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1199px) {
  .aspl-products {
    gap: 16px;
  }
}
.aspl-products li {
  width: 100%;
}

.aspl-product-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #D0C7B8;
  position: relative;
  grid-auto-rows: 1fr;
  width: 221px;
  height: 312px;
  box-sizing: border-box;
}
@media screen and (min-width: 1200px) {
  .aspl-product-card:hover {
    transform: translateY(-4px);
    border-color: #E5E5E5;
  }
  .aspl-product-card:hover .aspl-product-card__overlay {
    opacity: 1;
    visibility: visible;
  }
  .aspl-product-card:hover .aspl-product-badges {
    opacity: 0;
    visibility: hidden;
  }
  .aspl-product-card:hover .aspl-product-card__image img {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 1199px) {
  .aspl-product-card:hover {
    transform: translateY(-2px);
    border-color: #E5E5E5;
  }
  .aspl-product-card:hover .aspl-product-card__image img {
    transform: scale(1.02);
  }
}
.aspl-product-card__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 16px 0;
  box-sizing: border-box;
}
.aspl-product-card__image img {
  width: 189px;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: flex;
  margin: 0 auto;
}
.aspl-product-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.aspl-product-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px 16px;
  height: calc(100% - 176px);
  box-sizing: border-box;
}
@media screen and (max-width: 1199px) {
  .aspl-product-card__content {
    height: calc(100% - 176px - 48px);
  }
}
.aspl-product-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .aspl-product-card__overlay {
    display: none !important;
  }
}

.aspl-product-card__title {
  margin: 0 0 12px 0;
  font-family: "DM Sans", sans-serif;
  color: #1A1814;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
}
.aspl-product-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.aspl-product-card__title a:hover {
  color: #674717;
}

.aspl-product-card__price {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  color: #1A1814;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  display: flex;
  flex-direction: row-reverse;
  align-self: flex-start;
}
.aspl-product-card__price .woocommerce-Price-amount {
  font-weight: inherit;
}
.aspl-product-card__price .woocommerce-Price-currencySymbol {
  font-weight: inherit;
}
.aspl-product-card__price del {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #6D6860;
}
.aspl-product-card__price ins {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-decoration: none;
  color: #D84820;
  margin-right: 8px;
}

.aspl-product-badges {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s ease;
}

.aspl-product-badge {
  padding: 4px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
  min-width: 57px;
  text-align: center;
}
.aspl-product-badge--new {
  background: #2E7FB1;
  color: #FFFFFF;
}
.aspl-product-badge--sale {
  background: #D84820;
  color: #FFFFFF;
}

.aspl-product-card__bottom-action {
  padding: 0 16px 16px;
}
@media screen and (min-width: 1200px) {
  .aspl-product-card__bottom-action {
    display: none !important;
  }
}
.aspl-product-card__bottom-action .aspl-btn--add-to-cart {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.aspl-product-card__bottom-action .aspl-btn--add-to-cart:hover {
  background: #B8924F;
  border-color: #B8924F;
  color: #FFFFFF;
}
.aspl-product-card__bottom-action .aspl-btn--add-to-cart:active, .aspl-product-card__bottom-action .aspl-btn--add-to-cart:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.aspl-product-card__bottom-action .aspl-btn--add-to-cart:disabled, .aspl-product-card__bottom-action .aspl-btn--add-to-cart.disabled {
  background: #D0C7B8;
  border-color: #D0C7B8;
  color: #FFFFFF;
  cursor: not-allowed;
}

.aspl-product-overlay__content {
  text-align: left;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aspl-product-overlay__header {
  padding: 16px 16px 12px;
  display: flex;
  flex-direction: column;
}

.aspl-product-overlay__title {
  margin: 0 0 16px 0;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  color: #1A1814;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
}
@media screen and (min-width: 1200px) {
  .aspl-product-overlay__title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 12px;
  }
}
.aspl-product-overlay__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.aspl-product-overlay__price {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  color: #1A1814;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  display: flex;
  flex-direction: row-reverse;
  align-self: flex-start;
}
.aspl-product-overlay__price .woocommerce-Price-amount {
  font-weight: inherit;
}
.aspl-product-overlay__price .woocommerce-Price-currencySymbol {
  font-weight: inherit;
}
.aspl-product-overlay__price del {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #6D6860;
}
.aspl-product-overlay__price ins {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-decoration: none;
  color: #D84820;
  margin-right: 8px;
}

.aspl-product-overlay__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 0 16px 16px;
}

.btn-cart-icon {
  visibility: visible;
  margin-right: 10px;
}

.aspl-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}
.aspl-btn:hover {
  background: #B8924F;
  border-color: #B8924F;
  color: #FFFFFF;
}
.aspl-btn:active, .aspl-btn:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.aspl-btn:disabled, .aspl-btn.disabled {
  background: #D0C7B8;
  border-color: #D0C7B8;
  color: #FFFFFF;
  cursor: not-allowed;
}
@media screen and (max-width: 767px) {
  .aspl-btn {
    padding: 8px 16px;
    width: 79px;
    height: 32px;
    font-size: 14px;
    width: 100%;
  }
}
.aspl-btn--secondary {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: transparent;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #674717;
  text-decoration: none;
  transition: all 0.3s ease;
}
.aspl-btn--secondary:hover {
  background: #FFF7EB;
  border-color: #B8924F;
  color: #674717;
}
.aspl-btn--secondary:active, .aspl-btn--secondary:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.aspl-btn--secondary:disabled, .aspl-btn--secondary.disabled {
  background: transparent;
  border-color: #C8C8C8;
  color: #FFFFFF;
  cursor: not-allowed;
}
@media screen and (max-width: 767px) {
  .aspl-btn--secondary {
    padding: 8px 16px;
    width: 79px;
    height: 32px;
    font-size: 14px;
    width: 100%;
  }
}
.aspl-btn--add-to-cart.success {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}

.aspl-btn--add-to-cart.loading {
  opacity: 0.7;
  pointer-events: none;
}
.aspl-btn--add-to-cart.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.module-button {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .module-button {
    margin-top: 32px;
  }
}
.module-button .button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 16px 32px;
  font-size: 16px;
  height: auto;
}
.module-button .button:hover {
  background: #B8924F;
  border-color: #B8924F;
  color: #FFFFFF;
}
.module-button .button:active, .module-button .button:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.module-button .button:disabled, .module-button .button.disabled {
  background: #D0C7B8;
  border-color: #D0C7B8;
  color: #FFFFFF;
  cursor: not-allowed;
}
@media screen and (max-width: 767px) {
  .module-button .button {
    padding: 14px 24px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .aspl-products {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .aspl-products {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media screen and (min-width: 426px) and (max-width: 767px) {
  .aspl-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 425px) {
  .aspl-products {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media screen and (max-width: 1199px) {
  .aspl-product-card {
    width: 100%;
    height: 100%;
  }
  .aspl-product-grid-wrapper .container {
    padding: 0 16px;
  }
  .aspl-products {
    justify-items: center;
  }
}
@media screen and (max-width: 425px) {
  .aspl-products {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
  .aspl-product-grid-wrapper .container {
    padding: 0 16px;
  }
  .aspl-product-card {
    width: 100%;
    height: auto;
  }
  .aspl-product-card__image {
    height: 160px;
  }
  .aspl-product-card__content {
    height: auto;
    min-height: 80px;
  }
}
.elementor-widget-aspl-cosmetsy-product-grid .elementor-widget-container {
  padding: 0;
}
.elementor-widget-aspl-cosmetsy-product-grid .elementor-widget-container > *:first-child {
  margin-top: 0;
}
.elementor-widget-aspl-cosmetsy-product-grid .elementor-widget-container > *:last-child {
  margin-bottom: 0;
}

.added_to_cart.wc-forward {
  display: none;
}

.btn-secondary__product-widget {
  height: 50px;
  min-width: 189px;
}

.home-product-heading h2 {
  padding: 0;
  margin: 48px 0 40px;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  color: #1A1814;
}
@media screen and (max-width: 1199px) {
  .home-product-heading h2 {
    margin: 48px 0 24px;
    font-weight: 400;
    font-size: 26px;
    line-height: 26px;
  }
}

/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
/**
 * * Simple Banner Widget Styles
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
.aspl-simple-banner {
  background-color: #FFF7EB;
  padding: 52px 0;
  text-align: center;
  border-radius: 8px;
  margin: 55px auto 0;
  max-width: 1200px;
}
@media screen and (max-width: 1199px) {
  .aspl-simple-banner {
    padding: 52px 0;
    margin: 40px 16px 48px;
  }
}
.aspl-simple-banner__content {
  margin: 0 auto;
}
.aspl-simple-banner__title {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  color: #674717;
  padding-bottom: 10px;
  margin: 0 auto;
  text-align: center;
}
.aspl-simple-banner__description {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #1A1814;
  padding-bottom: 24px;
  margin: 0 auto;
}
.aspl-simple-banner__button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 156px;
  width: 100%;
  height: 50px;
  transition: all 0.3s ease;
}
.aspl-simple-banner__button:hover {
  background: #B8924F;
  border-color: #B8924F;
  color: #FFFFFF;
}
.aspl-simple-banner__button:active, .aspl-simple-banner__button:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.aspl-simple-banner__button:disabled, .aspl-simple-banner__button.disabled {
  background: #D0C7B8;
  border-color: #D0C7B8;
  color: #FFFFFF;
  cursor: not-allowed;
}
.elementor-widget-aspl-cosmetsy-simple-banner .elementor-widget-container {
  padding: 0;
}

.breadcrumbs {
  display: flex;
  flex-direction: column;
  padding: 30px 0 32px;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 24px 0;
  }
}
.breadcrumbs-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 16px;
  color: #674717;
}
.breadcrumbs-item-back {
  display: flex;
  align-items: center;
  margin-right: -12px;
}
.breadcrumbs-link {
  display: flex;
}
.breadcrumbs-title {
  font-size: 32px;
  color: #1A1814;
  font-weight: 400;
}

.check {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  color: #1A1814;
  /* disabled */
}
.check input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: inherit;
}
.check .check__box {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border: 1px solid #674717;
  border-radius: 6px;
  background: #fff;
  position: relative;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.check .check__box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #D0A360;
  border-radius: 4px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.15s;
}
.check input:checked + .check__box::after {
  transform: translate(-50%, -50%) scale(1);
}
.check input:disabled + .check__box {
  background: #F3EFEA;
}
.check input:disabled ~ .check__text {
  color: #9B948B;
}
.check input:disabled {
  cursor: not-allowed;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  /* ===== Form ===== */
}
@media screen and (max-width: 600px) {
  .modal {
    padding: 16px;
    align-items: flex-start;
  }
}
.modal[data-open=true] {
  display: flex;
}
.modal__dialog {
  position: relative;
  width: 400px;
  background: #ffffff;
  border: 1px solid #D0C7B8;
  border-radius: 8px;
  box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.16);
  padding: 24px;
  z-index: 1;
  outline: none;
  animation: modalPop 0.2s ease;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .modal__dialog {
    width: 100%;
  }
}
@media screen and (max-width: 300px) {
  .modal__dialog {
    padding: 16px;
  }
}
.modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 300px) {
  .modal__close {
    top: 14px;
    right: 14px;
  }
}
.modal__title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: #1A1814;
  margin: 0 0 8px 0;
}
.modal__subtitle {
  font-size: 16px;
  line-height: 1.3;
  color: #635B50;
  margin: 0;
}
.modal__reg .check_permission {
  display: flex;
  align-items: flex-start;
}
.modal__reg .check_permission .color {
  color: #674717;
}
@media screen and (max-height: 750px) {
  .modal__reg {
    overflow: auto;
    height: 100%;
  }
}
.modal__reg .check__text {
  line-height: 1.3;
}
@media screen and (max-width: 1199px) {
  .modal__reset {
    max-width: 400px;
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  .modal__reset {
    align-items: center;
  }
}
.modal__reset .form {
  gap: 24px;
  margin-top: 36px;
}
@media screen and (max-height: 300px) {
  .modal__reset {
    overflow: auto;
    height: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .modal__reset-suc {
    max-width: 400px;
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  .modal__reset-suc {
    align-items: center;
  }
}
@media screen and (max-height: 300px) {
  .modal__reset-suc {
    overflow: auto;
    height: 100%;
  }
}
.modal__reset-suc .modal__text {
  text-align: center;
  margin: 64px 0;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #1A1814;
}
.modal__reset-suc .btn, .modal__reg-suc .btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: transparent;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #674717;
  text-decoration: none;
  transition: all 0.3s ease;
}
.modal__reset-suc .btn:hover {
  background: #FFF7EB;
  border-color: #B8924F;
  color: #674717;
}
.modal__reset-suc .btn:active, .modal__reset-suc .btn:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.modal__reset-suc .btn:disabled, .modal__reset-suc .btn.disabled {
  background: transparent;
  border-color: #C8C8C8;
  color: #FFFFFF;
  cursor: not-allowed;
}
.modal .wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  @keyframes modalFade;
}
.form .field {
  display: grid;
  gap: 6px;
  margin-bottom: 0;
}
.form__hint {
  font-size: 16px;
  line-height: 1.3;
  color: #D84820;
  display: block;
}
.form .is-error .form__input {
  border-color: #D84820;
}
.form .is-error .form__hint {
  display: block;
}
.form from {
  opacity: 0;
}
.form to {
  opacity: 1;
}

@keyframes modalPop {
  from {
    transform: translateY(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-backdrop {
  position: fixed;
  inset: -100%;
  background: rgba(26, 24, 20, 0.3);
  
  /* backdrop-filter: blur(2px); */
  animation: modalFade 0.2s ease;
  width: 100vw;
  opacity: 0;
  z-index: 12;
}
.modal-backdrop.open {
  opacity: 1;
  inset: 0;
}

/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
/**
 * * Top Bar & Header Styles
 * */
body.csm header.site-header:not(.header-transparent) {
  z-index: 4;
}
body.csm header.site-header .site-topbar {
  background-color: #FFF7EB;
  height: 40px;
  display: flex;
  align-items: center;
}
body.csm header.site-header .site-topbar .site-menu .menu .menu-item {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #674717;
}
body.csm header.site-header .site-topbar .site-menu .menu .menu-item *, body.csm header.site-header .site-topbar .site-menu .menu .menu-item a {
  font-family: "DM Sans", sans-serif;
  color: #674717;
}
body.csm header.site-header .site-topbar .site-menu .menu-item:not(:first-child) {
  margin-left: 32px;
}
body.csm .site-header--content {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
}
body.csm .site-header--content .container > .row {
  height: auto;
  padding-top: 32px;
  padding-bottom: 32px;
}
body.csm .site-header--content *, body.csm .site-header--content a {
  font-family: "DM Sans", sans-serif;
}
body.csm .language-switcher {
  position: relative;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
}
body.csm .language-switcher .current-language {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 55px;
  justify-content: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
body.csm .language-switcher .current-language:hover .arrow {
  transform: rotate(-90deg);
}
@media screen and (min-width: 426px) and (max-width: 767px) {
  body.csm .language-switcher .current-language {
    margin-right: 24px;
  }
}
@media screen and (min-width: 768px) {
  body.csm .language-switcher .current-language {
    margin-right: 24px;
  }
}
@media screen and (max-width: 425px) {
  body.csm .language-switcher .current-language {
    margin-right: 32px;
  }
}
body.csm .language-switcher .flag {
  font-size: 16px;
  line-height: 1;
}
body.csm .language-switcher .flag img {
  border: 1px solid #C8C8C8;
  object-fit: cover;
  object-position: center;
  width: 15px;
  height: 12px;
}
body.csm .language-switcher .lang-code {
  font-size: 14px;
  font-weight: 400;
  color: #674717;
}
body.csm .language-switcher .arrow {
  transition: transform 0.3s ease;
  color: #674717;
}
body.csm .language-switcher .language-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0;
}
body.csm .language-switcher .language-list li {
  margin: 0;
}
body.csm .language-switcher .language-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #674717;
  justify-content: center;
  width: 55px;
  padding-top: 5px;
  padding-bottom: 5px;
  transition: background 0.2s ease;
}
body.csm .language-switcher .language-list li a .flag {
  font-size: 16px;
}
body.csm .language-switcher .language-list li a .flag img {
  border-radius: 2px;
}
body.csm .language-switcher .language-list li a .lang-code {
  font-size: 14px;
  font-weight: 400;
}
body.csm .language-switcher:hover .language-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
body.csm .currency-switcher-wrapper .currency-switcher {
  position: relative;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
}
body.csm .currency-switcher-wrapper .currency-switcher .current-currency {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 46px;
  justify-content: center;
  padding-top: 5px;
  padding-bottom: 5px;
}
body.csm .currency-switcher-wrapper .currency-switcher .current-currency:hover .arrow {
  transform: rotate(-90deg);
}
body.csm .currency-switcher-wrapper .currency-switcher .currency-code {
  font-size: 14px;
  font-weight: 400;
  color: #674717;
}
body.csm .currency-switcher-wrapper .currency-switcher .arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: #674717;
}
body.csm .currency-switcher-wrapper .currency-switcher .currency-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0;
}
body.csm .currency-switcher-wrapper .currency-switcher .currency-list li {
  margin: 0;
}
body.csm .currency-switcher-wrapper .currency-switcher .currency-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  text-decoration: none;
  color: #674717;
  transition: background 0.2s ease;
}
body.csm .currency-switcher-wrapper .currency-switcher .currency-list li a:hover {
  background: #f5f5f5;
}
body.csm .currency-switcher-wrapper .currency-switcher .currency-list li a .currency-code {
  font-size: 14px;
  font-weight: 400;
}
body.csm .currency-switcher-wrapper .currency-switcher:hover .currency-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header .quick-button.user-login {
  margin-left: 0;
}
.site-header .quick-button.user-login .user-login-link {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 16px;
}

.site-header--content .header-search {
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-search-form {
  display: flex;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 48px;
  border: 1px solid #D0C7B8;
  border-radius: 8px;
  max-width: 489px;
  width: 489px;
  padding: 4px 4px 4px 14px;
  gap: 11px;
}
.header-search-form input[type=search].search-form-input {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #999999;
  border: none;
  padding: 0;
}
.header-search-form .search-icon {
  padding: 0;
}
.header-search-form .search-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.header-search-form .search-btn:hover {
  background: #B8924F;
  border-color: #B8924F;
  color: #FFFFFF;
}
.header-search-form .search-btn:active, .header-search-form .search-btn:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.header-search-form .search-btn:disabled, .header-search-form .search-btn.disabled {
  background: #D0C7B8;
  border-color: #D0C7B8;
  color: #FFFFFF;
  cursor: not-allowed;
}

.csm-vertical-dash {
  height: 24px;
  width: 1px;
  display: flex;
  border-right: 1px solid #D0C7B8;
}
@media screen and (min-width: 1200px) {
  .csm-vertical-dash {
    flex: 1 1 auto;
  }
}

.site-header .quick-button.mini-cart {
  margin-left: 0;
}

.csm-shop-toolest > div:nth-child(even) {
  margin: 0 32px;
}
@media screen and (max-width: 490px) {
  .csm-shop-toolest > div:nth-child(even) {
    margin: 0 12px;
  }
}

.csm-toolset-icon {
  padding-right: 8px;
}

.csm-cart-text,
.account-text {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #1A1814;
}

.site-header .quick-button.mini-cart .cart-link span.cart-count-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #FFD391;
  border-radius: 100%;
  position: relative;
  top: 0;
  /* Count */
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #1A1814;
}

/* Main Menu */
body.csm .site-header--nav {
  border-top: 1px solid #D0C7B8;
  border-bottom: 1px solid #D0C7B8;
}
body.csm .site-menu.horizontal-menu.primary-menu .menu > .menu-item {
  margin-left: 0;
}
body.csm .site-menu.horizontal-menu.primary-menu .menu > .menu-item > a,
body.csm .site-menu.horizontal-menu.primary-menu .menu > .menu-item * a {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
}
body.csm .site-menu.horizontal-menu.primary-menu .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
body.csm .site-footer .footer-newsletter.klbtype-1,
body.csm .site-footer .footer-widgets.klbtype-1,
body.csm .site-footer {
  margin-top: 76px;
  margin-bottom: 0;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .site-footer--wrapper,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .site-footer--wrapper,
body.csm .site-footer .footer-widgets .site-footer--wrapper {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .site-footer--wrapper,
  body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .site-footer--wrapper,
  body.csm .site-footer .footer-widgets .site-footer--wrapper {
    padding: 48px 0;
  }
}
body.csm .site-footer .footer-newsletter.klbtype-1 .row .col:last-child .widget,
body.csm .site-footer .footer-widgets.klbtype-1 .row .col:last-child .widget,
body.csm .site-footer .row .col:last-child .widget {
  margin-bottom: 0;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets,
body.csm .site-footer .footer-widgets {
  background-color: #372407;
}
@media screen and (max-width: 767px) {
  body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget,
  body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget,
  body.csm .site-footer .footer-widgets .widget {
    margin-bottom: 56px;
  }
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget .footer-contact-info,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget .footer-contact-info,
body.csm .site-footer .footer-widgets .widget .footer-contact-info {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  color: #FFFFFF;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget .footer-contact-info .company-title,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget .footer-contact-info .company-title,
body.csm .site-footer .footer-widgets .widget .footer-contact-info .company-title {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  padding-bottom: 8px;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget .footer-contact-info .company-address,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget .footer-contact-info .company-address,
body.csm .site-footer .footer-widgets .widget .footer-contact-info .company-address {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  padding-bottom: 16px;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget .footer-contact-info .business-info,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget .footer-contact-info .business-info,
body.csm .site-footer .footer-widgets .widget .footer-contact-info .business-info {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #FFFFFF;
  opacity: 0.8;
  padding-bottom: 16px;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget .footer-contact-info .contact-item,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget .footer-contact-info .contact-item,
body.csm .site-footer .footer-widgets .widget .footer-contact-info .contact-item {
  display: flex;
  flex-direction: row;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget .footer-contact-info .contact-item__phone,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget .footer-contact-info .contact-item__phone,
body.csm .site-footer .footer-widgets .widget .footer-contact-info .contact-item__phone {
  padding-bottom: 8px;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget .footer-contact-info .contact-item .contact-link,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget .footer-contact-info .contact-item .contact-link,
body.csm .site-footer .footer-widgets .widget .footer-contact-info .contact-item .contact-link {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #FFFFFF;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget .footer-contact-info .contact-item .contact-icon,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget .footer-contact-info .contact-item .contact-icon,
body.csm .site-footer .footer-widgets .widget .footer-contact-info .contact-item .contact-icon {
  margin-right: 12px;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget .widget-title,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget .widget-title,
body.csm .site-footer .footer-widgets .widget .widget-title {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget ul.menu,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget ul.menu,
body.csm .site-footer .footer-widgets .widget ul.menu {
  margin-bottom: 0;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget ul.menu li,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget ul.menu li,
body.csm .site-footer .footer-widgets .widget ul.menu li {
  padding-top: 0;
  margin: 0;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget ul.menu li:not(:last-child),
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget ul.menu li:not(:last-child),
body.csm .site-footer .footer-widgets .widget ul.menu li:not(:last-child) {
  padding-bottom: 24px;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .footer-widgets .widget ul.menu a,
body.csm .site-footer .footer-widgets.klbtype-1 .footer-widgets .widget ul.menu a,
body.csm .site-footer .footer-widgets .widget ul.menu a {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .subfooter,
body.csm .site-footer .footer-widgets.klbtype-1 .subfooter,
body.csm .site-footer .subfooter {
  background-color: #291A04;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .subfooter .site-footer--wrapper,
body.csm .site-footer .footer-widgets.klbtype-1 .subfooter .site-footer--wrapper,
body.csm .site-footer .subfooter .site-footer--wrapper {
  padding: 12px 0;
  border: none;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .subfooter .site-footer--wrapper .site-copyright,
body.csm .site-footer .footer-widgets.klbtype-1 .subfooter .site-footer--wrapper .site-copyright,
body.csm .site-footer .subfooter .site-footer--wrapper .site-copyright {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
body.csm .site-footer .footer-newsletter.klbtype-1 .subfooter .site-footer--wrapper .site-copyright p,
body.csm .site-footer .footer-widgets.klbtype-1 .subfooter .site-footer--wrapper .site-copyright p,
body.csm .site-footer .subfooter .site-footer--wrapper .site-copyright p {
  padding: 0;
  margin: 0;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #FFFFFF;
  opacity: 0.2;
}
@media screen and (max-width: 425px) {
  body.csm .site-footer .footer-newsletter.klbtype-1 .subfooter .site-footer--wrapper .site-copyright p,
  body.csm .site-footer .footer-widgets.klbtype-1 .subfooter .site-footer--wrapper .site-copyright p,
  body.csm .site-footer .subfooter .site-footer--wrapper .site-copyright p {
    text-align: left;
  }
}

/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
.site-offcanvas--header {
  padding: 24px 16px;
}

.site-offcanvas--header .offcanvas-close {
  border: none;
  width: 32px;
  height: 32px;
}

.site-offcanvas--main {
  padding: 0;
}
.site-offcanvas--main .mobile-menu .menu > .menu-item + .menu-item {
  border-color: #D0C7B8;
}
.site-offcanvas--main .mobile-menu .menu > .menu-item > a {
  padding: 0;
}
.site-offcanvas--main .mobile-menu .menu > .menu-item {
  padding: 16px 16px;
}
.site-offcanvas--main .mobile-menu .menu > .menu-item.menu-item-has-children .sub-menu .menu-item:first-child {
  padding-top: 10px;
}
.site-offcanvas--main .mobile-menu .menu > .menu-item.menu-item-has-children .sub-menu .menu-item a {
  padding: 10px 0;
}

body.csm .site-scroll .site-offcanvas--main .mobile-menu .menu .menu-item a {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #1A1814;
}

@media screen and (max-width: 425px) {
  .site-offcanvas {
    width: 100%;
  }
}

@media screen and (min-width: 26.25rem) {
  .site-offcanvas {
    width: 420px;
  }
}
/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
.site-header--mobile {
  border-bottom: none;
}
.site-header--mobile .quick-button.canvas-toggle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-right: 32px;
}
@media screen and (max-width: 490px) {
  .site-header--mobile .quick-button.canvas-toggle {
    margin-right: 10px;
  }
}
.site-header--mobile .site-brand img {
  width: 142px;
}
@media screen and (max-width: 425px) {
  .site-header--mobile .csm-shop-toolest {
    display: none;
  }
}
@media screen and (max-width: 425px) {
  .site-header--mobile .quick-button.canvas-toggle {
    margin-right: 0;
  }
}
.site-header--mobile .quick-button.canvas-toggle + .site-brand {
  margin-left: 0;
}
.site-header--mobile .container > .row--header-toolset {
  height: 96px;
}
@media screen and (max-width: 425px) {
  .site-header--mobile .container > .row--header-toolset {
    height: 88px;
  }
}
.site-header--mobile .row--header-search {
  border-bottom: 1px solid #D0C7B8;
  border-top: 1px solid #D0C7B8;
}
.site-header--mobile .container > .row--header-search {
  height: 48px;
}
.site-header--mobile .header-search.header-search--mobile {
  width: 100%;
}
.site-header--mobile .header-search.header-search--mobile .header-search-form {
  padding: 0;
  border: none;
  width: 100%;
  max-width: 100%;
}
.site-header--mobile .header-search.header-search--mobile .search-btn {
  padding: 8px 16px;
  width: 79px;
  height: 32px;
  font-size: 14px;
}

/* STICKY HEADER */
.site-header--mobile .csm-shop-toolest-xs .quick-button.canvas-toggle,
.site-header--mobile .csm-shop-toolest-xs .search-icon {
  display: none;
}
.site-header--mobile .csm-shop-toolest-xs .quick-button.canvas-toggle + .csm-vertical-dash,
.site-header--mobile .csm-shop-toolest-xs .search-icon + .csm-vertical-dash {
  display: none;
}

@media screen and (max-width: 425px) {
  .sticky-header .container > .row--header-toolset,
  .sticky-header .row--header-search {
    display: none;
  }
}
.sticky-header .csm-shop-toolest-xs .csm-toolset-icon {
  padding-right: 0;
}
.sticky-header .csm-shop-toolest-xs .quick-button.canvas-toggle,
.sticky-header .csm-shop-toolest-xs .search-icon {
  display: flex;
}
.sticky-header .csm-shop-toolest-xs .quick-button.canvas-toggle + .csm-vertical-dash,
.sticky-header .csm-shop-toolest-xs .search-icon + .csm-vertical-dash {
  display: block;
}
@media screen and (max-width: 425px) {
  .sticky-header .csm-shop-toolest-xs .account-text,
  .sticky-header .csm-shop-toolest-xs .csm-cart-text {
    display: none;
  }
}
.sticky-header .csm-shop-toolest-xs .row--header-search {
  display: none;
}

@media screen and (max-width: 425px) {
  body.csm .hide-below-mobile {
    display: none;
  }
}
@media screen and (max-width: 425px) {
  body.csm .quick-button.canvas-toggle + .site-brand {
    margin-left: -32px;
  }
}
body.csm .brand-xs {
  display: flex;
}
@media screen and (max-width: 425px) {
  body.csm .brand-xs .site-brand {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
  }
}
body.csm .row-csm-shop-toolest-xs {
  display: none;
}
@media screen and (max-width: 425px) {
  body.csm .row-csm-shop-toolest-xs {
    display: block;
  }
}
body.csm .csm-shop-toolest-xs {
  justify-content: space-between;
  flex: 1 1 auto;
}
body.csm .csm-shop-toolest-xs .quick-button.mini-cart {
  margin-left: 0;
  display: flex;
}
@media screen and (max-width: 425px) {
  body.csm .site-header:not(.sticky-header) .quick-button.mini-cart,
  body.csm .site-header:not(.sticky-header) .csm-vertical-dash {
    flex: 1 1 auto;
  }
}

/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
.product {
  color: #1A1814;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
  /* ===== Scrollbar Styles (Firefox) ===== */
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd #f1f1f1;
}
.product__grid {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr minmax(0, 588px);
  gap: 48px;
  box-sizing: border-box;
  align-items: start;
}
@media screen and (max-width: 1199px) {
  .product__grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .product__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 0 auto 40px;
  }
}
.nav-gallery-top, .nav-gallery-bottom{
      width: 100%;
    height: 51px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 99;
   background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
   cursor:pointer;
}
.nav-gallery-bottom{
  top:unset;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  bottom: 0;
}
.nav-gallery-top img{
  transform: rotate(180deg);
}
.product__thumbs-wrapper{
  justify-content: center;
  display: flex;
}

.product__media {
  display: grid;
  grid-template-columns: 1fr 462px;
  gap: 10px;
  position: sticky;
  top: 50px;
  align-self: start;
  height: fit-content;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .product__media {
    position: static;
    flex-direction: column-reverse;
    display: flex;
    gap: 8px;
  }
}
.product__thumbs-wrapper {
  overflow: hidden;
  position: relative;
  align-items: start;
}
@media screen and (min-width: 1200px) {
  .product__thumbs-wrapper {
    /* Disable scroll on desktop; navigation via buttons */
    overflow: hidden;
    height: 462px;
    padding-right: 14px;
  }
}
@media(max-width:1200px){
  .woocommerce-product-gallery .flex-viewport{
    margin-bottom:0;
  }
  .nav-gallery-top{
    top: 50%;
    left: 0;
    width:40px;
    height:100%;
    transform: translateY(-50%);
      background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
      display: none !important;
  }
  .nav-gallery-bottom{
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width:40px;
    height:100%;
       background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
       display: none !important;
  }
  .product__thumbs-wrapper{
    align-items: center;
    justify-content:start;
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
  }
  .nav-gallery-top img{
    transform: rotate(90deg);
  }
  .nav-gallery-bottom img{
    transform: rotate(270deg);
  }
  .accordion .shipping .shipping__item{
        grid-template-columns: 1fr 0.5fr;
  }
}
@media screen and (max-width: 1199px) {
  .product__thumbs-wrapper {
    padding-bottom: 14px;
  }
}
.product::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.product::-webkit-scrollbar-track {
  background: transparent;
}
.product::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  transition: background 0.3s ease;
}
.product::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.product__thumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-rows: 78px;
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .product__thumbs {
    /* Smooth programmatic scroll via transform */
    transition: transform 0.3s ease;
    will-change: transform;
  }
}
@media screen and (max-width: 1199px) {
  .product__thumbs {
    grid-auto-flow: column;
    grid-auto-columns: 60px;
    grid-auto-rows: unset;
    gap: 8px;
    /* Smooth programmatic horizontal scroll via transform */
    transition: transform 0.3s ease;
    will-change: transform;
  }
}
.product__thumb-item {
  border-radius: 8px;
  background: #F2F2F2;
  cursor: pointer;
  display: block;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 1199px) {
  .product__thumb-item {
    height: 60px;
  }
}
.product__thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product__thumb-item.is-active {
  border: 1px solid #D0A360;
}
.product__stage {
  border-radius: 8px;
  background: #efefef;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 462px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.poland-del{
  gap:8px;
  display: flex;
  justify-content: start;
  align-items: center;
  font-family: 'DM Sans';
font-weight: 400;
font-size: 16px;
line-height: 24px;
color:#1D9510;
margin-top:12px;
}
.name-grey{
  color:#635B50;
}
.text-uppercase{
  text-transform:uppercase;
}
@media screen and (max-width: 1199px) {
  .product__stage {
    height: auto;
  }
}
@media screen and (max-width: 425px) {
  .product__stage {
    /* height: calc(100vw - 32px); */
    height:auto;
  }
}
.product__stage img {
  object-fit: cover;
}
@media screen and (max-width: 1199px) {
  .product__stage img {
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 425px) {
  .product__stage img {
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .product__info {
    padding: 0 24px;
  }
}
.product__title {
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  margin: 0 0 12px;
}
.product__badges {
  margin-bottom: 32px;
  flex-direction: row;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .product__badges {
    margin-bottom: 40px;
  }
}
.product__divider {
  border: 0;
  border-top: 1px solid #D0C7B8;
  margin: 32px 0;
}
@media screen and (max-width: 767px) {
  .product__divider {
    margin: 40px 0 32px;
  }
}
.product__description {
  margin-top: 36px;
}
@media screen and (max-width: 767px) {
  .product__description {
    display: none !important;
  }
}
.product__description p {
  margin: 0;
  line-height: 1.5;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 32px;
  font-size: 16px;
  line-height: 1.3;
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  box-sizing: border-box;
}
.badge--success {
  background: rgba(29, 149, 16, 0.08);
  color: #1D9510;
}
.badge--backorder {
  background: rgba(183, 120, 10, 0.08);
  color: #B7780A;
}
.badge--unavailable {
  background: rgba(26, 24, 20, 0.08);
  color: rgba(26, 24, 20, 0.8);
}

.price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .price {
    margin-bottom: 40px;
  }
}
.price__value {
  font-size: 28px;
  line-height: 1;
}
.price__vat {
  color: #635B50;
  font-size: 14px;
}

.buy {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 16px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .buy {
    grid-template-columns: 1fr;
  }
}

.qty {
  display: inline-flex;
  align-items: center;
}
.qty__btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: transparent;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #674717;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qty__btn:hover {
  background: #FFF7EB;
  border-color: #B8924F;
  color: #674717;
}
.qty__btn:active, .qty__btn:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.qty__btn:disabled, .qty__btn.disabled {
  background: transparent;
  border-color: #C8C8C8;
  color: #FFFFFF;
  cursor: not-allowed;
}
.qty__btn:focus {
  background: #FFF7EB;
  border-color: #B8924F;
}
.qty__btn:disabled {
  border: 1px solid #D0C7B8;
}
.qty__input {
  width: 59px;
  height: 50px;
  text-align: center;
  border: none;
  font-size: 14px;
}
.qty__input:focus {
  outline: none;
  box-shadow: none;
}

.btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #B8924F;
  border-color: #B8924F;
  color: #FFFFFF;
}
.btn:active, .btn:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.btn:disabled, .btn.disabled {
  background: #D0C7B8;
  border-color: #D0C7B8;
  color: #FFFFFF;
  cursor: not-allowed;
}
.btn__icon {
  flex: 0 0 auto;
}
.btn--lg {
  height: 50px;
  padding: 0 32px;
  gap: 8px;
}

.meta {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 24px;
}
.meta__item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}
.meta__icon {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.meta__text {
  color: #635B50;
}
.meta__text strong {
  color: #1A1814;
  color-margin-bottom: 4px;
}
.meta__text a {
  color: #B48642;
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  margin-right: 4px;
}
.meta__text a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #B48642;
  bottom: -2px;
  left: 0;
}

.accordion {
  margin-top: 16px;
  border: 1px solid #D0C7B8;
  border-radius: 8px;
}
.accordion__item + .accordion__item {
  border-top: 1px solid #D0C7B8;
}
.accordion__header {
  margin: 0;
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 16px;
  background: transparent;
  color: #1A1814;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 20px;
}
.accordion__trigger:focus-visible {
  outline: none;
  outline-offset: none;
}
.accordion__chevron {
  transition: transform 0.25s ease;
}
.is-open .accordion__chevron {
  transform: rotate(180deg);
}
.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.accordion__panel .select p {
  margin-top: 12px;
  margin-bottom: 8px;
  color: #635B50;
}
.accordion__panel .select .custom-select {
  width: 100%;
  margin-bottom: 16px;
}
.accordion__panel .select .custom-select .custom-select__trigger {
  border: 1px solid #D0C7B8;
}
.accordion .shipping {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #000000;
  margin-bottom: 16px;
}
.accordion .shipping .shipping__item {
  border-bottom: 1px solid #D0C7B8;
}
.accordion .shipping__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px 0;
  gap:8px;
}
@media (max-width: 600px) {
  .accordion .shipping .shipping__name,
  .accordion .shipping .shipping__price {
    font-size: 18px;
  }
}
.accordion__panel-inner {
  padding: 0 16px 10px;
  color: #1A1814;
  font-size: 16px;
}
.accordion__panel-inner p {
  margin: 0 0 12px;
  line-height: 1.5;
}
.accordion__panel-inner ul {
  margin: 0 0 12px 24px;
  padding: 0;
}
.accordion__panel-inner ul li {
  margin: 4px 0;
  line-height: 1.3;
  list-style: disc;
}

/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
.container-wrapper {
  display: grid;
}

.catalog__layout {
  display: grid;
  grid-template-columns: 282px 1fr;
  gap: 24px;
  align-items: start;
}
@media screen and (max-width: 1199px) {
  .catalog__layout {
    grid-template-columns: 1fr;
  }
}

.filters {
  position: sticky;
  top: 16px;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #D0C7B8;
}
@media screen and (max-width: 1199px) {
  .filters {
    padding: 0;
  }
}
@media screen and (max-width: 1199px) {
  .filters .btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: calc(100% - 32px);
    margin-top: auto;
    margin-left: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .filters .btn-wrap .filters__clear {
    display: none !important;
  }
}
@media screen and (max-width: 1199px) {
  .filters .btn-wrap .filters__clear {
    display: block;
    border-radius: 6px;
    border: 1px solid #D0A360;
    height: 50px;
    width: 100%;
  }
}
.filters .btn {
  margin-top: 14px;
}
@media screen and (max-width: 1199px) {
  .filters {
    border-bottom: 1px solid #D0C7B8;
    padding: 12px 16px;
  }
}
@media screen and (min-width: 1200px) {
  .filters .close-filter {
    display: none !important;
  }
}
@media screen and (max-width: 1199px) {
  .filters {
    background: #fff;
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 11;
    left: -100%;
    transition: left 0.6s ease-in-out;
    top: 0;
    box-sizing: border-box;
    border: none;
  }
  .filters.open {
    left: 0;
    position: fixed;
    max-width: 400px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    border-radius: 0;
  }
  .filters.open .filters__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
  }
  .filters.open .filters__header h3 {
    font-weight: 400;
  }
  .filters__form {
    display: flex;
    flex-direction: column;
    height: calc(100% - 94px);
  }
  .filters__form .btn {
    margin-top: auto;
    margin-left: 16px;
    margin-right: 16px;
  }
}
.filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 1199px) {
  .filters__header {
    padding: 24px 16px 24px;
    border-bottom: 1px solid #D0C7B8;
  }
}
.filters__header h3 {
  font-size: 24px;
  color: #1A1814;
}
.filters__clear {
  display: flex;
  align-items: center;
  background: none;
  border: 0;
  color: #674717;
  cursor: pointer;
  font-size: 16px;
  gap: 4px;
}
@media screen and (max-width: 1199px) {
  .filters__clear {
    display: none;
  }
}
.filters__wrapper {
  position: relative;
}
@media screen and (max-width: 1199px) {
  .filters__wrapper {
    height: 100%;
  }
}
.filters .apply-filters {
  width: 100%;
  z-index: 10;
}
.filters .apply-filters__gotowe {
  width: calc(100% - 32px);
  margin-top: auto;
}
@media screen and (min-width: 1200px) {
  .filters .apply-filters__gotowe {
    display: none !important;
  }
}

.filter {
  border: 0;
  padding: 0;
  margin: 24px 0 0 0;
  border-bottom: 1px solid #D0C7B8;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.filter_scroll {
  position: relative;
}
.filter_scroll::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 96%;
  height: 250px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}
.filter__title {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 0;
  color: #1A1814;
}
@media screen and (max-width: 1199px) {
  .filter__title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    font-weight: 400;
    padding: 0;
  }
}
.filter__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 181px;
  overflow: auto;
  padding-right: 6px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .filter__list {
    max-height: none;
    border: none;
    padding-right: 0px;
  }
}
.filter__list::-webkit-scrollbar {
  width: 6px;
}
.filter__list::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 6px;
}
.filter__list::-webkit-scrollbar-thumb {
  background-color: #674717;
  border-radius: 40px;
}
.filter-options {
  display: flex;
}
@media screen and (max-width: 1199px) {
  .filter-options {
    display: flex;
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 13;
    top: -24px;
    left: -100%;
    height: 100vh !important;
    padding: 0px 10px;
    box-sizing: border-box;
    transition: left 0.6s ease-in-out;
    padding-top: 10px;
  }
}
.filter-options.open {
  left: 0;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .filter {
    padding: 12px 16px;
    border-bottom: 1px solid #D0C7B8;
    height: fit-content;
  }
}
@media screen and (max-width: 1199px) {
  .filter.open {
    padding: 12px 0px;
    height: 100vh;
  }
}
@media screen and (max-width: 1199px) and (max-width: 1199px) {
  .filter.open .filter__title {
    padding: 0 16px;
  }
}

@media screen and (min-width: 1200px) {
  .filters-btn {
    display: none !important;
  }
}
@media screen and (max-width: 1199px) {
  .filters-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
    width: 100%;
    height: 44px;
    border: 1px solid #D0A360;
    border-radius: 6px;
    color: #674717;
    font-size: 16px;
    background-color: transparent;
    margin-bottom: 16px;
  }
  .filters-btn__icon {
    display: flex;
    align-items: center;
    margin-top: 3px;
  }
  .filters-btn__badge {
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1.1;
    background-color: #FFD391;
    color: #1A1814;
  }
}

@media screen and (min-width: 1200px) {
  .mobile {
    display: none !important;
  }
}
@media screen and (max-width: 425px) {
  .mobile {
    display: flex;
    flex-direction: column;
  }
}
.mobile_item {
  padding: 12px 16px;
  border-bottom: 1px solid #D0C7B8;
  color: #1A1814;
}
.mobile_item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
}
.mobile_item-list {
  color: #635B50;
}

@media screen and (min-width: 1200px) {
  .mobile-inline {
    display: none !important;
  }
}
.range {
  position: relative;
  height: 20px;
  display: grid;
  align-items: center;
}

.range__track,
.range__progress {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px;
}

.range__track {
  background: #D0C7B8;
}

.range__progress {
  background: #674717;
}

.range__input {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  pointer-events: none;
  z-index: 10;
}
.range__input::-webkit-slider-runnable-track {
  height: 20px;
  background: transparent;
}
.range__input::-moz-range-track {
  height: 20px;
  background: transparent;
}
.range__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  background: #D0A360;
  border: 1px solid #fff;
  position: relative;
  z-index: 10;
  margin-top: 0px;
}
.range__input::-moz-range-thumb {
  pointer-events: auto;
  width: 20px;
  height: 20px;
  border-radius: 8px;
  background: #D0A360;
  border: 2px solid #fff;
  position: relative;
  z-index: 999;
  margin-top: 0px;
}

.price__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.price__inputs label {
  display: grid;
  gap: 6px;
  font-size: 16px;
  line-height: 1.3;
  position: relative;
}
.price__inputs label:after {
  content: "zł";
  position: absolute;
  bottom: 12px;
  right: 16px;
  pointer-events: none;
  font-weight: 400;
  font-size: 16px;
  color: #635B50;
}
.price__inputs input {
  width: 100%;
  height: 42px;
  padding: 13px 30px 13px 16px;
  border: 1px solid #D0C7B8;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  box-sizing: border-box;
}
.price__inputs input:focus {
  outline: none;
  border-color: #674717;
}
.price__inputs input::-webkit-outer-spin-button,
.price__inputs input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.price__inputs input[type=number] {
  -moz-appearance: textfield;
}

.promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 1px solid #FFF7EB;
  border-radius: 12px;
  background: #FFF7EB;
  color: #674717;
}
@media screen and (max-width: 767px) {
  .promo {
    flex-direction: column;
    margin-top: 16px;
  }
}
@media screen and (max-width: 425px) {
  .promo {
    padding: 16px;
    position: relative;
    border-radius: 8px;
  }
  .promo:after {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #D0C7B8;
    z-index: 1;
  }
}
.promo .promo__title {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 8px;
}
@media screen and (max-width: 425px) {
  .promo .promo__title {
    font-size: 16px;
    font-weight: 700;
  }
}
.promo .promo__desc {
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
}
@media screen and (max-width: 425px) {
  .promo .promo__desc {
    font-size: 14px;
  }
}
.promo .btn {
  min-width: 150px;
}
@media screen and (max-width: 425px) {
  .promo .btn {
    width: 100%;
  }
}

.toolbar {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: end;
  gap: 14px 16px;
  padding-bottom: 16px;
  margin-top: 24px;
  border-bottom: 1px solid #D0C7B8;
}
@media screen and (max-width: 767px) {
  .toolbar {
    grid-template-columns: 1fr;
  }
}
.toolbar__label {
  font-weight: 600;
}
.toolbar__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .toolbar__top {
    display: none !important;
  }
}

.sort {
  display: grid;
  gap: 8px;
  color: #1A1814;
}
.sort .sort__label {
  font-size: 16px;
  line-height: 1.3;
}
.sort .custom-select {
  position: relative;
  width: 254px;
  font-family: inherit;
  z-index: 10;
}
@media screen and (max-width: 425px) {
  .sort .custom-select {
    width: 100%;
  }
}
.sort .custom-select input[type=hidden] {
  display: none;
}
.sort .custom-select .custom-select__trigger {
  width: 100%;
  background: #fff;
  border: 1px solid #D0A360;
  border-radius: 8px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  transition: border-color 0.2s;
}
.sort .custom-select .arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23674717' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: 24px;
  transition: transform 0.2s ease;
}
.sort .custom-select[data-open=true] .arrow {
  transform: rotate(180deg);
}
.sort .custom-select .custom-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #D0C7B8;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 240px;
  overflow: auto;
  display: none;
  z-index: 20;
  padding: 4px;
  box-sizing: border-box;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
  scrollbar-width: thin;
  scrollbar-color: #795321 transparent;
}
.sort .custom-select .custom-options::-webkit-scrollbar {
  width: 6px;
}
.sort .custom-select .custom-options::-webkit-scrollbar-thumb {
  background: #795321;
  border-radius: 6px;
}
.sort .custom-select .custom-options::-webkit-scrollbar-track {
  background: transparent;
}
.sort .custom-select .custom-options .custom-option {
  padding: 10px 16px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.sort .custom-select .custom-options .custom-option:hover {
  background: #F3EFEA;
  border-radius: 6px;
}
.sort .custom-select .custom-options .custom-option.selected {
  background: #FFF7EB;
  border-radius: 6px;
}
.sort .custom-select[data-open=true] .custom-options {
  display: block;
}

/* pagination */
@media screen and (max-width: 425px) {
  .toolbar__right.full-pagination {
    width: 100%;
  }
}
.toolbar__right.full-pagination .count-items span {
  color: #1A1814;
}
@media screen and (max-width: 425px) {
  .toolbar__right.full-pagination .pager {
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
  }
}
.toolbar__right.full-pagination .pager__page {
  color: #674717;
  border: 1px solid #D0A360;
}
.toolbar__right.full-pagination .pager__page.active {
  background-color: #FFF7EB;
}
@media screen and (max-width: 340px) {
  .toolbar__right.full-pagination .pager__page:nth-child(3) {
    display: none;
  }
}

.pager {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
}
.pager__btn {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #D0A360;
  background: #fff;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  color: #674717;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 340px) {
  .pager__btn {
    width: 36px;
    height: 36px;
  }
}
.pager__btn:hover {
  background: #FAF8F5;
  border-color: #D0A360;
}
.pager__btn:disabled {
  color: #D0C7B8;
  border: 1px solid #D0C7B8;
}
.pager__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border: 1px solid #D0C7B8;
  border-radius: 6px;
  background: #fff;
  color: #1A1814;
  box-sizing: border-box;
}
@media screen and (max-width: 340px) {
  .pager__page {
    width: 36px;
    height: 36px;
  }
}
.pager__of {
  color: #000000;
  font-size: 16px;
}
.pager__wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pager__dots {
  color: #674717;
  font-size: 6px;
  padding-top: 8px;
  border: none;
}

.catalog__content {
  border-bottom: 1px solid #D0C7B8;
  padding-bottom: 24px;
  margin-bottom: 16px;
}
.catalog__content .aspl-products {
  gap: 24px;
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .catalog__content .aspl-products {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .catalog__content .aspl-products {
    gap: 16px;
  }
}
@media screen and (min-width: 426px) and (max-width: 767px) {
  .catalog__content .aspl-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 425px) {
  .catalog__content .aspl-products {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.catalog__content .aspl-products .product {
  margin-top: 0px;
}
@media screen and (min-width: 1200px) {
  .catalog__content .aspl-products .product {
    max-width: 205px;
  }
}
@media screen and (max-width: 520px) {
  .catalog__content .aspl-products .aspl-product-card__image {
    padding: 16px 0 0;
  }
}

.description {
  border-top: 1px solid #D0C7B8;
  border-bottom: 1px solid #D0C7B8;
  padding: 24px 0 25px;
  margin-top: 17px;
  line-height: 1.3;
}

.no-scroll {
  overflow: hidden;
  height: 99vh;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.overlay.show {
  height: 100vh;
  z-index: 11;
  opacity: 1;
}

/**
 * * Main stylesheet for Cosmetsy Child Theme
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
/**
 * * Cart Page Styles
 * *
 * * @package Cosmetsy_Child
 * * @since 1.8.3
 * */
.woocommerce-cart .cart-title {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  color: #1A1814;
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .woocommerce-cart .cart-title {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 24px;
  }
}

.csm-cart-wrapper {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .csm-cart-wrapper {
    margin-bottom: 40px;
  }
}

.csm-cart-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
}
@media screen and (max-width: 1199px) {
  .csm-cart-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.csm-cart-products {
  background: #FFFFFF;
  border: 1px solid #D0C7B8;
  border-radius: 8px;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .csm-cart-products {
    padding: 16px;
  }
}
.csm-cart-products__title {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #1A1814;
  margin: 0 0 4px 0;
}
.csm-cart-products__subtitle {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #6D6860;
  margin: 0 0 24px 0;
}

.csm-cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.csm-cart-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 24px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #D0C7B8;
}
@media screen and (max-width: 767px) {
  .csm-cart-item {
    grid-template-columns: 60px 1fr;
    gap: 12px;
    position: relative;
    padding-bottom: 16px;
  }
}
.csm-cart-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.csm-cart-item__image {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .csm-cart-item__image {
    width: 60px;
    height: 60px;
  }
}
.csm-cart-item__image img {
  width: auto;
  height: 100%;
  object-fit: cover;
  border: 1px solid #D0C7B8;
  border-radius: 6px;
}
.csm-cart-item__details {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 0;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .csm-cart-item__details {
    gap: 8px;
  }
}
.csm-cart-item__name {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #1A1814;
  margin: 0;
}
.csm-cart-item__name a {
  color: inherit;
  text-decoration: none;
}
.csm-cart-item__name a:hover {
  text-decoration: underline;
}
.csm-cart-item__quantity {
  display: flex;
  align-items: center;
}
.csm-cart-item__quantity-and-remove {
  display: flex;
  align-items: center;
}
.csm-cart-item__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .csm-cart-item__price {
    position: absolute;
    bottom: 16px;
    right: 0;
  }
}
.csm-cart-item__total {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 21px;
  color: #1A1814;
}
.csm-cart-item__total.has-sale {
  color: #D84820;
}
.csm-cart-item__regular {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #6D6860;
}
.csm-cart-item__regular del {
  text-decoration: line-through;
}
.csm-cart-item__remove {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .csm-cart-item__remove {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.csm-cart-item__remove .remove {
  color: #6D6860;
  font-size: 24px;
  text-decoration: none;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.csm-cart-item__remove .remove:hover {
  color: #D84820;
}

.quantity.csm-quantity {
  display: flex;
  align-items: center;
  gap: 0;
  border: none;
  overflow: hidden;
  width: fit-content;
  padding-left: 0;
  padding-right: 0;
}

.quantity .csm-quantity__button.minus::after, .quantity .csm-quantity__button.plus::after, .quantity .csm-quantity__button.plus::before {
  display: none;
}
.quantity .csm-quantity__button {
  width: auto;
  padding: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #D0A360;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.quantity .csm-quantity__button:hover {
  background: #FFF7EB;
}
.quantity .csm-quantity__button svg {
  width: 16px;
  height: 16px;
}
.quantity .csm-quantity__input.csm-cart-input {
  width: 46px;
  height: 32px;
  border: none;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  color: #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
}
.quantity .csm-quantity__input.csm-cart-input:focus {
  outline: none;
}

.csm-cart-actions {
  position: absolute;
  left: -9999px;
}

.csm-cart-summary {
  background: #FFFFFF;
  border: 1px solid #D0C7B8;
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 100px;
}
@media screen and (max-width: 1199px) {
  .csm-cart-summary {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .csm-cart-summary {
    padding: 16px;
  }
}
.csm-cart-summary__title {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #1A1814;
  margin: 0 0 24px 0;
}

.csm-cart-coupon__title {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  color: #1A1814;
  margin: 0 0 11px 0;
}
.csm-cart-coupon__form {
  display: flex;
  gap: 0;
  margin-bottom: 11px;
  border: 1px solid #D0C7B8;
  border-radius: 6px;
  padding: 4px 4px 4px 0;
}
.csm-cart-coupon__form input {
  flex: 1;
  background: transparent;
  height: 40px;
  padding: 0px 14px 0px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #1A1814;
  border: none;
}
.csm-cart-coupon__form input::placeholder {
  color: #999999;
}
.csm-cart-coupon__form input:focus {
  outline: none;
  border-color: #D0A360;
}
.csm-cart-coupon__form button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.csm-cart-coupon__form button:hover {
  background: #B8924F;
  border-color: #B8924F;
  color: #FFFFFF;
}
.csm-cart-coupon__form button:active, .csm-cart-coupon__form button:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.csm-cart-coupon__form button:disabled, .csm-cart-coupon__form button.disabled {
  background: #D0C7B8;
  border-color: #D0C7B8;
  color: #FFFFFF;
  cursor: not-allowed;
}

.csm-cart-discount {
  padding: 16px;
  background: #FFF7EB;
  border-radius: 6px;
  text-align: left;
  margin-bottom: 24px;
}
.csm-cart-discount__button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: transparent;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #674717;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 8px;
  text-align: center;
}
.csm-cart-discount__button:hover {
  background: #FFF7EB;
  border-color: #B8924F;
  color: #674717;
}
.csm-cart-discount__button:active, .csm-cart-discount__button:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.csm-cart-discount__button:disabled, .csm-cart-discount__button.disabled {
  background: transparent;
  border-color: #C8C8C8;
  color: #FFFFFF;
  cursor: not-allowed;
}
.csm-cart-discount__title {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  color: #674717;
  margin-bottom: 8px;
}
.csm-cart-discount__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #635B50;
  margin-bottom: 16px;
}

.csm-cart-totals {
  padding: 24px 0;
  border-top: 1px solid #D0C7B8;
}
.csm-cart-totals__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  flex-direction: column;
  align-items: end;
}
.csm-cart-totals__label {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  color: #1A1814;
  margin-bottom: 8px;
}
.csm-cart-totals__value {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  color: #1A1814;
  margin-bottom: 4x;
}
.csm-cart-totals__value .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
}
.csm-cart-totals__vat {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #635B50;
  text-align: right;
}

.csm-cart-checkout__button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  text-transform: none;
}
.csm-cart-checkout__button:hover {
  background: #B8924F;
  border-color: #B8924F;
  color: #FFFFFF;
}
.csm-cart-checkout__button:active, .csm-cart-checkout__button:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.csm-cart-checkout__button:disabled, .csm-cart-checkout__button.disabled {
  background: #D0C7B8;
  border-color: #D0C7B8;
  color: #FFFFFF;
  cursor: not-allowed;
}
.csm-cart-checkout__button svg {
  width: 24px;
  height: 18px;
}

.woocommerce-cart .shop_table,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-cart .woocommerce-notices-wrapper {
  display: none;
}

@media screen and (max-width: 767px) {
  .csm-cart-item__quantity {
    grid-column: 1/-1;
    order: 3;
  }
  .csm-cart-item__price {
    position: static;
    grid-column: 1/-1;
    order: 4;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 8px;
  }
  .csm-cart-item__regular {
    order: -1;
  }
}
.csm-cart-wrapper.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.csm-cart-wrapper.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #D0A360;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.button.loading {
  position: relative;
  color: transparent;
}
.button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.csm-cart-item.removing {
  opacity: 0.5;
  pointer-events: none;
}

.woocommerce-info {
  display: none;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty .button {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.cart-empty .button:hover {
  background: #B8924F;
  border-color: #B8924F;
  color: #FFFFFF;
}
.cart-empty .button:active, .cart-empty .button:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.cart-empty .button:disabled, .cart-empty .button.disabled {
  background: #D0C7B8;
  border-color: #D0C7B8;
  color: #FFFFFF;
  cursor: not-allowed;
}

.auth {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 100vh;
}
@media screen and (max-width: 1199px) {
  .auth {
    overflow: auto;
    height: fit-content;
  }
}
.auth__card {
  max-width: 996px;
  margin: 0 auto;
  border: 1px solid #D0C7B8;
  border-radius: 8px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 552px) minmax(0, 444px);
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .auth__card {
    max-width: 600px;
  }
}
@media screen and (max-width: 1199px) {
  .auth__card {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-height: 600px) {
  .auth__card {
    height: 100%;
    overflow: auto;
  }
}
.auth__form-block {
  padding: 24px 24px 8px;
  border-right: 1px solid #D0C7B8;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .auth__form-block {
    border-right: unset;
  }
}
@media screen and (max-width: 767px) {
  .auth__form-block {
    padding: 16px;
  }
}
.auth__form-block .btn {
  margin-bottom: 16px;
}
@media screen and (min-width: 1200px) {
  .auth__form-block .btn {
    width: calc((100% - 8px) / 2);
  }
}
.auth__form {
  display: flex;
  flex-direction: column;
}
.auth__form .btn {
  width: 100%;
}
.auth__cta {
  position: relative;
  background-color: #FFF7EB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.auth__cta .btn {
  width: 138px;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: transparent;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #674717;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #ffffff;
}
.auth__cta .btn:hover {
  background: #FFF7EB;
  border-color: #B8924F;
  color: #674717;
}
.auth__cta .btn:active, .auth__cta .btn:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.auth__cta .btn:disabled, .auth__cta .btn.disabled {
  background: transparent;
  border-color: #C8C8C8;
  color: #FFFFFF;
  cursor: not-allowed;
}
@media screen and (max-width: 767px) {
  .auth {
    padding: 16px 16px 24px;
  }
}
.auth__title {
  font-size: 32px;
  font-weight: 400;
  color: #1A1814;
}
@media screen and (max-width: 767px) {
  .auth__title {
    font-size: 26px;
  }
}
.auth .btn {
  height: 50px;
}
.auth__social {
  display: flex;
  gap: 8px;
}
.auth__social .btn {
  margin: 0;
  height: 40px;
  font-size: 14px;
  line-height: 1;
  border-radius: 8px;
}

.btn__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 8px;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  margin-top: 24px;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn--primary:hover {
  background: #B8924F;
  border-color: #B8924F;
  color: #FFFFFF;
}
.btn--primary:active, .btn--primary:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.btn--primary:disabled, .btn--primary.disabled {
  background: #D0C7B8;
  border-color: #D0C7B8;
  color: #FFFFFF;
  cursor: not-allowed;
}
.btn--ghost {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: transparent;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #674717;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn--ghost:hover {
  background: #FFF7EB;
  border-color: #B8924F;
  color: #674717;
}
.btn--ghost:active, .btn--ghost:focus {
  background: #D0A360;
  border-color: #D0A360;
  color: #FFFFFF;
}
.btn--ghost:disabled, .btn--ghost.disabled {
  background: transparent;
  border-color: #C8C8C8;
  color: #FFFFFF;
  cursor: not-allowed;
}
.btn--fb {
  background: #1977F3;
  color: #fff;
  border-color: #1977F3;
}
.btn--fb:hover {
  background-color: #0C67E0;
  border-color: #0C67E0;
}
.btn--fb:focus {
  background-color: #0B64D9;
  border-color: #0B64D9;
}
.btn--google {
  background: #fff;
  border: 1px solid #747775;
  color: #1F1F1F;
}
.btn--google:hover {
  background-color: transparent;
  border-color: #1F1F1F;
  color: #1F1F1F;
}
.btn--google:focus {
  background-color: transparent;
  border-color: #747790;
  color: #1F1F1F;
}

.auth-cta {
  padding: 24px 40px;
  text-align: center;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .auth-cta {
    padding: 24px 16px;
  }
}
.auth-cta__title {
  font-size: 32px;
  line-height: 1;
  margin: 0 0 16px;
  color: #1A1814;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .auth-cta__title {
    font-size: 26px;
  }
}
.auth-cta__text {
  margin: 0 0 16px;
  color: #6b675f;
  font-size: 20px;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .auth-cta__text {
    font-size: 16px;
  }
}
.auth-cta__text strong {
  color: #635B50;
}

@media (max-width: 768px) {
  .auth__card {
    grid-template-columns: 1fr;
  }
  .auth__social {
    flex-direction: column;
  }
}
@media screen and (min-width: 75rem) {
    .container {
        max-width: 77rem;
    }
}
/*# sourceMappingURL=style.css.map */


.promo .btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.promo .btn:hover {
  color: rgb(255, 255, 255);
  background: rgb(184, 146, 79);
  border-color: rgb(184, 146, 79);
}
.filters .btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  height: 40px;
  background: #D0A360;
  border: 1px solid #D0A360;
  border-radius: 6px;
  outline: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-transform: none;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.filters .btn:hover {
  color: rgb(255, 255, 255);
  background: rgb(184, 146, 79);
  border-color: rgb(184, 146, 79);
}
@media (max-width: 1199px) {
  .archive .line-c {
    height: 1px;
    width: 100%;
    display: block;
    background-color: #D0C7B8;
    min-height: 1px;
  }
  .filters .apply-filters__gotowe {
    margin: 0;
    width: 100%;
  }
  .filters .btn-wrap {
    margin-top: 24px!important;
  }
}
