/** Shopify CDN: Minification failed

Line 22:13 Expected identifier but found whitespace
Line 22:15 Unexpected "{"
Line 22:24 Expected ":"
Line 131:13 Expected identifier but found whitespace
Line 131:15 Unexpected "{"
Line 131:24 Expected ":"
Line 132:8 Expected identifier but found whitespace
Line 132:10 Unexpected "{"
Line 132:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:infinite-carousel (INDEX:21) */
.infinite-carousel {
  width: 100%;
  padding: 40px 0;
  background: {{ section.settings.bg_color }};
}
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}
.carousel-track-container {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.slide-video {
  background: #000;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
.slide-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-empty, .product-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #999;
  font-size: 14px;
  padding: 20px;
}
.slide-product {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card { 
  width: 100%; 
  text-align: center;
}
.product-image {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.product-image img {
  width: 100%;
  height: 260px; /* הגדלנו משמעותית את הגובה כדי שהחולצה תהיה גדולה ונוכחת */
  object-fit: contain; /* שומר שהחולצה לא תיקטע בכתפיים או בסמל */
  display: block;
  transition: transform 0.3s ease;
  margin: 0 auto;
}
.product-image img:hover { transform: scale(1.03); }
.product-label {
  display: inline-block;
  background: #f0f0f0;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.product-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
}
.product-title a { color: inherit; text-decoration: none; }
.product-title a:hover { text-decoration: underline; }
.product-price {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0 0 12px;
}
.product-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0 0 16px;
}
.product-btn {
  display: inline-block;
  background: {{ section.settings.button_color }};
  color: {{ section.settings.button_text_color }};
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s ease;
}
.product-btn:hover { opacity: 0.85; }
.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.carousel-arrow:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.carousel-dot.active {
  background: #111;
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .carousel-slide { grid-template-columns: 1fr; }
  .slide-product { padding: 24px; }
  .product-image img { height: 180px; object-fit: contain; }
  .product-title { font-size: 18px; }
  .carousel-arrow { width: 36px; height: 36px; }
}
/* END_SECTION:infinite-carousel */