/** Shopify CDN: Minification failed

Line 33:22 Unexpected "{"
Line 33:31 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement (INDEX:1, SCOPED:FALSE) */
.announcement__wrapper { /* or sticky */
  z-index: 0;       /* or inherited from header */
}
/* END_SECTION:announcement */

/* START_SECTION:collection-hero (INDEX:15, SCOPED:FALSE) */
.price-subtext-tag {
  display: inline-block;          /* 👈 key */
  font-size: 10px;
  opacity: 0.7;
  margin-top: -15px !important;
  padding: 2px 6px;               /* 👈 1 space left + right */
  background: #FCD12A;
  color: black;
  font-weight: 500;
  line-height: 1.2;
}
/* END_SECTION:collection-hero */

/* START_SECTION:section-hero (INDEX:55, SCOPED:FALSE) */
@media (max-width: 767px) {
    #shopify-section-{{ section.id }} .hero__btn {
      display: none !important;
    }
  }
/* END_SECTION:section-hero */

/* START_SECTION:section-richtext (INDEX:70, SCOPED:FALSE) */
.text__standard {
  display: flex;
  flex-direction: column;
  row-gap: 3px !important;
}
/* END_SECTION:section-richtext */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:product-price (INDEX:224, SCOPED:FALSE) */
/* ===============================
     PRICE + LOCK SYSTEM (FINAL)
     =============================== */
  
  /* Wrapper */
  .product__price__wrap {
    position: relative;
    width: 100%;
    font-family: 'inter', sans-serif;
  }
  
  /* -------------------------------
     PRICE (BLUR LAYER)
  -------------------------------- */
  .price-blur-layer {
    width: 100%;
    transition: filter 0.3s ease, opacity 0.3s ease;
  }
  
  /* Blur activates */
  .product__price__wrap.is-blurred .price-blur-layer {
    filter: blur(4px);
    opacity: 0.7;
    pointer-events: none;
  }
  
  /* -------------------------------
     LOCK OVERLAY
  -------------------------------- */
  /* JS controls vertical position (top) */
  /* CSS only centers horizontally */
  .price-lock {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.2s ease;
  left: 10%;
  top: 15%;
}

.product__price__wrap.is-blurred .price-lock {
  opacity: 1;
}

  
  /* Lock icon styling */
  .lock-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px;
    border-radius: 999px;
  }
  
  /* -------------------------------
     LOCK CLOSE ANIMATION
  -------------------------------- */
  .lock-shackle {
    transform: translateY(-6px);
    transform-origin: center top;
  }
  
  /* Animate AFTER lock appears */
  .product__price__wrap.lock-active .lock-shackle {
    animation: lock-close 0.45s ease-out forwards;
  }
  
  @keyframes lock-close {
  0%   { transform: translateY(-10px); }  /* fully open */
  15%   { transform: translateY(-8px); }
  25%  { transform: translateY(-6px); }
  40%  { transform: translateY(3px); }    /* main close */
  52%  { transform: translateY(1.5px); }
  62%  { transform: translateY(-1.2px); } /* rebound */
  70%  { transform: translateY(0.8px); }
  78%  { transform: translateY(-0.6px); }
  85%  { transform: translateY(0.4px); }
  91%  { transform: translateY(-0.25px); }
  96%  { transform: translateY(0.12px); }
  100% { transform: translateY(0); }      /* locked */
}

/* Anchor context */
.product__price__wrap {
  position: relative;
}

/* Side note (never blurred) */
.price-side-note {
  position: absolute;
  opacity: 0;
  z-index: 9;
  font-size: 10px;
  line-height: 1.15;
  text-transform: uppercase;
  pointer-events: none;
  left: 43%;
  top: 15%;
  /*background: linear-gradient(180deg, #0099FF 0%, #005C99 100%);  #108474;*/
  background: linear-gradient(180deg, #3BADCA 0%, #365C77 100%);
  color: white;
  border-radius: 2px;
  padding: 5px 8px;
  letter-spacing: 1.3px;
}

@media(min-width: 750px){
  .price-side-note {
  left: 35%;
  top: 30%;
}
}

/* Show when price is blurred */
.product__price__wrap.is-blurred .price-side-note {
  opacity: 0.85;
}

.product__price{
  margin-top: 15px;
}

.price-side-note {
  cursor: pointer;
  pointer-events: auto;
}

/* === Discount badge layout === */
.price-side-note {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* icon */
.price-side-note img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* text wrapper */
.price-side-note > span:last-child {
  display: block;
  line-height: 1.15;
}

/* === PRICE + OFFER INLINE ROW === */
.product__price__wrap {
  display: flex;
  align-items: center;
}

.product__price__wrap .price-side-note {
  position: static !important;   /* kill absolute positioning */
  margin-left: auto;             /* shove to extreme right */
  opacity: 1 !important;
  pointer-events: auto;
}

/*

/* === HARD RESET: TITLE → PRICE GAP (FINAL) === */

/* Kill block padding coming from schema */
.product__block__price {
  padding-top: 10px !important;
  margin-top: 0 !important;
}

/* Kill any spacing wrapper adds */
.product__price__wrap {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Kill line-height air from price text */
.product__price,
.product__price span[data-product-price] {
  line-height: 1 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Title bottom spacing = zero */
.product__main__content h1,
.product__main__content .product__title {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.is-hidden{ display:none !important; }

/* === PRICE COMPONENT === */
.dp{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1;
}

/* FINAL PRICE (TOP) */
.dp-final{
  font-size:24px;
  font-weight:400;
  color:#000;
  letter-spacing:-0.01em;
  font-family: 'helvetica', sans-serif;
  letter-spacing: 1.2px;

  opacity:0;
  transform:translateY(-6px);
  transition:all .45s cubic-bezier(.22,.61,.36,1);
}

/* SECOND ROW */
.dp-meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:4px;

  opacity:0;
  transform:translateY(-4px);
  transition:all .45s cubic-bezier(.22,.61,.36,1);
}

/* MRP PRICE */
.dp-mrp{
  font-size:15px;
  font-weight:400;
  color:#A4A4A4;        /* lighter text */
  position:relative;
  line-height:1;
}


/* STRIKE */
.dp-mrp::after{
  content:'';
  position:absolute;
  left:0;
  top:52%;
  width:0%;
  height:1.5px;
  background:#A4A4A4;   /* match text */
  transition:width .35s ease .25s;
}


/* DISCOUNT TAG */
.dp-tag{
  font-size:13px;
  font-weight:700;
  background:#D32F2F;
  color:#fff;
  padding:4px 8px;
  line-height:1;
}

/* === ANIMATION STATE === */
.dp.is-live .dp-final{
  opacity:1;
  transform:translateY(0);
}

.dp.is-live .dp-meta{
  opacity:1;
  transform:translateY(0);
}

.dp.is-live .dp-mrp::after{
  width:100%;
}

/* === PDP PRICE LAYOUT === */

.pdp-price{
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* Row: price left, badge right */
.pdp-price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* GET IT FROM + price */
.pdp-price-top{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.pdp-get{
  font-size:8px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.pdp-final{
  font-size:24px;
  font-weight:500;
}

/* Badge block */
.pdp-badge{
  font-size:14px;
  padding:10px 14px;
  border-radius:6px;
  white-space:nowrap;
}

/* MRP row */
.pdp-mrp{
  font-size:14px;
  margin-top:-10px;
}

.pdp-mrp span{
  margin-left:6px;
}

/* === RED DISCOUNT TAG === */
/* === DISCOUNT TAG (Gradient Text + Yellow BG) === */
/* === BADGE WRAPPER === */
.pdp-badge{
  display:inline-flex;
}

/* === YELLOW BOX (this is the visible background now) === */
.pdp-badge-bg{
  background: rgb(255, 231, 95);
  padding:6px 10px;
  border-radius:3px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* === GRADIENT TEXT === */
.pdp-badge-text{
  display:flex;
  flex-direction:column;
  align-items:center;
  line-height:1.1;
  font-size:11px;
  letter-spacing:0.08em;

  background: linear-gradient(180deg, #3BADCA 0%, #365C77 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* 50% bigger */
.pdp-badge-text strong{
  font-size:16px;
  font-weight:700;
  letter-spacing:0;
}

.pdp-mrp small{
  font-size: 9px;
}
/* END_SNIPPET:product-price */