/** Shopify CDN: Minification failed

Line 109:8 Expected identifier but found whitespace
Line 109:9 Unexpected "3rem"
Line 211:16 Expected identifier but found whitespace
Line 211:17 Unexpected "2rem"
Line 411:15 Unexpected "{"
Line 411:24 Expected ":"
Line 415:12 Unexpected "{"
Line 415:21 Expected ":"
Line 416:16 Expected identifier but found whitespace
Line 416:18 Unexpected "{"
... and 6 more hidden warnings

**/
.product-details {
  margin: 0;
  padding: 0;
}

.product__media-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.product-media-container {
  position: relative;
  width: 100%;
}

.product-featured-media {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.product__info-wrapper {
  padding: 0;
}

@media screen and (min-width: 750px) {
  .product__info-wrapper {
    padding-left: 5rem;
  }
}

.size-badge {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-foreground), 0.08);
  background: rgba(var(--color-foreground), 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgb(var(--color-foreground));
}

.material-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-svg {
  width: 100%;
  height: 100%;
  fill: rgb(var(--color-foreground));
}

.custom-atc-wrapper {
  margin-top: 2rem;
  width: 100%;
}

.custom-atc {
  background-color: #E31837;
  border: none;
  color: #ffffff;
  width: 100%;
  min-height: 4.6rem;
  border-radius: 9999px; /* Full round corners */
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease-in-out;
}

.custom-atc:hover:not([disabled]) {
  background-color: #cc152f;
}

.custom-atc[disabled] {
  background-color: #999;
  cursor: not-allowed;
}

.custom-atc span {
  font-family: inherit;
}
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-foreground), 0.08);
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.color-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid rgba(var(--color-foreground), 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.detail-row {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
}



.detail-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.detail-text {
  font-size: 1.6rem;
  color: rgb(var(--color-foreground));
}

.rating {
  margin-top: 0.4rem;
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
}

.rating-star {
  --letter-spacing: 0.8rem;
  --font-size: 1.7rem;
  display: inline-block;
  font-family: Times New Roman;
  font-size: var(--font-size);
  height: var(--font-size);
  line-height: 1;
  letter-spacing: var(--letter-spacing);
  margin-right: 0.5rem;
}

.rating-star--large {
  --letter-spacing: 0.8rem;
  --font-size: 1.9rem;
}

.rating-star::before {
  content: '★★★★★';
  color: rgba(var(--color-foreground), 0.15);
}

.rating-star span {
  display: inline-block;
  position: absolute;
  height: var(--font-size);
  overflow: hidden;
  width: calc(var(--rating) / var(--rating-max) * 100%);
}

.rating-star span::before {
  content: '★★★★★';
  position: absolute;
  color: rgb(var(--color-foreground));
}

.rating-text {
  display: inline-block;
  color: rgb(var(--color-foreground));
  margin-right: 1rem;
}

.rating-count {
  display: inline-block;
  color: rgba(var(--color-foreground), 0.75);
}

@media screen and (forced-colors: active) {
  .rating-star {
    display: none;
  }

  .rating-text {
    display: block;
  }
}
  margin-bottom: 2rem;
}

.product-title {
  margin: 0;
  font-family: inherit;
  font-weight: var(--font-heading-weight, 600);
  font-size: calc(var(--font-heading-scale) * 2.4rem);
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
  letter-spacing: var(--font-heading-letter-spacing, 0.06rem);
  color: rgb(var(--color-foreground));
}

@media screen and (min-width: 750px) {
  .product-title {
    font-size: calc(var(--font-heading-scale) * 3rem);
  }
}

.product__info-container {
  padding: 2rem 0;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.6rem;
}

.badge-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  vertical-align: middle;
  position: relative;
  top: -0.1rem;
}

/* Badge Styles */
.badge-default {
  background-color: rgba(var(--color-foreground), 0.06);
  color: rgb(var(--color-foreground));
}

.badge-sale {
  background-color: #FFE8E8;
  color: red;
  font-weight:700!important;
   border: 1px solid red;
}

.badge-cart {
  background-color: #E8F4FF;
  color: #0070E0;
}

.badge-black_friday {
  background-color: black;
  color: white;
  border: 1px solid rgba(var(--color-foreground), 0.1);
}

.detail-row {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  display: block;
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.75);
  
  font-weight: 500;
}

.detail-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.detail-text {
  font-size: 1.6rem;
  color: rgb(var(--color-foreground));
}

.size-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(var(--color-foreground), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--color-foreground), 0.04);
  font-size: 1.4rem;
}

.material-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-svg {
  width: 100%;
  height: 100%;
  fill: rgb(var(--color-foreground));
}

.color-dot.color-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.measurements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.measurement-item {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  color: rgb(var(--color-foreground));
}

.measurement-item span:first-child {
  color: rgba(var(--color-foreground), 0.75);
}

@media screen and (max-width: 749px) {
  .product__info-wrapper {
    padding: 0 1.5rem;
  }
  
  .measurements-grid {
    grid-template-columns: 1fr;
  }
  
  .product-details__content {
    margin-top: 2rem;
  }
}.product-form__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}

.product-form__submit {
  width: 100%;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.5rem;
  color: white;
  transition: opacity 0.3s ease;
}

.product-form__submit:hover {
  opacity: 0.9;
}

.product-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Style for dynamic checkout button container */
.shopify-payment-button {
  width: 100%;
}#ProductInfo-{{ section.id }} > * + * {
    margin-top: 8px;
  }

  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;.product__price-block {
  margin: 8px 0;
}

.price__container {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.current-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
}

.now-text {
 font-weight: 600;
    color: black;
}


.price-item--regular-strike {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
  text-decoration: line-through;
}

.price__savings {
  font-size: 1rem;
  font-weight: 500;
  margin-top: -2px; /* Tighter coupling with price */
}
  }

.product__title {
  margin: 8px 0;
}

.product-title {
  margin: 0;
  font-size: 2em;
  line-height: 1.3;
}

/* Rating styles */
.rating {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Badge styles */
.product-badges {
  display: flex;
  gap: 8px;
  margin: 8px 0;
}


/* Material block styles */
.detail-row {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 2px;
  line-height: 1.5;
  margin-right: 8px;
}

.badge-item.badge-best_seller {
  background-color: #2563eb;
  color: #ffffff;
}

.badge-item.badge-flash_deal {
  background-color: #ffedd5;
  color: #9a3412;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
}

.badge-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 2;
}

.product-gallery {
  display: flex;
  gap: 20px;
  position: relative;
}

/* Thumbnails */
.product-gallery__thumbnails {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100px;
}

.thumbnail-button {
  padding: 0;
  border: 1px solid #e5e7eb;
  background: none;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  width: 100px;
  height: 100px;
}

.thumbnail-button.active {
  border-color: #000;
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.thumbnail-button--view-all {
  background: #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.view-all-count {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111827;
}

.view-all-text {
  font-size: 0.875rem;
  color: #4b5563;
}

/* Main Image */
.product-gallery__main {
  flex: 1;
  position: relative;
}

.product-gallery__image {
  display: none;
  width: 100%;
}

.product-gallery__image.active {
  display: block;
}

.product-gallery__image-main {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  cursor: zoom-in;
}

/* Zoom Modal */
.zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  padding: 40px;
  box-sizing: border-box;
}

.zoom-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}

.zoom-modal__image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

@media screen and (max-width: 749px) {
  .product-gallery {
    flex-direction: column-reverse;
  }

  .product-gallery__thumbnails {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .thumbnail-button {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
  }
}

.product-specs {
  width: 100%;
  margin: 1.5rem 0;
}

.specs-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.specs-item {
  background-color: rgb(240 247 255);
  padding: 1rem;
  border-radius: 0.5rem;
}

.specs-label {
  font-size: 0.875rem;
  color: rgb(75 85 99);
  margin-bottom: 0.25rem;
}

.specs-value {
  font-weight: 500;
  color: rgb(17 24 39);
}

.specs-view-all {
  color: rgb(37 99 235);
  font-size: 0.875rem;
  margin-top: 1rem;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.specs-view-all:hover {
  text-decoration: underline;
}

@media screen and (max-width: 749px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-gallery {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.product-gallery__thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 600px;
  overflow-y: auto;
}

.thumbnail-button {
  width: 80px;
  height: 80px;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.thumbnail-button.active {
  border-color: #000;
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__main {
  position: relative;
  width: 100%;
}

.product-gallery__image {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-gallery__image.active {
  display: block;
  opacity: 1;
}

.product-gallery__image-main {
  width: 100%;
  height: auto;
  cursor: zoom-in;
}

.zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  padding: 40px;
}

.zoom-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
}

.zoom-modal__image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

/* Mobile Styles */
@media screen and (max-width: 749px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery__thumbnails {
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    order: 2;
  }

  .thumbnail-button {
    flex-shrink: 0;
  }
}

.detail-row {
 display: flex;
 align-items: center;
 gap: 10px;
 padding: 12px;
 
 margin-bottom: 12px;
}

.detail-label {
 display: flex;
 align-items: center;
 gap: 8px;
 font-size: 14px;
 color: #666;
}

.detail-content {
 display: flex;
 align-items: center;
 gap: 8px;
}

.detail-text {
 font-size: 14px;
 color: #333;
}

.base-block {
 display: flex;
 align-items: center;
 gap: 10px;
 padding: 12px;
 
 margin-bottom: 12px;
}

.base-block__icon {
 width: 100px;
 height: auto;
 opacity: 0.7;
}

.base-block__title {
 font-size: 14px;
 color: #333;
}