.kaching-bundles .kaching-bundles__bar--selected .kaching-bundles__bar-container {
    border-radius: 5px !important;
}


@media screen and (max-width: 768px) {
            .firstlabel,
            .trustpilot p {
                font-size: 12px !important;
            }
        }

.cart-drawer::part(body) {
    display: flex!important;
    flex-direction: column!important;
    overflow-y: auto!important;
    align-items: stretch!important;
}

#slidecarthq {
  display: none!important;
}

.payment-icons svg, .payment-icons img {
  width: 32px;
  height: auto;
}

.payment-icons {
    gap: 5px!important;
}

product-card{

display: flex!important;
    flex-direction: column!important;
    align-items: stretch!important;
  
}


.collection {
        margin-top: 15px!important;
    }

.product-card__info {
    padding-left: 0px!important;
    padding-right: 0px!important;
}

.kaching-bundles .kaching-bundles__bar-container {
  opacity: 0.85;
}

.kaching-bundles .kaching-bundles__bar--selected .kaching-bundles__bar-container {
    opacity: 1;
}

.footer__aside {
    display: flex!important;
    justify-content: space-between!important;
    flex-wrap: wrap!important;
}

.product-image img {
    max-width: 100%;
    height: auto!important;
    height: 150px!important;
    object-fit: contain!important;
}

.hero-section {
  padding-top: 0px!important;
}

.post-overlay {
  display: none!important;
}

@media screen and (min-width: 1150px) {
  .product-quick-add__variant.hidden {
    display: grid!important;
  }
 .media-with-text__item   .prose :is(.h5,.h6,h5,h6)+* {
        margin-top: 4px!important;
    }
  .media-with-text__item .h5, .prose h5:not(.h0,.h1,.h2,.h3,.h4,.h5,.h6) {
    margin-top: 30px!important;
}

.kaching-bundles .kaching-bundles__bar--selected .kaching-bundles__bar-container--most-popular--simple .kaching-bundles__bar-variants {
    margin-top: 0px!important;
    margin-bottom: 10px!important;
}

.kaching-bundles .kaching-bundles__bar-pricing {
    flex-direction: row!important;
    gap: 8px!important;
}

.kaching-bundles .kaching-bundles__bar-main {
    min-height: auto!important;
}

.kaching-bundles .kaching-bundles__bar-content {
    align-items: self-start!important;
}

.image-icon {
        width: var(--icon-max-width)!important;
        height: var(--icon-max-width)!important;
    }
}

/* assets/your-css-file.css */

.step-icon-wrapper {
    padding: 5px;
    border-radius: 500px !important;
}

.step-checkmark {
    padding: 3px;
}

.step-icon-wrapper img {
     border-radius: 500px;
    padding: 2px;
}

multi-step-shipping-bar {
    display: block;
    padding: 15px 0;
    background-color: #efefef;
    border-top: 1px solid #e0e0e0;
    margin-top: 15px;
    border: none;
    margin: 0;
    background: #efefef;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 30px;
    padding-top: 20px;
}

.shipping-bar-title {
  text-align: left;
  margin-bottom: 50px;
  font-size: 1.1em; /* Adjust size */
}

.shipping-bar-title strong {
  font-weight: bold; /* Ensure amount needed is bold */
}

.progress-container {
  position: relative;
  margin-bottom: 25px; /* Space below bar */
}

.progress-track {
  width: 100%;
  height: 8px; /* Bar height */
  background-color: #e0e0e0; /* Track color */
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #000000; /* Fill color */
  border-radius: 4px;
  transition: width 0.3s ease-in-out;
  width: 0%; /* Initial width */
}

.progress-steps {
  position: absolute;
  top: -16px; /* Position icons above the track */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* Allow clicks through steps */
}

.progress-step {
  position: absolute;
  transform: translateX(-90%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #888; /* Default step color */
}

.progress-step.step-start {
  left: 0;
  transform: translateX(0);
  display: none; /* Hide start label if not needed */
}

.progress-step.step-shipping {
   /* Position at 45/70 = ~64.3% */
   /* Adjust based on visual preference vs exact ratio */
   left: calc((50 / 70) * 100%);
}

.progress-step.step-gift {
 left: calc(100% + 30px);
}


.step-icon-wrapper {
  position: relative;
  width: 40px; /* Icon circle size */
  height: 40px;
  background-color: #ffffff; /* Icon circle background */
  border: 2px solid #e0e0e0; /* Default border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  z-index: 1; /* Ensure icons are above fill */
}

.progress-step.active .step-icon-wrapper,
.progress-step.achieved .step-icon-wrapper {
  border-color: #000000; /* Active/Achieved border color */
  background-color: #ffffff; /* Active/Achieved background color */
}

.step-icon-wrapper .icon {
  color: #888; /* Default icon color */
  transition: color 0.3s ease;
  width: 20px; /* Ensure icon size */
  height: 20px;
}

.progress-step.active .step-icon-wrapper .icon,
.progress-step.achieved .step-icon-wrapper .icon {
  color: #ffffff; /* Active/Achieved icon color */
}

.step-checkmark {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #009a01; /* Checkmark background */
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.progress-step.achieved .step-checkmark {
  opacity: 1;
  transform: scale(1);
}

.step-checkmark .icon {
  color: #ffffff; /* Checkmark color */
  width: 10px;
  height: 10px;
}


.step-threshold {
       position: absolute;
    top: -25px;
    left: 50%;
    transform: translate(-54%);
    font-size: .9em;
    color: #555;
    white-space: nowrap;
}

.step-label {
    position: absolute;
    top: 32px;
    left: -75%;
    transform: translate(-50%);
    font-size: 9px;
    color: #555;
    white-space: normal;
    width: auto;
    max-width: 115px;
    text-align: left;
}


.shipping-bar-message {
  margin-top: 35px; /* Space above message */
  font-size: 1.1em; /* Adjust size */
  font-weight: bold;
  visibility: hidden; /* Hidden by default */
  transition: visibility 0s linear 0.3s; /* Delay visibility change */
}

.shipping-bar-message[style*="visible"] {
    visibility: visible;
    transition-delay: 0s;
}

#slidecarthq {

}


.product-card__info {
    height: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.product-card__info variant-swatch-king {
  display: none!important;
}

.product-card__title {
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 5px;
}

.product .badge {
      background: #bc1f1e !important;
    font-weight: 500 !important;
  display: inline-flex!important
}



.kaching-bundles .kaching-bundles__bar-most-popular__content {
    background-color: rgb(196 156 147)!important;
    font-weight: 500!important;
    font-size: 10px!important;
}

    .footer__block--menu {
          gap: 15px!important;
    }

.footer__aside {
    gap: 20px!important;
}

.social-media {
  display: flex!important;
}

.shopify-section--newsletter input {
      background: #232323;
}

.shopify-section--newsletter .section {
      border-bottom: 1px solid #282828;
}

.shopify-section--newsletter .button {
  height: 100%;
}

.footer__payment-icons {
  display: flex!important;
}

.kaching-bundles .kaching-bundles__bar-subtitle {
    text-transform: uppercase!important;
    font-size: 12px!important;
    margin-top: 3px!important;
}

.kaching-bundles .kaching-bundles__bar-price {
    font-weight: 600 !important;
    font-size: 18px !important;
}

.kaching-bundles .kaching-bundles__bar-title {
    font-weight: 600 !important;
    font-size: 18px !important;
}

.kaching-bundles__bar-radio {
  display: none!important;
}

.header__link-list {
gap: 20px!important;
}

.logo-bar-section, .trustpilot-sections, .breadcrumbs, .shopify-section--love-us, .shopify-section--faq {
    /* background-color: #F9E9E8!important; */
  border: none!important;
}

.product-card {
    background-color: transparent!important;
  border: none!important;
}

.kaching-bundles .kaching-bundles__bar--selected .kaching-bundles__bar-container {
      border: 1px solid #000000;
    box-shadow: rgb(0 0 0 / 3%) 0px 8px 50px!important;
}

.icon-chevron-bottom {
    position: relative;
    top: 1px;
    width: max-content;
    height: 16px;
      margin-left: -8px;
}

.header__cart-count {
    left: 10px !important;
    top: 3px !important;
}

.drawer::part(content) {
    background-color: #fcf8f6!important;
}

.drawer::part(footer) {
      background-color: #f2efed!important;
}

.block-swatch:before {
    content: "";
    box-shadow: 0 0 0 1px rgb(var(--text-color))!important;
}

.orange_pulse {
    background: #f4af29;
    height: 10px;
    width: 10px;
    border-radius: 20px;
    animation: pulse-yellow 1.5s linear infinite;
    transform: scale(1);
    display: inline-block;
}

@keyframes greendot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(84, 198, 58, 0.5);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(84, 198, 58, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(84, 198, 58, 0);
  }
}

@keyframes pulse-yellow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(244, 175, 41, 0.5);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(244, 175, 41, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(244, 175, 41, 0);
  }
}

@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 #d9000085;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(244, 175, 41, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(244, 175, 41, 0);
  }
}

.kaching-bundles .kaching-bundles__bar-full-price {
    text-decoration: line-through;
    color: #bc1f1e!important;
}


.exclusivity-badge {
    border-radius: 0px!important;
}

.kaching-bundles .kaching-bundles__bar-price {
    font-weight: 600!important;
}

.cart-offer {
    padding: 8px 11px;
    background: #e000001c;
    margin-bottom: 15px;
    color: #7c0000;
    font-weight: 400;
}

.product compare-at-price {
    color: #bc1f1e !important;
    font-size: 18px;
}

@media screen and (min-width: 700px) {
    .drawer--lg {
        width: 485px!important;
    }
}
.carttotal {
  font-weight: 500;
    font-size: 16px;
}

cart-drawer .shipping-info {
     padding-bottom: 0;
    margin-bottom: -20px!important;
    border-top: 1px solid #cecece!important;
    padding-top: 20px!important;
}

.drawer::part(footer) {
    background: #efefef;
  border: none!important;
}

.horizontal-product {
    background: transparent !important;
    padding: 0 !important;
    padding: 10px !important;
    background: #f3efed !important;
    border-radius: 0px!important;
}

.drawer__close-icon {
      padding: 5px;
    background:#efefef;
    border-radius: 500px;
}

.progress-bar {
  height: 8px;!important;
  border-radius: 0px!important;
}

.small-icon {
      width: 18px;
    height: auto;
}

.cart-drawer {
  padding: 0px!important;
}

:root {
      --rounded-sm: 0px!important;
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#shopify-section-template--24932338008401__media_with_text_iFQPdf .section {
  padding-bottom: 0px!important;
}

.button--outline {
    box-shadow: inset 0 0 0 1px!important;
}

.horizontal-product {
    background: transparent !important;
    padding: 0 !important;
    padding: 10px !important;
    background: #efefef !important;
    border-radius: 0px!important;
}
.progress-bar:before {
    background: rgb(0 152 50)!important;
}

.header__secondary-nav .hidden {
display: block!important;
}

.price-list--lg {
    gap: 7px!important;
}

.faq-grid {
margin-top: 35px;
}

.reason-number {
color: black!important;
}

.color-swatch {
--swatch-offset: 1px!important;
border-radius: 3px!important;
}

@media screen and (min-width: 700px) {
.product-gallery__thumbnail-list {
grid-auto-columns: 135px!important;
}
}

.product-gallery__thumbnail[aria-current="true"] {
position: relative;
border: 1px solid black;
}

.accordion {
--accordion-spacing: var(--spacing-3)!important;
}

.accordion__toggle span {
text-transform: uppercase;
}

.text.text--small.text--strong {
margin-bottom: 15px;
display: block;
}

.product-info__shade-finder-button {
width: 100%!important;
padding: 15px 20px!important;
background-color: transparent!important;
color: #000000!important;
text-transform: uppercase!important;
letter-spacing: 1px!important;
text-align: center!important;
cursor: pointer!important;
transition: all 0.3s ease!important;
display: block!important;
font-size: 13px!important;
border-radius: 0px!important;
margin-bottom: -10px!important;
border: 0px!important;
}

.circular-image-text {
padding-top: 0px!important;
padding-bottom: 0px!important;
}

#shopify-section-template--24932338008401__kissr_image_with_text_nJcnK8 {
margin-bottom: 0px!important;
}

.product .firstlabel {
font-size: 16px;
font-weight: 500;
}

div[data-block-id="price"] {
display: flex;
align-items: center;
gap: 10px;
margin-top: -7px !important;
}

.product .trustpilot {
display: flex;
align-items: center;
gap: 10px;
color: #000;
flex-wrap: wrap;
row-gap: 5px;
font-size: 13px;
justify-content: start;
}

.product .trustpilot img {
width: 85px;
}

#shopify-section-template--24932337779025__media_with_text_iFQPdf .section {
padding-bottom: 0px!important;
}

#shopify-section-sections--24932333257041__text_with_icons_G8hNhb .section {
border-top: 1px solid #e4e3e1;
}

.trustpilot img {
width: 100px;
}

.trustpilot .lastimg {
width: 80px;
}

.firstlabel {
font-size: 18px;
font-weight: 500;
}

.trustpilot {
display: flex;
align-items: center;
gap: 10px;
color: black;
flex-wrap: wrap;
row-gap: 5px;
}

.trustpilot p {
margin: 0px!important;
}

.badge-card {
background: #bc1f1e;
color: white;
border-radius: 3px;
padding: 0px 8px;
font-size: 12px;
}

compare-at-price {
color: #bc1f1e!important;
}

.section-header {
margin: 0px!important;
}

.header__icon-list span {
text-transform: uppercase;
}

:root {
--spacing-8-5: 25px!important;
}

slideshow-carousel .prose p[data-sequence="subheading"] {
margin-top: 10px!important;
}


.product-card__aside {
display: none;
}

.badge.badge--on-sale{

display:none;
}

.footer .input {
padding-block-start: var(--spacing-4);
background: #ffffff21;
border-radius: 5px;
}

product-card .button {
padding: 10px;
width: 100%;
background: #000000;
color: white;
}


@media screen and (min-width: 1150px) {
.product-gallery--desktop-thumbnails-left {
position: sticky;
top: 75px;
}
}

.footer .prose p {
margin-top: 7px!important;
}

.footer ul {
display: grid;
gap: 6px !important;
}

#shopify-section-template--24886171468113__kissr_image_with_text_nJcnK8 {
margin: 0px!important;
}

.flex {
display: flex;
align-items: center;
justify-content: center;
}

.card-badge {
position: absolute;
z-index: 9;
margin: 10px;
padding: 3px 10px;
background: #ffffff;
color: #000000;
text-transform: uppercase;
font-size: 10px;
letter-spacing: 0.5px;
}

product-card .stars {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 0px;
margin-top: 0px;
}

x-slideshow .stars path {
fill: white!important;
}

x-slideshow .stars {
justify-content: start;
}

.stars p {
margin: 0px!important;
}

.breadcrumbs a {
text-decoration: underline;
color: black;
}

.shopify-section--announcement-bar {
background: black;
}

.product-info__block-item:where([data-block-type=buy-buttons]) {
--product-info-block-spacing: var(--spacing-8);
margin-top: -5px!important;
margin-bottom: -5px!important;
}


.shipping-info {
border-bottom: 1px solid #eeeeee;
padding-bottom: 15px;
margin-bottom: 25px;
}

.shipping-policy {
display: flex;
align-items: center;
margin-bottom: 5px;
}

.shipping-policy .icon {
margin-right: 8px;
}

.benefits {
display: flex;
justify-content: start;
flex-wrap: nowrap;
gap: 20px;
}

.benefit {
min-width: auto;
display: flex;
align-items: center;
}

.benefit .icon {
margin-right: 10px;
display: flex;
align-items: center;
justify-content: center;
}

.benefit .icon img{
  width: 16px;
}

.payment-icons {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
flex-wrap: wrap;
}

.badge {
background: rgb(240 240 240)!important;
font-weight: 500!important;
}

.section-header {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 25px;
}

.product buy-buttons .button {
font-weight: 500 !important;
border-radius: 0px;
font-size: 13px;
padding-block-start: 17px;
padding-block-end: 17px;
}

x-slideshow .heading, x-slideshow .h0, x-slideshow .h1, x-slideshow .h2, x-slideshow .h3, x-slideshow .h4, x-slideshow .h5, x-slideshow .h6, .prose :is(h1,h2,h3,h4,h5,h6) {
color: white!important;
}

.kaching-bundles .kaching-bundles__bar-first-line {
    align-items: center!important;
}

.badge-savings {
background: #c49a91;
border-radius: 2px;
text-transform: uppercase;
padding: 5px 8px;
line-height: 1;
font-size: 11px;
width: max-content;
color: #ffffff;
}

.kaching-bundles .kaching-bundles__bar-label {
    background-color: #c49b92 !important;
    color: #fff !important;
    font-size: 10px !important;
    padding: 5px !important;
    min-height: auto !important;
    height: 18px !important;
    line-height: 1;
}

.badge-savings-uppercase {
background: #f7eae8;
border-radius: 4px;
padding: 7px 10px;
line-height: 1;
color: #111111;
font-size: 12px;
width: max-content;
text-transform: uppercase;
}

.price-list--lg {
gap: var(--spacing-3);
align-items: center;
}

.product {
gap: 50px!important;
}

.product sale-price {
font-size: 18px;
color: black;
font-weight: 500;
}

.shopify-section--main-product .section {
padding-block-start: 10px!important;
padding-block-end: 50px!important;
}

svg[aria-labelledby="pi-ideal"] {
  display: none!important;
}

.breadcrumbs {
padding-top: 15px;
padding-bottom: 15px;
border-bottom: 1px solid #e3dfdd;
}

.breadcrumbs ul {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
row-gap: 5px;
}

.product-gallery__zoom svg {
width: 15px!important;
height: 15px!important;
}

.kaching-bundles .kaching-bundles__bar-container {
    box-shadow: #00000005 0 7px 29px !important;
    background: white !important;
}

.kaching-bundles .kaching-bundles__bar--selected .kaching-bundles__bar-container {

}

.heading, .h0, .h1, .h2, .h3, .h4, .h5, .h6, .prose :is(h1,h2,h3,h4,h5,h6) {
/* font-weight: 400!important; */
color: #111111!important;
}

.accordion__toggle {
color: #111111!important;
}

.footer .h6 {
color: white!important;
}

.kaching-bundles .kaching-bundles__bar-title {
font-weight: 600!important;
}

.variant-picker__option-info .text-subdued {
color: rgb(0 0 0);
font-weight: 500;
}

.kaching-bundles__block-title {
display: none!important;
}

.kissr-checks li {
display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
row-gap: 5px;
}
.kissr-checks li svg{
  position: relative;
    top: 6px;
}
.stars-wrapper {
display: flex;
}

.stars {
display: flex;
align-items: center;
gap: 10px;
margin-top: -15px;
margin-bottom: -10px;
}

.header__main-nav .bold {
font-weight: 400 !important;
text-transform: uppercase;
}

.product-gallery__zoom {
border: none !important;
top: 0 !important;
right: 0 !important;
bottom: auto;
transform: none!important;
margin: 10px;    color: #000000;
}
 

.review-row b, .review-row strong {
font-weight: 400!important;
}

.product-gallery__zoom>.circle-button {
box-shadow: none!important;
}

.button, .btn {
font-weight: 500!important;
}

.product-gallery__zoom>.circle-button {
width: auto;
height: auto;
display: flex;
align-items: center;
gap: 10px !important;
padding: 5px 9px !important;
font-size: 12px !important;
background: #fff;
gap: 6px !important;
border-radius: 5px;
}

.review-row b {
color: #BFA096;
}

.images .offset {
margin-left: -8px;
margin-right: -8px;
}

.review-row {
display: flex;   
align-items: center;
gap: 10px;
}

.review-row .images {
display: flex;
align-items: center;
}

.review-row img {
width: 28px;
height: 28px;
border: 2px solid white;
border-radius: 500px;
object-fit: cover;
}

.product-gallery__zoom {
border: none!important;
}

.product-zoom-button {
box-shadow: none!important;
}

custom-cursor {
display: none!important;
}


.w-layout-grid {
display: -ms-grid;
display: grid;
grid-auto-columns: 1fr;
-ms-grid-columns: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr;
-ms-grid-rows: auto auto;
grid-template-rows: auto auto;
grid-row-gap: 16px;
grid-column-gap: 16px;
}

.logo-bar-wrap {
display: -ms-grid;
display: grid;
max-width: 1180px;
margin-right: auto;
margin-left: auto;
justify-items: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
grid-auto-columns: 1fr;
grid-column-gap: 15px;
grid-row-gap: 10px;
-ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}

.logo-bar-section {
padding-top: 30px;
padding-bottom: 30px;
border-bottom: 1px solid #e2e2e2;
background-color: #ffffff;
}

.logo-bar-intro {
margin-bottom: 0px;
font-size: 15px;

}

.logo-bar-content {
display: -ms-grid;
display: grid;
grid-auto-columns: 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px;
-ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
-ms-grid-rows: auto;
grid-template-rows: auto;
}

.logo-bar-image {
max-height: 22px;
}


@media screen and (max-width: 767px) {

.logo-bar-section {
padding-top: 20px;
padding-bottom: 30px;
border-bottom: 1px solid #e2e2e2;
background-color: white;
}

.logo-bar-wrap {
padding-right: 15px;
padding-left: 15px;
grid-auto-flow: row;
grid-template-areas: ".";
-ms-grid-columns: 1fr 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr 1fr 1fr;
}

.logo-bar-intro {
grid-column-start: span 4;
font-size: 12px;
}

.logo-bar-item.hide-logo-bar-item.ipad {
display: none;
}

.logo-bar-item.hide-logo-bar-item.mobile {
display: none;
}

.logo-bar-image {
max-height: 19px;
}
}



.product-gallery--desktop-thumbnails-left {
gap: 15px!important;
}

.product-gallery__thumbnail:after {
display: none!important;
}

.button {
text-transform: uppercase;
}

 


@media (max-width: 768px) {
.step-icon-wrapper {
    position: relative;
    width: 33px;    top: 2px;
    height: 33px;
}.step-threshold {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translate(-50%);
    font-size: 10px;
    color: #555;
    white-space: nowrap;
}
.step-label {
    position: absolute;
    top: 32px;
    left: -150%!important;
    transform: translate(-33%);
    font-size: 9px;
    color: #555;
    white-space: normal;
    width: auto;
    max-width: 145px;
    text-align: left;
}
  multi-step-shipping-bar {
    display: block;
    background-color: #efefef;
    border-top: 1px solid #e0e0e0;
    border: none;
    background: #efefef;
    margin: 0 -24px;
    padding: 15px 40px 20px;
}
.shipping-bar-title {
        text-align: left;
        margin-bottom: 40px;
        font-size: 12px;
    }
.step-label {
    position: absolute;
    top: 32px;
    left: -115%;
    transform: translate(-33%);
    font-size: 9px;
    color: #555;
    white-space: normal;
    width: auto;
    max-width: 115px;
    text-align: left;
}.cart-offer {
    padding: 8px 11px;
    background: #e000001c;
    margin-bottom: 15px;
    color: #7c0000;
    font-weight: 400;
    font-size: 12px;
}

  
product-card .button {
margin-top: 15px;
font-size: 12px;
padding: 10px;
}



.shopify-section--main-product .section {
padding-block-start: 0px !important;
}

div[data-block-id="price"] {
margin-top: 20px!important;
margin-bottom: 20px!important;
}

.breadcrumbs ul {
gap: 6px;
}

.stars {
font-size: 12px;
}

.product sale-price {
font-size: 16px;
}

.badge-savings, .badge-savings-uppercase {
font-size: 10px;
}

.benefits {
flex-direction: column;
}

.benefit {
min-width: 100%;
}


.button--xl {
font-size: var(--text-base);
padding-block-start: var(--spacing-3);
padding-block-end: var(--spacing-3);
padding-inline-start: var(--spacing-8);
padding-inline-end: var(--spacing-8);
font-size: 12px;
}


x-slideshow .h3 {
font-size: 27px;
margin-bottom: -2px;
}

.comparison-header {
padding: 0px!important;
}

.trustpilot img {
width: 75px!important;
}

.firstlabel {
font-size: 16px!important;
font-weight: 500;
}


.header__secondary-nav .hidden {
display: none!important;
}

.trustpilot {
font-size: 12px!important;
}

  .product-gallery__thumbnail-list {
    grid-auto-columns: 83px!important;
}

  .product-gallery__thumbnail-list {
    align-items: stretch!important;
}


.product-gallery__thumbnail-list .object-contain {
    height: 100%;
    object-fit: cover;
}

  .product-gallery__zoom {
    margin-right: 0!important;
}

.comparison-container {
grid-template-columns: 1fr!important;
gap: 25px!important;
}

.breadcrumbs ul {
gap: 4px!important;
}

  div[data-block-id=price] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -8px !important;
    flex-direction: column;
    align-items: self-start;
    row-gap: 0px;
}

.breadcrumbs {
padding-top: 15px;
padding-bottom: 15px;
border-bottom: 1px solid #e3dfdd;
background: #f8f8f8;
padding-left: 20px;
padding-right: 20px;
  font-size: 12px;
}

.video-tutorials-section {
    padding-top: var(--spacing-6);
    padding-bottom: 0px!important;
    padding-top: 50px!important;
}

.product-info__title {
        font-size: 29px;
        margin-bottom: 17px;
        margin-top: 17px;
}

  .kaching-bundles .kaching-bundles__bar-first-line {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 5px;
    margin-bottom: 7px;
}

  .payment-icons svg {
    width: 30px;
  }
.product {
    gap: 25px !important;
}
.price-list {
align-items: baseline;
gap: var(--spacing-0-5) var(--spacing-2);
flex-wrap: wrap;
display: flex
;
gap: 7px !important;
}

.product-info__shade-finder-button {
width: 100% !important;
padding: 13px 20px !important;
background-color: transparent !important;
color: #000 !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;
text-align: center !important;
cursor: pointer !important;
transition: all .3s ease !important;
display: block !important;
font-size: 12px !important;
border-radius: 0px !important;
margin-bottom: -10px !important;
border: 0px !important;
}


.product buy-buttons .button {
font-weight: 500 !important;
border-radius: 0px;
font-size: 12px;
padding-block-start: 14px;
padding-block-end: 14px;
}


      .circular-image-text .feature-icons {
        flex-direction: column!important;
        gap: var(--spacing-8)!important;
        align-items: center!important;
        flex-direction: row!important;
   
    }

  .text-with-icons__list {
        grid-column-gap: 20px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .text-with-icons__item {
    padding: 0!important;
}
.text-with-icons__item {
    gap: var(--text-with-icons-gap);
    justify-items: var(--text-with-icons-justify);
    padding-inline-start: var(--spacing-6);
    padding-inline-end: var(--spacing-6);
    display: grid
;
    padding: 0;
    justify-content: flex-start;
    text-align: left;
    align-items: start;
    padding: 0;
    justify-items: start;
}

  :is(.drawer,.popover)::part(outside-close-button) {
    border-radius: 2px!important;
  }
.panel-footer {
  background: transparent!important;
}
  .desktopqp {
    display: none!important;
  }

.product .trustpilot {
gap: 8px;
}

.product .trustpilot img {
width: 75px;
}

  .benefits {
    gap: 5px!important;
}
  .panel__wrapper .h3 {
    font-size: 18px!important;
  }

  .panel__wrapper .social-media {
    display: none!important;
  }
  
  .product-image img {
    max-width: 100%;
    height: auto!important;
    height: 75px!important;
    object-fit: contain!important;
}


      .footer__trustpilot-section {
        padding-top: 0px!important;
        border: 0!important;
        padding: 0!important;
    }

  .trustpilot {
    justify-content: start!important;
    padding: 0px!important;
}

      .footer__social-mobile {
        padding: 0!important;
        border: none!important;
    }

  .cart-drawer::part(body) {
    display: flex!important;
    flex-direction: column!important;
    overflow-y: auto!important;
    align-items: stretch!important;
  padding-top: 10px!important;
}
.price-list {
        align-items: baseline;
        gap: var(--spacing-0-5) var(--spacing-2);
        flex-wrap: wrap;
        display: flex
;
        gap: 7px !important;
        font-size: 11px;
    }
}

.product .product-info__price sale-price {
    font-size: 24px;
    font-weight: 600;
}
 
.image-payment-icon {
    width: 38px;
    height: 24px;
    object-fit: contain;
    border-radius: 3px;
}


@media (max-width: 768px) {
 .product .product-info__price sale-price {
    font-size: 20px;
} 
}
@media screen and (max-width: 699px) {
  .product-info__title {
    font-size: 20px !important;
  }
}.pay-ico .footer__payment-icons {
  justify-content: center;
}.pay-ico {
  width: 100%;
}
.payment-icons {
  width: 100%;
  justify-content: flex-start !important;
}.offer .bold.text-sm {
  font-size: 14px !important;
}

.offer .prose.text-sm p {
  font-size: 13px !important;
}

.offer {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
sale-price {
  font-size: 22px !important;
}

compare-at-price {
  font-size: 16px !important;
}