/** Shopify CDN: Minification failed

Line 470:5 Unexpected "/"
Line 479:0 Unexpected "}"

**/
/* ==== ATS PDP — externalized CSS ==== */
/* Scope everything to this section instance */
[data-section-type="ats-pdp"] .ATS-pdp {
  padding-top: var(--pad-t);
  padding-bottom: var(--pad-b);
}

/* Grid */
[data-section-type="ats-pdp"] .ATS-pdp-grid {
  display: grid;
}
/* @media (min-width: 992px) {
  [data-section-type="ats-pdp"] .ATS-pdp-grid {
     grid-template-columns: 1fr 1fr; 
  gap: var(--grid-mobile-vertical-spacing) var(--grid-mobile-horizontal-spacing);
  align-items: start;
  }
} */

/* Micro-typography */
[data-section-type="ats-pdp"] .pdp-label {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  color: rgb(var(--color-foreground));
}
/* [data-section-type="ats-pdp"] .pdp-selected {
  font-size: 1.3rem;
  color: rgba(var(--color-foreground), .75);
} */
/* [data-section-type="ats-pdp"] .pdp-label::after {
  content: ":";
} */

/* ===== Gallery: FIRST HERO + 2-UP GRID ===== */
[data-section-type="ats-pdp"] .ATS-gallery {
  display: grid;
}
[data-section-type="ats-pdp"] .ATS-first {
  /* border-radius: var(--media-radius); */
  overflow: hidden;
  background: rgb(var(--color-background));
}
[data-section-type="ats-pdp"] .ATS-first .ATS-main-media {
  position: relative;
  display: block;
  width: 100%;
}


/* Thumbs grid */
[data-section-type="ats-pdp"] .ATS-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  [data-section-type="ats-pdp"] .ATS-grid {
    grid-template-columns: 1fr 1fr;
  }
}
[data-section-type="ats-pdp"] .ATS-grid-item {
  display: block;
  /* border-radius: var(--media-radius); */
  overflow: hidden;
  background: rgb(var(--color-background));
  /* border: 1px solid rgba(var(--color-foreground), .08); */
  transition: box-shadow .2s, border-color .2s;
}
[data-section-type="ats-pdp"] .ATS-grid-item[aria-current="true"] {
  border-color: rgb(var(--color-foreground));
  box-shadow: 0 0 0 2px rgba(var(--color-foreground), .16) inset;
}
[data-section-type="ats-pdp"] .ATS-grid-item:hover {
  border-color: rgba(var(--color-foreground), .35);
}

/* Info column + sticky only when data-sticky="true" */
@media (min-width: 992px) {
  [data-section-type="ats-pdp"][data-sticky="true"] .ATS-info {
    position: sticky;
    top: var(--sticky-top);
    align-self: start;
    min-height: 80vh;
  }
  [data-section-type="ats-pdp"][data-sticky="false"] .ATS-info {
    align-self: start;
  }
}

/* Qty + ATC row (desktop) */
[data-section-type="ats-pdp"] .ATS-atcRow {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: stretch;
}
[data-section-type="ats-pdp"] .ATS-qty input { height: 2.75rem; }
[data-section-type="ats-pdp"] .ATS-atcRow .button { height: 2.75rem; }


/* Qty control chrome */
[data-section-type="ats-pdp"] [data-ats-qty] {
  border: 1px solid rgba(var(--color-foreground));
}
[data-section-type="ats-pdp"] [data-ats-qty] button {
  line-height: 1;
}

/* === Variant UI === */
[data-section-type="ats-pdp"] .ATS-opts {
  display: flex;
  flex-wrap: wrap;
}

/* Pills */
[data-section-type="ats-pdp"] .ATS-pill {
  border: 1px solid rgba(0,0,0,.55);
  background: rgb(var(--color-background));
  min-width: 4rem;
  text-align: center;
border: 1px solid rgba(var(--color-foreground), 0.1);
  font-size: 1.3rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  border-radius: var(--buttons-radius);
}
[data-section-type="ats-pdp"] .ATS-pill:hover { background: rgba(0,0,0,.05); }
[data-section-type="ats-pdp"] .ATS-pill.is-selected,
[data-section-type="ats-pdp"] .ATS-pill.selected {
  /* background: rgb(var(--color-foreground)); */
  /* color: rgb(var(--color-background)); */
  border: 1px solid rgba(var(--color-foreground));

}
[data-section-type="ats-pdp"] .ATS-pill[disabled] { opacity: .45; cursor: not-allowed; }
[data-section-type="ats-pdp"] .ATS-pill:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }

/* Color swatches */
[data-section-type="ats-pdp"] .ATS-color-swatch {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(var(--color-foreground));
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
[data-section-type="ats-pdp"] .ATS-color-swatch.round { border-radius: 9999px; }
[data-section-type="ats-pdp"] .ATS-color-swatch.square { border-radius: .5rem; }
[data-section-type="ats-pdp"] .ATS-color-swatch:hover { border-color: rgba(var(--color-foreground), .45); }
[data-section-type="ats-pdp"] .ATS-color-swatch.is-selected { box-shadow: 0 0 0 2px rgba(var(--color-foreground), .35) inset; }

/* ===== Mobile: make gallery a 1-up swipe slider (CSS-only) ===== */
@media (max-width: 767px) {
  /* Hide the big hero on mobile */
  [data-section-type="ats-pdp"] .ATS-first { display: none; }

  /* Turn the thumbs grid into a horizontal slider */
  [data-section-type="ats-pdp"] .ATS-grid {
    display: flex;                    /* from grid -> flex row */
    overflow-x: auto;
    scroll-snap-type: x mandatory;    /* snap between slides */
    -webkit-overflow-scrolling: touch;                   /* slide spacing; tweak if needed */
    padding-bottom: .25rem;           /* a tiny pad so the scrollbar (if any) doesn't overlap */
  }

  /* Each item = full width slide */
  [data-section-type="ats-pdp"] .ATS-grid-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    border: 0;                        /* remove the thumb border on mobile */
    border-radius: var(--media-radius);
    background: transparent;
    padding: 0;
  }

  /* Make image fill the slide nicely */
  [data-section-type="ats-pdp"] .ATS-grid-item img,
  [data-section-type="ats-pdp"] .ATS-grid-item picture,
  [data-section-type="ats-pdp"] .ATS-grid-item .media {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Optional: hide scrollbar for a cleaner look */
  [data-section-type="ats-pdp"] .ATS-grid { scrollbar-width: none; }
  [data-section-type="ats-pdp"] .ATS-grid::-webkit-scrollbar { display: none; }

  /* Remove “selected thumb” outline style (not useful in slider mode) */
  [data-section-type="ats-pdp"] .ATS-grid-item[aria-current="true"] {
    box-shadow: none;
  }
}
/* Dynamic checkout */

.shopify-payment-button__button {
  font-family: inherit;
  min-height: 4.6rem;
}

.shopify-payment-button__button [role='button'].focused {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5) !important;
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)),
    0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important;
}

.shopify-payment-button__button [role='button']:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none !important;
}

.shopify-payment-button__button [role='button']:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5) !important;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)),
    0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important;
}

.shopify-payment-button__button--unbranded {
  background-color: rgba(var(--color-button), var(--alpha-button-background));
  color: rgb(var(--color-button-text));
  font-size: 1.4rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  letter-spacing: 0.07rem;
}

.shopify-payment-button__button--unbranded::selection {
  background-color: rgba(var(--color-button-text), 0.3);
}

.shopify-payment-button__button--unbranded:hover,
.shopify-payment-button__button--unbranded:hover:not([disabled]) {
  background-color: rgba(var(--color-button), var(--alpha-button-background));
}

.shopify-payment-button__more-options {
  margin: 1.6rem 0 1rem;
  font-size: 1.2rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.05rem;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.shopify-payment-button__button + .shopify-payment-button__button--hidden {
  display: none;
}

button.shopify-payment-button__button.shopify-payment-button__button--unbranded {
    border: none;
}

/* One-image full width */
.ATS-grid--single {
  display: block !important;
}

.ATS-grid--single .ATS-grid-item {
  width: 100% !important;
  display: block !important;
}

.ATS-grid--single .ATS-grid-item img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
}

/* .ATS-pdp-price .price__container{
  font-size: 2.5rem !important;
} */



.ATS-pdp a:empty, ul:empty, dl:empty, div:empty, section:empty, article:empty, p:empty, h1:empty, h2:empty, h3:empty, h4:empty, h5:empty, h6:empty
 {
    display: block !important;
}


 


/* ========== INFO TABS ========== */

.ATS-tabs {
  /* margin-top: 1.5rem; */
  color: rgb(var(--color-foreground));
}

/* Top nav */
.ATS-tabs-nav {
 display: flex;
 justify-content: space-between;

  margin-bottom: 2rem;
}

/* Tab button */
/* ============== ATS Tabs & Pill Below underline animation ============== */
.ATS-tabs-link,
.ATS-pill-below {
  position: relative;
  padding-bottom: 1rem; /* adds space below text */
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  color: rgba(var(--color-foreground), 0.55);
  text-transform: capitalize;
  letter-spacing: 0.08em;
  font-size: 1.4rem;
  text-decoration: none;
  outline: none;

  /* underline animation */
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 1.2px;
  background-position: left calc(100% + 0.45rem); /* 🔥 underline below text */
  background-origin: content-box;
  transition: color 0.18s ease, opacity 0.18s ease, background-size 0.25s ease;
}

/* Hover */
.ATS-tabs-link:hover,
.ATS-tabs-link:focus-visible,
.ATS-pill-below:hover,
.ATS-pill-below:focus-visible {
  color: rgba(var(--color-foreground), 0.85);
  background-size: 100% 1.2px;
}

/* Active */
.ATS-tabs-link.is-active,
.ATS-pill-below.is-selected {
  color: rgb(var(--color-foreground));
  background-size: 100% 1.2px;
  background-position: left calc(100% + 0.45rem);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ATS-tabs-link,
  .ATS-pill-below {
    transition: none;
  }
}


/* Panels wrapper */
.ATS-tabs-panels {
  margin-top: 0.25rem;
}

/* Each panel */
.ATS-tabs-panel {
  display: none; /* JS will flip this */
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.9);
}

/* Optional: subtle fade when switching (works with JS toggling display) */
.ATS-tabs-panel.is-active {
  display: block;
  animation: atsTabFadeIn 0.18s ease-out;
}

@keyframes atsTabFadeIn {
  from {
    opacity: 0;
    transform: translateY(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile tweak: full-width nav, slightly bigger tap targets */
/* @media (max-width: 749px) {
  .ATS-tabs-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    gap: 1.25rem;
  }

  .ATS-tabs-link {
    font-size: 0.8rem;
    padding-bottom: 0.45rem;
  }
} */


.ATS-feature-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap:  1rem;
  align-items: flex-start;
}

/* Left thumbnails */
.ATS-feature-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 520px;
  overflow-y: auto;
}

.ATS-feature-thumb {
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  width: 72px;
  overflow: hidden;
}

.ATS-feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 🖼 Main image carousel */
.ATS-main-media {
  height: auto;
}

.ATS-main-media .splide__track,
.ATS-main-media .splide__list,
.ATS-main-media .splide__slide {
  height: 100%;
}

.ATS-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* shows full image without crop */
}

/* 📱 Mobile tweaks */
@media (max-width: 749px) {
  .ATS-feature-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto; 
  }

  /* 🔄 Reverse the grid order: main image first, thumbs below */
  .ATS-main-media {
    grid-row: 1; /* show first */
  }
  /* .ATS-feature-thumbs {
    grid-row: 2; /* show second */
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
  } */

  .ATS-feature-thumb {
    width: 64px;
  }

  .ATS-main-media {
    height: auto;
  }
}

.ATS-full-gallery {
  display: flex;
  flex-direction: column;
}

.ATS-main-media--full .ATS-main-image {
  width: 100%;
  height: auto;
  display: block;
}

.ATS-full-gallery-mobile {
  width: 100%;
}


/* 🔲 Active thumbnail highlight */
/* .ATS-feature-thumb.is-active {
 border: 2px solid rgb(var(--color-foreground));
} */

.ATS-pdp-grid {
  display: grid;
  grid-template-columns: var(--ATS-media-width, 55%) minmax(0, 1fr);
  gap: var(--ATS-gap, 2rem);
}

/* Mobile: stack */
@media (max-width: 749px) {
  .ATS-pdp-grid {
    grid-template-columns: 1fr;
  }
}

/* Hide on small screens (mobile) */
@media screen and (max-width: 749px) {
  .small-hide {
    display: none ;
  }
}

/* Hide on medium and up (tablet + desktop) */
@media screen and (min-width: 750px) {
  .medium-up-hide {
    display: none !important;
  }
}



  /* Progress bar */
.ATS-pager { position: relative; height: 2px; background: rgba(0,0,0,.15); overflow: hidden; }
.ATS-pager__fill { display:block; height:100%; width:0%; background: currentColor; border-radius: inherit; transition: width .25s ease; }

/* ==== Magda-style full image layout ==== */
/* ==== Magda-style full images layout ==== */
.ATS-full-layout {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr); /* small thumbs column + big image column */
  column-gap: 0;
  align-items: flex-start;
  position: relative;
}

/* Sticky thumbs on the left */
.ATS-left-thumbs {
  position: sticky;
  top: 25rem;              /* match your info sticky offset */
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 2;

  /* 🔥 hidden by default (desktop hover style) */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* Thumb button */
.ATS-left-thumb {
  width: 72px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.ATS-left-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ATS-left-thumb.is-thumb-active {
  border-color: rgb(var(--color-foreground));
}

/* Big images column, pulled left so thumbs sit "on top" */
.ATS-full-images {
  margin-left: -80px;      /* same as first column width → images extend under thumbs */
  display: flex;
  flex-direction: column;
}

.ATS-image-block .ATS-main-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Mobile: no side thumbs, just stacked images */
@media (max-width: 749px) {
  .ATS-full-layout {
    display: block;
  }

  .ATS-left-thumbs {
    display: none;
  }

  .ATS-full-images {
    margin-left: 0;
    gap: 2.5rem;
  }
}
/* Show thumbs when hovering the full image area (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .ATS-full-layout:hover .ATS-left-thumbs {
    opacity: 1;
    pointer-events: auto;
  }
}


/* ##### size chart pop up ######## */

.ATS-size-chart-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.ATS-size-chart-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ATS-size-chart-backdrop {
  position: absolute;
  inset: 0;
  background-color: #00000080;
}

.ATS-size-chart-dialog {
  position: relative;
  max-width: 640px;
  width: 90%;
  max-height: 80vh;
  background: rgb(var(--color-background));
  border-radius: var(--buttons-radius);
  padding: 1.5rem;
  overflow: auto;
}

.ATS-size-chart-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.5rem;
  line-height: 1;
}

.ATS-size-chart-title {
  margin-bottom: 1rem;
  font-size: calc(var(--font-heading-scale) * 2.4rem);
  font-weight: 700;
}

.ATS-size-chart-body {
  font-size: 0.9rem;
}

html.sizechart-open {
  overflow: hidden;
}


/* ####### custom button styles ########## */
.ATS-custom-size-panel {
  margin-top: 1rem;
  /* padding: 0.75rem 1rem; */
  border-radius: var(--buttons-radius);
  /* border: 1px solid #e5e5e5;
  background: #fafafa; */
}

.ATS-custom-size-grid {
  column-gap: 3rem;
  row-gap: 1rem;
}

.ATS-custom-size-field span {
  display: block;
  margin-bottom: 0.25rem;
}

.ATS-custom-size-field input {
  width: 100%;
  padding: 0.4rem 0.6rem;
 border-radius: var(--buttons-radius);
 border: 1px solid rgba(var(--color-foreground), .1);
}
/* Custom measurement inputs – remove default focus outline */
[data-section-type="ats-pdp"] .ATS-custom-size-field input:focus {
  outline: none;          /* browser / theme outline hat jayega */
  box-shadow: none;       /* agar Dawn box-shadow de raha ho to */
  border-color: rgb(var(--color-foreground));  /* optional: thoda dark border on focus */
}

/* Base thumbnail reset (optional) */
.ATS-feature-thumb {
  outline: none;
  border: none;
  box-shadow: none;
}

/* Active thumb: 2px border */
.ATS-feature-thumb.is-active {
  border: 2px solid #000;      /* change color as needed */
  outline: none;
}

/* If your thumbs are <button class="ATS-feature-thumb"> */
.ATS-feature-thumb:focus {
  outline: none;
}


/* Info accordion 4-box grid */
.ATS-info-grid-inner {
  display: grid;
  gap:1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ATS-info-grid-item {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(var(--color-foreground), 0.15);
  background-color: #ffffff7d;
  border-radius: var(--buttons-radius);
}

.ATS-info-grid-title {
  font-size: 1.6rem;
  font-weight: 600;
  text-align:left !important;
  margin: 0 0 0.35rem;
}

.ATS-info-grid-body {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.5;
}


.ATS-pill {
  display: flex !important;
  width: auto;
  align-items: center !important;
  gap: 1rem !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  height: 50px !important;
}
.ATS-pdp-summary{
  font-size: 1.5rem !important;
  font-weight: 400 ;
}
.ATS-caption{
  font-size: 1.3rem !important;
  line-height: 1.6rem !important;

}

/* Make the accordion content fade & slide in when details opens */
.ATS-info-item .ATS-info-grid-inner {
  opacity: 0;
  transform: translateY(-4px);
}

.ATS-info-item[open] .ATS-info-grid-inner {
  animation: ats-accordion-in 500ms ease-in-out forwards;
}

/* Optional: reduce jumpiness if content is tall */
.ATS-info-item .ATS-info-grid {
  overflow: hidden;
}

/* === Reusable plus icon (+ / -) === */
.ATS-toggle-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(var(--color-background), 0.25);
  background: rgba(var(--color-background), 1);
  flex-shrink: 0;
  transition:
    transform 700ms cubic-bezier(0.4, 0.1, 0.2, 1),
    border-color 250ms ease,
    background-color 250ms ease,
    box-shadow 250ms ease;
}

/* Lines inside icon */
.ATS-toggle-icon-line {
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: rgb(var(--color-foreground));
  transition:
    transform 300ms ease,
    opacity 300ms ease;
}

/* Vertical line of plus */
.ATS-toggle-icon-line--v {
  transform: rotate(90deg);
}

/* When parent <details> is open → rotate & turn into minus */
details[open] .ATS-toggle-icon {
  transform: rotate(180deg);
}

details[open] .ATS-toggle-icon-line--v {
  opacity: 0;
  transform: rotate(90deg) scaleX(0);
}

/* === FAQ / accordion answer slide animation === */
/* Collapsed state */
.ATS-faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px); /* looks like it comes from the question */
  transition:
    max-height 320ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

/* Expanded state */
details[open] .ATS-faq-answer {
  max-height: 500px; /* adjust if you have very long answers */
  opacity: 1;
  transform: translateY(0);
}

[data-drop-downpdp="full"] > summary {
  pointer-events: none;
}

/* remove the gap of the info_item block in the product page section if this block is more than 2  */
.ATS-info .ATS-info-item + .ATS-info-item {
  margin-top: -1.5rem; /* equal to gap-6 */
}

@keyframes ats-accordion-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ATS-pdp .ATS-badges{
  position : static !important;
}



/* feature image of variant */
.ATS-variantCard{
  background: transparent;
  padding: 0;
  border:1px solid rgba(var(--color-foreground),0.25);
  cursor: pointer;
      border-radius: var(--media-radius);
  text-align: left;
  display: block;
}



.ATS-variantCard__label{
  padding: 10px 12px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(var(--color-foreground),0.25);
}

.ATS-variantCard.is-selected{
    border:2px solid rgba(var(--color-foreground));
  outline-offset: 2px;
      border-radius: var(--media-radius);
}

/* //  code start for progress bar of the splide */

 .my-carousel-progress {
    background: rgba(var(--color-foreground), 0.25);
    height: 3px;
    border-radius: 999px;
    overflow: hidden;
    margin-top: var(--ATS-gap-mobile);
  }

  .my-carousel-progress-bar {
    background: rgba(var(--color-foreground), 0.85);
    height: 100%;
    width: 0%;
    transition: width 400ms ease;
  }

  /* //  code start for progress bar of the splide */


  [data-section-type="ats-pdp"] .ATS-feature-wrap span{
aspect-ratio:1/1;

}

@media (max-width : 759px){
  .ATS-feature-thumbs{
    flex-direction : row !important;
  }

   .ATS-full-gallery-mobile{
    display : none !important;
  } 
}

.soldout {
  position: relative;
  opacity: 0.6;
  border: 1px solid #ccc;
  color: #999;
  pointer-events: none;
}


.soldout::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20%;
  width: 140%;
  height: 0.2px;
  background: #000;
  transform: rotate(45deg);
  z-index: 10;
  pointer-events: none;
    display: block !important;
}

