* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #142a33 0%, #08131b 48%, #050b10 100%);
  color: #f4f1e8;
  font-family: Georgia, "Times New Roman", serif;
}

.collections-page {
  width: 100%;
  min-height: 100vh;
  padding: 0px 18px 40px;
}

.collections-hero {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.brand-logo {
  width: 130px;
  max-width: 45%;
  margin-bottom: 24px;
 margin-top: -20px !important;
}

.eyebrow {
  color: #d2a23a;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.collections-hero h1 {
  color: #d2a23a;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.08;
  margin: 0 auto 18px;
  max-width: 900px;
  text-shadow: 0 2px 14px rgba(180, 125, 32, 0.18);
}

.hero-sub {
  max-width: 720px;
  margin: 0 auto;
  color: #dceff0;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.55;
}

.product-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  background: rgba(16, 35, 43, 0.92);
  border: 1px solid rgba(210, 162, 58, 0.38);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.product-card.featured {
  grid-column: 1 / -1;
  grid-template-columns: 220px 1fr;
  border-color: rgba(210, 162, 58, 0.68);
  background: linear-gradient(135deg, rgba(20,42,51,0.96), rgba(8,19,27,0.96));
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.tag {
  display: inline-block;
  margin-bottom: 10px;
  color: #08131b;
  background: linear-gradient(135deg, #f7e7b4 0%, #d6aa45 48%, #9f6f1f 100%);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.product-card h2 {
  color: #d2a23a;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  margin: 0 0 12px;
}

.product-card p {
  color: #dceff0;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 16px;
}

.price {
  color: #f4f1e8;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.product-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f7e7b4 0%, #d6aa45 45%, #9f6f1f 100%);
  color: #08131b;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 8px 22px rgba(214,170,69,.22);
}

.product-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.collections-footer {
  max-width: 900px;
  margin: 58px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(210, 162, 58, 0.42);
  text-align: center;
  color: #b7cdd0;
  font-size: 0.95rem;
}

.collections-footer a {
  color: #d2a23a;
  text-decoration: none;
}

.collections-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card.featured {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-card img {
    max-width: 220px;
    margin: 0 auto;
  }
}