.iaLayer-card-l45 {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a2e;
}

.iaLayer-card-l45:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

/* ── BADGE PREMIUM ── */
.iaLayer-card-l45__premium-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #c9a84c;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid #c9a84c;
  box-shadow: 0 2px 8px rgba(201,168,76,0.35);
}

/* ── MEDIA ── */
.iaLayer-card-l45__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4f4f6;
}

.iaLayer-card-l45__media picture,
.iaLayer-card-l45__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.iaLayer-card-l45:hover .iaLayer-card-l45__media img {
  transform: scale(1.05);
}

/* ── BODY ── */
.iaLayer-card-l45__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  flex: 1;
}

/* ── META TOP ── */
.iaLayer-card-l45__meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.iaLayer-card-l45__brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  background: #f0f0f5;
  padding: 3px 10px;
  border-radius: 50px;
}

.iaLayer-card-l45__talla {
  font-size: 0.72rem;
  color: #9ca3af;
  font-weight: 500;
}

/* ── TITLE ── */
.iaLayer-card-l45__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: #1a1a2e;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── SUMMARY ── */
.iaLayer-card-l45__summary {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── PRICING ── */
.iaLayer-card-l45__pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.iaLayer-card-l45__price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.03em;
  line-height: 1;
}

.iaLayer-card-l45__price::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #c9a84c, #e8c96b);
  border-radius: 2px;
  margin-top: 6px;
}

/* ── ATTRIBUTES ── */
.iaLayer-card-l45__attributes {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
}

.iaLayer-card-l45__attr-label {
  color: #9ca3af;
  font-weight: 500;
}

.iaLayer-card-l45__attr-value {
  color: #374151;
  font-weight: 600;
  background: #f9f9fb;
  border: 1px solid #e5e7eb;
  padding: 2px 10px;
  border-radius: 50px;
}

/* ── CTA BUTTON ── */
.iaLayer-card-l45__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 13px 24px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(26,26,46,0.2);
}

.iaLayer-card-l45__cta:hover {
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96b 100%);
  color: #1a1a2e;
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

/* ── RELATED ── */
.iaLayer-card-l45__related {
  border-top: 1px solid #f0f0f5;
  padding: 20px 24px 24px;
  background: #fafafa;
}

.iaLayer-card-l45__related-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 14px 0;
}

.iaLayer-card-l45__related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .iaLayer-card-l45__body {
    padding: 18px;
  }

  .iaLayer-card-l45__price {
    font-size: 1.4rem;
  }

  .iaLayer-card-l45__title {
    font-size: 1rem;
  }

  .iaLayer-card-l45__related {
    padding: 16px 18px 20px;
  }

  .iaLayer-card-l45__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}