/** Shopify CDN: Minification failed

Line 50:14 Expected identifier but found whitespace
Line 50:16 Unexpected "{"
Line 50:26 Expected ":"

**/


/* CSS from section stylesheet tags */
/* Auction-Card Grid */
.auction-grid {
  padding: 10px;
  display: grid;
  gap: 2.5em;
  grid-template-columns: repeat(auto-fill, minmax(400px, 2fr));
  justify-content: start;     /* ✅ keeps content flush to the left */
  align-content: start;       /* optional, ensures vertical alignment */
}
/* Auction-Card Grid */
.auction-grid {
  padding: 10px;
  display: grid;
  gap: 2.5em;
  grid-template-columns: repeat(auto-fill, minmax(400px, 2fr));
  justify-content: start;     /* ✅ keeps content flush to the left */
  align-content: start;       /* optional, ensures vertical alignment */
}
/* Auction-Card Grid */
.auction-grid {
  padding: 10px;
  display: grid;
  gap: 2.5em;
  grid-template-columns: repeat(auto-fit, minmax(420px, 420px));
  justify-content: center;   /* ✅ evenly centers cards */
}

/* CSS from snippet stylesheet tags */
/* Auction-Card  */
.auction-card {
  border: 1px solid #ddd;
  min-width: 420px; /* ✅ ensures the card never shrinks below this */
  max-width: 600px; /* optional for consistent sizing */
  border-radius: 10px;
  padding: 15px;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: {{ settings.font_body.family | default: 'inherit' }};
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
}

.auction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.auction-card h2 {
  font-size: 1.8rem;
  color: #11151C;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.auction-card h2 a {
  text-decoration: none;
  color: inherit;
}
.auction-card h2 a:hover {
  color: #11151C;
}

.platform-lot-count {
  display: inline-flex;
  gap: 5px;
  margin-bottom: 10px;
  font-size: 12px;
}

.auction-platform-badge {
  display: inline-block;
  background-color: #11151C;
  color: #fff;
  border: solid 0.5px #11151C;
  padding: 5px 10px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.auction-platform-badge:hover {
  background-color: #fff;
  color: #11151C;
}

.make-offer-btn {
  display: block;
  margin: 10px auto 0;
  padding: 10px 15px;
  background-color: transparent;
  border: 0.5px solid #11151C;
  color: #11151C;
  font-size: 1.5rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  width: 100%; 
  max-width: 250px; 
  text-align: center; 
}
.make-offer-btn:hover {
  background-color: #11151C;
  color: #fff;
}

/* Countdown Timer */
.countdown-timer {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #11151C;
}

.countdown-value {
  font-weight: normal;
  color: #fff;
  background-color: #11151C;
  padding: 5px;
}

/* Product images layout */
.product-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}
.product-images img {
  width: 105px;
  height: 105px; 
  border-radius: 4px;
  object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .auction-grid {
    grid-template-columns: 1fr;
  }
  .auction-card h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .auction-card {
    width: 100%;
    padding: 10px;
  }
  .auction-card h2 {
    font-size: 2rem;
  }
}