/* ==========================================================================
   SHUKRIYA TRAVELS - PREMIER COMPONENTS
   Search Panel, Featured Offers, Destinations Grid, Holiday Cards,
   Dedicated Haj & Umrah Cards, Visa Directory & Modals
   ========================================================================== */

/* ==========================================================================
   1. TRAVEL SEARCH PANEL (Flights, Hotels, Holidays, Visas)
   ========================================================================== */
.service-panel-wrapper {
  margin-top: 6px;
  position: relative;
  z-index: 10;
}

.service-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.75);
  overflow: hidden;
  text-align: left;
}

/* Tab Navigation */
.service-tabs-nav {
  display: flex;
  background: linear-gradient(110deg, var(--brand-950), var(--brand-800));
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-tabs-nav::-webkit-scrollbar {
  display: none;
}

.service-tab-btn {
  flex: 1;
  min-width: 110px;
  padding: 15px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #94a3b8;
  background: transparent;
  transition: all var(--transition-fast);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.service-tab-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

.service-tab-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.service-tab-btn.active {
  color: var(--brand-950);
  background-color: var(--white);
  border-bottom-color: var(--accent-500);
  font-weight: 700;
}

/* Tab Content */
.service-tab-content {
  padding: 22px 24px;
}

@media (min-width: 768px) {
  .service-tab-content {
    padding: 26px 30px;
  }
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 200ms ease forwards;
}

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

/* Search Form Grids */
.search-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: flex-end;
}

@media (min-width: 640px) {
  .search-form-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .search-form-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .search-form-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .search-form-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .search-form-grid.cols-5 { grid-template-columns: 1.25fr 1.25fr 1fr 1fr 1.15fr; }
}

.flight-type-selector {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.flight-type-selector label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.service-disclaimer-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
}

.service-disclaimer-note svg {
  color: var(--brand-700);
  flex-shrink: 0;
}

/* ==========================================================================
   2. FEATURED OFFERS ROW (Verified Limited-Time Deals)
   ========================================================================== */
.offers-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .offers-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .offers-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-700);
  box-shadow: var(--shadow-sm);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-700), var(--accent-500));
}

.offer-badge {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-700);
  background: var(--accent-50);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  display: inline-block;
  margin-bottom: 10px;
  align-self: flex-start;
}

.offer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.35;
}

.offer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed var(--border-light);
}

.offer-code {
  font-size: 0.8125rem;
  font-family: monospace;
  font-weight: 700;
  color: var(--brand-800);
  background: var(--brand-50);
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  border: 1px dashed var(--brand-100);
}

/* ==========================================================================
   3. EXPLORE DESTINATIONS DIRECTORY
   ========================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.destination-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  background: linear-gradient(145deg, var(--brand-800), var(--accent-700));
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.dest-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  color: var(--white);
}

.dest-badge-top {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.8125rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}

.dest-content-bottom {
  margin-top: auto;
}

.dest-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 2px;
}

.dest-tagline {
  font-size: 0.8125rem;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.dest-price-tag {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-300);
}

/* ==========================================================================
   4. POPULAR HOLIDAYS CARDS
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

.package-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-smooth);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.package-image-wrap {
  position: relative;
  height: 200px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--brand-950);
}

.package-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.package-card:hover .package-image-wrap img {
  transform: scale(1.05);
}

.package-badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.package-duration-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.package-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-950);
  margin-bottom: 6px;
  line-height: 1.35;
}

.package-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Hotel Distance Highlight Box for Umrah */
.hotel-distance-box {
  background-color: var(--surface-cream);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--brand-700);
  border-radius: var(--radius-xs);
  padding: 9px 12px;
  font-size: 0.82rem;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.distance-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}

.distance-row strong {
  color: var(--brand-900);
  flex-shrink: 0;
}

/* Inclusions Pills */
.inclusions-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.inclusion-pill {
  font-size: 0.8125rem;
  font-weight: 600;
  background-color: var(--surface-subtle);
  color: var(--text-secondary);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-light);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.package-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.package-price-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.price-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.price-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-900);
  font-family: var(--font-heading);
}

.price-currency {
  font-size: 0.95rem;
  font-weight: 600;
  margin-right: 2px;
}

.price-basis-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin-top: 2px;
}

.package-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ==========================================================================
   5. DEDICATED HAJ AND UMRAH SECTION (Appropriate Visibility Without Dominating)
   ========================================================================== */
.haj-umrah-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .haj-umrah-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pilgrim-showcase-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.pilgrim-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-600);
}

.pilgrim-card-image {
  position: relative;
  height: 200px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--brand-950);
}

.pilgrim-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.pilgrim-showcase-card:hover .pilgrim-card-image img {
  transform: scale(1.06);
}

/* Consistent media frame for visa, holiday and service cards */
.visa-card-image,
.holiday-card-img {
  height: 200px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.visa-card-image img,
.holiday-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .package-image-wrap,
  .pilgrim-card-image,
  .visa-card-image,
  .holiday-card-img {
    height: 180px;
  }
}

.pilgrim-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pilgrim-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-950);
  margin-bottom: 8px;
}

.pilgrim-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.pilgrim-feature-list {
  list-style: none;
  font-size: 0.84rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px;
  background-color: var(--surface-cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.pilgrim-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pilgrim-feature-list li svg {
  stroke: var(--brand-700);
  flex-shrink: 0;
}

/* ==========================================================================
   6. VISA ASSISTANCE CARDS
   ========================================================================== */
.visa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .visa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.visa-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 20px;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.visa-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-600);
}

.visa-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.visa-country-flag {
  font-size: 1.8rem;
  line-height: 1;
}

.visa-country-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-950);
  margin-bottom: 3px;
}

.visa-type-tag {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-800);
  background-color: var(--brand-50);
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  display: inline-block;
  margin-bottom: 10px;
}

.visa-spec-list {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.visa-spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--border-light);
}

.visa-spec-label {
  color: var(--text-muted);
}

.visa-spec-value {
  font-weight: 600;
  color: var(--brand-950);
}

.visa-actions-row {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.visa-disclaimer-banner {
  background-color: var(--surface-cream);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 26px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.visa-disclaimer-banner svg {
  stroke: var(--brand-700);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   7. REASONS & TESTIMONIALS
   ========================================================================== */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.reason-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 24px;
  text-align: left;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-smooth);
}

.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-600);
}

.reason-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--brand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-800);
  margin-bottom: 16px;
  border: 1px solid var(--brand-100);
}

.reason-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-950);
  margin-bottom: 6px;
}

.reason-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

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

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

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.stars-row {
  color: #f59e0b;
  margin-bottom: 10px;
  display: flex;
  gap: 2px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 18px;
  flex-grow: 1;
}

.testimonial-author-meta {
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.author-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand-950);
}

.author-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   8. FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--brand-700);
}

.faq-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  background-color: var(--white);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--brand-950);
}

.faq-header:hover {
  background-color: var(--surface-cream);
}

.faq-icon-arrow {
  transition: transform var(--transition-fast);
  color: var(--brand-800);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease, padding 260ms ease;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-content {
  padding-bottom: 18px;
  max-height: 300px;
}

/* ==========================================================================
   9. MODALS & POPUPS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

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

.modal-container {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-medium);
  transform: scale(0.96);
  transition: transform var(--transition-smooth);
  position: relative;
}

.modal-backdrop.active .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 18px 22px;
  background: var(--brand-950);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-header h3 {
  color: var(--white);
  font-size: 1.15rem;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-body {
  padding: 22px;
}

/* ==========================================================================
   10. FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #128c7e;
  color: var(--white);
  padding: 10px 16px 10px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(18, 140, 126, 0.35);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.45);
}

.wa-status-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: #4ade80;
}

@media (max-width: 640px) {
  .floating-whatsapp span {
    display: none;
  }
  .floating-whatsapp {
    padding: 12px;
    bottom: 74px;
  }
}

/* ==========================================================================
   11. TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background-color: var(--brand-950);
  color: var(--white);
  border-left: 4px solid var(--accent-400);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
  animation: slideInRight 260ms ease forwards;
  max-width: 350px;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
