/* ==========================================================================
   Katita Amore - Link na Bio Premium Styling
   Identity: Sunflower Luxury, Warm Light Aesthetics, High Conversion
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #FAF7F2;
  --bg-secondary: #FFFDF9;
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --bg-subtle: #F5EFE6;
  
  /* Brand Sunflower & Botanical Accents */
  --sunflower-50: #FFFBEB;
  --sunflower-100: #FEF3C7;
  --sunflower-200: #FDE68A;
  --sunflower-400: #FBBF24;
  --sunflower-500: #F59E0B;
  --sunflower-600: #D97706;
  --sunflower-700: #B45309;
  --sunflower-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 50%, #B45309 100%);
  --sunflower-glow: rgba(245, 158, 11, 0.22);
  
  --olive-600: #4A6B32;
  --olive-700: #375323;
  --olive-bg: #EDF3E8;

  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  --whatsapp-gradient: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  --whatsapp-glow: rgba(37, 211, 102, 0.28);

  --instagram-gradient: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);

  /* Typography Colors */
  --text-main: #1F1B18;
  --text-muted: #665C54;
  --text-light: #948679;
  --border-subtle: rgba(229, 169, 60, 0.18);
  --border-card: rgba(180, 83, 9, 0.12);

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(44, 38, 35, 0.04);
  --shadow-md: 0 8px 20px rgba(44, 38, 35, 0.06), 0 2px 6px rgba(217, 119, 6, 0.04);
  --shadow-lg: 0 16px 32px rgba(44, 38, 35, 0.08), 0 4px 12px rgba(217, 119, 6, 0.06);
  --shadow-hover: 0 14px 28px rgba(217, 119, 6, 0.12), 0 4px 10px rgba(0, 0, 0, 0.04);

  /* Dimensions & Transitions */
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-pill: 9999px;
  --transition-smooth: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(at 10% 10%, rgba(254, 243, 199, 0.6) 0px, transparent 50%),
    radial-gradient(at 90% 20%, rgba(237, 243, 232, 0.7) 0px, transparent 50%),
    radial-gradient(at 50% 80%, rgba(254, 243, 199, 0.5) 0px, transparent 60%);
  background-attachment: fixed;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 16px 12px 100px;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Ambient Glowing Orbs */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.55;
}

.glow-1 {
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #FDE68A 0%, rgba(253, 230, 138, 0) 70%);
}

.glow-2 {
  top: 40%;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #EDF3E8 0%, rgba(237, 243, 232, 0) 70%);
}

.glow-3 {
  bottom: 5%;
  right: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #FEF3C7 0%, rgba(254, 243, 199, 0) 70%);
}

/* Main Container */
.bio-container {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: pageFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Top Navigation / Quick Bar */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--olive-700);
  box-shadow: var(--shadow-sm);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #22C55E;
  border-radius: 50%;
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.35);
  animation: pulseDot 2s infinite ease-out;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.icon-btn:hover, .icon-btn:active {
  background: #FFFFFF;
  color: var(--sunflower-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Profile Section */
.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4px 12px;
}

.logo-wrapper {
  position: relative;
  margin-bottom: 14px;
  width: 100%;
  max-width: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-halo {
  position: absolute;
  width: 160px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(16px);
  z-index: -1;
}

.profile-logo {
  max-width: 100%;
  height: auto;
  max-height: 115px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(44, 38, 35, 0.08));
  transition: var(--transition-bounce);
}

.profile-logo:hover {
  transform: scale(1.03);
}

.brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.brand-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.instagram-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.instagram-pill i.fa-instagram {
  font-size: 0.95rem;
  color: #E1306C;
}

.verified-badge {
  font-size: 0.75rem;
  color: #3897F0;
}

.instagram-pill:hover {
  color: var(--text-main);
  border-color: var(--sunflower-400);
  background: #FFFFFF;
  transform: translateY(-1px);
}

.brand-tagline {
  font-size: 0.94rem;
  color: var(--text-muted);
  max-width: 360px;
  font-weight: 500;
  line-height: 1.45;
  margin-top: 2px;
}

/* Trust Highlights Bar */
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  width: 100%;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.65);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(229, 169, 60, 0.12);
}

.trust-item i {
  color: var(--sunflower-600);
  font-size: 0.8rem;
}

/* Links Section */
.links-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

/* Base Link Card */
.link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--text-main);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.link-card:hover, .link-card:active {
  background: var(--bg-card-hover);
  border-color: rgba(217, 119, 6, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Icon Container in Cards */
.link-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition-bounce);
}

.link-card:hover .link-icon, .location-card:hover .link-icon {
  transform: scale(1.08) rotate(3deg);
}

/* Custom Icon Backgrounds */
.whatsapp-icon-bg {
  background: var(--whatsapp-gradient);
  box-shadow: 0 6px 16px var(--whatsapp-glow);
}

.catalog-icon-bg {
  background: var(--sunflower-gradient);
  box-shadow: 0 6px 16px var(--sunflower-glow);
}

.location-icon-bg {
  background: linear-gradient(135deg, #4A6B32 0%, #375323 100%);
  box-shadow: 0 6px 16px rgba(74, 107, 50, 0.25);
}

.instagram-icon-bg {
  background: var(--instagram-gradient);
  box-shadow: 0 6px 16px rgba(225, 48, 108, 0.25);
}

.info-icon-bg {
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
}

/* Link Content Layout */
.link-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.link-heading-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.link-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.link-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-arrow {
  color: var(--text-light);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.link-card:hover .link-arrow {
  color: var(--sunflower-600);
  transform: translateX(4px);
}

/* Micro Badges */
.micro-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  background: var(--sunflower-100);
  color: var(--sunflower-700);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge-green {
  background: var(--olive-bg);
  color: var(--olive-700);
}

/* Featured WhatsApp Card */
.featured-whatsapp {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5FBF6 100%);
  border: 1.5px solid rgba(37, 211, 102, 0.35);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.12), var(--shadow-md);
  padding: 16px 18px;
}

.featured-whatsapp .link-title {
  color: #0E6237;
  font-size: 1.02rem;
}

.link-badge-pill {
  position: absolute;
  top: 10px;
  right: 14px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
}

.pulse-effect {
  position: relative;
}

.pulse-effect::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: pulseCard 3s infinite;
  pointer-events: none;
}

@keyframes pulseCard {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Location Card & Accordion */
.location-card, .info-accordion {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.location-card:hover, .info-accordion:hover {
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: var(--shadow-hover);
}

.location-header, .info-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
}

.expand-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-card.expanded .expand-btn i,
.info-accordion.expanded .expand-btn i {
  transform: rotate(180deg);
  color: var(--sunflower-600);
}

.location-details, .info-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 16px;
  border-top: 1px solid transparent;
}

.location-card.expanded .location-details,
.info-accordion.expanded .info-details {
  max-height: 400px;
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(229, 169, 60, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.address-box {
  background: #FFFFFF;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(217, 119, 6, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.address-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sunflower-700);
  display: block;
}

.address-full {
  font-size: 0.84rem;
  color: var(--text-main);
  font-weight: 600;
  margin-top: 2px;
  line-height: 1.35;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--sunflower-100);
  border: 1px solid var(--sunflower-200);
  color: var(--sunflower-700);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.copy-btn:hover, .copy-btn:active {
  background: var(--sunflower-500);
  color: #FFFFFF;
  border-color: var(--sunflower-500);
}

.gps-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gps-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 6px;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-main);
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.gps-action-btn i {
  font-size: 1.15rem;
}

.maps-btn i { color: #EA4335; }
.waze-btn i { color: #33CCFF; }
.uber-btn i { color: #1E1B18; }

.gps-action-btn:hover, .gps-action-btn:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--sunflower-400);
}

/* Payments Grid */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 169, 60, 0.12);
}

.payment-icon-wrap {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1rem;
}

.pix-bg { background: #32BCAD; }
.card-bg { background: #6366F1; }
.money-bg { background: #10B981; }
.delivery-bg { background: #F59E0B; }

.payment-item-text {
  display: flex;
  flex-direction: column;
}

.payment-item-text strong {
  font-size: 0.8rem;
  color: var(--text-main);
}

.payment-item-text small {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Hours Card */
.hours-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(229, 169, 60, 0.14);
  border-radius: var(--radius-md);
}

.hours-icon {
  font-size: 1.15rem;
  color: var(--sunflower-600);
}

.hours-info {
  display: flex;
  flex-direction: column;
}

.hours-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

.hours-detail {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Embedded Google Maps Card */
.map-container-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.map-container-card:hover {
  border-color: rgba(217, 119, 6, 0.35);
  box-shadow: var(--shadow-hover);
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(229, 169, 60, 0.12);
}

.map-card-header i {
  color: var(--sunflower-600);
  font-size: 1rem;
}

.map-responsive-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #E5E7EB;
}

.map-responsive-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Quote Section */
.quote-section {
  margin-top: 6px;
}

.quote-card {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-icon {
  font-size: 1.1rem;
  color: var(--sunflower-500);
  opacity: 0.6;
  margin-bottom: 6px;
}

.quote-text {
  font-size: 0.86rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.45;
}

.quote-author-brand {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote-small-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(44, 38, 35, 0.08));
  transition: var(--transition-smooth);
}

.quote-small-logo:hover {
  transform: scale(1.05);
}

/* Footer */
.bio-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 8px 10px;
  text-align: center;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a, .footer-socials button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.footer-socials a:hover, .footer-socials button:hover {
  background: #FFFFFF;
  color: var(--sunflower-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-light);
}

.footer-location-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Sticky WhatsApp Floating Bar */
.sticky-whatsapp-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 440px;
  z-index: 99;
  animation: slideUpBottom 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

@keyframes slideUpBottom {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.sticky-content {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-pill);
  padding: 8px 10px 8px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.sticky-text {
  display: flex;
  flex-direction: column;
}

.sticky-text strong {
  font-size: 0.84rem;
  color: #0E6237;
}

.sticky-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--whatsapp-gradient);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px var(--whatsapp-glow);
  transition: var(--transition-smooth);
}

.sticky-btn:hover, .sticky-btn:active {
  transform: scale(1.04);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Modal Overlay & Card */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 27, 24, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  padding: 24px;
  transform: scale(0.92) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sunflower-700);
}

.modal-title-group h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.modal-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: #EAE2D5;
  color: var(--text-main);
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: var(--sunflower-50);
  border: 1px dashed var(--sunflower-400);
  border-radius: var(--radius-lg);
}

.qr-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.share-copy-box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-primary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 6px 6px 6px 12px;
}

.share-copy-box input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.8rem;
  color: var(--text-muted);
  outline: none;
  font-family: inherit;
}

.copy-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  background: var(--sunflower-gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.copy-link-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.share-options-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.share-option-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.share-wa {
  background: var(--whatsapp-green);
  color: #FFFFFF;
}

.share-native {
  background: var(--bg-subtle);
  color: var(--text-main);
}

.share-option-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 86px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1F1B18;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  color: #22C55E;
}

/* Responsive adjustments */
@media (max-width: 380px) {
  .bio-container {
    gap: 16px;
  }
  
  .brand-title {
    font-size: 1.55rem;
  }
  
  .link-card {
    padding: 12px 14px;
    gap: 10px;
  }
  
  .link-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.15rem;
  }
  
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
}
