.collection-single {
    padding: 110px 6vw 160px;
}

.collection-hero {
    margin-bottom: 60px;
}

.collection-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 70px;
}

.collection-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.collection-title {
    font-size: 32px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.collection-metabar {
    display: flex;
    justify-content: space-between;
}

.collection-meta {
    opacity: 0.75;
    display: flex;
    gap: 16px;
}

.collection-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.collection-description {
    line-height: 1.9;
    border-radius: 12px;
    background: var(--color-obsidian-green);
    padding: 18px;
    color: var(--color-ivory-silk);
}

.collection-items-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 34px;
}

.collection-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}


/* ===============================
   PRODUCT CARD
================================ */
.product-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}


.product-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -120%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 40%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.08) 60%,
    transparent 100%
  );
  transform: rotate(12deg);
  opacity: 0;
  transition:
    left 0.9s ease,
    opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover::before {
  left: 140%;
  opacity: 1;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.72);
}

.product-title {
    text-align:center;
}

.product-card.soldout .product-image img {
  filter: grayscale(100%) blur(2px);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.soldout::after {
  content: "Sold Out";
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-sandstone-grey);
  color: #111;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  z-index: 5;
  pointer-events: none;
}

/* ===============================
   IMAGE
================================ */

.product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  aspect-ratio:1/1
  object-fit: cover;
}


.btn {
    padding: 12px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 500;
    background: linear-gradient(135deg, #c7a652, #e8d08c);
    color: #020617;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn a{
    color: #020617;
}

.btn:hover {
    background: linear-gradient(135deg, #dabf73, #f3e2ae);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 130, 0.2);
}

@media (max-width: 1100px) {
    .collection-layout {
        grid-template-columns: 1fr;
    }

    .collection-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
