/* Collection Page Styles */

.collection-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(ellipse at center top, #1a1400 0%, var(--black) 60%);
  text-align: center;
}

.collection-hero-video {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.collection-hero-video .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.collection-hero-video .hero-video-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.4) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.collection-hero-video .collection-hero-inner {
  position: relative;
  z-index: 2;
}

.collection-hero-inner {
  max-width: 700px;
}

.collection-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

/* Products Grid */
.products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.product-card:hover {
  border-color: var(--yellow);
}

.product-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #222;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .product-overlay {
  transform: translateY(0);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-desc {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--yellow);
}

.product-sizes {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 1px;
}
