/* ===== STYLES GLOBAUX ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blanc: #ffffff;
  --rose-poudre: #fce4ec;
  --violet-lavande: #e2d5f5;
  --violet-doux: #c9b6e0;
  --violet-soutenu: #b39bc8;
  --texte-fonce: #2d2d3a;
  --texte-moyen: #5e5e73;
  --gris-fond: #faf9ff;
  --ombre-elegante: 0 25px 45px -12px rgba(179, 155, 200, 0.25);
  --vert-succes: #4caf50;
  --rouge-erreur: #f44336;
  --orange: #ff9800;
  --bleu-info: #2196f3;
  --vert-compta: #2ecc71;
  --rouge-compta: #e74c3c;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--blanc);
  color: var(--texte-fonce);
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--texte-fonce);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--texte-moyen);
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
  background: var(--violet-lavande);
  color: var(--texte-fonce);
  border: 1.5px solid transparent;
  box-shadow: 0 6px 18px rgba(184, 169, 212, 0.2);
  cursor: pointer;
}

.btn:hover {
  background: var(--violet-soutenu);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 25px -8px rgba(179, 155, 200, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: var(--violet-lavande);
}

.btn-outline:hover {
  background: var(--violet-lavande);
  color: var(--texte-fonce);
}

/* ===== HEADER ===== */
header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 208, 255, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(145deg, var(--violet-soutenu), var(--violet-lavande));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-img {
  height: 150px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  color: var(--texte-fonce);
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet-lavande), var(--violet-soutenu));
  transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--violet-soutenu);
}

/* ===== HERO (accueil) ===== */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 30%, rgba(226, 213, 245, 0.5) 0%, white 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--texte-moyen);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions .btn + .btn {
  margin-left: 1rem;
}

.hero-visual {
  background: url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 400 400%22><circle cx=%22200%22 cy=%22200%22 r=%22160%22 fill=%22%23fce4ec%22/><circle cx=%22280%22 cy=%22140%22 r=%2270%22 fill=%22%23e2d5f5%22 opacity=%220.5%22/><circle cx=%22100%22 cy=%22280%22 r=%2290%22 fill=%22%23b39bc8%22 opacity=%220.2%22/></svg>') no-repeat center/contain;
  height: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-badge {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  padding: 1.5rem 2rem;
  border-radius: 60px;
  margin-bottom: 2.5rem;
  box-shadow: var(--ombre-elegante);
}

/* ===== PHILOSOPHIE ===== */
.philo-section {
  background: #fcfaff;
}

.philo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.philo-card {
  text-align: center;
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 40px;
  box-shadow: var(--ombre-elegante);
}

.philo-card i {
  font-size: 3rem;
  color: var(--violet-soutenu);
  margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: #f5f0fa;
  border-top: 1px solid rgba(179, 155, 200, 0.2);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer-links a {
  text-decoration: none;
  color: var(--texte-moyen);
}

.footer-links a:hover {
  color: var(--violet-soutenu);
}

.social-icons {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
}

.social-icons a {
  color: var(--violet-soutenu);
  font-size: 1.6rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: var(--violet-lavande);
  transform: scale(1.1);
}

.copyright {
  color: var(--texte-moyen);
  font-size: 0.9rem;
}

/* ===== UTILITAIRES ===== */
.loading {
  text-align: center;
  padding: 2rem;
  color: var(--texte-moyen);
}

.success-message {
  background: #e6f7e6;
  color: #2d6a4f;
  padding: 1rem;
  border-radius: 60px;
  text-align: center;
  margin: 1rem 0;
}

.error-message {
  background: #ffe6e6;
  color: #c53030;
  padding: 1rem;
  border-radius: 60px;
  text-align: center;
  margin: 1rem 0;
}

.info-message {
  background: #e6f0ff;
  color: #2d4f8f;
  padding: 1rem;
  border-radius: 60px;
  text-align: center;
  margin: 1rem 0;
  font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    padding: 2rem;
    box-shadow: 0 20px 30px rgba(0,0,0,0.05);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
  .section-title {
    font-size: 2.2rem;
  }

  .logo-img {
    height: 90px;
  }

  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-text {
    margin: 0 auto 2rem;
  }
  .hero-actions .btn {
    display: inline-block;
  }
  .hero-visual {
    height: 300px;
    margin-top: 2rem;
  }

  .philo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-text {
    font-size: 1rem;
  }
  .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0 !important;
    text-align: center;
  }
  .hero-actions .btn + .btn {
    margin-left: 0 !important;
  }
  .logo-img {
    height: 70px;
  }

  .footer-links {
    gap: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .social-icons {
    gap: 1.2rem;
  }
}

/* =========================================================
   AJOUTS — FIDÉLITÉ / À PROPOS / AVIS
   (rien ci-dessus n'a été modifié, tout ce qui suit est nouveau)
   ========================================================= */

/* ===== PROGRAMME DE FIDÉLITÉ ===== */
.fidelite-section {
  background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--violet-lavande) 100%);
}

.fidelite-card {
  background: white;
  border-radius: 40px;
  padding: 2.5rem 3rem;
  box-shadow: var(--ombre-elegante);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.fidelite-icon i {
  font-size: 3.5rem;
  color: var(--violet-soutenu);
}

.fidelite-content {
  flex: 1;
  min-width: 260px;
}

.fidelite-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.fidelite-content p {
  color: var(--texte-moyen);
  font-size: 1.05rem;
}

.fidelite-content strong {
  color: var(--violet-soutenu);
}

.fidelite-stamps {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 260px;
}

.stamp {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px dashed var(--violet-doux);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-lavande);
  font-size: 0.9rem;
}

.stamp-gift {
  border: 1.5px solid var(--violet-soutenu);
  color: var(--violet-soutenu);
  background: var(--rose-poudre);
}

/* ===== À PROPOS DE MOI ===== */
.apropos-section {
  background: white;
}

.apropos-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 3.5rem;
  align-items: center;
}

.apropos-photo img {
  width: 100%;
  height: auto;
  border-radius: 40px;
  box-shadow: var(--ombre-elegante);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.section-title-left {
  text-align: left;
}

.apropos-content p {
  color: var(--texte-moyen);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.qualifications-list {
  list-style: none;
}

.qualifications-list li {
  margin-bottom: 0.9rem;
  font-size: 1rem;
  color: var(--texte-fonce);
}

.qualifications-list i {
  color: var(--violet-soutenu);
  margin-right: 0.7rem;
}

/* ===== AVIS CLIENTES ===== */
.avis-section {
  background: #fcfaff;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.avis-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 40px;
  box-shadow: var(--ombre-elegante);
  text-align: center;
}

.avis-stars {
  color: #f0b429;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.avis-stars i + i {
  margin-left: 0.2rem;
}

.avis-text {
  color: var(--texte-moyen);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.avis-author {
  font-weight: 600;
  color: var(--violet-soutenu);
}

/* ===== RESPONSIVE — nouveaux blocs ===== */
@media (max-width: 800px) {
  .fidelite-card {
    flex-direction: column;
    text-align: center;
  }
  .fidelite-stamps {
    justify-content: center;
    max-width: 100%;
  }
  .apropos-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .apropos-photo img {
    max-width: 320px;
    margin: 0 auto;
  }
  .section-title-left {
    text-align: center;
  }
  .avis-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .fidelite-card {
    padding: 2rem 1.5rem;
  }
  .stamp {
    width: 32px;
    height: 32px;
  }
}
/* =========================================================
   CHATBOT MISTRAL - BULLE FLOTTANTE
   ========================================================= */

/* ===== CONTENEUR PRINCIPAL ===== */
#chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
}

/* ===== BOUTON FLOTTANT ===== */
.chatbot-toggle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet-soutenu), var(--violet-doux));
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(179, 155, 200, 0.45);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(179, 155, 200, 0.55);
}

.chatbot-toggle:active {
    transform: scale(0.92);
}

.chatbot-toggle.active {
    transform: scale(0.85);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* Point de notification */
.notification-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: var(--rouge-erreur);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid white;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ===== FENÊTRE DU CHAT ===== */
.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 390px;
    max-width: calc(100vw - 40px);
    height: 520px;
    max-height: 70vh;
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(179, 155, 200, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px) scale(0.92);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border: 1px solid rgba(179, 155, 200, 0.15);
}

.chatbot-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* ===== EN-TÊTE ===== */
.chatbot-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--violet-soutenu), var(--violet-doux));
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    object-fit: cover;
    background: white;
    padding: 2px;
}

.chatbot-header-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.01em;
}

.chatbot-header-info p {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg);
}

/* ===== MESSAGES ===== */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px 18px;
    background: #faf8ff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Scrollbar personnalisée */
.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: #f1edf7;
    border-radius: 2px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--violet-doux);
    border-radius: 2px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
    background: var(--violet-soutenu);
}

/* Messages individuels */
.message {
    max-width: 88%;
    animation: messageFadeIn 0.35s ease-out;
}

@keyframes messageFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
    word-wrap: break-word;
    position: relative;
}

.bot-message .message-content {
    background: white;
    color: var(--texte-fonce);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(179, 155, 200, 0.12);
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--violet-soutenu), var(--violet-doux));
    color: white;
    border-bottom-right-radius: 4px;
}

/* ===== INDICATEUR DE SAISIE ===== */
.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 6px 12px;
    align-items: center;
    min-height: 32px;
}

.typing-indicator span {
    width: 9px;
    height: 9px;
    background: var(--violet-soutenu);
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce 1.4s infinite both;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* ===== ZONE DE SAISIE ===== */
.chatbot-input-area {
    padding: 12px 16px 10px;
    background: white;
    border-top: 1px solid rgba(179, 155, 200, 0.15);
    flex-shrink: 0;
}

.chatbot-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    background: #f8f5ff;
    border-radius: 14px;
    padding: 4px 4px 4px 14px;
    border: 1.5px solid transparent;
    transition: all 0.3s;
}

.chatbot-input-wrapper:focus-within {
    border-color: var(--violet-soutenu);
    background: white;
    box-shadow: 0 0 0 4px rgba(179, 155, 200, 0.1);
}

.chatbot-input-wrapper textarea {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 0;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    resize: none;
    outline: none;
    max-height: 100px;
    line-height: 1.5;
    color: var(--texte-fonce);
}

.chatbot-input-wrapper textarea::placeholder {
    color: #b5b0c4;
}

.chatbot-input-wrapper textarea:disabled {
    opacity: 0.6;
}

.chatbot-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet-soutenu), var(--violet-doux));
    border: none;
    color: white;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-send:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(179, 155, 200, 0.35);
}

.chatbot-send:active {
    transform: scale(0.92);
}

.chatbot-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chatbot-input-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
    font-size: 11px;
    color: #b5b0c4;
}

.chatbot-input-footer .char-count {
    transition: color 0.3s;
}

/* ===== TOAST NOTIFICATIONS ===== */
.chatbot-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--texte-fonce);
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: toastFadeIn 0.4s ease-out;
    text-align: center;
    max-width: 90%;
    transition: opacity 0.3s;
}

@keyframes toastFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(16px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #chatbot-container {
        bottom: 20px;
        right: 20px;
    }
    
    .chatbot-toggle {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    
    .chatbot-window {
        bottom: 72px;
        width: calc(100vw - 40px);
        height: 55vh;
        right: 0;
        border-radius: 20px;
    }
    
    .chatbot-header {
        padding: 14px 16px;
    }
    
    .chatbot-header-info h3 {
        font-size: 14px;
    }
    
    .chatbot-messages {
        padding: 12px 14px;
    }
    
    .message-content {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .chatbot-avatar {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    #chatbot-container {
        bottom: 16px;
        right: 16px;
    }
    
    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .chatbot-window {
        bottom: 64px;
        width: calc(100vw - 32px);
        height: 60vh;
        border-radius: 16px;
    }
    
    .chatbot-header {
        padding: 12px 14px;
    }
    
    .chatbot-messages {
        padding: 10px 12px;
    }
    
    .message-content {
        font-size: 12.5px;
        padding: 8px 12px;
    }
    
    .chatbot-input-area {
        padding: 8px 12px 8px;
    }
    
    .chatbot-input-wrapper {
        padding: 2px 2px 2px 12px;
    }
    
    .chatbot-send {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    .chatbot-close {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .notification-dot {
        width: 18px;
        height: 18px;
        font-size: 9px;
        top: -3px;
        right: -3px;
    }
}