/* VIP Partner Kataloğu — lüks gece hayatı (fonts loaded async in HTML) */
.oa-showcase {
  --oa-ink: #030308;
  --oa-panel: #0b0b12;
  --oa-gold: #d4af37;
  --oa-gold2: #f0d78c;
  --oa-champagne: #efe2b8;
  --oa-amber: #c45c26;
  --oa-muted: #9a927f;
  --oa-line: rgba(212, 175, 55, 0.35);
  position: relative;
  margin: 36px 0 48px;
  padding: 42px 0 46px;
  background:
    radial-gradient(90% 70% at 50% -20%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(70% 50% at 100% 40%, rgba(196, 92, 38, 0.08), transparent 50%),
    linear-gradient(180deg, #020205 0%, #07070f 45%, #040408 100%);
  border-block: 1px solid rgba(212, 175, 55, 0.18);
  overflow: hidden;
  font-family: Manrope, system-ui, sans-serif;
}

.oa-showcase::before,
.oa-showcase::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(920px, 86%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--oa-gold), transparent);
  opacity: 0.55;
  pointer-events: none;
}
.oa-showcase::before { top: 14px; }
.oa-showcase::after { bottom: 14px; }

.oa-showcase .oa-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

.oa-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--oa-gold);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}
.oa-ornament::before,
.oa-ornament::after {
  content: "";
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oa-gold));
}
.oa-ornament::after {
  background: linear-gradient(90deg, var(--oa-gold), transparent);
}

.oa-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oa-champagne);
  background: linear-gradient(180deg, rgba(212,175,55,.16), rgba(0,0,0,.55));
  border: 1px solid var(--oa-line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 24px rgba(0,0,0,.35);
  margin-bottom: 12px;
}

.oa-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f7f1e4;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-align: left;
}
.oa-title span {
  color: var(--oa-gold2);
  background: linear-gradient(120deg, #f0d78c, #d4af37 45%, #a67c1a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.oa-sub {
  margin: 0 0 22px;
  color: var(--oa-muted);
  font-size: 0.98rem;
  max-width: 640px;
  line-height: 1.7;
}

/* Venues */
.oa-venues { margin-bottom: 40px; }
.oa-venues .slider-wrapper {
  margin-top: 12px;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.oa-venues .slider-track img,
.oa-venue-track img {
  width: 178px;
  height: 112px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.04);
  filter: saturate(1.05) contrast(1.05);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.oa-venues .slider-track img:hover,
.oa-venue-track img:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--oa-gold2);
  box-shadow: 0 18px 36px rgba(0,0,0,.55), 0 0 24px rgba(212,175,55,.18);
}

/* Catalog head */
.oa-catalog-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.oa-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--oa-champagne);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(212,175,55,.22);
}
.oa-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #37d67a;
  box-shadow: 0 0 0 0 rgba(55, 214, 122, .55);
  animation: oaPulse 1.6s infinite;
}
@keyframes oaPulse {
  0% { box-shadow: 0 0 0 0 rgba(55,214,122,.5); }
  70% { box-shadow: 0 0 0 10px rgba(55,214,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(55,214,122,0); }
}

/* Catalog cards — vertical profile layout */
.oa-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.oa-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(212,175,55,.1), transparent 32%),
    radial-gradient(120% 80% at 50% 100%, rgba(196,92,38,.06), transparent 55%),
    #0b0b12;
  border: 1px solid rgba(212, 175, 55, 0.42);
  box-shadow:
    0 18px 40px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(240,215,140,.14),
    inset 0 0 48px rgba(212,175,55,.045);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.oa-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 92, 38, 0.55);
  box-shadow:
    0 26px 52px rgba(0,0,0,.62),
    0 0 28px rgba(196,92,38,.22),
    inset 0 1px 0 rgba(240,215,140,.16);
}
.oa-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #07070f;
}
.oa-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
  filter: brightness(.94) contrast(1.04) saturate(1.05);
}
.oa-card:hover .oa-card-media img { transform: scale(1.06); }

.oa-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff8e8;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
}
.oa-badge-vip {
  background: linear-gradient(135deg, #c45c26, #8a3d14);
}
.oa-badge-populer {
  background: linear-gradient(135deg, #d46830, #a0481c);
}
.oa-badge-elit {
  background: linear-gradient(135deg, #b8891d, #8a6410);
}
.oa-badge-yeni {
  background: linear-gradient(135deg, #a67c1a, #6e3010);
}

.oa-card-body {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 18px 18px 20px;
  flex: 1;
}
.oa-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  color: #fff8e8;
  font-weight: 700;
  border: 0;
  padding: 0;
  text-align: left;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.oa-name-badge {
  font-family: Manrope, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--oa-champagne);
  margin-left: 4px;
  vertical-align: middle;
}
.oa-stats-line {
  margin: 0;
  font-size: 12px;
  color: var(--oa-muted);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.oa-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.oa-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #efe2b8;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.18);
}
.oa-quote {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #b8b09a;
  font-style: italic;
}
.oa-quote em {
  font-style: italic;
  font-weight: 700;
  color: var(--oa-gold2);
  text-shadow: 0 0 16px rgba(212,175,55,.18);
}
.oa-prices {
  display: flex;
  gap: 20px;
  align-items: baseline;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid rgba(212,175,55,.12);
}
.oa-price-item b {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.48rem;
  font-weight: 700;
  color: #e8c56a;
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px rgba(196,92,38,.18);
}
.oa-price-item small {
  display: inline-block;
  margin-left: 5px;
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--oa-champagne);
  opacity: 0.72;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.oa-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  border: 0;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease, background .2s ease;
}
.oa-btn-full {
  flex: none;
  width: 100%;
  margin-top: auto;
  padding: 15px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  gap: 10px;
}
.oa-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}
.oa-wa-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(240, 215, 140, 0.14);
  border: 1px solid rgba(240, 215, 140, 0.35);
  color: #f0d78c;
  flex-shrink: 0;
}
.oa-wa-ico svg { display: block; }
/* Katalog WA — zümrüt + altın çerçeve (klas, neon değil) */
.oa-btn-wa {
  background:
    linear-gradient(180deg, rgba(240, 215, 140, 0.12), transparent 40%),
    linear-gradient(165deg, #0f3d2e 0%, #0b5c3a 42%, #094a30 100%);
  color: #f7f1e4 !important;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(240, 215, 140, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.oa-btn-wa:hover {
  color: #fff8e8 !important;
  filter: none;
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(240, 215, 140, 0.2), transparent 45%),
    linear-gradient(165deg, #145a42 0%, #0e7048 42%, #0a5636 100%);
  border-color: rgba(240, 215, 140, 0.65);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(196, 92, 38, 0.18),
    inset 0 1px 0 rgba(240, 215, 140, 0.3);
}
.oa-btn-wa:hover .oa-wa-ico {
  background: rgba(240, 215, 140, 0.22);
  border-color: rgba(240, 215, 140, 0.55);
  color: #fff8e8;
}
.oa-btn-tel {
  background: linear-gradient(135deg, #c45c26, #a0481c 55%, #6e3010);
  color: #fff8e8 !important;
  border: 1px solid rgba(196, 92, 38, 0.45);
  box-shadow: 0 10px 22px rgba(196,92,38,.28);
}
.oa-btn-tel:hover {
  color: #fff8e8 !important;
  box-shadow:
    0 14px 30px rgba(196,92,38,.42),
    0 0 22px rgba(196,92,38,.22);
  background: linear-gradient(135deg, #d46830, #b05020 55%, #7a3612);
}

.oa-cta-bar {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(212,175,55,.12), rgba(0,0,0,.55) 40%, rgba(196,92,38,.1)),
    #08080f;
  border: 1px solid rgba(212,175,55,.28);
  box-shadow: 0 18px 40px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.05);
}
.oa-cta-bar strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #fff6e4;
  font-size: 1.45rem;
  font-weight: 700;
}
.oa-cta-bar span {
  display: block;
  color: var(--oa-muted);
  font-size: 13px;
  margin-top: 4px;
}
.oa-cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 980px) {
  .oa-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .oa-showcase { padding: 28px 0 32px; }
  .oa-title { font-size: 1.85rem; }
  .oa-mosaic { grid-template-columns: 1fr; }
  .oa-venues .slider-track img,
  .oa-venue-track img { width: 140px; height: 88px; }
  .oa-cta-bar { align-items: stretch; }
  .oa-cta-actions { width: 100%; }
  .oa-cta-actions .oa-btn { flex: 1; }
}
