/* ================================================
   BTP GLOBAL STYLES
   /wp-content/themes/your-theme/assets/css/btp-global.css
   ================================================ */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

/* ===== VARIABLES ===== */
:root {
  /* Brand */
  --pink: #FF1493;
  --pink-dark: #d4007a;
  --pink-light: #fff0f8;
  --purple: #4B0082;

  /* Backgrounds */
  --off-white: #FFF9FC;
  --light-gray: #f3f4f6;
  --subtle-bg: #f9fafb;

  /* Borders */
  --border: #e5e7eb;

  /* Text */
  --dark: #1f2937;           /* main headings */
  --dark-strong: #111827;    /* hero / emphasis headings */
  --dark-alt: #1f1636;       /* about-page hero headings */
  --body: #374151;           /* body / description text */
  --body-secondary: #4b5563; /* secondary paragraphs */
  --gray: #6b7280;           /* muted / meta text */

  /* Components */
  --card-radius: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-hover: 0 8px 36px rgba(255, 20, 147, 0.18);
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--off-white);
  color: var(--dark);
}

/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--dark);
}

.logo-text span {
  display: block;
  color: var(--pink);
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-dashboard-icon {
  display: none;
}
.nav-fav-btn {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-fav-btn:hover { color: var(--pink); }
.nav-fav-count {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--pink);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  font-family: 'Nunito', sans-serif;
}
.nav-cart-btn {
  position: relative;
  font-size: 1.3rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--pink);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  border-radius: 50px;
  min-width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-family: 'Nunito', sans-serif;
}

/* ===== CART DRAWER ===== */
.btp-cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
  backdrop-filter: blur(2px);
}
.btp-cart-overlay.open { display: block; }
.btp-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 95vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.btp-cart-drawer.open { transform: translateX(0); }
.btp-cd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.btp-cd-head-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btp-cd-head-count {
  background: var(--pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50px;
  padding: 2px 8px;
}
.btp-cd-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--gray);
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}
.btp-cd-close:hover { background: var(--light-gray); color: var(--dark); }
.btp-cd-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}
.btp-cd-loading {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 700;
}
.btp-cd-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}
.btp-cd-empty span { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.btp-cd-empty p { font-weight: 700; font-size: 0.95rem; }
.btp-cd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.btp-cd-item:last-child { border-bottom: none; }
.btp-cd-thumb-wrap { flex-shrink: 0; }
.btp-cd-thumb {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}
.btp-cd-thumb-placeholder {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.btp-cd-info { flex: 1; min-width: 0; }
.btp-cd-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--dark);
  text-decoration: none;
  display: block;
  margin-bottom: 3px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btp-cd-name:hover { color: var(--pink); }
.btp-cd-vendor { font-size: 0.75rem; color: var(--gray); font-weight: 600; margin-bottom: 4px; }
.btp-cd-meta { font-size: 0.75rem; color: var(--gray); font-weight: 600; margin-bottom: 2px; }
.btp-cd-price { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--pink); margin-top: 6px; }
.btp-cd-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 0.75rem;
  padding: 2px 4px;
  border-radius: 4px;
  flex-shrink: 0;
  transition: color 0.15s;
  margin-top: 2px;
}
.btp-cd-remove:hover { color: #e11d48; }
.btp-cd-footer {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: #fafafa;
}
.btp-cd-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 14px;
}
.btp-cd-checkout-btn {
  display: block;
  width: 100%;
  background: var(--pink);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.btp-cd-checkout-btn:hover { background: var(--pink-dark); transform: translateY(-1px); }
.btp-cd-browse-btn {
  display: block;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.btp-cd-browse-btn:hover { color: var(--pink); }

/* ===== BUTTONS ===== */
.btn-outline {
  padding: 9px 20px;
  border: 2px solid var(--pink);
  color: var(--pink);
  background: transparent;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--pink);
  color: #fff;
}

.btn-primary {
  padding: 9px 20px;
  background: var(--pink);
  color: #fff;
  border: 2px solid var(--pink);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 14px 40px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--pink);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 300;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE NAV DRAWER ===== */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 65px;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--pink);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark-strong);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: var(--pink);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE — GLOBAL ===== */
@media (max-width: 768px) {

  /* Hide desktop nav on mobile */
  .nav-links {
    display: none !important;
  }

  /* Navbar padding — tighter on mobile */
  .navbar {
    padding: 10px 14px;
    justify-content: flex-start;
    gap: 12px;
  }

  .logo {
    gap: 11px;
    min-width: 0;
    flex-shrink: 0;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .logo-text {
    font-size: 0.92rem;
    line-height: 1;
    white-space: nowrap;
  }

  .logo-text span {
    display: block;
    font-size: 1.02rem;
    margin-left: 0;
  }

  /* CTA buttons — compact but readable on mobile */
  .nav-cta {
    flex: 1;
    gap: 12px;
    margin-left: 0;
    min-width: 0;
  }

  .nav-fav-btn {
    margin-left: auto;
  }

  .nav-cta .btn-outline {
    margin-left: 0;
  }

  .nav-cta .btn-outline,
  .nav-cta .btn-primary {
    padding: 6px 9px;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  /* Logged-in dashboard access stays consistent and compact site-wide. */
  .navbar .nav-cta .nav-dashboard-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    flex: 0 0 38px;
  }

  .nav-dashboard-icon {
    display: block;
  }

  .nav-dashboard-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* Breadcrumb padding */
  .breadcrumb {
    padding: 12px 20px;
  }

  /* Footer padding */
  footer {
    padding: 32px 20px;
  }
}

@media (max-width: 380px) {
  .navbar {
    padding: 10px 10px;
    gap: 12px;
  }

  .logo {
    gap: 9px;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }

  .logo-text {
    font-size: 0.84rem;
  }

  .logo-text span {
    font-size: 0.94rem;
  }

  .nav-cta {
    gap: 9px;
  }

  .nav-cta .btn-outline,
  .nav-cta .btn-primary {
    padding: 6px 7px;
    font-size: 0.7rem;
  }
}

/* ===== OCCASIONS BAR — MOBILE ===== */
@media (max-width: 768px) {
  .occasions-bar {
    padding: 12px 16px;
    gap: 8px;
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
  }

  .occasions-label {
    display: none;
  }

  .pill {
    padding: 6px 14px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }
}

/* ===== FIX: Ensure nav CTA buttons are always visible ===== */
.nav-cta .btn-outline {
  padding: 7px 14px;
  border: 2px solid var(--pink) !important;
  color: var(--pink) !important;
  background: transparent !important;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none !important;
  display: inline-block;
}

.nav-cta .btn-outline:hover {
  background: var(--pink) !important;
  color: #fff !important;
}

.nav-cta .btn-primary {
  padding: 7px 14px;
  background: var(--pink) !important;
  color: #fff !important;
  border: 2px solid var(--pink) !important;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none !important;
  display: inline-block;
}

.nav-cta .btn-primary:hover {
  background: var(--pink-dark) !important;
  border-color: var(--pink-dark) !important;
}

/* ===== LEGAL PAGE ===== */
.legal-page-wrap { background: #fff; min-height: 100vh; }
.legal-hero {
  position: relative;
  background: linear-gradient(135deg, #1a0030 0%, #3d0035 50%, #1a0030 100%);
  padding: 72px 40px 56px;
  text-align: center;
  overflow: hidden;
}
.legal-hero::before {
  content: '🔒';
  position: absolute;
  font-size: 220px;
  right: -30px;
  top: -40px;
  opacity: 0.05;
  transform: rotate(15deg);
}
.legal-hero::after {
  content: '✨';
  position: absolute;
  font-size: 120px;
  left: 5%;
  bottom: -30px;
  opacity: 0.06;
}
.legal-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.legal-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin: 0 0 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  line-height: 1.1;
}
.legal-hero h1 span { color: var(--pink); }
.legal-hero p {
  color: rgba(255,255,255,0.8);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 600;
  margin: 0 auto;
  max-width: 580px;
}
.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,20,147,0.15);
  border: 1px solid rgba(255,20,147,0.3);
  color: var(--pink);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 50px;
  margin-top: 24px;
}
.legal-layout {
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 40px 64px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}
.legal-sidebar { position: sticky; top: 90px; }
.legal-layout > main { min-width: 0; }
.toc-card {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.toc-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--dark-strong);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--subtle-bg);
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toc-list li a {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--body);
  text-decoration: none;
  transition: all 0.2s;
  line-height: 1.3;
  white-space: normal;
  overflow-wrap: anywhere;
}
.toc-list li a:hover,
.toc-list li a.active { background: var(--pink-light); color: var(--pink); }
.toc-list li a::before {
  content: '->';
  opacity: 0;
  transition: opacity 0.2s;
  width: 14px;
  flex: 0 0 14px;
  margin-right: 4px;
  line-height: 1.3;
}
.toc-list li a:hover::before,
.toc-list li a.active::before { opacity: 1; }
.contact-card {
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1a0030, #3d0035);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

.contact-card p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  line-height: 1.5;
}
.contact-card a {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.contact-card a:hover { background: var(--pink-dark); }
.legal-content-card {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  overflow: hidden;
}
.legal-content-header {
  padding: 28px 36px;
  background: linear-gradient(135deg, var(--pink-light) 0%, #f5f3ff 100%);
  border-bottom: 1px solid #f3e8ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.legal-content-header-left strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark-strong);
  margin-bottom: 2px;
}
.legal-content-header-left span {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  color: var(--gray);
}
.legal-content-header-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--subtle-bg);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--body);
}
.legal-badge.pink { border-color: rgba(255,20,147,0.3); background: var(--pink-light); color: var(--pink); }
.legal-badge.green { border-color: rgba(16,185,129,0.3); background: #d1fae5; color: #065f46; }
.legal-content {
  padding: 36px 36px 40px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.97rem;
  line-height: 1.9;
  overflow-wrap: break-word;
  min-width: 0;
  color: var(--body);
}
.legal-content h2 {
  font-family: 'Nunito', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 800;
  color: var(--dark-strong);
  margin: 2.2em 0 0.7em;
  padding-top: 1.2em;
  border-top: 1px solid var(--light-gray);
  scroll-margin-top: 100px;
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h2 span { color: inherit; }
.legal-content h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin: 1.6em 0 0.5em;
  scroll-margin-top: 100px;
}
.legal-content p { margin: 0 0 1.2em; }
.legal-content ul,
.legal-content ol {
  margin: 0 0 1.2em;
  padding-left: 1.4em;
}
.legal-content ul li {
  list-style: disc;
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 0.3em;
}
.legal-content ol li {
  list-style: decimal;
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 0.3em;
}
.legal-page-cancellation .legal-content ul {
  padding-left: 0;
}
.legal-page-cancellation .legal-content ul li {
  list-style: none;
}
.legal-content strong { color: var(--dark-strong); font-weight: 800; }
.legal-content a { color: var(--pink); font-weight: 700; text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-notice {
  font-size: 0.97rem;
  line-height: 1.9;
  color: var(--body);
}
.legal-notice strong { color: var(--dark-strong); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); }

/* ===== FOOTER GRID ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto 48px;
}
.footer-brand { text-align: center; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.footer-logo-text { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.4rem; color: #fff; }
.footer-logo-text span { color: var(--pink); }
.footer-col h4 { color: #fff; font-weight: 800; margin-bottom: 16px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.social-links a:hover { background: var(--pink); }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; padding: 32px 20px 48px; }
  .legal-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .legal-content { padding: 24px 20px; }
  .legal-content-header { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .legal-hero { padding: 72px 20px 40px; }
  .breadcrumb { padding: 12px 20px; }
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative;
  background: linear-gradient(135deg, #1a0030 0%, #4c0b53 52%, #1a0030 100%);
  padding: 78px 40px 64px;
  text-align: center;
  overflow: hidden;
}
.about-hero::before { content: '🎉'; position: absolute; font-size: 220px; right: -26px; top: -34px; opacity: .05; transform: rotate(12deg); }
.about-hero::after { content: '✨'; position: absolute; font-size: 110px; left: 4%; bottom: -26px; opacity: .06; }
.about-hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.about-kicker { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; font-weight: 800; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 18px; }
.about-hero h1 { margin: 0 0 16px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.08; color: #fff; }
.about-hero h1 span { color: var(--pink); }
.about-hero p { margin: 0 auto; max-width: 640px; color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.8; font-weight: 600; }
.about-shell { max-width: 1180px; margin: 0 auto; padding: 48px 20px 72px; }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.about-card { background: #fff; border: 1px solid rgba(255,20,147,.10); border-radius: 28px; box-shadow: 0 18px 50px rgba(34,17,51,.08); overflow: hidden; }
.about-card-main { padding: 34px 34px 38px; }
.about-card-main h2 { margin: 0 0 16px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 2rem; color: var(--dark-alt); line-height: 1.08; }
.about-card-main h2 span { color: var(--pink); }
.about-card-main p { margin: 0 0 1.15em; font-size: 1rem; line-height: 1.95; color: var(--body-secondary); }
.about-pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.about-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--pink-light); border: 1px solid rgba(255,20,147,.14); color: var(--pink); border-radius: 999px; padding: 8px 14px; font-size: .8rem; font-weight: 800; }
.about-highlight { background: linear-gradient(135deg, #fff5fb, #fff); border: 1px solid rgba(255,20,147,.10); border-radius: 18px; padding: 18px 18px 16px; margin-top: 16px; }
.about-highlight strong { display: block; margin-bottom: 6px; color: var(--dark-alt); font-size: .95rem; }
.about-highlight p { margin: 0; font-size: .92rem; line-height: 1.75; }
.about-side { display: grid; gap: 20px; }
.about-photo-card { position: relative; min-height: 280px; border-radius: 28px; overflow: hidden; box-shadow: 0 18px 50px rgba(34,17,51,.10); }
.about-photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-overlay { position: absolute; inset: auto 0 0 0; padding: 20px 22px; background: linear-gradient(180deg, transparent 0%, rgba(18,12,33,.78) 70%, rgba(18,12,33,.92) 100%); color: #fff; }
.about-photo-overlay strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.about-photo-overlay span { display: block; font-size: .92rem; color: rgba(255,255,255,.82); line-height: 1.6; }
.about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.about-stat { background: #fff; border: 1px solid rgba(255,20,147,.10); border-radius: 20px; padding: 20px 18px; box-shadow: 0 12px 28px rgba(34,17,51,.06); }
.about-stat strong { display: block; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--dark-alt); margin-bottom: 6px; }
.about-stat span { display: block; font-size: .9rem; line-height: 1.6; color: var(--gray); font-weight: 700; }
.about-cta { margin-top: 28px; background: linear-gradient(135deg, #1a0030 0%, #3d0035 50%, #1a0030 100%); border-radius: 28px; padding: 28px 28px; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.about-cta h3 { margin: 0 0 8px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.6rem; color: #fff; }
.about-cta p { margin: 0; font-size: .94rem; line-height: 1.7; color: rgba(255,255,255,.76); max-width: 620px; }
.about-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.about-cta-actions a { display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border-radius: 999px; font-size: .88rem; font-weight: 800; text-decoration: none; }

@media (max-width: 960px) { .about-grid { grid-template-columns: 1fr; } }
@media (max-width: 680px) {
  .about-hero { padding: 74px 20px 44px; }
  .about-card-main { padding: 26px 20px 28px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-cta { padding: 24px 20px; }
}

/* ===== TYPOGRAPHY CONSISTENCY ===== */
h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif !important;
  font-weight: 800;
  color: var(--dark);
}

/* Hero titles keep white — overrides above */
.hero h1,
.page-hero h1,
.legal-hero h1,
.about-hero h1 {
  font-family: 'Nunito', sans-serif !important;
  color: #fff;
}

/* Pink accent spans inside headings */
.section-title span,
.legal-hero h1 span,
.about-hero h1 span,
.about-card-main h2 span {
  color: var(--pink);
}

/* ===== FOOTER CONTACT SOCIAL LINKS ===== */
footer .contact-social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

footer .contact-social-links a {
  width: 30px;
  height: 30px;
  min-width: 30px;
  max-width: 30px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
}

footer .contact-social-links a:hover {
  background: var(--pink);
  color: #fff;
  text-decoration: none;
}

footer .contact-social-links svg {
  width: 15px;
  height: 15px;
  display: block;
}
