/* ═══════════════════════════ LUXURY SHOWCASE SECTION ═══════════════════════════ */
.inventory-accordion-section {
  width: 100vw;
  max-width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: #0F2440;
}

.accordion-container {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Tablet (2 columns) */
@media (min-width: 768px) {
  .accordion-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop (4 columns) */
@media (min-width: 992px) {
  .accordion-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.accordion-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-radius: 0;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 992px) {
  .accordion-card {
    height: 900px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
  .accordion-card:last-child {
    border-right: none;
  }
}

/* ── Background Image ── */
.card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Gradient Overlay ──
   Nearly transparent at top, darkens only near the bottom third */
.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0)  0%,
    rgba(0, 0, 0, 0.0)  35%,
    rgba(0, 0, 0, 0.12) 50%,
    rgba(0, 0, 0, 0.55) 70%,
    rgba(0, 0, 0, 0.82) 85%,
    rgba(0, 0, 0, 0.92) 100%
  );
  pointer-events: none;
  transition: all 0.5s ease;
}

/* ── Content Container ──
   Pushed low so top 65-70% is uninterrupted photography */
.card-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 28px 44px 28px;
  color: white;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Icon ── */
.card-title i {
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 16px;
}

/* ── Category Title ──
   Elegant serif typeface with generous letter-spacing */
.card-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.card-title span {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: #fff;
  transition: all 0.5s ease;
}

/* ── Feature List ── */
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.detail-list li {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: clamp(13px, 1.2vw, 14.5px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  letter-spacing: 0.01em;
}

.detail-list li i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── Pricing ── */
.detail-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.price-label {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.price-value {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

/* ── CTA Button ── */
.btn-call-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  background-color: rgba(26, 58, 92, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-call-more i {
  font-size: 0.95rem;
}

/* ═══════════ Hover Effects (Desktop & Tablet) ═══════════ */
@media (min-width: 768px) {
  .accordion-card:hover {
    z-index: 10;
  }

  .accordion-card:hover .card-bg img {
    transform: scale(1.06);
  }

  .accordion-card:hover .card-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.0)  0%,
      rgba(0, 0, 0, 0.0)  30%,
      rgba(0, 0, 0, 0.08) 45%,
      rgba(0, 0, 0, 0.45) 65%,
      rgba(0, 0, 0, 0.75) 82%,
      rgba(0, 0, 0, 0.88) 100%
    );
  }

  .accordion-card:hover .btn-call-more {
    background-color: rgba(26, 58, 92, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
  }
}
