/** Shopify CDN: Minification failed

Line 1876:11 Expected ":"

**/
/* font-family */

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on May 11, 2026 */

@font-face {
    font-family: 'calibril';
    src: url('/cdn/shop/files/calibril.woff2?v=1778483234') format('woff2'),
         url('/cdn/shop/files/calibril.woff?v=1778483233') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sf_pro_regular';
    src: url('/cdn/shop/files/sf_prodisplay_regular.woff2?v=1778483928') format('woff2'),
         url('/cdn/shop/files/sf_prodisplay_regular.woff?v=1778483916') format('woff');
    font-weight: normal;
    font-style: normal;
}
/* h1,
h2,
h3,
h4,
h5,
h6{
  font-family: 'calibril' !important;
} */

/* p,span,a{
  font-family: 'sf_pro_regular' !important;
} */

html {
  padding-bottom: 0 !important;
}
section {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding-top: var(--padding-top-xs);
    padding-bottom: var(--padding-bottom-xs);
  }
}
/*=====================================
  banner hover css
======================================*/
.banner-hover {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--img-border-radius);
}
.banner-hover a {
  overflow: hidden;
}
.banner-hover img {
  width: 100%;
  border-radius: 0;
}
.banner-hover:hover img {
  transform: scale(1.1);
}
.banner-hover img,
.banner-hover:hover img {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

/*=====================================
  modal css
======================================*/
.modal {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  z-index: 1055;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal.show {
  visibility: visible;
  opacity: 1;
}
.modal.center .modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  min-height: 100%;
  max-width: 500px;
}
.modal .modal-dialog {
  transition: transform .3s ease-out;
  transform: translate(0, -50px);
}
.modal .modal-dialog .modal-content {
  position: relative;
  padding: 30px;
  margin: 30px;
  width: 100%;
  background-color: var(--color-background);
  background: var(--gradient-background);
  border-radius: var(--img-border-radius);
  overflow: hidden;
}
.modal.show .modal-dialog {
  transform: none;
}
@media(max-width: 600px){
  .modal .modal-dialog .modal-content {
    padding: 15px;
    margin: 15px;
  }
}
/*=====================================
  tab css
======================================*/

.tab-container .tab-content .tab-pane {
  display: none;
}
.tab-container .tab-content .tab-pane.active {
  display: block;
}

/*=====================================
  collapse css
======================================*/
.dropdown-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

/*=====================================
  accordian css
======================================*/
.accordian-content {
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease;
}
.accordian-content.show {
  height: 100%;
}

.v-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

/*=====================================
  scroll css
======================================*/
.scrollbar::-webkit-scrollbar-track {
  border-radius: 10px;
}
.scrollbar::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}
.scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(var(--color-foreground),30%);
  opacity: .5;
}
/*=====================================
  shopify challenge css
======================================*/

.shopify-challenge__container p.shopify-challenge__message {
  font-size: 16px;
}
.shopify-challenge__container .g-recaptcha {
  margin: 30px 0px!important;
}
.shopify-challenge__container .shopify-challenge__button {
  padding: 0;
  background-color: transparent;
  text-decoration: underline; 
  border: none;
}
.shopify-challenge__container .shopify-challenge__button:focus{
  border: none;
}

/*=====================================
    section title css
======================================*/
.st-sec-block.left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.st-sec-block.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}
.st-sec-block.right {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 15px;
  text-align: right;
}
.st-sec-heading span.sub-title {
  color: var(--color-paragraph);
  font-size: 16px;
  margin-bottom: 10px;
}
.st-sec-heading h2 {
  font-size: 32px;
}
@media (max-width: 991px) {
  .st-sec-block.left {
    align-items: start;
    justify-content: start;
    gap: 15px;
    flex-direction: column;
  }
  .st-sec-block.mobile-center {
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .st-sec-block.mobile-left {
    justify-content: start;
    text-align: start;
    align-items: start;
  }
  .st-sec-block.mobile-right {
    justify-content: end;
    text-align: end;
    align-items: end;
  }
}
@media (max-width: 479px) {
  .st-sec-heading span.sub-title {
    font-size: 14px;
  }
  .st-sec-heading h2 {
    font-size: 24px;
  }
}

.slider-arrow {
  display: flex;
  align-items: center;
  gap: 5px;
}
.slider-arrow span {
  font-size: 18px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--color-input-border);
  border-radius: var(--img-border-radius);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.slider-arrow span:hover {
  color: var(--color-button-text-hover);
  background-color: var(--color-button-hover);
  border-color: var(--color-button-hover);
}
.slider-arrow span.arrow-next {
  inset-inline-end: 0;
}
.slider-arrow span.arrow-prev {
  inset-inline-start: 0;
}
@media (max-width: 1199px) {
  .slider-arrow span {
    width: 35px;
    height: 35px;
  }
}

/* product price css */
.price-box span{
  font-weight: 500;
}
.price-box span.new-price {
}
.price-box span.old-price {
  color: var(--color-paragraph);
  text-decoration: line-through;
  white-space: nowrap;
}
.price-box .old-price .money {
  text-decoration: line-through;
}
.qty-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: var(--color-input-border);
  width: 112px;
  border-radius: var(--sti-border-radius);
}
.qty-box .qty-bt {
  position: relative;
  height: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
}
.qty-box .qty-bt svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.qty-box input {
  border: none;
  text-align: center;
  width: 30px;
  padding: 0px;
  background: transparent;
}
.qty-box input:focus {
  border: 0;
}
.ajax-loader {
  line-height: 0;
}
.ajax-loader .spinner-border {
  display: none;
  border: 2px solid;
  width: 15px;
  height: 15px;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}
.loading .cart-title,.is-loading .cart-title{
  display: none;
}
.loading .ajax-loader,.is-loading  .ajax-loader .spinner-border {
  display: block;
}

/*=====================================
  swiper slider css
======================================*/

[data-view="2"] .swiper-slide {
  max-width: 50%;
}
[data-view="3"] .swiper-slide {
  max-width: 33.33%;
}
[data-view="4"] .swiper-slide {
  max-width: 25%;
}
[data-view="5"] .swiper-slide {
  max-width: 20%;
}
[data-view="6"] .swiper-slide {
  max-width: 16.66%;
}
[data-view="7"] .swiper-slide {
  max-width: 14.28%;
}
[data-view="8"] .swiper-slide {
  width: 12.5%;
}
[data-view="9"] .swiper-slide {
  width: 11.11%;
}
[data-view="10"] .swiper-slide {
  width: 10%;
}
[data-view="11"] .swiper-slide {
  width: 9.09%;
}
[data-view="12"] .swiper-slide {
  width: 8.33%;
}
[data-view="1"] .swiper-slide {
  max-width: 100%;
}

@media(max-width: 1199px){
  [data-view-lg="2"] .swiper-slide{
    max-width: 50%;
  }
  [data-view-lg="3"] .swiper-slide {
    max-width: 33.33%;
  }
  [data-view-lg="4"] .swiper-slide {
    max-width: 25%;
  }
  [data-view-lg="5"] .swiper-slide {
    max-width: 20%;
  }
  [data-view-lg="6"] .swiper-slide {
    max-width: 16.66%;
  }
  [data-view-lg="7"] .swiper-slide {
    max-width: 14.28%;
  }
  [data-view-lg="1"] .swiper-slide {
    max-width: 100%;
  } 
}
@media(max-width: 991px){
  [data-view-md="2"] .swiper-slide {
    max-width: 50%;
  }
  [data-view-md="3"] .swiper-slide {
    max-width: 33.33%;
  }
  [data-view-md="4"] .swiper-slide {
    max-width: 25%;
  }
  [data-view-md="5"] .swiper-slide {
    max-width: 20%;
  }
  [data-view-md="6"] .swiper-slide {
    max-width: 16.66%;
  }
  [data-view-md="7"] .swiper-slide {
    max-width: 14.28%;
  }
  [data-view-md="1"] .swiper-slide {
    max-width: 100%;
  } 
}
@media(max-width: 600px){
  [data-view-sm="2"] .swiper-slide {
    max-width: 50%;
  }
  [data-view-sm="3"] .swiper-slide {
    max-width: 33.33%;
  }
  [data-view-sm="4"] .swiper-slide {
    max-width: 25%;
  }
  [data-view-sm="5"] .swiper-slide {
    max-width: 20%;
  }
  [data-view-sm="6"] .swiper-slide {
    max-width: 16.66%;
  }
  [data-view-sm="7"] .swiper-slide {
    max-width: 14.28%;
  }
  [data-view-sm="1"] .swiper-slide {
    max-width: 100%;
  } 
}

.swiper:not(.swiper-initialized) .swiper-wrapper {
  margin-left: calc(15px * -1);
  margin-right: calc(15px * -1);
  width: auto;
}
.swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
  padding-left: 15px;
  padding-right: 15px;
}
.swiper-button-disabled {
  opacity: .5!important;
  cursor: unset !important;
}
@media (max-width: 767px) {
  .swiper:not(.swiper-initialized) .swiper-wrapper {
    margin-left: calc(6px * -1);
    margin-right: calc(6px * -1);
    width: auto;
  }
  .swiper:not(.swiper-initialized) .swiper-slide:not([style]) {
    padding-left: 6px;
    padding-right: 6px;
  }
}


/*=====================================
image ratio
======================================*/
.ratio {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ratio:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  padding-bottom: var(--ratio-percent);
}
.ratio video {
  z-index: -1;
}
.ratio video,
.ratio iframe,
.ratio svg,
.ratio img {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.text-danger {
  color: red;
}
.text-success {
  color: green;
}
.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  width: auto;
  height: auto;
  clip: auto;
}
.top-border:before {
  content: "";
  border-top: 1px solid var(--color-border);
  position: absolute;
  top: 0;
  height: 1px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.top-border.fluid:before {
  max-width: calc(100% - 60px);
}
.top-border.normal:before {
  max-width: 1320px;
}
.bottom-border {
  border-bottom: 1px solid var(--color-border);
}
@media(max-width: 1499px) {
  .top-border.normal:before,
  .top-border.fluid:before {
    max-width: calc(100% - 60px);
  }
}
@media(max-width: 767px) {
  .top-border.normal:before,
  .top-border.fluid:before {
    max-width: calc(100% - 30px);
  }
}
@-webkit-keyframes video-icon-sonar {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes video-icon-sonar {
  0% {
    opacity: 1;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spinner-border {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse-second {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ticker-ltr {
  0% {
    transform: none;
    visibility: visible;
  }
  100% {
    transform: translate(-100%);
  }
}
@keyframes ticker-rtl {
  0% {
    transform: none;
    visibility: visible;
  }
  100% {
    transform: translate(100%);
  }
}
.group-block.position-fix {
  position: absolute;
  z-index: 1;
  inset: var(--inset);
}
.group-block,
.group-block-content {
  position: relative;
}
.group-block:has(> video-background-component),
.group-block:has(> .background-image-container) {
  overflow: hidden;
}
.group-block-content {
  height: 100%;
  width: 100%;
}
.shopify-section:not(.header-section):has(.section:is([class*=color-scheme-])) {
  position: relative;
}
.custom-section-content {
  position: relative;
  z-index: 1;
}
.section-content-wrapper {
  position: relative;
  width: 100%;
}
/* Background overlay */
.background-overlay {
  position: relative;
  &::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-overlay-color, rgb(0 0 0 / 15%));
  }
}

/* Spacing style */
.spacing-style {
  --padding-block-start: var(--padding-block, 0px);
  --padding-block-end: var(--padding-block, 0px);
  --padding-block-start-xs: var(--padding-block, 0px);
  --padding-block-end-xs: var(--padding-block, 0px);
  --padding-inline-start: var(--padding-inline, 0px);
  --padding-inline-end: var(--padding-inline, 0px);
}

.spacing-style,
.inherit-spacing {
  padding-block: var(--padding-block-start) var(--padding-block-end);
  padding-inline: var(--padding-inline-start) var(--padding-inline-end);
}
@media(max-width: 1199px){
  .spacing-style {
    padding-block: var(--padding-block-start-lg) var(--padding-block-end-lg);
    padding-inline: var(--padding-inline-start-lg) var(--padding-inline-end-lg);
  }
}
@media(max-width: 600px){
  .spacing-style {
    padding-block: var(--padding-block-start-xs) var(--padding-block-end-xs);
    padding-inline: var(--padding-inline-start-xs) var(--padding-inline-end-xs);
  }
}

.custom-typography,
.custom-typography > * {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  text-transform: var(--text-transform);
  text-wrap: var(--text-wrap);
  line-height: var(--line-height);
  letter-spacing: var(--letter-spacing);
}
.custom-font-size,
.custom-font-size > * {
  font-size: var(--font-size);
}
.custom-font-weight,
.custom-font-weight > * {
  font-weight: var(--weight);
}

/* Border override style */
.border-style {
  border-width: var(--border-width);
  border-style: var(--border-style);
  border-color: var(--border-color);
  border-radius: var(--border-radius);
}
.top-border.border-style {
  border-top: 1px solid rgba(var(--color-border), .08);
}

/* I had to keep some of those mobile variables for now as they're used in some blocks like email-signup, slide, product-information */
.layout-panel-flex {
  display: flex;
  gap: var(--gap);
}
.layout-panel-flex.layout-panel-flex--row {
  flex-wrap: wrap;
}
.layout-panel-flex.layout-panel-flex--row>.group-block {
  width: calc((100% / var(--columns)) - var(--gap-adjust));
  box-sizing: border-box;
}
.group-block-content.layout-panel-flex.layout-panel-flex--row {
  flex-wrap: nowrap;
}
.layout-panel-flex--row {
  justify-content: var(--horizontal-alignment);
  align-items: var(--vertical-alignment);
}
.layout-panel-flex--column {
  flex-flow: column var(--flex-wrap);
  align-items: var(--horizontal-alignment);
  justify-content: var(--vertical-alignment);
}
.group-block-content.layout-panel-flex.flex-wrap {
  flex-wrap: wrap;
}
@media (max-width: 1399px) {
  .layout-panel-flex {
    gap: var(--gap-laptop);
  }
  .layout-panel-flex.layout-panel-flex--row>.group-block {
    width: calc((100% / var(--columns)) - var(--gap-adjust-laptop));
  }
}
@media (max-width: 1199px) {
  .layout-panel-flex {
    gap: var(--gap-ipad);
  }
  .layout-panel-flex.layout-panel-flex--row>.group-block {
    width: calc((100% / var(--columns-md)) - var(--gap-adjust-ipad));
  }
  .layout-panel-flex--column {
    align-items: var(--horizontal-alignment-ipad);
    justify-content: var(--vertical-alignment-ipad);
  }
  .group-block.border-style {
    border-width: var(--border-width-ipad);
  }
  .group-block-content.layout-panel-flex.flex-wrap-ipad {
    flex-wrap: wrap;
  }
  .layout-panel-flex--row {
    justify-content: var(--horizontal-alignment-ipad);
    align-items: var(--vertical-alignment-ipad);
  }
}
@media (max-width: 600px) {
  .layout-panel-flex {
    gap: var(--gap-mobile);
  }
  .layout-panel-flex.layout-panel-flex--row>.group-block {
    width: calc((100% / var(--columns-xs)) - var(--gap-adjust-mobile));
  }
  .layout-panel-flex--column {
    align-items: var(--horizontal-alignment-mobile);
    justify-content: var(--vertical-alignment-mobile);
  }
  .group-block.border-style {
    border-width: var(--border-width-mobile);
  }
  .layout-panel-flex--row {
    justify-content: var(--horizontal-alignment-mobile);
    align-items: var(--vertical-alignment-mobile);
  }
}
@media (max-width: 1199px) {
  .ipad-column {
    flex-flow: column nowrap;
    align-items: var(--horizontal-alignment-ipad);
    justify-content: var(--vertical-alignment-ipad);
  }
}
@media (max-width: 600px) {
  .mobile-column {
    flex-flow: column nowrap;
    align-items: var(--horizontal-alignment-mobile);
    justify-content: var(--vertical-alignment-mobile);
  }
}

.layout-panel-flex--column .layout-panel-flex.layout-panel-flex--row>.group-block,
.section-slider .swiper-slide .group-block,
.layout-panel-flex.layout-panel-flex--row .collection-card .group-block,
.layout-panel-flex.layout-panel-flex--row .blog-card .group-block,
.layout-panel-flex.layout-panel-flex--row>.group-block.group-block--width-custom,
.layout-panel-flex.layout-panel-flex--row>.group-block .group-block {
  width: var(--size-style-width);
}
@media (max-width: 1199px) {
  .layout-panel-flex--column .layout-panel-flex.layout-panel-flex--row>.group-block,
  .section-slider .swiper-slide .group-block,
  .layout-panel-flex.layout-panel-flex--row .collection-card .group-block,
  .layout-panel-flex.layout-panel-flex--row .blog-card .group-block,
  .layout-panel-flex.layout-panel-flex--row>.group-block.group-block--width-custom,
  .layout-panel-flex.layout-panel-flex--row>.group-block .group-block {
    width: var(--size-style-width-ipad);
  }
}
@media (max-width: 600px) {
  .layout-panel-flex--column .layout-panel-flex.layout-panel-flex--row>.group-block,
  .section-slider .swiper-slide .group-block,
  .layout-panel-flex.layout-panel-flex--row .collection-card .group-block,
  .layout-panel-flex.layout-panel-flex--row .blog-card .group-block,
  .layout-panel-flex.layout-panel-flex--row>.group-block.group-block--width-custom,
  .layout-panel-flex.layout-panel-flex--row>.group-block .group-block {
    width: var(--size-style-width-mobile);
  }
}


.background-image-container {
  overflow: hidden;
  position: absolute;
  inset: 0;
}

.background-image-container img,
.background-image-container svg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.background-image-fit img,
.background-image-fit svg {
  object-fit: contain;
}
.video-background, .video-background * {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video-background--cover * {
  object-fit: cover;
}
.video-background--contain * {
  object-fit: contain;
}
.section-slider {
  width: 100%;
}
.section-slider .swiper-wrapper {
  align-items: var(--vertical-alignment);
}
.section-slider .swiper-slide {
  display: flex;
  align-items: var(--vertical-alignment);
  justify-content: var(--horizontal-alignment);
}
.size-style {
  width: var(--size-style-width);
}
.size-style.show-height {
  height: var(--height);
}
@media (max-width: 1399px) {
  .size-style.show-height {
    height: var(--height-laptop);
  }
}
@media (max-width: 1199px) {
  .size-style {
    width: var(--size-style-width-ipad);
  }
  .size-style.show-height {
    height: var(--height-ipad);
  }
  .section-slider .swiper-wrapper {
    align-items: var(--vertical-alignment-ipad);
  }
}
@media (max-width: 600px) {
  .size-style {
    width: var(--size-style-width-mobile);
  }
  .size-style.show-height {
    height: var(--height-mobile);
  }
  .section-slider .swiper-wrapper {
    align-items: var(--vertical-alignment-mobile);
  }
}

:root {
  --text-align-default: left;
}
[style*='--horizontal-alignment: center'] .text-block {
  --text-align-default: center;
}
[style*='--horizontal-alignment: flex-end'] .text-block {
  --text-align-default: right;
}
[style*='--horizontal-alignment: flex-start'] > .text-block {
  --text-align-default: left;
}
[style*='--horizontal-alignment: center'] > .text-block {
  --text-align-default: center;
}
[style*='--horizontal-alignment: flex-end'] > .text-block {
  --text-align-default: right;
}
@media(max-width: 1199px){
  [style*='--horizontal-alignment-ipad: center'] .text-block {
  --text-align-default: center;
  }
  [style*='--horizontal-alignment-ipad: flex-end'] .text-block {
    --text-align-default: right;
  }
  [style*='--horizontal-alignment-ipad: flex-start'] > .text-block {
    --text-align-default: left;
  }
  [style*='--horizontal-alignment-ipad: center'] > .text-block {
    --text-align-default: center;
  }
  [style*='--horizontal-alignment-ipad: flex-end'] > .text-block {
    --text-align-default: right;
  }
}
@media(max-width: 479px){
  [style*='--horizontal-alignment-mobile: center'] .text-block {
  --text-align-default: center;
  }
  [style*='--horizontal-alignment-mobile: flex-end'] .text-block {
    --text-align-default: right;
  }
  [style*='--horizontal-alignment-mobile: flex-start'] > .text-block {
    --text-align-default: left;
  }
  [style*='--horizontal-alignment-mobile: center'] > .text-block {
    --text-align-default: center;
  }
  [style*='--horizontal-alignment-mobile: flex-end'] > .text-block {
    --text-align-default: right;
  }
}

.text-block {
  width: var(--width);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: var(--horizontal-alignment);
  background: linear-gradient(310deg, #fcfcfc00, #fff0 99%);
  list-style: none;
  text-align: var(--text-align-default);
}
 .text-block > * {
  text-transform: var(--text-transform);
  width: var(--width);
  text-align: var(--text-align, var(--text-align-default));
  text-wrap: var(--text-wrap);
  margin: 0;
}
.text-block:not(.text-block--full-width).rte,
.text-block:not(.text-block--full-width).paragraph {
  /* Safari doesn't support pretty, so fallback to balance */
  text-wrap: balance;
  text-wrap: pretty;
}
.text-block:not(.text-block--full-width):is(.h1, .h2, .h3, .h4, .h5, .h6) {
  text-wrap: balance;
}
/* Hide underline unless text is using paragraph styles. */
.text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
  text-decoration-color: transparent;
}
.text-block--align-center,
.text-block--align-center > * {
  margin-inline: auto;
}
.text-block--align-right,
.text-block--align-right > * {
  margin-inline-start: auto;
}
.text-block--background {
  background-color: var(--text-background-color);
}
.text-block.verticle-text {
  transform: rotate(-180deg);
  writing-mode: vertical-lr;
  transform-origin: center center;
  align-items: center;
}
.custom-color,
.custom-color > :is(h1, h2, h3, h4, h5, h6, p, *) {
  color: var(--color);
}


.section[data-shopify-visual-preview] {
  min-height: var(--section-preview-height);
  padding-top: 0;
}
.section[data-shopify-visual-preview] .custom-section-background {
  display: none;
}
body:has(> #header-group > .header-section > #header-component[transparent]):not(
    :has(> #header-group > .header-section + .shopify-section)
  )
  > main
  > .section-wrapper:first-child {
  --section-height-offset: var(--header-group-height, 0);
}
.custom-section-background {
  grid-column: 1 / -1;
}

/* ===============
 custom css
 ================= */

.locali-block {
  display: flex;
  align-items: center;
}

.locali-box {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 12px; /* space around each item */
}

/* Divider line using position */
.locali-box + .locali-box::before {
  content: "|";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%); /* perfectly centered vertically */
  opacity: 0.4;
}

.topbar-custom-link .topbar-link {
  font-size: 12px;
  color: currentColor;
  text-decoration: none;
  white-space: nowrap;
}

/* Target only the horizontal menu items within the desktop header */
.header-wrapper .megamenu-content .mainwrap .main-menu .menu-link:not(:first-child) .sp-link-title::before {
  content: "|";
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
  color: #000000;
}

/* Ensure it is hidden in the drawer/mobile menu specifically */
.menu-dropdown .singlelink-title .sp-link-title::before {
  content: none !important;
}

/* product */

.single-product-wrap .pro-img .slider-card .ratio {
  position: relative;           /* Important: Make container relative */
  overflow: hidden;
}
/* swatch */

.pr-gr-option .option-block {
  margin-bottom: 15px;
  padding: 0;
}

.swatch-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.swatch-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.swatch {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background: var(--swatch-bg);
  background-position: var(--focal);
  background-size: cover;
  flex-shrink: 0;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + .swatch-label .swatch {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

/* prduct-cart-bg */

/* Product Image Background Gradient */
/* ===== Product Image Gradient ===== */
.background-gradient {
  background: linear-gradient(180deg, 
    {{ settings.product_gradient_1 | default: '#f8fafc' }}, 
    {{ settings.product_gradient_2 | default: '#e2e8f0' }}
  ) !important;
}

/* feature collection */
.price-box{
  display: flex;
    flex-direction: column;
    gap: 5px;
}
.price-box .new-price{
  font-size: 20px;
  font-weight: 600;
  font-family: 'calibril' !important;
}
.price-txt{
  display: flex;
    gap: 10px;
}

/* Featured Collection - Carousel Arrows */
.swiper-arrow {
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 15px;
}

.arrow-prev,
.arrow-next {
  pointer-events: all;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.arrow-prev:hover,
.arrow-next:hover {
  background: #fff;
  transform: scale(1.1);
}

.arrow-prev {
  margin-left: -10px;
}

.arrow-next {
  margin-right: -10px;
}

/* Optional: Hide on mobile */
@media (max-width: 767px) {
  .swiper-arrow {
    display: none;
  }
}

.custom-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.custom-label .glass-label {
  -webkit-text-fill-color: transparent;
  color: transparent;
  z-index: 2;
  
  background-image: linear-gradient(
    120deg,
    var(--glass-base-color) 40%,
    var(--glass-highlight-color) 50%,
    var(--glass-base-color) 60%
  );
  
  background-position: -200% 0;
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: glass-sweep 5s ease-in-out infinite;
  position: relative;
  display: inline-block;
  padding: 2px 8px;
  font-weight: bold;
}

@keyframes glass-sweep {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Emoji Glass Effect */
.glass-sweep-container .emoji-glass {
  z-index: 2;
  display: inline-block;
  position: relative;
}

.glass-sweep-container .emoji-glass:before {
  content: "";
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.9) 50%, transparent 60%);
  background-position: -200% 0;
  background-size: 300% 100%;
  width: 100%;
  height: 100%;
  animation: glass-sweep 5s ease-in-out infinite;
  position: absolute;
  top: 0;
  left: 0;
}
/* product title and whishlist */

.title-whishlist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    align-items: flex-start;
}

.title-whishlist .product-action button{
  width: 18px;
  height: 18px;
}


.product-thumb.has-gradient {
  position: relative;
  background: linear-gradient(180deg, var(--grad-1), var(--grad-2)) !important;
  z-index: 1;
}

.product-thumb.has-gradient > * {
  position: relative;
  z-index: 2;
}
/* quck view */


.quickview-modal .pro_details_pos .product_details.product_details_sticky {
  position: relative !important;
  flex: 1;
  display: flex;
  flex-direction: column !important;
  overflow-y: auto;
  top: 0;
}
.quickview-modal .pro_details_pos{
  display: flex;
  flex-direction: column;
}

.quickview-modal .product_detail_slider {
    width: 100% !important;
  }
.quickview-modal .product_details_wrap{
   width: 100% !important;
  }

.quickview-sticky-footer .quickview-extra-icons .quickview-service-item .service-icon svg{
  width: 18px;
  height: 18px;
}

.quickview-modal .quick-view .deferred-media__poster-button .svg-wrapper{
  width: 50px;
  height: 50px;
  position: absolute;
  transform: translateY(50%);
  top: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: #ffffffc2;
  border-radius: 50px;
}

.quickview-modal .sticky-atc-wrapper,
.quickview-modal .pro-stk-bar,
.quickview-modal .product-spotlight,
.quickview-modal .best_suitable{
  display: none;
}

.quick-view .st-btn:hover:before {
  content: "";
  background-color: transparent;
}

/* ===== QUICK ADD BUTTON ===== */
.quick-view .quick-add-btn,
.quick-add-btn {
  position: relative;
  overflow: hidden;
}

/* ===== AJAX LOADER ===== */
.quick-view .ajax-loader,
.quick-add-btn .ajax-loader {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: inherit;
}

.quick-view .ajax-loader.hidden,
.quick-add-btn .ajax-loader.hidden {
  display: none !important;
}

/* ===== STICKY FOOTER BUTTON LOADER ===== */
.quickview-sticky-footer .btn-loader {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quickview-sticky-footer .btn-loader.hidden {
  display: none !important;
}

/* ===== SPINNER — ONLY INSIDE QUICK VIEW ===== */
.quick-add-btn .spinner-border,
.quickview-sticky-footer .qv-spinner {
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  border: 2px solid currentColor !important;
  border-right-color: transparent !important;
  border-radius: 50% !important;
  animation: qv-spin 0.6s linear infinite !important;
}

@keyframes qv-spin {
  to { transform: rotate(360deg); }
}

/* ===== HIDE TEXT WHEN LOADING ===== */
.quick-view .quick-add-btn.loading .cart-title,
.quick-add-btn.loading .cart-title {
  visibility: hidden;
}

.quick-view .whatsapp-enquiry-btn{display: none;}
.single-product-wrap .product-image.action-stl-10 .product-action .quick-add-btn,
.single-product-wrap .product-image.action-stl-10 .product-action button{
 background-color: transparent;
 border: transparent;
}
.single-product-wrap .product-image.action-stl-10 .product-action button:hover{
  color: var(--color-button-text);
  background-color: var(--color-button);
  border-color: transparent;
}
.single-product-wrap .product-image.action-stl-10 .product-action{
  top: 10px;
  right: 15px;
}
/* Header Menu */
.horizontal-menu-wrapper {
    background: #fff9f9;
    border-radius: 8px;
    width: 100%;
    border-bottom: 1px solid var(--color-border); /* border wrapper પર રાખો */
}

/* hover effect ફક્ત anchor tag પૂરતો સીમિત રાખો */
.horizontal-menu a:hover,
.horizontal-menu a.active {
    color: #000 !important;
}

/* wrapper ને hover effect થી બચાવો */
.horizontal-menu-wrapper:hover {
    border-color: var(--color-border) !important;
}
.horizontal-menu-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.horizontal-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    font-size: 15px;
}

.horizontal-menu a {
    position: relative;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: color 0.2s ease;
}

/* Hover - Sirf text color change thay */
.horizontal-menu a:hover {
    color: #000 !important;
}

/* Active state - Underline (divider) */
.horizontal-menu a.active {
    color: #000 !important;
}

.horizontal-menu a.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    transition: all 0.2s ease;
}

/* Important: Hover par underline na aave */
.horizontal-menu a:hover:after {
    content: none;           /* ya phir width: 0; */
}
/* footer */

.contact-number:hover{
  background-color: #e9f5ea;
  border: 1px solid #b9f8cf;
  border-radius: 5px;
}
.contact-number:hover .text-block p a,
.contact-number:hover .text-block p 
{
  color: #008236;
  font-weight: 500;
}
.contact-mail:hover{
 background-color: #9810FA0F;
 border: 1px solid #e9d4ff;
 border-radius: 5px;
}
.contact-mail:hover .text-block p a,
.contact-mail:hover .text-block p 
{
  color: #8200db;
  font-weight: 500;
}
.contact-email:hover{
  background-color: #155DFC17;
  border: 1px solid #bedbff;
  border-radius: 5px;
}
.contact-email:hover .text-block p a,
.contact-email:hover .text-block p 
{
  color: #1447e6;
  font-weight: 500;
}
.ftsublink-li:hover a{
  border-bottom: 1px solid var(--color-foreground-hover);
}

/* product page */
.gdesc-inner{
  display: none;
}
.pro_details_pos .form-group{
  display: none !important;
}
.product_details_info .grid-wrap .service-icon svg{
  width: 18px;
  height: 18px;
}
.share-button svg{
  width: 18px;
  height: 18px;
}
.share-button{
  height: 35px;
    width: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-background-secondary);
}
.wishlist-share{
  display: flex;
  gap: 10px;
}
.deferred-media__poster img{
  border-radius: 20px;
}

@media (min-width: 600px) and (max-width: 991px){

  .right-block-box .search-wrap .search-popup .icon{
    display: none !important;
  }

}


/* stikcy bar */


/* ── 1st Bar: Inside product info - sticky ── */
.pro-stk-bar {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
  z-index: 100;
  border-top: 1px solid #efefef;
  margin-top: 16px;
}
.pro-stk-inner {
  padding: 0 15px;
}
.pro-stk-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 10px;
  gap: 16px;
}
.pro-stk-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pro-stk-price-main {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
}
.pro-stk-price {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  line-height: 1;
}
.pro-stk-compare s {
  font-size: 15px;
  color: #999;
  font-weight: 400;
}
.pro-stk-mrp {
  font-size: 12px;
  color: #888;
}
.pro-stk-actions {
  flex-shrink: 0;
}
.pro-stk-btn {
  min-width: 180px;
  height: 50px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 15px;
  font-weight: 600;
}
.pro-stk-btn .pro-stk-loader {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pro-stk-btn.pro-stk-loading .cart-title {
  opacity: 0;
  visibility: hidden;
}
.pro-stk-btn.pro-stk-loading .pro-stk-loader {
  display: block;
}
.pro-stk-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #f0f0f0;
  padding: 10px 0 12px;
  background: #fffafa;
}
.pro-stk-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #444;
  font-weight: 500;
  flex: 1;
  justify-content: center;
  padding: 0 10px;
  border-right: 1px solid #e5e5e5;
}
.pro-stk-trust-item:last-child {
  border-right: none;
}
.pro-stk-trust-item p{
  margin: 0;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
}
.pro-stk-trust-item svg {
  flex-shrink: 0;
}
.pro-stk-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: proStkSpin .75s linear infinite;
}
@keyframes proStkSpin {
  to { transform: rotate(360deg); }
}

/* ── 2nd Bar: Bottom fixed bar ── */
.sticky-atc-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
.sticky-atc-wrapper.is-visible {
  transform: translateY(0);
}
.sticky-atc-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 0 15px;
}
.sticky-atc-product-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-atc-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
}
.sticky-atc-details {
  display: flex;
  align-items: center;
}
.sticky-atc-title {
  font-weight: 700;
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
}
.sticky-atc-price {
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  margin-left: 6px;
}
.sticky-atc-actions .cart-btn.st-btn {
  min-width: 180px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sticky-atc-actions .cart-btn.st-btn .ajax-loader {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.sticky-atc-actions .cart-btn.st-btn.is-loading .cart-title {
  opacity: 0;
  visibility: hidden;
}
.sticky-atc-actions .cart-btn.st-btn.is-loading .ajax-loader {
  display: block;
}
.spinner-border {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}


@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

/* Desktop: product details sticky */
@media (min-width: 1024px) {
  .product_details_wrap {
    position: sticky;
    top: 0;
    align-self: flex-start;
    max-height: 74vh;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .product_details_wrap::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 767px) {
  .sticky-atc-wrapper {
    padding: 10px 0;
  }
  .sticky-atc-title,
  .sticky-atc-price {
    font-size: 12px;
  }
  .sticky-atc-actions .cart-btn.st-btn {
    min-width: 130px;
    height: 38px;
    padding: 0 15px !important;
    font-size: 12px !important;
  }
  .pro-stk-price {
    font-size: 18px;
  }
  .pro-stk-btn {
    min-width: 140px;
    height: 42px;
    font-size: 13px !important;
    padding: 0 16px !important;
  }
  .pro-stk-trust-item {
    font-size: 11px;
    gap: 4px;
    padding: 0 6px;
  }
  .pro-stk-mrp{
    display
  }
  .pro-stk-price-main {
    display: flex;
    flex-direction: column;
  }
  
.sticky-atc-details {
    display: flex;
    flex-direction: column;
  }
  .sticky-atc-price{
    margin-left: 0 !important;
  }
  .sticky-atc-container{
    gap:15px;
  }
  .single-product-wrap .product-image.action-stl-10 .product-action{
    top: 0px;
    right: 0px;
  }
  .product-label {
    top: 8px !important;
    inset-inline-start: 0px !important;
  }
  .custom-label .glass-label{
    font-size: 12px;
  }
  .emoji-glass{
    display: none;
  }
  .footer-desktop-text{
    display: none;
  }
}

.label-unavailable{
  background: #ccc;
  color: #fff;
}

/* collection -page */

.flt-sort-wrapper .sort-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.flt-sort-wrapper .sort-btn {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  background: #fff;
  transition: all 0.2s;
}

.flt-sort-wrapper .sort-btn:hover,
.flt-sort-wrapper .sort-btn.active {
  background: #333;
  color: #fff;
  border-color: #333;
}


/* Cart page ma j header ne margin-bottom aapva mate */
/* Only cart page */

/* ── YOUR KIT HEADER ── */
.your-kit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 16px;
}
.your-kit-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 24px;
  color: inherit;
  text-decoration: none;
}
.your-kit-back:hover { opacity: 0.7; }
.your-kit-count {
  font-size: 20px;
  font-weight: 500;
  color: inherit;
}

/* ── CART TABLE ── */
.cart-page .cart-body table {
  box-shadow: 0px 0px 28px #00000047;
  border-radius: 10px;
}

/* ── CART FLEX CARDS ── */
.cart-flex-list {
  box-shadow: 1px 0px 10px #00000024;
  border-radius: 20px;
}
.cart-flex-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
}
.cart-flex-card img { max-width: 200px; }
.cart-flex-img {
  width: 35%;
  border-radius: 20px;
}
.cart-flex-img img {
  width: 100%;
  height: 100%;
}
.cart-flex-info { width: 70%; }
.cart-flex-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.padding-bottom { padding-bottom: 10px; }
.background-color {
  background: linear-gradient(180deg, var(--bg-color-1), var(--bg-color-2));
}

/* ── UPSELL SECTION ── */
.cart-upsell-section {
  padding: 20px;
  border-top: 1px solid var(--color-border-tertiary);
  background: linear-gradient(180deg, #fffcfc, #fff5f5);
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 20px;
}
.upsell-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 16px;
}
.upsell-title {
  color: var(--color-badge-foreground);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
.upsell-nav { display: flex; gap: 10px; }
.upsell-nav-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 26px;
  color: var(--color-button);
  display: flex;
  align-items: center;
  justify-content: center;
}
.upsell-slider-outer { overflow: hidden; }
.upsell-slider-track {
  display: flex;
  gap: 14px;
  transition: transform .35s ease;
  will-change: transform;
}
.upsell-card {
  width: 220px;
  min-width: 220px;
  background: var(--color-badge-background);
  border-radius: 22px;
  padding: 14px;
  flex-shrink: 0;
  border: 1px solid #f1f1f1;
  box-sizing: border-box;
}
.upsell-badge {
  background: var(--color-button);
  color: var(--color-button-text);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 6px 14px rgba(29,78,216,.18);
}
.upsell-image { margin-bottom: 14px; }
.upsell-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.upsell-img-wrap img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  display: block;
}
.upsell-card-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--color-badge-foreground);
}
.upsell-card-price {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-badge-foreground);
}
.upsell-card-price span,
.upsell-card-price s {
  font-size: 12px;
  color: var(--color-paragraph);
  font-weight: 400;
}
.upsell-add-btn {
  width: 100% !important;
  min-height: 48px;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 0 20px !important;
}

/* ── WISHLIST ── */
.wishlist-page .product-wrap .single-product-wrap .product-image {
  background: linear-gradient(180deg, #E0DFDE, #fff);
  border-radius: 20px;
}
/* .pro-img .img1 img,
.pro-img .img2 img { padding: 30px; } */
.video-section .play-btn .img-block { border-radius: 20px; }

/* ── ACCELERATED CHECKOUT ── */
.accelerated-checkout-block[data-shopify-visual-preview] { width: 300px; }
more-payment-options-link { font-size: smaller; }
more-payment-options-link a { --button-color: var(--color-primary); }
more-payment-options-link a:hover { --button-color: var(--color-primary-hover); }
.shopify-payment-button__more-options[aria-hidden='true'] { display: none; }

/* Bar wrapper */
.cart-offers-bar {
  border-radius:  30px;
  background: var(--color-background-secondary);
  padding: 30px;
  margin-bottom: 20px;
}

/* Top row: title + view-all */
.cart-offers-bar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.cart-offers-bar__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--color-foreground);
}
.cart-offers-bar__view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-button);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}
.cart-offers-bar__view-all:hover { text-decoration: underline; }

/* Applied strip (inline bar) */
.cart-offers__applied-strip {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 6px 0 10px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
}
.cart-offers__applied-strip.is-visible { display: flex; }

.cart-offers__badge {
  background: #ffdedf;
  color: var(--color-button);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
}
.cart-offers__remove-btn {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #111;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Slider */
.cart-offers-slider-wrap { overflow: hidden; }
.cart-offers-slider-track {
  display: flex;
  gap: 10px;
  transition: transform .3s ease;
  will-change: transform;
}

/* Offer card (slider) */
.cart-offer-card {
  flex: 0 0 100%;
  width: 80%;
  box-sizing: border-box;
  border: 1.5px solid var(--color-border);
  border-radius: var(--co-radius, 10px);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-background-secondary);
  transition: border-color .2s;
  margin-bottom: 1px;
}


.cart-offer-card.is-applied {
  border-color: var(--color-button);
  border-left: 3px solid var(--color-button);
}
.cart-offer-card__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #555;
}
.cart-offer-card__icon svg { width: 100%; height: 100%; }
.cart-offer-card__info { flex: 1; min-width: 0; }
.cart-offer-card__code {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--color-input-text);
}
.cart-offer-card__desc { font-size: 11px; color: #666; margin: 0; line-height: 1.5;}

/* Apply / Applied button */
.cart-offer-apply-btn {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1.5px solid var(--color-button);
  color: var(--color-button);
  background: transparent;
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.cart-offer-apply-btn:hover {
  background: var(--color-button);
  color: var(--color-button-text);
}
.cart-offer-apply-btn.is-applied {
  background: var(--color-button);
  color: var(--color-button-text);
  pointer-events: none;
}
.cart-offer-apply-btn.is-applied::after { content: 'APPLIED'; }
.cart-offer-apply-btn:not(.is-applied)::after { content: 'APPLY'; }

/* Slider nav arrows */
.cart-offers-slider-nav {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  justify-content: center;
}
.cart-offers-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #999;
  padding: 2px 6px;
  transition: color .2s;
}
.cart-offers-nav-btn.is-active { color: var(--color-button); }

/* Overlay */
.cart-offers-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9998;
}
.cart-offers-overlay.is-open { display: block; }

/* Drawer */
.cart-offers-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 92vw);
  background: #fff5f5;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
}
.cart-offers-drawer.is-open { transform: translateX(0); }

.cart-offers-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #e2e2e2;
  background: #fff5f5;
  flex-wrap: wrap;

}
.cart-offers-drawer__header h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  flex: 1;
}
.cart-offers-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: #555;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
}
.cart-offers-drawer__close:hover { background: #eee; }

/* Applied strip inside drawer */
.cart-offers-drawer__applied-strip {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-bottom: 1px solid #fff5f5;
  font-size: 13px;
  font-weight: 600;
}
.cart-offers-drawer__applied-strip.is-visible { display: flex; }

.cart-offers-drawer__list {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Drawer offer row */
.cart-offer-row {
  border: 1.5px solid #dde3f0;
  border-left: 3px solid var(--co-accent, #B11115);
  border-radius: var(--co-radius, 10px);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  transition: border-color .2s;
}
.cart-offer-row.is-applied {
  border-color: var(--co-accent, #B11115);
}
.cart-offer-row__icon { width: 24px; height: 24px; flex-shrink: 0; color: #555; }
.cart-offer-row__icon svg { width: 100%; height: 100%; }
.cart-offer-row__info { flex: 1; }
.cart-offer-row__code { font-size: 18px; font-weight: 700; margin: 0 0 2px; }
.cart-offer-row__desc { font-size: 12px; color: #666; margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .cart-flex-card { padding: 0; }
  .cart-flex-list { box-shadow: none; }
  .your-kit-header { padding: 0; }
  .cart-flex-img { width: 50%; }
  .upsell-header { flex-direction: column; }
  .upsell-title { font-size: 22px; }
}


/* Share modal quickview upar dikhay */
#share-modal.active,
#share-modal.is-open {
  z-index: 999999 !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}
/* Share modal quickview drawer upar dikhay */
#share-modal.active,
#share-modal.is-open {
  z-index: 999999 !important;
}