/* ==========================================================================
   Farmácia e Drogaria Ultrafarma – Getúlio Vargas
   Design System & Stylesheet (100% Fully Responsive Mobile-First Theme)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Ultrafarma Brand Colors */
  --color-primary: #ffcc00;         /* Ultrafarma Yellow */
  --color-primary-hover: #e6b800;   /* Darker Yellow */
  --color-primary-light: #fffbeb;   /* Light Yellow Tint */
  
  --color-brand-black: #000000;     /* Ultrafarma Official Black */
  --color-brand-dark: #121212;      /* Deep Neutral Black */
  
  --color-secondary: #000000;
  --color-secondary-hover: #222222;
  
  /* Neutral Scale */
  --color-bg: #ffffff;              /* Clean White Background */
  --color-surface: #ffffff;
  --color-surface-muted: #f8fafc;
  --color-text-main: #000000;
  --color-text-body: #1f2937;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;

  /* Status Colors */
  --color-status-open: #16a34a;
  --color-status-closing: #f59e0b;
  --color-status-closed: #dc2626;
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #1eae53;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;

  /* Layout */
  --header-min-height: 70px;
  --max-width: 1100px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
}

/* --------------------------------------------------------------------------
   2. Base Reset & Responsiveness Core
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  scroll-behavior: smooth;
  color-scheme: light;
  background-color: var(--color-bg);
  color: var(--color-text-body);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  background-color: var(--color-bg);
}

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-primary);
  color: var(--color-brand-black);
  padding: 10px 18px;
  z-index: 10000;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.section-padding {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 64px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px auto;
}

.section-tag {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-brand-black);
  font-weight: 800;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-text-main);
  line-height: 1.2;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--font-size-2xl);
  }
}

.section-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   3. Buttons & Pulsing Animations
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  min-height: 48px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-base);
  font-weight: 800;
  text-align: center;
  transition: all var(--transition-normal);
  user-select: none;
  max-width: 100%;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-brand-black);
  box-shadow: 0 3px 10px rgba(255, 204, 0, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

@keyframes pulse-hero-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 204, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
  }
}

.hero-btn-pulse {
  animation: pulse-hero-btn 2.5s infinite;
}

.btn-secondary {
  background-color: #000000;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

@keyframes pulse-wa-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.btn-wa-pulse {
  animation: pulse-wa-btn 2.8s infinite;
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
}

.btn-copy-address {
  transition: all var(--transition-fast);
}

.btn-copy-address.copied {
  background-color: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
}

.btn-full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   4. Header & Social Icons (Full Circle Logos without Margins)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-min-height);
  background-color: var(--color-brand-black);
  color: #ffffff;
  border-bottom: 3px solid var(--color-primary);
  z-index: 1000;
  padding: 10px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.brand-logo, .footer-logo-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-subtext {
  color: var(--color-primary);
  font-size: 1.65rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.5px;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--font-family);
  border-left: 3px solid var(--color-primary);
  padding-left: 10px;
  margin-left: 2px;
  white-space: nowrap;
}

.header-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-link {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: #ffffff;
  transition: color var(--transition-fast);
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: var(--color-primary);
}

/* Header Social Media Icons - Fill 100% of circle without margins */
.header-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
  overflow: hidden;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.header-social-icon:hover {
  transform: scale(1.12);
  opacity: 0.9;
}

.header-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

@media (max-width: 640px) {
  .header-container {
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .header-nav-wrapper {
    width: 100%;
    justify-content: center;
    gap: 14px;
  }
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.8rem;
  }
  .brand-logo img {
    height: 34px;
  }
  .logo-subtext {
    font-size: 1.2rem;
    padding-left: 8px;
    border-left-width: 2px;
  }
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-color: var(--color-brand-black);
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(18, 18, 18, 0.88) 100%), url('assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 40px 0 56px 0;
  border-bottom: 4px solid var(--color-primary);
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary);
  color: var(--color-brand-black);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  color: #ffffff;
}

.hero-title .highlight-yellow {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-headline {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.dynamic-highlight {
  color: var(--color-primary);
  font-weight: 900;
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.dynamic-highlight.fade-out {
  opacity: 0;
  transform: translateY(-6px);
}

.hero-description {
  font-size: var(--font-size-base);
  color: #d1d5db;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Status Pill in Hero */
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 100%;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes pulse-green-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.8);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(22, 163, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

.status-indicator.is-open {
  background-color: var(--color-status-open);
  animation: pulse-green-dot 2s infinite;
}

@keyframes pulse-amber-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.85);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.status-indicator.is-closing-soon {
  background-color: var(--color-status-closing);
  animation: pulse-amber-dot 1.8s infinite;
}

.status-indicator.is-closed {
  background-color: var(--color-status-closed);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* --------------------------------------------------------------------------
   6. Order Options Section
   -------------------------------------------------------------------------- */
.order-section {
  background-color: var(--color-bg);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .order-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.order-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.order-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.order-card.primary-card {
  border-color: var(--color-primary);
  background-color: var(--color-primary-light);
}

.order-card-badge {
  position: absolute;
  top: -12px;
  background-color: var(--color-brand-black);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.order-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.logo-brand-wrapper img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
}

.order-icon-svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.wa-icon-bg {
  background-color: var(--color-whatsapp);
  color: #ffffff;
}

.order-card-title {
  font-size: var(--font-size-lg);
  font-weight: 900;
  color: var(--color-text-main);
  margin-bottom: 6px;
}

.order-card-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: 18px;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   7. Consolidated Store Info & Hours Section
   -------------------------------------------------------------------------- */
.store-info-section {
  background-color: var(--color-surface-muted);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.store-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 992px) {
  .store-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.store-about-box h3 {
  font-size: var(--font-size-xl);
  font-weight: 900;
  color: var(--color-text-main);
  margin-bottom: 12px;
}

.store-about-box p {
  font-size: var(--font-size-sm);
  color: var(--color-text-body);
  margin-bottom: 12px;
  line-height: 1.6;
}

.about-lead {
  font-size: var(--font-size-base) !important;
}

/* Delicate Modern Status Pills */
.hours-card {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.hours-card-title {
  font-size: var(--font-size-lg);
  font-weight: 900;
  color: var(--color-text-main);
  margin-bottom: 14px;
}

.status-pill-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid var(--color-border);
  background-color: var(--color-surface-muted);
  max-width: 100%;
}

.status-pill-modern.is-open {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.status-pill-modern.is-closing-soon {
  background-color: #fffbe0;
  border-color: #fcd34d;
  color: #b45309;
}

.status-pill-modern.is-closed {
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.status-pill-modern strong {
  font-weight: 800;
}

.compact-schedule-table {
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  margin-bottom: 8px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: var(--font-size-sm);
  flex-wrap: wrap;
  gap: 6px;
}

.schedule-days {
  font-weight: 700;
  color: var(--color-text-main);
}

.schedule-hours {
  font-weight: 800;
  color: var(--color-brand-black);
}

/* Carousel */
.carousel-wrapper {
  margin-top: 36px;
}

.carousel-title {
  font-size: var(--font-size-lg);
  font-weight: 900;
  color: var(--color-text-main);
  text-align: center;
  margin-bottom: 14px;
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: #000000;
}

.carousel-track {
  position: relative;
  width: 100%;
  padding-bottom: 52%;
  height: 0;
}

@media (max-width: 576px) {
  .carousel-track {
    padding-bottom: 65%;
  }
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #ffffff;
  padding: 12px 16px;
  font-size: var(--font-size-xs);
  font-weight: 700;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: rgba(0, 0, 0, 0.65);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  border: 1px solid var(--color-primary);
  z-index: 10;
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
}

.carousel-dot.active {
  background-color: var(--color-primary);
  width: 18px;
}

/* --------------------------------------------------------------------------
   8. Location Section
   -------------------------------------------------------------------------- */
.location-section {
  background-color: var(--color-bg);
}

.location-content {
  max-width: 900px;
  margin: 0 auto;
}

.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 50%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  height: 0;
}

@media (max-width: 576px) {
  .map-wrapper {
    padding-bottom: 75%;
  }
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-action-bar {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   9. Compact Centered Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-brand-black);
  color: #9ca3af;
  padding: 36px 0 20px 0;
  font-size: var(--font-size-xs);
  border-top: 3px solid var(--color-primary);
}

.footer-compact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-centered {
  display: block;
  margin: 0 auto 8px auto;
}

.footer-brand-info p {
  color: #d1d5db;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #9ca3af;
}

@media (min-width: 600px) {
  .footer-contact-links {
    flex-direction: row;
    gap: 16px;
  }
}

.footer-phone-link {
  color: var(--color-primary);
  font-weight: 700;
}

.footer-social-inline a {
  color: #ffffff;
  font-weight: 700;
}

.footer-social-inline a:hover {
  color: var(--color-primary);
}

.footer-bottom-legal {
  border-top: 1px solid #262626;
  padding-top: 14px;
  width: 100%;
}

.footer-disclaimer {
  color: #6b7280;
  margin-top: 6px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   10. Floating WhatsApp Button
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--color-whatsapp);
  color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform var(--transition-fast);
  animation: pulse-wa-btn 2.8s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

/* --------------------------------------------------------------------------
   11. Reduced Motion Accessibility Override
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   12. Toast Notification System (Fixed Floating Top Pill Banner)
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 90%;
  max-width: 480px;
  pointer-events: none;
}

.toast {
  background-color: var(--color-brand-black);
  color: #ffffff;
  border: 1.5px solid var(--color-primary);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-size: var(--font-size-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  text-align: center;
}

.toast.toast-show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.toast-message {
  color: #ffffff;
  line-height: 1.4;
}
