/* ═══════════════════════════════════════════════════
   AURALUX — PAGE SHELL STYLES
   Shared across find-a-gown, list-my-gown,
   book-a-visit, events, wardrobe sub-pages
   ═══════════════════════════════════════════════════ */

/* ── COMPACT PAGE HERO ──────────────────────────── */
.page-hero {
  position: relative;
  background: var(--hero-deep);
  padding-bottom: 0;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,14,6,0.55) 0%,
    rgba(26,14,6,0.80) 60%,
    rgba(26,14,6,0.97) 100%
  );
  z-index: 1;
}

/* Accent colour strip per page */
.page-hero--client     { background: linear-gradient(135deg, #1A0E06 0%, #2A1208 50%, #1E100A 100%); }
.page-hero--consign    { background: linear-gradient(135deg, #0E1204 0%, #181E08 50%, #1A1606 100%); }
.page-hero--appointment{ background: linear-gradient(135deg, #06101A 0%, #081420 50%, #0A1218 100%); }
.page-hero--events     { background: linear-gradient(135deg, #12061A 0%, #1A0A26 50%, #140814 100%); }
.page-hero--wardrobe   { background: linear-gradient(135deg, #1A0E06 0%, #241408 50%, #1A0E06 100%); }
.page-hero--contact    { background: linear-gradient(135deg, #1A0810 0%, #260E18 50%, #1A0810 100%); }

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 24px 32px;
  text-align: center;
}

.page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(226,204,170,0.50);
  text-decoration: none;
  margin-bottom: 18px;
  transition: color 0.22s;
}
.page-back-link:hover { color: var(--gold-light); }
.page-back-link i { font-size: 0.7rem; }

.page-hero-logo {
  margin-bottom: 10px;
}
.page-hero-logo .logo-script {
  font-family: var(--ff-script);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--champagne);
  line-height: 1;
}
/* ── Logo image — sub-page compact hero ── */
.page-hero-logo .logo-img-page {
  width: clamp(64px, 10vw, 90px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 1px 14px rgba(192,154,82,0.30));
}

.page-hero-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 10px 0;
}
.page-hero-divider span {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(192,154,82,0.35);
}
.page-hero-divider i {
  font-size: 0.38rem;
  color: rgba(192,154,82,0.60);
}

.page-hero-title {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.page-hero-title i {
  font-size: 0.85em;
  margin-right: 6px;
  color: var(--gold);
}

.page-hero-sub {
  font-family: var(--ff-serif);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-style: italic;
  color: rgba(226,204,170,0.55);
  line-height: 1.5;
}

/* ── PAGE MAIN ──────────────────────────────────── */
.page-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.page-main .portal-section {
  display: block;
}

/* ── TC MODAL FOOTER CLOSE BUTTON ───────────────── */
.btn-tc-close {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 28px;
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(192,154,82,0.12);
  border: 1.5px solid rgba(192,154,82,0.35);
  color: var(--gold-light);
}
.btn-tc-close:hover {
  background: rgba(192,154,82,0.22);
  border-color: var(--gold);
}

/* ══════════════════════════════════════════════════
   GET IN TOUCH PAGE — CONTACT CONTENT STYLES
   ══════════════════════════════════════════════════ */

/* ── Contact cards grid ─────────────────────────── */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 36px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: var(--bg-cream);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.22s;
}
.contact-card:hover { transform: translateY(-2px); }
.contact-card:hover::before { opacity: 1; }

/* WhatsApp card */
.contact-card--wa { border-color: rgba(37,165,96,0.22); }
.contact-card--wa::before { background: rgba(37,165,96,0.04); }
.contact-card--wa:hover { border-color: rgba(37,165,96,0.45); box-shadow: 0 6px 24px rgba(37,165,96,0.10); }

/* Email card */
.contact-card--email { border-color: rgba(192,154,82,0.22); }
.contact-card--email::before { background: rgba(192,154,82,0.04); }
.contact-card--email:hover { border-color: rgba(192,154,82,0.45); box-shadow: 0 6px 24px rgba(192,154,82,0.10); }

/* Instagram card */
.contact-card--insta { border-color: rgba(184,112,112,0.22); }
.contact-card--insta::before { background: rgba(184,112,112,0.04); }
.contact-card--insta:hover { border-color: rgba(184,112,112,0.45); box-shadow: 0 6px 24px rgba(184,112,112,0.10); }

/* Card icon badge */
.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.contact-card--wa    .contact-card-icon { background: rgba(37,165,96,0.10);  color: #25a560; border: 1px solid rgba(37,165,96,0.25); }
.contact-card--email .contact-card-icon { background: rgba(192,154,82,0.10); color: var(--gold-dark); border: 1px solid rgba(192,154,82,0.25); }
.contact-card--insta .contact-card-icon { background: rgba(184,112,112,0.10); color: var(--rose); border: 1px solid rgba(184,112,112,0.25); }

/* Card body */
.contact-card-body {
  flex: 1;
  position: relative;
  z-index: 1;
}
.contact-card-title {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 4px;
}
.contact-card-sub {
  font-family: var(--ff-serif);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--soft);
  line-height: 1.55;
  margin: 0 0 6px;
}
.contact-card-value {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--mid);
}

/* Arrow */
.contact-card-arrow {
  font-size: 0.75rem;
  color: var(--border);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.22s, color 0.22s;
}
.contact-card:hover .contact-card-arrow { transform: translateX(4px); color: var(--mid); }

/* ── Studio info card ───────────────────────────── */
.contact-studio-card {
  background: linear-gradient(135deg, #FEFCF9 0%, #F9F3EE 100%);
  border: 1px solid rgba(192,154,82,0.18);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  margin-bottom: 36px;
}
.contact-studio-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-studio-header i {
  color: var(--gold-dark);
  font-size: 0.9rem;
}
.contact-studio-header h3 {
  font-family: var(--ff-sans);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0;
}
.contact-studio-address {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin: 0 0 20px;
}
.contact-studio-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--soft);
}

/* Hours table */
.contact-studio-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
  margin-bottom: 4px;
}
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
}
.contact-hours-day  { color: var(--mid); font-weight: 500; }
.contact-hours-time { color: var(--charcoal); font-weight: 600; letter-spacing: 0.04em; }

/* ── FAQ quick-link strip ───────────────────────── */
.contact-faq-strip {
  text-align: center;
  padding: 28px 0 0;
  border-top: 1px solid var(--border-soft);
}
.contact-faq-label {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.contact-faq-label i { color: var(--gold); }
.contact-faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.contact-faq-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--ff-sans);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  background: var(--bg-cream);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
}
.contact-faq-pill i { color: var(--gold-dark); font-size: 0.75em; }
.contact-faq-pill:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(192,154,82,0.06);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192,154,82,0.10);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 600px) {
  .contact-card {
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px 18px;
  }
  .contact-card-arrow { display: none; }
  .contact-studio-card { padding: 22px 18px 20px; }
  .contact-faq-pill { font-size: 0.63rem; padding: 9px 14px; }
}

/* ── WARDROBE PAGE NAV INTEGRATION ──────────────── */
.wardrobe-page-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ══════════════════════════════════════════════════
   CONSIGNER APPOINTMENT PANEL
   Shown instead of the booking form when a consigner
   verifies their email at the appointment gate.
   ══════════════════════════════════════════════════ */

.appt-consigner-panel {
  margin-top: 28px;
  animation: fadeSlideUp 0.4s ease both;
}

/* ── Shared icon badge ──────────────────────────── */
.acp-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
}

.acp-icon--approved {
  background: rgba(130,200,100,0.12);
  border: 2px solid rgba(130,200,100,0.35);
  color: #82c864;
  box-shadow: 0 0 22px rgba(130,200,100,0.15);
}

.acp-icon--pending {
  background: rgba(192,154,82,0.10);
  border: 2px solid rgba(192,154,82,0.30);
  color: var(--gold);
  box-shadow: 0 0 18px rgba(192,154,82,0.12);
}

/* ── Heading ────────────────────────────────────── */
.acp-title {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--champagne);
  text-align: center;
  margin: 0 0 14px;
}

/* ── Body copy ──────────────────────────────────── */
.acp-desc {
  font-family: var(--ff-serif);
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: rgba(226,204,170,0.75);
  line-height: 1.7;
  text-align: center;
  margin: 0 0 20px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Notice / callout box ───────────────────────── */
.acp-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(130,200,100,0.06);
  border: 1px solid rgba(130,200,100,0.22);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 0 auto 24px;
  max-width: 520px;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  color: rgba(226,204,170,0.70);
  line-height: 1.55;
}

.acp-notice i {
  flex-shrink: 0;
  margin-top: 2px;
  color: #82c864;
  font-size: 0.85rem;
}

.acp-notice--pending {
  background: rgba(192,154,82,0.06);
  border-color: rgba(192,154,82,0.22);
}

.acp-notice--pending i {
  color: var(--gold);
}

/* ── WhatsApp CTA button ────────────────────────── */
.btn-acp-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  /* Solid WhatsApp-green-tinted gold */
  background: linear-gradient(135deg, #25a560 0%, #1a8a4a 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 18px rgba(37,165,96,0.28);
  width: 100%;
  max-width: 380px;
  margin: 0 auto 16px;
}

.btn-acp-wa:hover {
  background: linear-gradient(135deg, #2bbf6e 0%, #1e9e55 100%);
  box-shadow: 0 6px 24px rgba(37,165,96,0.38);
  transform: translateY(-1px);
  color: #fff;
}

.btn-acp-wa i {
  font-size: 1.1rem;
}

/* Outline variant — "Check my status" for pending state */
.btn-acp-wa--outline {
  background: transparent;
  color: #25a560;
  border: 1.5px solid rgba(37,165,96,0.45);
  box-shadow: none;
}

.btn-acp-wa--outline:hover {
  background: rgba(37,165,96,0.08);
  border-color: #25a560;
  box-shadow: 0 4px 14px rgba(37,165,96,0.15);
  color: #2bbf6e;
  transform: translateY(-1px);
}

/* ── "Change email" link-style button ───────────── */
.appt-gate-change {
  display: block;
  margin: 8px auto 0;
  background: none;
  border: none;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(192,154,82,0.50);
  cursor: pointer;
  transition: color 0.22s;
  padding: 4px 0;
}

.appt-gate-change:hover {
  color: var(--gold-light);
}

/* ── Fade-slide entrance animation ─────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .page-hero-content {
    padding: 28px 18px 24px;
  }
  .page-main {
    padding: 32px 18px 60px;
  }
}

@media (max-width: 520px) {
  .page-hero-content {
    padding: 22px 16px 20px;
  }
  .page-hero-title {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
  }
}
