/** Shopify CDN: Minification failed

Line 590:0 Unexpected "}"

**/
/* Featured Collection Section Styles */
.featured-collection-section {
  width: 100%;
  padding: var(--section-padding-top) 0 var(--section-padding-bottom);
  overflow: hidden;
}

.featured-collection-container {
  display: flex;
  width: 100%;
  height: var(--card-height);
  max-width: 100vw;
  margin: 0 auto;
  gap: 0;
  position: relative;
}

/* Ensure components maintain their proportions */
.featured-collection-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Static Image Card Styles */
.static-image-card {
  width: var(--card-width);
  height: var(--card-height);
  position: relative;
  overflow: hidden;
  background: var(--card-bg-color);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.static-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-left {
  margin-right: 16px;
}

.card-right {
  margin-left: 16px;
}

.image-card-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.card-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Image alignment options */
[data-image-alignment="left"] .card-background-image {
  object-position: left center;
}

[data-image-alignment="center"] .card-background-image {
  object-position: center center;
}

[data-image-alignment="right"] .card-background-image {
  object-position: right center;
}

.static-image-card:hover .card-background-image {
  transform: scale(1.05);
}

.card-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  display: flex;
  padding: 24px;
  z-index: 2;
}

.card-text-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: var(--card-text-color);
}

/* Text vertical alignment */
[data-text-vertical="top"] .card-content-overlay {
  align-items: flex-start;
  justify-content: flex-start;
}

[data-text-vertical="center"] .card-content-overlay {
  align-items: center;
  justify-content: center;
}

[data-text-vertical="bottom"] .card-content-overlay {
  align-items: flex-end;
  justify-content: flex-end;
}

/* Text horizontal alignment */
[data-text-horizontal="left"] .card-text-content {
  text-align: left;
  align-items: flex-start;
}

[data-text-horizontal="center"] .card-text-content {
  text-align: center;
  align-items: center;
}

[data-text-horizontal="right"] .card-text-content {
  text-align: right;
  align-items: flex-end;
}

.card-heading {
  color: var(--card-heading-color);
  margin: 0 0 12px;
  line-height: 1.2;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-subheading {
  color: var(--card-text-color);
  margin: 0 0 20px;
  line-height: 1.4;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: fit-content;
}

/* Button styles */
.btn-primary {
  background: var(--button-bg-color);
  color: var(--button-text-color);
}

.btn-primary:hover {
  background: var(--button-hover-bg-color);
  color: var(--button-hover-text-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--button-text-color);
  border-color: var(--button-text-color);
}

.btn-secondary:hover {
  background: var(--button-text-color);
  color: var(--button-bg-color);
}

.btn-outline {
  background: transparent;
  color: var(--button-text-color);
  border-color: var(--button-text-color);
}

.btn-outline:hover {
  background: var(--button-text-color);
  color: var(--button-bg-color);
}

/* Product Carousel Styles */
.product-carousel {
  width: var(--carousel-width);
  height: var(--carousel-height);
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  border-radius: 8px;
  flex-shrink: 0;
}

.carousel-right {
  margin-left: 0;
}

.carousel-left {
  margin-right: 0;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 20px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  height: calc(100% - 40px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 20px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 auto;
  width: 280px;
  height: 100%;
}

.product-card {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 70%;
  overflow: hidden;
  background: #f8f9fa;
}

.product-image,
.product-image-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.product-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .product-image-hover {
  opacity: 1;
}

.product-card:hover .product-image {
  opacity: 0;
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  color: #ccc;
}

.product-info {
  padding: 16px;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.3;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.price-regular {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.price-sale {
  font-size: 18px;
  font-weight: 600;
  color: #e74c3c;
}

.price-compare {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.quick-add-btn {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 10px 20px;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card:hover .quick-add-btn {
  opacity: 1;
  transform: translateY(0);
}

.quick-add-btn:hover {
  background: #555;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: #f8f9fa;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-nav svg {
  color: #333;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: white;
  transform: scale(1.2);
}

/* Collection Empty State */
.collection-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .carousel-item {
    width: 240px;
  }
  
  /* Adjust minimum widths for better mobile experience */
  .static-image-card {
    min-width: 200px;
  }
}

/* Mobile-specific height controls with responsive text scaling */
@media (max-width: 768px) {
  .featured-collection-container {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
  
  .static-image-card,
  .product-carousel {
    width: 100% !important; /* Override custom widths on mobile */
    margin: 0;
    min-width: unset;
  }
  
  .static-image-card {
    height: var(--mobile-card-height);
    order: 1;
    min-height: 200px; /* Prevent too small heights */
    max-height: 600px; /* Prevent too large heights */
  }
  
  .product-carousel {
    height: var(--mobile-carousel-height);
    order: 2;
    min-height: 250px; /* Ensure carousel is usable */
    max-height: 600px; /* Prevent too large heights */
  }
  
  /* Adjust card content based on mobile height */
  .card-content-overlay {
    padding: max(16px, min(32px, calc(var(--mobile-card-height) * 0.08)));
  }
  
  /* Scale text dynamically based on mobile card height */
  .card-heading {
    font-size: clamp(20px, calc(var(--mobile-card-height) * 0.08), 28px) !important;
  }
  
  .card-subheading {
    font-size: clamp(12px, calc(var(--mobile-card-height) * 0.045), 16px) !important;
  }
  
  .card-button {
    padding: max(8px, min(12px, calc(var(--mobile-card-height) * 0.025))) max(16px, min(24px, calc(var(--mobile-card-height) * 0.05)));
    font-size: clamp(11px, calc(var(--mobile-card-height) * 0.035), 14px);
  }
  
  /* Ensure carousel items scale with mobile carousel height */
  .carousel-track {
    height: calc(var(--mobile-carousel-height) - 40px);
  }
  
  .carousel-item {
    width: clamp(160px, calc(var(--mobile-carousel-height) * 0.5), 220px);
  }
}
  
  .card-content-overlay {
    padding: 16px;
  }
  
  .card-heading {
    font-size: 24px !important;
  }
  
  .card-subheading {
    font-size: 14px !important;
  }
  
  .card-button {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .carousel-item {
    width: 200px;
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
  
  .carousel-prev {
    left: 10px;
  }
  
  .carousel-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .featured-collection-section {
    padding: var(--section-padding-top) 10px var(--section-padding-bottom);
  }
  
  .static-image-card {
    height: var(--mobile-card-height);
    min-height: 200px; /* Ensure minimum usable height */
  }
  
  .product-carousel {
    height: var(--mobile-carousel-height);
    min-height: 250px; /* Ensure minimum usable height */
  }
  
  .carousel-container {
    padding: 15px;
  }
  
  .carousel-track {
    padding: 0 10px;
    gap: 12px;
  }
  
  .carousel-item {
    width: 180px;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-title {
    font-size: 14px;
  }
  
  .price-regular,
  .price-sale {
    font-size: 16px;
  }
  
  .carousel-nav {
    display: none; /* Hide navigation arrows on very small screens */
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .product-carousel {
    background: #1a1a1a;
  }
  
  .product-card {
    background: #2d2d2d;
  }
  
  .product-title {
    color: #fff;
  }
  
  .price-regular {
    color: #fff;
  }
  
  .carousel-nav {
    background: #2d2d2d;
  }
  
  .carousel-nav svg {
    color: #fff;
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-collection-section {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading states */
.product-image[data-loading="true"] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Focus states for accessibility */
.card-button:focus,
.carousel-nav:focus,
.quick-add-btn:focus {
  outline: 2px solid #007acc;
  outline-offset: 2px;
}

.product-link:focus {
  outline: 2px solid #007acc;
  outline-offset: 2px;
  border-radius: 8px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .product-card {
    border: 2px solid #333;
  }
  
  .card-button,
  .quick-add-btn {
    border: 2px solid currentColor;
  }
  
  .carousel-nav {
    border: 2px solid #333;
  }
}