/* DJ Setup Rental — product catalog (Phuket Sounds brand) */

.page--dj-setup {
  background: #05050a;
  color: #fff;
}

.page--dj-setup .page__main {
  padding-bottom: 0;
}

.dj-catalog {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(138, 44, 255, 0.16) 0%, transparent 52%),
    linear-gradient(180deg, #090011 0%, #05050a 18%, #090011 48%, #05050a 100%);
  padding: calc(var(--header-main-h) + 1.25rem) 0 4rem;
}

.dj-catalog__container {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.dj-catalog__header {
  text-align: center;
  margin-bottom: 3rem;
}

.dj-catalog__heading {
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
}

.section-subtitle {
  max-width: 45rem;
  margin: 0.85rem auto 0;
  font-size: clamp(1rem, 1.6vw, 1.375rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.dj-catalog__subline {
  max-width: 45rem;
  margin: 0.5rem auto 0;
  font-size: clamp(0.9rem, 1.4vw, 1.125rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.dj-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.875rem;
  align-items: stretch;
}

.dj-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 222, 89, 0.14);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dj-card:hover {
  border-color: rgba(255, 222, 89, 0.32);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.dj-card__media {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 260px;
  box-sizing: border-box;
  background:
    linear-gradient(145deg, rgba(255, 222, 89, 0.04) 0%, rgba(138, 44, 255, 0.06) 100%),
    rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
}

.dj-card__media:has(img[src]:not([src=""])) {
  background: #fff;
}

.dj-card__media--cover {
  padding: 0;
  background: #0a0a12;
}

.dj-card__media--cover:has(img[src]:not([src=""])) {
  background: #0a0a12;
}

.dj-card__media--cover img {
  object-fit: cover;
  object-position: center;
}

.dj-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

#islandvibe-set {
  padding: 10px;
}

#islandvibe-set img {
  transform: scale(1.2);
}

.dj-card__media:has(img[src]:not([src=""])) .dj-card__media-placeholder {
  display: none;
}

.dj-card__media-placeholder {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dj-card__promo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffde59 0%, #ffd84d 100%);
  color: #05050a;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.dj-card--promo {
  border-color: rgba(255, 222, 89, 0.28);
}

.dj-card--promo:hover {
  border-color: rgba(255, 222, 89, 0.45);
}

.dj-card__delivery-note {
  margin: 0 0 0.38rem;
  text-align: center;
  color: rgba(255, 222, 89, 0.78);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dj-card__head {
  flex-shrink: 0;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 222, 89, 0.1);
  border-bottom: 1px solid rgba(255, 222, 89, 0.18);
}

.dj-card__title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffde59;
}

.dj-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0.55rem 0.75rem 0.65rem;
}

.dj-card__desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.68);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.dj-card__desc a {
  color: #ffde59;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dj-card__desc a:hover {
  color: #ffd84d;
}

.dj-card__cta {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 0.4rem;
}

.dj-card__button {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 8px;
  background: #ffde59;
  color: #05050a;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.dj-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 100%;
  margin: 0;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  background: #05050a;
  font-family: inherit;
  text-align: center;
  text-transform: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.dj-card__price-product {
  color: #ffde59;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.dj-card__price-amount {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dj-card__price:hover,
.dj-card__price:focus-visible {
  background: #0a0a12;
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(255, 222, 89, 0.25);
}

.dj-card__button:hover {
  background: #ffd84d;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .dj-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dj-catalog {
    padding-top: calc(var(--header-main-h) + 0.85rem);
  }

  .dj-catalog__header {
    margin-bottom: 2.5rem;
  }

  .section-subtitle {
    margin-top: 0.75rem;
  }

  .dj-catalog__grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin: 0 auto;
  }
}

/* DJ quote modal — social contact only */

.dj-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.dj-quote-modal[hidden] {
  display: none;
}

.dj-quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 8, 0.78);
  backdrop-filter: blur(6px);
}

.dj-quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 222, 89, 0.14);
  background: linear-gradient(165deg, rgba(18, 8, 32, 0.98), rgba(5, 5, 10, 0.98));
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 222, 89, 0.08);
}

.dj-quote-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.dj-quote-modal__close:hover {
  background: rgba(255, 222, 89, 0.14);
  color: #fff;
}

.dj-quote-modal__title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 2rem 0.5rem 0;
  line-height: 1.3;
}

.dj-quote-modal__product {
  color: #ffde59;
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  font-weight: 700;
}

.dj-quote-modal__price-label {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.88rem, 1.9vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.dj-quote-modal__desc {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.5;
}

.dj-quote-modal__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.dj-quote-modal__social-link {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.dj-quote-modal__social-link img {
  width: 1.2rem;
  height: 1.2rem;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition: opacity 0.3s ease;
}

.dj-quote-modal__social-link--telegram img {
  width: 1.25rem;
  height: 1.25rem;
}

.dj-quote-modal__social-link--instagram:hover {
  border-color: rgba(240, 130, 170, 0.5);
  background: rgba(225, 48, 108, 0.1);
  box-shadow: 0 0 18px rgba(225, 48, 108, 0.2);
}

.dj-quote-modal__social-link--whatsapp:hover {
  border-color: rgba(80, 230, 140, 0.5);
  background: rgba(37, 211, 102, 0.1);
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.2);
}

.dj-quote-modal__social-link--telegram:hover {
  border-color: rgba(90, 190, 255, 0.55);
  background: rgba(42, 171, 238, 0.1);
  box-shadow: 0 0 18px rgba(42, 171, 238, 0.22);
}

.dj-quote-modal__social-link:hover img {
  opacity: 1;
}
