/** Shopify CDN: Minification failed

Line 15:10 Unexpected "{"
Line 15:19 Expected ":"
Line 16:14 Expected identifier but found whitespace
Line 16:16 Unexpected "{"
Line 16:25 Expected ":"
Line 16:51 Expected ":"
Line 17:17 Expected identifier but found whitespace
Line 17:19 Unexpected "{"
Line 17:28 Expected ":"
Line 17:57 Expected ":"

**/
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

/* --- Flexbox Layout --- */
.featured-product-split__flex-grid {
  display: flex;
  flex-direction: column; /* Mobile-first: stack items vertically */
  gap: 30px;
  align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .featured-product-split__flex-grid {
    flex-direction: row; /* Side-by-side on larger screens */
    gap: 50px;
  }
  .featured-product-split__flex-grid.layout--right {
    flex-direction: row-reverse; /* Easy flip for image on the right */
  }
  .featured-product-split__media-wrapper,
  .featured-product-split__content {
    flex: 1 1 50%; /* Each column takes up half the space */
    min-width: 0; /* Prevents flex items from overflowing */
  }
}
/* --- End Flexbox Layout --- */

.featured-product-split__media-wrapper {
  width: 100%;
}
.featured-product-split__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--card-corner-radius, 8px);
  overflow: hidden;
}
.featured-product-split__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.featured-product-split__block:not(:first-child) {
  margin-top: 15px;
}
.featured-product-split__vendor {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-foreground-secondary);
  margin: 0;
}
.featured-product-split__content h2 {
  margin: 0;
}
.featured-product-split__content h2 a {
  text-decoration: none;
  color: inherit;
}
.featured-product-split__price {
  font-size: 1.2rem;
}
.featured-product-split__price .price {
  font-size: 1.5em;
  font-weight: bold;
}
.featured-product-split__placeholder {
  text-align: center;
  padding: 50px;
  border: 2px dashed rgba(var(--color-foreground), 0.1);
}
.variant-picker {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.variant-picker fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.variant-picker .form__label {
  margin-bottom: 5px;
}
.variant-picker label {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 20px;
  cursor: pointer;
  margin-right: 8px;
}
.variant-picker input[type="radio"] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}
.variant-picker input[type="radio"]:checked + label {
  border-color: #333;
  background-color: #f0f0f0;
}
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-gallery__thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.product-gallery__thumbnail {
  padding: 2px;
  border: 1px solid transparent;
  background-color: transparent;
  cursor: pointer;
  border-radius: 4px;
}
.product-gallery__thumbnail.is-active {
  border-color: rgba(var(--color-foreground), 0.5);
}
.product-gallery__thumbnail img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}
.visually-hidden {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.custom-purchase-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.quantity-selector {
  flex-shrink: 0;
}
.add-to-cart-btn {
  flex-grow: 1;
  flex-basis: 150px;
}
.learn-more-btn {
  flex-grow: 1;
  flex-basis: 150px;
}

@media screen and (max-width: 550px) {
  .learn-more-btn {
    flex-basis: 100%;
  }
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
  height: 48px;
}
.quantity-selector button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0 16px;
  font-size: 20px;
  color: #495057;
  align-self: stretch;
  transition: background-color 0.2s;
}
.quantity-selector button:hover {
  background-color: #f1f3f5;
}
.quantity-selector button:disabled {
  color: #ced4da;
  cursor: not-allowed;
}
.quantity-selector .quantity-input {
  width: 30px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #212529;
  -moz-appearance: textfield;
}
.quantity-selector .quantity-input::-webkit-outer-spin-button,
.quantity-selector .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-btn,
.learn-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  padding: 0 16px;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.add-to-cart-btn {
  color: #343a40;
  background-color: #fff;
  border: 1px solid #adb5bd;
}
.add-to-cart-btn:hover {
  background-color: #f8f9fa;
  border-color: #343a40;
}
.add-to-cart-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.learn-more-btn {
  background-color: transparent;
  color: var(--color-button-text, #121212);
  border: 1px solid var(--color-button-border, #121212);
}
.learn-more-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
