/*
 * Diya Fashion Designing - Design System 2026.3
 * Conservative: typography + WhatsApp FAB only.
 * No forced button conversion, no fixed top bar.
 */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --diya-maroon: #D20078;
  --diya-maroon-dark: #A00060;
  --diya-maroon-deep: #6B0040;
  --diya-pink-50: #FBE5F2;
  --diya-pink-100: #F5BFD9;
  --diya-text: #1A1416;
  --diya-text-muted: #5A4A52;
  --diya-font-serif: 'Fraunces', Georgia, serif;
  --diya-font-sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--diya-font-sans);
  color: var(--diya-text);
  -webkit-font-smoothing: antialiased;
}

body h1, body h2, body h3, body h4, body h5, body h6,
body .elementor-heading-title,
body .elementor-widget-heading .elementor-heading-title,
body .site-title, body .site-title a,
body .entry-title, body .entry-title a,
body .page-title {
  font-family: var(--diya-font-serif) !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
}

body p,
body .elementor-widget-text-editor,
body .elementor-widget-text-editor p,
body .entry-content p {
  font-family: var(--diya-font-sans) !important;
}

body .site-navigation ul li a,
body .elementor-nav-menu li a {
  font-family: var(--diya-font-sans) !important;
}

/* WhatsApp FAB - tasteful, no pulse */
.diya-whatsapp-fab {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  width: 54px !important;
  height: 54px !important;
  background: #25D366 !important;
  color: #fff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35) !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  border: 2px solid #fff !important;
}

.diya-whatsapp-fab:hover {
  transform: scale(1.06) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45) !important;
  color: #fff !important;
}

.diya-whatsapp-fab svg { width: 26px; height: 26px; fill: #fff; }

@media (max-width: 768px) {
  .diya-whatsapp-fab { bottom: 14px !important; right: 14px !important; width: 50px !important; height: 50px !important; }
  .diya-whatsapp-fab svg { width: 24px; height: 24px; }
}

::selection { background: var(--diya-pink-100); color: var(--diya-maroon-deep); }
