.featured-collections {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2rem;
}

.carousel-container {
  flex: 2;
  overflow-x: hidden;
}

.carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Create No of columns */
  gap: 0.5rem; /* Adjust gap between items */
  animation: carousel-slide 25s linear infinite;
}

.carousel-item {
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  word-wrap: break-word; /* Ensure long text wraps */
  overflow-wrap: break-word; /* Ensure long text wraps */
}

.carousel-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  height: auto;
  border-radius: 0.5rem;
}

.showcase-details {
  flex: 1;
  margin-left: 2rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  max-width: 340px;
  overflow: hidden;
}

/* ── Showcase holder card ── */
.sc-holder-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #1a1a2e;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.sc-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.2);
}

.sc-holder-info {
  flex: 1;
  min-width: 0;
}

.sc-holder-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #C9A84C;
  font-weight: 700;
  margin-bottom: 4px;
}

.sc-holder-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8edf4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.sc-holder-owner {
  font-size: 0.74rem;
  color: #8899aa;
  font-family: monospace;
  margin-bottom: 6px;
}

.sc-view-link {
  font-size: 0.78rem;
  color: #C9A84C;
  text-decoration: none;
}
.sc-view-link:hover { text-decoration: underline; }

/* ── Auction panel ── */
.sc-auction-panel {
  background: #111827;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

.sc-auction-pitch {
  font-size: 0.84rem;
  color: #c8d0dc;
  line-height: 1.5;
  margin-bottom: 14px;
}

.sc-auction-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}

.sc-stat {
  display: flex;
  flex-direction: column;
}

.sc-stat-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8899aa;
  margin-bottom: 2px;
}

.sc-stat-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.sc-bid-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #C9A84C, #e8c96a);
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  margin-bottom: 10px;
  transition: opacity 0.15s;
}
.sc-bid-btn:hover { opacity: 0.88; }

.sc-browse-link {
  display: block;
  font-size: 0.82rem;
  color: #C9A84C;
  text-decoration: none;
  text-align: center;
}
.sc-browse-link:hover { text-decoration: underline; }

/* ── How it works collapsible ── */
.sc-how-details {
  background: #0d1117;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}

.sc-how-details summary {
  padding: 10px 14px;
  font-size: 0.84rem;
  color: #8899aa;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  -webkit-user-select: none;
  user-select: none;
}
.sc-how-details summary::-webkit-details-marker { display: none; }
.sc-how-details summary::before {
  content: '▸';
  font-size: 0.7rem;
  color: #C9A84C;
  transition: transform 0.15s;
}
.sc-how-details[open] summary::before { transform: rotate(90deg); }
.sc-how-details summary:hover { color: #e8edf4; }

.sc-how-steps {
  padding: 4px 18px 14px 18px;
  margin: 0;
  font-size: 0.82rem;
  color: #8899aa;
  line-height: 1.7;
}
.sc-how-steps li { margin-bottom: 4px; }
.sc-how-steps strong { color: #c8d0dc; }

/* ── CTA buttons (onboarding strip) ── */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #C9A84C, #e8c96a);
  color: #000;
  padding: 0.55rem 1.2rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
.cta-button:hover { opacity: 0.88; }

@keyframes carousel-slide {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}


}
