/** Shopify CDN: Minification failed

Line 20:13 Expected identifier but found whitespace
Line 20:15 Unexpected "{"
Line 20:24 Expected ":"
Line 76:19 Expected identifier but found whitespace
Line 76:21 Unexpected "{"
Line 76:30 Expected ":"
Line 77:15 Expected identifier but found whitespace
Line 77:17 Unexpected "{"
Line 77:26 Expected ":"
Line 81:19 Expected identifier but found whitespace
... and 29 more hidden warnings

**/


/* CSS from section stylesheet tags */
.boots-final-section {
  background: {{ section.settings.background_color }};
  padding: 40px 0 60px;
  position: relative;
  isolation: isolate;
}

.boots-final-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.boots-final-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  position: relative;
}

.boots-final-buttons button {
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid #1f2e29;
  background-color: transparent;
  color: #1f2e29;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-width: 120px;
  text-align: center;
  line-height: 1.2;
  font-family: inherit;
}

.boots-final-buttons button:hover,
.boots-final-buttons button.active {
  background-color: #1f2e29;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31, 46, 41, 0.15);
}

.boots-final-buttons button:focus {
  outline: 2px solid #1f2e29;
  outline-offset: 2px;
}

/* Button hover color customization */
.boots-final-buttons button:hover {
  background-color: {{ section.settings.button_hover_color }};
  border-color: {{ section.settings.button_hover_color }};
}

.boots-final-buttons button.active {
  background-color: {{ section.settings.button_hover_color }};
  border-color: {{ section.settings.button_hover_color }};
}

/* PRODUCT GRID */
.boots-final-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.boots-final-grid.loading {
  opacity: 0.6;
  pointer-events: none;
}

.boots-final-card {
  text-align: center;
  transition: transform 0.25s ease;
}

.boots-final-card:hover {
  transform: translateY(-2px);
}

.boots-final-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.boots-final-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  {% case section.settings.image_ratio %}
    {% when 'portrait' %}
      aspect-ratio: 3/4;
    {% when 'square' %}
      aspect-ratio: 1/1;
    {% when 'landscape' %}
      aspect-ratio: 4/3;
    {% else %}
      aspect-ratio: auto;
  {% endcase %}
}

.boots-final-card:hover .boots-final-img {
  transform: scale(1.02);
}

.boots-final-title {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-top: 16px;
  line-height: 1.3;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boots-final-color {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  font-weight: 400;
}

.boots-final-price {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-top: 8px;
}

.boots-final-sale-price {
  color: #d32f2f;
}

.boots-final-compare-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-weight: 400;
}

.boots-final-no-products {
  text-align: center;
  color: #666;
  font-size: 16px;
  padding: 40px 20px;
  grid-column: 1 / -1;
}

.boots-final-loading {
  text-align: center;
  color: #666;
  font-size: 16px;
  padding: 40px 20px;
  grid-column: 1 / -1;
}

/* TABLET */
@media (max-width: 990px) {
  .boots-final-section {
    padding: 32px 0 48px;
  }
  
  .boots-final-wrapper {
    padding: 0 24px;
  }
  
  .boots-final-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .boots-final-title {
    font-size: 14px;
    min-height: 36px;
  }
}

/* MOBILE */
@media (max-width: 749px) {
  .boots-final-section {
    padding: 24px 0 40px;
  }
  
  .boots-final-wrapper {
    padding: 0 16px;
    overflow: hidden;
  }
  
  .boots-final-buttons {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
  }
  
  .boots-final-buttons::-webkit-scrollbar {
    display: none;
  }
  
  .boots-final-buttons button {
    flex: 0 0 auto;
    max-width: none;
    min-width: 0;
    padding: 12px 20px;
    font-size: 12px;
    letter-spacing: 0.3px;
    border-radius: 25px;
  }
  
  .boots-final-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 16px;
  }
  
  .boots-final-grid::-webkit-scrollbar {
    display: none;
  }
  
  .boots-final-card {
    flex: 0 0 calc(66.666% - 11px);
    scroll-snap-align: start;
  }
  
  .boots-final-img {
    border-radius: 6px;
    {% case section.settings.image_ratio %}
      {% when 'portrait' %}
        aspect-ratio: 3 / 4;
      {% when 'square' %}
        aspect-ratio: 1 / 1;
      {% when 'landscape' %}
        aspect-ratio: 4 / 3;
      {% else %}
        aspect-ratio: 1 / 1.2;
    {% endcase %}
  }
  
  .boots-final-title {
    font-size: 13px;
    margin-top: 12px;
    min-height: 32px;
    line-height: 1.2;
  }
  
  .boots-final-color {
    font-size: 11px;
    margin-top: 3px;
  }
  
  .boots-final-price {
    font-size: 14px;
    margin-top: 6px;
  }
  
  .boots-final-card:hover {
    transform: none;
  }
  
  .boots-final-card:hover .boots-final-img {
    transform: none;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .boots-final-wrapper {
    padding: 0 12px;
  }
  
  .boots-final-buttons button {
    padding: 10px 16px;
    font-size: 11px;
  }
  
  .boots-final-card {
    flex: 0 0 calc(66.666% - 11px);
  }
  
  .boots-final-title {
    font-size: 12px;
    min-height: 30px;
  }
  
  .boots-final-color {
    font-size: 10px;
  }
  
  .boots-final-price {
    font-size: 13px;
  }
}

/* ACCESSIBILITY & PERFORMANCE */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .boots-final-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

@media (prefers-color-scheme: dark) {
  .boots-final-section {
    color-scheme: light;
  }
}

@media (prefers-reduced-motion: reduce) {
  .boots-final-buttons button,
  .boots-final-card,
  .boots-final-img,
  .boots-final-grid {
    transition: none;
  }
  
  .boots-final-card:hover,
  .boots-final-card:hover .boots-final-img {
    transform: none;
  }
}

/* Auto-slide indicator */
.boots-auto-slide-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.boots-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.boots-slide-dot.active {
  background-color: #1f2e29;
  transform: scale(1.2);
}