/** Shopify CDN: Minification failed

Line 254:2 All "@import" rules must come first
Line 287:10 Expected identifier but found whitespace
Line 287:12 Unexpected "{"
Line 287:21 Expected ":"
Line 292:10 Expected identifier but found whitespace
Line 292:12 Unexpected "{"
Line 292:21 Expected ":"
Line 298:10 Expected identifier but found whitespace
Line 298:12 Unexpected "{"
Line 298:21 Expected ":"
... and 33 more hidden warnings

**/


/* CSS from section stylesheet tags */
.tiles-navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
    padding: 20px;
  }

  .tile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 10px;
    transition: box-shadow 0.2s;
  }

  .tile-item:hover {
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .tile-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
  }

  .tile-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
  }
.custom-slideshow-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 100 /33.3;
  overflow: hidden;
margin-bottom: 25px;
   
   
}


  .custom-slideshow-wrapper {
  position: relative;
  width: 96%; /* ~1/50th margin on both sides */
  margin: 0 auto 25px auto;
  aspect-ratio: 100 / 33.3;
  overflow: hidden;
  border-radius: 15px; /* Rounded corners on all sides */
}

/* Ensure inner content (images) also gets rounded corners */
.custom-slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 100 / 36.3;
  border-radius: 15px; /* Match wrapper */
}

  
.custom-slideshow-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.custom-slideshow-slide {
  min-width: 100%;
  position: relative;
}

.custom-slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 100 / 36.3;
}

.custom-slideshow-content {
  position: absolute;
  z-index: 10;
  color: white;
  max-width: 80%;
  padding: 1rem;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

/* Desktop alignment */
.custom-slideshow-content.left {
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  text-align: left;
}

.custom-slideshow-content.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.custom-slideshow-content.right {
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  text-align: right;
}

/* Mobile: content at bottom */
@media screen and (max-width: 749px) {
  .custom-slideshow-content {
    top: auto !important;
    bottom: 1rem;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    max-width: 90%;
  }
}

.custom-slideshow-title {
  font-size: 1.75rem;
  font-weight: bold;
}

.custom-slideshow-subtitle {
  font-size: 1rem;
  margin-top: 0.25rem;
}

.custom-slideshow-button {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.6rem 1.2rem;
  background: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.custom-slideshow-button:hover {
  background: #e65500;
}

/* Dots */
.custom-slideshow-dots {
  position: absolute;
  bottom: 12px;
  width: 100%;
  text-align: center;
  z-index: 15;
}

.custom-slideshow-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-slideshow-dot.active {
  background-color: #ff6600;
}

/* Arrows */
.custom-slideshow-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.custom-slide-arrow {
  background: rgba(0,0,0,0.1);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 2rem;
  pointer-events: all;
  transition: background 0.3s ease;
     
 margin-right: 50px;
}

.custom-slide-arrow:hover {
  background: rgba(0,0,0,0.15);
}
  @media screen and (max-width: 749px) {
  .custom-slideshow-content {
    display: none !important;
  }
    .custom-slide-arrow {
    display: none !important;
  }

   .custom-slideshow-wrapper {
 
  
  border-radius: 5px; /* Rounded corners on all sides */
}

/* Ensure inner content (images) also gets rounded corners */
.custom-slideshow-slide img {
 
  border-radius: 5px; /* Match wrapper */
}
}

/* Timer bar */
.custom-timer-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #ff6600;
  width: 0%;
  z-index: 15;
  transition: width linear;
}
/* Google Material Symbols */
  @import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');

  .material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-size: 36px;
    display: inline-block;
    line-height: 1;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    letter-spacing: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
  }

  .category-icons-wrapper {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
  }

  .category-icons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 16px;
  }

  .category-icon {
    flex: 0 1 calc(25% - 20px);
    text-align: center;
    text-decoration: none;
    color: {{ section.settings.text_color }};
  }

  .category-icon .material-symbols-outlined {
    margin-bottom: 8px;
    color: {{ section.settings.icon_color }};
  }

  .category-label {
    font-size: 14px;
    font-weight: 500;
    color: {{ section.settings.text_color }};
  }

  @media (max-width: 768px) {
    .category-icons-grid {
      overflow-x: auto;
      flex-wrap: nowrap;
    }

    .category-icon {
      flex: 0 0 auto;
      min-width: 100px;
    }
  }
.collection-slider-wrapper {
  padding: 40px 2vw;
  background: {{ section.settings.background_color }};
  position: relative;
}

.collection-slider-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: {{ section.settings.title_color }};
}

.collection-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 40px;
}

.collection-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex: 0 0 auto;
  width: 240px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 16px;
  scroll-snap-align: start;
  text-align: center;
  border-radius: var(--corner-radius);
  transition: transform 0.3s;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: var(--corner-radius);
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.product-image-wrapper img.secondary {
  opacity: 0;
}

.product-image-wrapper:hover img.primary {
  opacity: 0;
}

.product-image-wrapper:hover img.secondary {
  opacity: 1;
}

.product-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
  color: {{ section.settings.title_color }};
}

.product-price {
  font-size: 1rem;
  margin-bottom: 10px;
  color: {{ section.settings.price_color }};
}

.product-price .sale {
  color: {{ section.settings.sale_price_color }};
  font-weight: 600;
}

.product-price .compare {
  text-decoration: line-through;
  color: #777;
  margin-left: 6px;
  font-size: 0.875rem;
}

.add-to-cart-btn {
  background: {{ section.settings.button_background }};
  color: {{ section.settings.button_text }};
  padding: 8px 14px;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: {{ section.settings.button_radius }}px;
}

.add-to-cart-btn:hover {
  opacity: 0.9;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ccc;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider-arrow.left {
  left: 10px;
}

.slider-arrow.right {
  right: 10px;
}

@media screen and (max-width: 768px) {
  :root {
    --corner-radius: {{ section.settings.mobile_corner_radius }}px;
  }
}

@media screen and (min-width: 769px) {
  :root {
    --corner-radius: {{ section.settings.desktop_corner_radius }}px;
  }
}
.collection-banner-grid {
    max-width: 1400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin: 20px;
  }

  .collection-banner-item {
    width: 48%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
    aspect-ratio: 4 / 1; /* 25% height relative to width */
  }

  .collection-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
  }

  .collection-banner-item:hover img {
    transform: scale(1.03);
  }

  /* Mobile: full width */
  @media (max-width: 768px) {
    .collection-banner-item {
      width: 100%;
    }
  }