/** Shopify CDN: Minification failed

Line 295:0 Unexpected "}"
Line 308:58 Unexpected "/"

**/
/* SCHMUGG × XUPING Collection Grid - Premium Design */

.collection-grid-wrapper {
  padding: 40px 20px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Grid Column Variations */
.collection-grid[data-columns="1"] {
  grid-template-columns: 1fr;
}

.collection-grid[data-columns="2"] {
  grid-template-columns: repeat(2, 1fr);
}

.collection-grid[data-columns="3"] {
  grid-template-columns: repeat(3, 1fr);
}

.collection-grid[data-columns="4"] {
  grid-template-columns: repeat(4, 1fr);
}

/* Product Card Base - Optimized for Performance */
.product-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  /* Performance optimizations */
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.product-card:hover {
  transform: translateY(-2px) translateZ(0);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-quick-add,
  .quick-add-button {
    transition-duration: 0.01ms !important;
  }
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Image Wrapper */
.product-image-wrapper {
  position: relative;
  padding-bottom: 125%;
  overflow: hidden;
  background: #FFFFFF;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

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

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

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

/* Product Tags Row */
.product-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.tag-badge {
  display: inline-block;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 3px;
}

.tag-badge.brand {
  background: #1A1A1A;
  color: #FFFFFF;
}

.tag-badge.finish {
  background: #F5F5F5;
  color: #666;
  border: 1px solid #E0E0E0;
}

.tag-badge.stone {
  background: #FFF8E1;
  color: #8B7355;
  border: 1px solid #DDD0A4;
}

/* Sale Badge - Responsive */
.product-badge.sale {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 6px;
  background: #ff0000;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 3;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stock-indicator {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 3px 6px;
  border-radius: 8px;
  font-size: 8px;
  color: #ff6b6b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 2;
  line-height: 1;
}

.stock-dot {
  width: 3px;
  height: 3px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Hide stock indicator on all mobile */
@media (max-width: 768px) {
  /* Default mobile grid to 1 column */
  .collection-grid {
    grid-template-columns: 1fr !important;
  }

  /* Allow override with data-columns */
  .collection-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stock-indicator {
    display: none;
  }
}

.product-features {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.feature-badge {
  padding: 2px 6px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid #D4AF37;
  border-radius: 10px;
  font-size: 9px;
  color: #B8941F;
  font-weight: 500;
  z-index: 3;
}

/* SOLD OUT - Option 1: Subtle Overlay */
.sold-out-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s ease;
}

.sold-out-content {
  text-align: center;
  position: relative;
}

.sold-out-text {
  color: #1A1A1A;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid #1A1A1A;
  background: rgba(255, 255, 255, 0.9);
  position: relative;
  display: inline-block;
}

/* .sold-out-text::before { */
/*   content: ''; */
/*   position: absolute; */
/*   top: -1px; */
/*   left: -1px; */
/*   right: -1px; */
/*   bottom: -1px; */
/*   background: linear-gradient(45deg, */
/*     transparent 30%, */
/*     rgba(212, 175, 55, 0.3) 50%, */
/*     transparent 70%); */
/*   z-index: -1; */
/*   opacity: 0; */
/*   transition: opacity 0.3s ease; */
/* } */
/*  */
/* .sold-out-text::after { */
/*   content: 'BALD WIEDER DA'; */
/*   position: absolute; */
/*   bottom: -22px; */
/*   left: 50%; */
/*   transform: translateX(-50%); */
/*   font-size: 9px; */
/*   letter-spacing: 1px; */
/*   color: #999999; */
/*   white-space: nowrap; */
/*   font-weight: 400; */
/* } */
/*  */
/* .product-card:hover .sold-out-overlay { */
/*   background: rgba(255, 255, 255, 0.95); */
/* } */
/*  */
/* .product-card:hover .sold-out-text::before { */
/*   opacity: 1; */
}

/* Make sold out products slightly faded */
.product-card.sold-out .product-image {
  filter: grayscale(20%);
  opacity: 0.85;
}

.product-card.sold-out:hover .product-image {
  filter: grayscale(30%);
  opacity: 0.75;
}

/* /* SOLD OUT - Option 2: Diagonal Banner (dezenter) */ */
/* .sold-out-diagonal { */
/*   position: absolute; */
/*   top: 30px; */
/*   right: -30px; */
/*   width: 100px; */
/*   padding: 4px 0; */
/*   background: #1A1A1A; */
/*   color: #FFFFFF; */
/*   text-align: center; */
/*   transform: rotate(45deg); */
/*   transform-origin: center; */
/*   z-index: 4; */
/*   font-size: 9px; */
/*   letter-spacing: 1px; */
/*   font-weight: 500; */
/*   display: none; /* Versteckt, kann bei Bedarf aktiviert werden */ */
/* } */

/* Um Diagonal-Banner statt Overlay zu nutzen: */
.product-card.sold-out.use-diagonal .sold-out-overlay {
  display: none;
}

.product-card.sold-out.use-diagonal .sold-out-diagonal {
  display: block;
}

/* SOLD OUT - Option 3: Minimaler Sticker */
.sold-out-sticker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFFFF;
  color: #1A1A1A;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 1px solid #1A1A1A;
  border-radius: 20px;
  z-index: 4;
  display: none;
}

.product-card.sold-out.use-sticker .sold-out-overlay {
  background: rgba(255, 255, 255, 0.7);
}

.product-card.sold-out.use-sticker .sold-out-text {
  display: none;
}

.product-card.sold-out.use-sticker .sold-out-sticker {
  display: block;
}

/* Quick Add Button - Modern E-Commerce Pattern */
.product-quick-add {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  margin-top: 12px;
}

/* Desktop: Show on hover with fade effect */
@media (min-width: 769px) {
  .product-card {
    position: relative;
  }

  /* Expand card info area on hover to make room for button */
  .product-info {
    transition: padding-bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-card:hover .product-info {
    padding-bottom: 8px;
  }

  .product-quick-add {
    position: relative;
    margin-top: 8px;
    padding: 0 16px;
  }

  /* Show button on hover */
  .product-card:hover .product-quick-add,
  .product-card:focus-within .product-quick-add {
    opacity: 1;
    visibility: visible;
  }

  /* Keep price visible - adjust spacing */
  .product-card .product-price {
    transition: margin-bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .product-card:hover .product-price {
    margin-bottom: 4px;
  }
}

/* Mobile: Always visible for better UX */
@media (max-width: 768px) {
  .product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: visible;
  }

  .product-image-wrapper {
    margin-bottom: 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
  }

  .product-info {
    padding-bottom: 12px;
    background: white;
  }

  .product-quick-add {
    opacity: 1;
    visibility: visible;
    padding: 0 12px 12px;
    margin-top: 8px;
  }
}

.quick-add-button,
.quick-view-button {
  width: 100%;
  padding: 10px 8px;
  background: #1A1A1A;
  color: #FFFFFF;
  border: 1px solid #1A1A1A;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  /* Performance optimization */
  will-change: transform, background-color;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.quick-add-button svg,
.quick-view-button svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .quick-add-button,
  .quick-view-button {
    font-size: 10px;
    padding: 10px 6px;
    min-height: 38px;
  }
}

.quick-add-button:hover,
.quick-view-button:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #1A1A1A;
  transform: translateY(-1px) translateZ(0);
}

.quick-add-button.disabled {
  background: #999999;
  cursor: not-allowed;
  opacity: 0.6;
}

.quick-add-button.disabled:hover {
  background: #999999;
}

/* Product Info Section */
.product-info {
  padding: 16px;
  background: #FFFFFF;
}

/* Brand Line */
.product-brand {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #D4AF37;
  margin-bottom: 6px;
  font-weight: 600;
}

/* Product Title */
.product-title {
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.4;
  min-height: 32px;
}

/* Product Price */
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.price-compare {
  text-decoration: line-through;
  color: #999999;
  font-size: 13px;
}

.price-sale {
  color: #FF3B30;
  font-size: 18px;
  font-weight: 700;
}

.price-regular {
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 600;
}

.currency {
  font-size: 11px;
  color: #666666;
  margin-left: 2px;
}

/* Features Row */
.product-features-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.feature-mini {
  padding: 2px 6px;
  background: #F0EDE8;
  font-size: 8px;
  letter-spacing: 0.5px;
  border-radius: 10px;
  color: #666666;
  font-weight: 500;
}

.feature-mini.highlight {
  background: #D4AF37;
  color: #1A1A1A;
}

/* Color Swatches */
.product-swatches {
  display: flex;
  gap: 4px;
  margin-top: 10px;
  align-items: center;
}

.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
}

.swatch:hover {
  transform: scale(1.2);
  border-color: #D4AF37;
}

.swatch-more {
  font-size: 10px;
  color: #999999;
  margin-left: 4px;
}

/* Empty Collection */
.collection-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #FAFAF8 0%, #FFFFFF 100%);
  border-radius: 12px;
}

.collection-empty p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
}

.collection-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  opacity: 0.3;
}

/* Pagination - Minimal Design */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 80px 0;
  padding: 20px;
}

.pagination-numbers {
  display: flex;
  gap: 4px;
  align-items: center;
}

.pagination-number,
.pagination-ellipsis {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #666;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.pagination-number:hover {
  color: #1A1A1A;
  border-color: #E0E0E0;
  background: transparent;
}

.pagination-number.active {
  background: #1A1A1A;
  color: #FFFFFF;
  pointer-events: none;
  border-color: #1A1A1A;
}

.pagination-ellipsis {
  pointer-events: none;
  border: none;
}

.pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #E0E0E0;
  background: transparent;
  color: #666;
  transition: all 0.2s;
  text-decoration: none;
}

.pagination-arrow:hover {
  background: #1A1A1A;
  border-color: #1A1A1A;
  color: #FFFFFF;
  transform: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Responsive Grid Layout */

/* Desktop - 4 columns */
@media (min-width: 1201px) {
  .collection-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* Small Desktop - 3 columns */
@media (max-width: 1200px) and (min-width: 769px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Tablet & Large Mobile - 2 columns */
@media (max-width: 768px) and (min-width: 481px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
  }

  .product-badge.sale {
    top: 5px;
    left: 5px;
    padding: 2px 5px;
    font-size: 8px;
  }

  .product-info {
    padding: 10px;
  }

  .product-title {
    font-size: 12px;
    height: 32px;
  }

  .product-tags-row {
    display: none;
  }

  .product-features {
    display: none;
  }
}

/* Small Mobile - 2 columns with smaller gap */
@media (max-width: 480px) and (min-width: 376px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }

  .product-badge.sale {
    top: 4px;
    left: 4px;
    padding: 2px 4px;
    font-size: 7px;
  }

  .product-info {
    padding: 8px;
  }

  .product-title {
    font-size: 11px;
    height: 28px;
  }

  .product-price {
    font-size: 12px;
  }

  .price-compare {
    font-size: 10px;
  }

  .price-sale {
    font-size: 13px;
  }
}

/* Desktop - Larger sizes for better readability */
@media (min-width: 1200px) {
  .tag-badge {
    font-size: 11px;
    padding: 4px 8px;
  }

  .feature-badge {
    font-size: 11px;
    padding: 3px 8px;
  }

  .product-badge.sale {
    font-size: 12px;
    padding: 5px 10px;
    top: 12px;
    left: 12px;
  }

  .product-price {
    margin-bottom: 12px;
  }

  .price-sale {
    font-size: 22px;
  }

  .price-current {
    font-size: 22px;
  }

  .price-compare {
    font-size: 16px;
  }

  .price-discount {
    font-size: 14px;
    padding: 2px 6px;
  }

  .currency {
    font-size: 14px;
  }

  .product-title {
    font-size: 14px;
    line-height: 1.4;
  }

  .stock-indicator {
    font-size: 11px;
  }
}

/* Extra Small Mobile - 1 column for very small screens */
@media (max-width: 375px) {
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 15px;
  }

  .product-card {
    max-width: 350px;
    margin: 0 auto;
  }

  .product-image-wrapper {
    padding-bottom: 100%; /* Square aspect ratio for single column */
  }

  .product-badge.sale {
    top: 6px;
    left: 6px;
    padding: 3px 6px;
    font-size: 9px;
  }

  .product-info {
    padding: 12px;
  }

  .product-title {
    font-size: 13px;
    height: auto;
    -webkit-line-clamp: 2;
  }

  .product-price {
    font-size: 14px;
  }

  .quick-add-button,
  .quick-view-button {
    font-size: 12px;
    padding: 12px;
    min-height: 44px;
  }
}

/* Mobile Pagination - all mobile sizes */
@media (max-width: 768px) {
  .pagination {
    margin: 40px 0 100px;
    padding: 10px;
  }

  .pagination-number:not(.active) {
    display: none;
  }

  .pagination-ellipsis {
    display: none;
  }

  .pagination-arrow {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .collection-grid-wrapper {
    padding: 20px 12px 60px;
  }

  .product-title {
    font-size: 11px;
    min-height: 28px;
  }

  .price-sale,
  .price-regular {
    font-size: 14px;
  }

  .xuping-badge {
    font-size: 8px;
    padding: 3px 6px;
  }
}