/* ================================================================
   QwikGlam — Customer Login CSS  |  Couture Luxe Edition
   Ultra Luxury · Baby Pink · Lavender · Gold · Deep Plum
   ================================================================ */

/* All styles are embedded in page-customer-login.php for optimal
   performance and critical CSS rendering.

   This file is reserved for any customer-section overrides
   that apply globally (e.g., bottom nav, profile pages). */

/* ── Global Customer Page Overrides ── */
/* ── Customer Login: keep the dark plum header — light page needs dark nav for contrast ── */
.page-template-page-customer-login #qgHeader,
.page-template-page-customer-login .qg-header {
  background: rgba(20, 8, 40, 0.97) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(201, 168, 108, 0.15) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18) !important;
}

/* Hide Twenty Twenty Five theme default content wrappers on login page */
.page-template-page-customer-login .wp-block-post-content,
.page-template-page-customer-login .wp-block-template-part,
.page-template-page-customer-login .entry-content {
  display: none !important;
}

/* ── Customer Shared Utility Classes ── */
:root {
  --cust-baby-pink:   #FADADD;
  --cust-blush:       #F9C0CB;
  --cust-rose:        #F0839E;
  --cust-petal:       #FFF0F3;
  --cust-lavender:    #E8D5F5;
  --cust-violet:      #C4A0E8;
  --cust-deep-violet: #8B5DB8;
  --cust-plum:        #3B1F5E;
  --cust-gold:        #C9A86C;
  --cust-gold-lt:     #EDD898;
  --cust-champagne:   #FAF0DC;
  --cust-ivory:       #FFFAF7;
  --cust-ink:         #2A1040;
  --cust-text:        #4A2B68;
  --cust-muted:       #9B7BB8;
  --cust-border:      rgba(200, 168, 220, 0.22);

  --cust-grad-aurora: linear-gradient(135deg, #FADADD 0%, #E8D5F5 35%, #C4A0E8 65%, #EDD898 100%);
  --cust-grad-btn:    linear-gradient(135deg, #8B5DB8 0%, #C4A0E8 50%, #C9A86C 100%);
  --cust-shadow:      0 24px 80px rgba(59, 31, 94, 0.14);
  --cust-glow-gold:   0 0 40px rgba(201, 168, 108, 0.35);
  --cust-glow-rose:   0 0 40px rgba(240, 131, 158, 0.30);
  --cust-radius:      18px;
  --cust-font:        "DM Sans", sans-serif;
  --cust-font-serif:  "Playfair Display", serif;
}

/* ── Customer Card ── */
.qg-cust-card {
  background: #fff;
  border-radius: var(--cust-radius);
  padding: 24px;
  box-shadow: var(--cust-shadow);
  border: 1px solid var(--cust-border);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}
.qg-cust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 80px rgba(59, 31, 94, 0.18);
}

/* ── Luxury Button ── */
.qg-cust-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 14px;
  background: var(--cust-grad-btn);
  color: #fff;
  font-family: var(--cust-font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.3s;
  text-decoration: none;
}
.qg-cust-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(139, 93, 184, 0.4);
  color: #fff;
}
.qg-cust-btn--outline {
  background: transparent;
  border: 1.5px solid var(--cust-border);
  color: var(--cust-text);
}
.qg-cust-btn--outline:hover {
  border-color: var(--cust-violet);
  background: rgba(232, 213, 245, 0.12);
  color: var(--cust-plum);
  box-shadow: none;
}

/* ── Tag / Pill ── */
.qg-cust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(232, 213, 245, 0.3);
  border: 1px solid rgba(196, 160, 232, 0.25);
  font-family: var(--cust-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--cust-deep-violet);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Section heading ── */
.qg-cust-heading {
  font-family: var(--cust-font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--cust-plum);
  margin: 0 0 8px;
  line-height: 1.2;
}
.qg-cust-heading em {
  font-style: italic;
  color: var(--cust-rose);
}

/* ── Divider ── */
.qg-cust-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}
.qg-cust-divider::before,
.qg-cust-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cust-border);
}
.qg-cust-divider span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: var(--cust-muted);
}

/* ── Input ── */
.qg-cust-input {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--cust-border);
  border-radius: 14px;
  background: var(--cust-ivory);
  font-family: var(--cust-font);
  font-size: 15px;
  color: var(--cust-ink);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.qg-cust-input:focus {
  border-color: var(--cust-violet);
  box-shadow: 0 0 0 4px rgba(196, 160, 232, 0.15);
}
.qg-cust-input::placeholder {
  color: var(--cust-muted);
}

/* ── Label ── */
.qg-cust-label {
  display: block;
  font-family: var(--cust-font);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cust-muted);
  margin-bottom: 8px;
}

/* ── Alert ── */
.qg-cust-alert {
  padding: 14px 18px;
  border-radius: 12px;
  font-family: var(--cust-font);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}
.qg-cust-alert--error {
  background: #FFF0F3;
  border: 1px solid #F9C0CB;
  color: #C05080;
}
.qg-cust-alert--success {
  background: #F0FAF0;
  border: 1px solid #A8DBA8;
  color: #2A7A2A;
}
.qg-cust-alert--info {
  background: rgba(232, 213, 245, 0.3);
  border: 1px solid var(--cust-border);
  color: var(--cust-text);
}

/* ── Avatar ring ── */
.qg-cust-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cust-grad-aurora);
  font-family: var(--cust-font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cust-plum);
  border: 2px solid rgba(201, 168, 108, 0.3);
  box-shadow: var(--cust-glow-gold);
}

/* ── Skeleton loader ── */
.qg-cust-skeleton {
  border-radius: 10px;
  background: linear-gradient(90deg, #F5EDF8 25%, #EDE0F5 50%, #F5EDF8 75%);
  background-size: 200% 100%;
  animation: qg-skeleton-wave 1.5s ease-in-out infinite;
}
@keyframes qg-skeleton-wave {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Responsive Utility ── */
@media (max-width: 480px) {
  .qg-cust-card { padding: 18px; border-radius: 16px; }
}