/** Shopify CDN: Minification failed

Line 870:17 Expected identifier but found whitespace
Line 870:19 Unexpected "{"
Line 870:28 Expected ":"
Line 870:57 Expected ":"
Line 871:18 Expected identifier but found whitespace
Line 871:20 Unexpected "{"
Line 871:29 Expected ":"
Line 871:58 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-product {
  width: 100%;
  padding: 60px 0;
}

.custom-product__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Media Section */
.custom-product__media {
  position: sticky;
  top: 100px;
}

.custom-product__main-image {
  width: 100%;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  overflow: hidden;
}

.custom-product__main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-product__thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.custom-product__thumbnail {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  background: #fafafa;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease;
}

.custom-product__thumbnail:hover {
  border-color: #999;
}

.custom-product__thumbnail.active {
  border-color: #000;
}

.custom-product__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product Info */
.custom-product__info {
  padding-top: 8px;
}

.custom-product__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.custom-product__price {
  font-size: 20px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-product__price--sale {
  color: #d32f2f;
  font-weight: 500;
}

.custom-product__price--compare {
  color: #999;
  text-decoration: line-through;
  font-size: 18px;
}

/* Options Layout */
.custom-product__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.custom-product__option {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-product__option-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
}

.custom-product__select-wrapper {
  position: relative;
}

.custom-product__select {
  width: 100%;
  padding: 12px 36px 12px 16px;
  border: 1px solid #d0d0d0;
  background: #fff;
  font-size: 15px;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.2s ease;
}

.custom-product__select:hover {
  border-color: #999;
}

.custom-product__select:focus {
  outline: none;
  border-color: #000;
}

.custom-product__select-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #666;
}

.custom-product__quantity {
  display: flex;
  align-items: center;
  border: 1px solid #d0d0d0;
  background: #fff;
  height: 44px;
}

.custom-product__quantity-btn {
  width: 40px;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  color: #333;
}

.custom-product__quantity-btn:hover {
  background: #f5f5f5;
}

.custom-product__quantity-input {
  width: 60px;
  height: 100%;
  border: none;
  border-left: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
  text-align: center;
  font-size: 15px;
  padding: 0;
}

.custom-product__quantity-input:focus {
  outline: none;
}

/* Remove number input arrows */
.custom-product__quantity-input::-webkit-outer-spin-button,
.custom-product__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.custom-product__quantity-input[type=number] {
  -moz-appearance: textfield;
}

.custom-product__add-to-cart {
  width: 100%;
  padding: 16px 32px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 12px;
}

.custom-product__add-to-cart:hover:not(:disabled) {
  background: #333;
}

.custom-product__add-to-cart:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.custom-product__description {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #e5e5e5;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.custom-product__description p {
  margin-bottom: 16px;
}

.custom-product__description p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .custom-product__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .custom-product__media {
    position: relative;
    top: 0;
  }
}

@media screen and (max-width: 768px) {
  .custom-product {
    padding: 40px 0;
  }
  
  .custom-product__container {
    padding: 0 20px;
    gap: 32px;
  }
  
  .custom-product__title {
    font-size: 24px;
  }
  
  .custom-product__options {
    grid-template-columns: 1fr;
  }
  
  .custom-product__thumbnails {
    gap: 8px;
  }
  
  .custom-product__thumbnail {
    width: 60px;
    height: 60px;
  }
}
.suggested-products {
  width: 100%;
  padding: 60px 0;
}

.suggested-products--boxed .suggested-products__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.suggested-products--full-width .suggested-products__container {
  max-width: 100%;
  margin: 0;
}

.suggested-products__heading {
  margin: 0 0 40px 0;
  line-height: 1.2;
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  font-style: var(--font-heading-style);
}

.suggested-products__grid,
.product-recommendations {
  display: grid;
  gap: 20px;
}

.products-per-row-2 {
  grid-template-columns: repeat(2, 1fr);
}

.products-per-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.products-per-row-4 {
  grid-template-columns: repeat(4, 1fr);
}

.products-per-row-5 {
  grid-template-columns: repeat(5, 1fr);
}

.suggested-products__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 16px;
}

/* Product Card Styles */
.product-card {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background-color: #f5f5f5;
}

.product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__image--primary {
  z-index: 2;
  transition: opacity 0.4s ease;
}

.product-card__image--secondary {
  z-index: 1;
}

.product-card:hover .product-card__image--primary {
  opacity: 0;
}

.placeholder-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  opacity: 0.3;
}

.product-card__info {
  padding: 16px 0;
}

.product-card__title {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.product-card__price--sale {
  color: #d32f2f;
}

.product-card__price--compare {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.suggested-products__button-wrapper {
  margin-top: 40px;
}

.suggested-products__button {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-button-family);
  font-weight: var(--font-button-weight);
  font-style: var(--font-button-style);
}

.suggested-products__button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

@media screen and (max-width: 1024px) {
  .suggested-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .suggested-products {
    padding: 40px 0;
  }
  
  .suggested-products__button-wrapper {
    margin-top: 30px;
  }
  
  .suggested-products--mobile-boxed .suggested-products__container {
    padding: 0 20px;
  }
  
  .suggested-products--mobile-full-width .suggested-products__container {
    padding: 0 10px;
  }
  
  .suggested-products__heading {
    margin-bottom: 30px;
  }
  
  /* Grid style (default 2 column) */
  .suggested-products--mobile-grid .suggested-products__grid,
  .suggested-products--mobile-grid .product-recommendations {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  /* Carousel style (swipeable) */
  .suggested-products--mobile-carousel .suggested-products__grid,
  .suggested-products--mobile-carousel .product-recommendations {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  
  .suggested-products--mobile-carousel .suggested-products__grid::-webkit-scrollbar,
  .suggested-products--mobile-carousel .product-recommendations::-webkit-scrollbar {
    height: 4px;
  }
  
  .suggested-products--mobile-carousel .suggested-products__grid::-webkit-scrollbar-track,
  .suggested-products--mobile-carousel .product-recommendations::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .suggested-products--mobile-carousel .suggested-products__grid::-webkit-scrollbar-thumb,
  .suggested-products--mobile-carousel .product-recommendations::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
  }
  
  .suggested-products--mobile-carousel .product-card {
    flex: 0 0 calc(100% - 60px);
    scroll-snap-align: start;
    max-width: calc(100% - 60px);
  }
  
  .product-card__info {
    padding: 12px 0;
  }
  
  .product-card__title {
    font-size: 13px;
  }
  
  .product-card__price {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .suggested-products--mobile-grid .suggested-products__grid,
  .suggested-products--mobile-grid .product-recommendations {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .suggested-products--mobile-carousel .product-card {
    flex: 0 0 calc(100% - 50px);
    max-width: calc(100% - 50px);
  }
}
.product-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.product-banner__wrapper {
  position: relative;
  width: 100%;
  height: 0;
}

/* Desktop Ratios */
.product-banner--4-5 .product-banner__wrapper {
  padding-bottom: 125%; /* 4:5 */
}

.product-banner--5-4 .product-banner__wrapper {
  padding-bottom: 80%; /* 5:4 */
}

.product-banner--4-1 .product-banner__wrapper {
  padding-bottom: 25%; /* 4:1 */
}

.product-banner--5-1 .product-banner__wrapper {
  padding-bottom: 20%; /* 5:1 */
}

.product-banner--6-1 .product-banner__wrapper {
  padding-bottom: 16.67%; /* 6:1 */
}

.product-banner--8-1 .product-banner__wrapper {
  padding-bottom: 12.5%; /* 8:1 */
}

.product-banner--16-9 .product-banner__wrapper {
  padding-bottom: 56.25%; /* 16:9 */
}

.product-banner__image,
.product-banner__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-banner__placeholder {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-svg {
  width: 50%;
  height: 50%;
  opacity: 0.3;
}

.product-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.product-banner__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 40px;
}

.product-banner__heading {
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  width: 100%;
  font-size: var(--desktop-size);
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight);
  font-style: var(--font-heading-style);
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .product-banner__content {
    padding: 20px;
  }
  
  .product-banner__heading {
    font-size: var(--mobile-size) !important;
  }
  .product-banner--mobile-4-5 .product-banner__wrapper {
    padding-bottom: 125% !important; /* 4:5 */
  }

  .product-banner--mobile-5-4 .product-banner__wrapper {
    padding-bottom: 80% !important; /* 5:4 */
  }

  .product-banner--mobile-3-1 .product-banner__wrapper {
    padding-bottom: 33.33% !important; /* 3:1 */
  }

  .product-banner--mobile-4-1 .product-banner__wrapper {
    padding-bottom: 25% !important; /* 4:1 */
  }

  .product-banner--mobile-5-1 .product-banner__wrapper {
    padding-bottom: 20% !important; /* 5:1 */
  }

  .product-banner--mobile-16-9 .product-banner__wrapper {
    padding-bottom: 56.25% !important; /* 16:9 */
  }
}
.image-text-section {
  width: 100%;
  padding: 40px 0;
}

.image-text-container {
  max-width: 1400px;
  margin: 0 auto;
}

.image-text-section--full-width .image-text-container {
  max-width: 100%;
}

.image-text-wrapper {
  display: flex;
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
}

.media-column {
  flex: 0 0 75%;
  max-width: 75%;
}

.text-column {
  flex: 0 0 25%;
  max-width: 25%;
  position: relative;
  overflow: hidden;
}

.media-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Auto height - no cropping */
.image-text-section--auto .media-wrapper {
  min-height: 400px;
}

/* Aspect ratio cropping */
.image-text-section--4-5 .media-wrapper,
.image-text-section--5-4 .media-wrapper,
.image-text-section--4-1 .media-wrapper,
.image-text-section--5-1 .media-wrapper,
.image-text-section--6-1 .media-wrapper,
.image-text-section--8-1 .media-wrapper,
.image-text-section--16-9 .media-wrapper {
  height: 0;
  padding-bottom: var(--media-aspect-ratio);
  min-height: 0;
}

/* Desktop Ratios */
.image-text-section--4-5 .media-wrapper {
  --media-aspect-ratio: 125%; /* 4:5 */
}

.image-text-section--5-4 .media-wrapper {
  --media-aspect-ratio: 80%; /* 5:4 */
}

.image-text-section--4-1 .media-wrapper {
  --media-aspect-ratio: 25%; /* 4:1 */
}

.image-text-section--5-1 .media-wrapper {
  --media-aspect-ratio: 20%; /* 5:1 */
}

.image-text-section--6-1 .media-wrapper {
  --media-aspect-ratio: 16.67%; /* 6:1 */
}

.image-text-section--8-1 .media-wrapper {
  --media-aspect-ratio: 12.5%; /* 8:1 */
}

.image-text-section--16-9 .media-wrapper {
  --media-aspect-ratio: 56.25%; /* 16:9 */
}

.media-wrapper img,
.media-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Auto height keeps natural aspect */
.image-text-section--auto .media-wrapper img,
.image-text-section--auto .media-wrapper video {
  position: relative;
  height: auto;
  object-fit: contain;
}

.media-wrapper.placeholder {
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-text-section .placeholder-svg {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.image-text-section .text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-text-section .text-content {
  padding: 40px 30px;
  text-align: center;
  width: 100%;
}

.image-text-section .text-content h2 {
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.image-text-section .body-text {
  margin: 0 0 30px 0;
  line-height: 1.6;
}

.image-text-section .body-text p {
  margin: 0 0 15px 0;
}

.image-text-section .body-text p:last-child {
  margin-bottom: 0;
}

.image-text-section .button {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.3s ease;
  cursor: pointer;
  border: none;
}

.image-text-section .button:hover {
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .image-text-container {
    padding-left: {{ section.settings.padding_mobile }}px !important;
    padding-right: {{ section.settings.padding_mobile }}px !important;
  }
  
  .image-text-wrapper {
    flex-direction: column !important;
  }
  
  .media-column,
  .text-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  /* Mobile Ratios Override Desktop */
  .image-text-section--mobile-auto .media-wrapper {
    min-height: 300px;
    padding-bottom: 0;
    height: auto;
  }
  
  .image-text-section--mobile-auto .media-wrapper img,
  .image-text-section--mobile-auto .media-wrapper video {
    position: relative;
    height: auto;
    object-fit: contain;
  }
  
  .image-text-section--mobile-4-5 .media-wrapper {
    padding-bottom: 125% !important; /* 4:5 */
    height: 0;
    min-height: 0;
  }
  
  .image-text-section--mobile-5-4 .media-wrapper {
    padding-bottom: 80% !important; /* 5:4 */
    height: 0;
    min-height: 0;
  }
  
  .image-text-section--mobile-3-1 .media-wrapper {
    padding-bottom: 33.33% !important; /* 3:1 */
    height: 0;
    min-height: 0;
  }
  
  .image-text-section--mobile-4-1 .media-wrapper {
    padding-bottom: 25% !important; /* 4:1 */
    height: 0;
    min-height: 0;
  }
  
  .image-text-section--mobile-5-1 .media-wrapper {
    padding-bottom: 20% !important; /* 5:1 */
    height: 0;
    min-height: 0;
  }
  
  .image-text-section--mobile-16-9 .media-wrapper {
    padding-bottom: 56.25% !important; /* 16:9 */
    height: 0;
    min-height: 0;
  }
  
  .image-text-section--mobile-4-5 .media-wrapper img,
  .image-text-section--mobile-5-4 .media-wrapper img,
  .image-text-section--mobile-3-1 .media-wrapper img,
  .image-text-section--mobile-4-1 .media-wrapper img,
  .image-text-section--mobile-5-1 .media-wrapper img,
  .image-text-section--mobile-16-9 .media-wrapper img,
  .image-text-section--mobile-4-5 .media-wrapper video,
  .image-text-section--mobile-5-4 .media-wrapper video,
  .image-text-section--mobile-3-1 .media-wrapper video,
  .image-text-section--mobile-4-1 .media-wrapper video,
  .image-text-section--mobile-5-1 .media-wrapper video,
  .image-text-section--mobile-16-9 .media-wrapper video {
    position: absolute;
    height: 100%;
    object-fit: cover;
  }
  
  .image-text-section .text-content {
    padding: 30px 20px;
  }
}