/** Shopify CDN: Minification failed

Line 190:0 Unexpected "}"

**/
.product-warranty__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.product-warranty__wrapper {
  /* padding: 10px 0px; */
  display: block;
    border-radius: 8px;
    padding: 10px 12px 10px;
    background:#f3f7f3;
    position: relative;
}


.product-warranty__label {
  display: inline-flex;
  align-items: center;
  justify-content:space-between;
  width:100%;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.product-warranty__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.product-warranty__checkbox-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 3px;
  background: #fff;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.product-warranty__checkbox:checked + .product-warranty__checkbox-custom {
  background: #000;
  border-color: #000;
}

.product-warranty__checkbox:checked + .product-warranty__checkbox-custom::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -1px;
}

.product-warranty__image {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  overflow: hidden;
}

.product-warranty__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-warranty__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1b18;
  line-height: 1.3;
  flex:1;
}

.product-warranty__link {
  color: #1a1b18;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight:800;
}

.product-warranty__link:hover {
  text-decoration: underline;
}

.product-warranty__price {
  font-weight: 600;
  white-space: nowrap;
}

.product-warranty__price-amount {
  color: #2a6c37;
  font-size:13px;
  font-weight:800;
}

/* ====== Popup trigger & read-more ====== */
.product-warranty__popup-trigger {
  position: relative;
  margin-top: 8px;
}

.product-warranty__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 500;
  color: #1a1b18;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: ;
  transition: color 0.2s, text-decoration-color 0.2s;
  line-height: 1.2;
  margin-left:42px;
}

.product-warranty__read-more:hover {
  color: rgba(26,27,24,0.3);
  text-decoration-color: rgba(26,27,24,0.3);
}

.product-warranty__read-more svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  transform: rotate(90deg);
}



/* ====== Popup ====== */
.product-warranty__popup {
  display: none;
  position: absolute;
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 999;
  padding: 0;
  transform: translate(52%, -55%);
}


.product-warranty__popup.active {
  display: block;
}
.product-warranty__popup-content::before{
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
    position: absolute;
    top: 0;
    left: -10px;
    bottom: 0;
    margin: auto;
}
  
}

/* Triangle arrow pointing left (toward warranty area) */
.product-warranty__popup-arrow {
  position: absolute;
  left: -8px;
  top: 24px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -3px 3px 6px rgba(0,0,0,0.06);
  border-radius: 2px;
}

.product-warranty__popup-content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  z-index: 1;
}

.product-warranty__popup-title {
  font-size: 13px;
  font-weight: 700;
  color: #009348;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-warranty__popup-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-warranty__popup-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: #1a1b18;
}

.product-warranty__popup-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.product-warranty__popup-icon svg {
  display: block;
}

.product-warranty__popup-text {
  flex: 1;
}

.product-warranty__popup-divider {
  height: 0.5px;
    background: #1e19192e;
  list-style: none;
  padding: 0;
}

.mt-warranty-des2 {
    font-size: 12px;
    font-weight: 800;
    margin-top: 10px;
    margin-left:42px;
}
.mt-warranty-des {
  font-size: 12px;
  max-width: 86%;
}


/* ====== Mobile: popup below instead of right ====== */
@media (max-width: 768px) {
  .product-warranty__wrapper {
    /* padding: 10px 0px; */
  }
  .product-warranty__text {
    font-size: 14px;
  }
  /* .product-warranty__image {
    width: 50px;
    height: 50px;
  } */

  .product-warranty__popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    max-width: 320px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.3);
  }

  .product-warranty__popup.active {
    display: block;
  }

  .product-warranty__popup-arrow {
    display: none;
  }

  /* Overlay backdrop on mobile */
  .product-warranty__popup.active::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    border-radius: 0;
  }
  .product-warranty__popup-content::before {
    display:none;
  }

  .product-warranty__popup-content {
    position: relative;
    z-index: 2;
  }
  .mt-warranty-des  {
    font-size:10px;
    max-width:100%;
  }
}
