/* ===============================
   Margarita Tarot Combo – FULL CSS (Dark + Fonts)
   Fonts loaded via PHP: Bebas Neue (headings), Inter (UI)
   =============================== */

/* Base / variables */
.mcc-combo {
  --accent: #5b57e7;                 /* button purple */
  --panel-bg: rgba(255,255,255,0.04);
  --panel-border: rgba(255,255,255,0.28);
  --card-bg: rgba(255,255,255,0.08);
  --text: #fff;
  --muted: rgba(255,255,255,0.75);

  max-width: 1060px;
  margin: 0 auto;
  padding: 24px 16px;
  color: var(--text);
  box-sizing: border-box;

  /* UI font */
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

/* Layout: two panels with a plus sign */
.mcc-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 40px;
  align-items: start;
}
.mcc-plus {
  align-self: center;
  font-size: 42px;
  color: var(--muted);
  text-align: center;
  user-select: none;
}

/* Panels */
.mcc-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 22px;
  box-sizing: border-box;
}

/* Headings – Bebas Neue */
.mcc-panel-head {
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;                  /* Bebas is display font; looks bold */
  font-size: 22px;
  letter-spacing: .02em;
  margin: 0 0 18px;
  color: var(--text);
}

/* Card preview (inset, rounded) */
.mcc-card-visual {
  width: 100%;
  max-width: 300px;
  height: 420px;
  margin: 0 auto 16px;
  border-radius: 16px;               /* outer frame radius */
  background: var(--card-bg);
  padding: 14px;                     /* inset gap */
  box-sizing: border-box;
  overflow: hidden;                  /* clip inner corners */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.mcc-card-visual img,
.mcc-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 12px;               /* inner card radius */
  display: block;
}
.mcc-card-visual img { object-fit: cover; }

/* Placeholder pattern */
.mcc-placeholder {
  background: repeating-linear-gradient(
    45deg,
    #6a6a6a,
    #6a6a6a 12px,
    #7a7a7a 12px,
    #7a7a7a 24px
  );
  opacity: .55;
}

/* Selects (dark) */
.mcc-select-wrap { max-width: 300px; margin: 0 auto; }
.mcc-select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.30);
  background: rgba(0,0,0,0.45);
  color: var(--text);
  padding: 12px 14px;
  font-weight: 700;
  line-height: 1.2;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
.mcc-select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.mcc-select option { color: #000; }   /* browser dropdown list */

/* Actions / CTA */
.mcc-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;            /* center the big button */
  align-items: center;
  gap: 12px;
}
.mcc-cta {
  width: min(640px, 90%);             /* long like the reference */
  height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  opacity: .95;
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
  box-shadow: 0 8px 28px rgba(68,64,190,.45);
  font-family: "Inter", sans-serif;
}
.mcc-cta[disabled] {
  opacity: .55;
  box-shadow: none;
  cursor: not-allowed;
}
.mcc-cta:not([disabled]):hover { transform: translateY(-1px); }

.mcc-help { color: var(--muted); font-size: 14px; }

/* Responsive */
@media (max-width: 900px) {
  .mcc-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .mcc-plus { display: none; }
  .mcc-card-visual { height: 360px; }
}