/* Modern Reset & Design System */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --primary-glow: rgba(37, 99, 235, 0.25);
  
  --brand-navy: #0f172a;
  --brand-dark: #090d16;
  --surface-card: rgba(255, 255, 255, 0.96);
  --surface-subtle: #f8fafc;
  --surface-border: #e2e8f0;
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  --whatsapp-green: #25D366;
  --whatsapp-dark: #1da851;
  --accent-gold: #f59e0b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
  --shadow-float: 0 12px 30px rgba(37, 99, 235, 0.3);
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-family);
  background-color: #0b1120;
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden;
  position: relative;
}

/* Background Ambient Glows */
.bg-mesh {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.12), transparent 40%),
    linear-gradient(180deg, #0b1120 0%, #060a12 100%);
  z-index: -1;
  pointer-events: none;
}

/* Responsive Viewport (Mobile Phone Preview on Desktop) */
.app-viewport {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background: #ffffff;
  position: relative;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  padding-bottom: 85px; /* Space for sticky bottom bar */
}

@media (min-width: 500px) {
  .app-viewport {
    margin: 24px auto;
    border-radius: 32px;
    overflow: hidden;
    min-height: calc(100vh - 48px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Header & Banner */
.card-header {
  position: relative;
  background: #ffffff;
}

.header-banner {
  height: 140px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #2563eb 100%);
  position: relative;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(96, 165, 250, 0.3), transparent 70%);
}

.banner-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 16px 16px;
}

.share-top-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s ease;
  z-index: 10;
}

.share-top-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

/* Profile Section */
.profile-section {
  padding: 0 20px 20px;
  text-align: center;
  position: relative;
  margin-top: -55px;
}

.avatar-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.profile-avatar {
  width: 108px;
  height: 108px;
  border-radius: var(--radius-full);
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  border: 4px solid #ffffff;
}

.verified-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  color: #2563eb;
  background: #ffffff;
  border-radius: var(--radius-full);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.profile-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.3px;
  margin-bottom: 3px;
}

.profile-owner {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.profile-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 320px;
  margin: 0 auto 12px;
}

/* Trust Badge / Stars */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.trust-badge .stars {
  color: var(--accent-gold);
  font-size: 14px;
  display: flex;
  gap: 1px;
}

.rating-text {
  font-size: 12px;
  color: #92400e;
}

/* Quick Connect Icons (5 circle actions) */
.quick-connect-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.connect-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 6px;
  transition: transform 0.2s ease;
}

.connect-action-btn:hover {
  transform: translateY(-2px);
}

.connect-action-btn .icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.connect-action-btn.call .icon-box {
  background: #eff6ff;
  color: #2563eb;
}

.connect-action-btn.whatsapp .icon-box {
  background: #ecfdf5;
  color: #059669;
}

.connect-action-btn.email .icon-box {
  background: #fef2f2;
  color: #dc2626;
}

.connect-action-btn.location .icon-box {
  background: #fdf4ff;
  color: #9333ea;
}

.connect-action-btn.website .icon-box {
  background: #f0fdf4;
  color: #16a34a;
}

.connect-action-btn:hover .icon-box {
  box-shadow: var(--shadow-md);
  filter: brightness(0.95);
}

.connect-action-btn span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Big Primary CTA: Add to Phonebook */
.btn-primary-vcard {
  width: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
}

.btn-primary-vcard:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  transform: translateY(-1px);
}

.btn-primary-vcard:active {
  transform: translateY(1px);
}

.btn-primary-vcard i {
  font-size: 18px;
}

/* Navigation Tabs */
.card-tabs {
  display: flex;
  background: #f8fafc;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.tab-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 4px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn i {
  font-size: 18px;
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: #ffffff;
}

/* Tabs Container & Panels */
.tabs-container {
  padding: 20px 16px;
  flex: 1;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.25s ease forwards;
}

.tab-panel.active {
  display: block;
}

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

/* TAB 1: QR SHOWCASE */
.qr-showcase-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  border: 1px solid var(--surface-border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.qr-header {
  margin-bottom: 16px;
}

.qr-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #eff6ff;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.qr-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.qr-header p {
  font-size: 12px;
  color: var(--text-muted);
}

.qr-box {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-md);
  padding: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.qr-display-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
  margin: 0 auto;
}

.qr-badge {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.qr-actions {
  display: flex;
  gap: 10px;
}

.btn-secondary-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f1f5f9;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-navy);
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.btn-secondary-action:hover {
  background: #e2e8f0;
  color: var(--primary-dark);
}

/* WhatsApp Sender Card */
.whatsapp-share-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 18px;
}

.ws-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ws-icon {
  font-size: 32px;
  color: #16a34a;
}

.ws-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: #14532d;
}

.ws-header p {
  font-size: 12px;
  color: #15803d;
}

.ws-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-with-country {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.country-code {
  padding: 11px 12px;
  font-weight: 700;
  font-size: 14px;
  background: #f0fdf4;
  color: #15803d;
  border-right: 1px solid #bbf7d0;
}

.input-with-country input {
  flex: 1;
  padding: 11px 12px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: #0f172a;
}

.btn-send-whatsapp {
  background: #16a34a;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.btn-send-whatsapp:hover {
  background: #15803d;
}

/* TAB 2: ABOUT & SERVICES */
.info-block {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.block-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.block-title i {
  font-size: 20px;
  color: var(--primary);
}

.block-title h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-navy);
}

.about-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: #334155;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.service-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.service-details h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 3px;
}

.service-details p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.detail-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--surface-border);
}

.detail-row:last-child {
  border-bottom: none;
}

.row-label {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.row-value {
  font-weight: 600;
  color: var(--brand-navy);
  text-align: right;
}

/* TAB 3: SOCIAL MEDIA */
.social-panel-header {
  text-align: center;
  margin-bottom: 18px;
}

.social-panel-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.social-panel-header p {
  font-size: 12px;
  color: var(--text-muted);
}

.social-links-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-tile {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid var(--surface-border);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.social-tile:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.social-tile .social-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 14px;
}

.social-tile.instagram .social-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: #ffffff;
}

.social-tile.whatsapp .social-icon {
  background: #25D366;
  color: #ffffff;
}

.social-tile.facebook .social-icon {
  background: #1877F2;
  color: #ffffff;
}

.social-tile.linkedin .social-icon {
  background: #0A66C2;
  color: #ffffff;
}

.social-tile.website .social-icon {
  background: #0f172a;
  color: #ffffff;
}

.social-meta {
  flex: 1;
}

.social-meta .platform {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-navy);
}

.social-meta .handle {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.social-tile .arrow {
  color: var(--text-light);
  font-size: 18px;
}

/* TAB 4: PORTFOLIO GALLERY */
.gallery-header {
  text-align: center;
  margin-bottom: 16px;
}

.gallery-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.gallery-header p {
  font-size: 12px;
  color: var(--text-muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.project-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

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

.project-thumb {
  height: 110px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 32px;
  position: relative;
}

.project-info {
  padding: 10px 12px;
}

.project-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 2px;
}

.project-category {
  font-size: 11px;
  color: var(--text-muted);
}

/* TAB 5: TESTIMONIALS */
.reviews-header {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  border: 1px solid var(--surface-border);
}

.review-stats h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
}

.review-stats .stars {
  color: var(--accent-gold);
  font-size: 13px;
  margin: 4px 0;
}

.review-stats span {
  font-size: 11px;
  color: var(--text-muted);
}

.btn-write-review {
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s ease;
}

.btn-write-review:hover {
  background: var(--primary-dark);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.reviewer-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-navy);
}

.reviewer-company {
  font-size: 11px;
  color: var(--text-muted);
}

.review-card .stars {
  color: var(--accent-gold);
  font-size: 12px;
}

.review-card-body {
  font-size: 12.5px;
  line-height: 1.5;
  color: #475569;
}

/* Viral Agency Banner */
.viral-agency-banner {
  margin: 10px 16px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.agency-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agency-content i {
  color: #fbbf24;
  font-size: 22px;
  flex-shrink: 0;
}

.agency-content h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.agency-content p {
  font-size: 11px;
  color: #94a3b8;
}

.btn-get-card {
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.btn-get-card:hover {
  background: #f1f5f9;
  transform: scale(1.03);
}

/* Sticky Bottom Action Bar */
.bottom-action-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--surface-border);
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  z-index: 99;
}

.bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.bar-btn.secondary {
  background: #f1f5f9;
  color: var(--brand-navy);
  border: 1px solid var(--surface-border);
}

.bar-btn.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.bar-btn:active {
  transform: scale(0.98);
}

/* Modal Backdrop & Dialog */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-backdrop.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

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

.modal-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-navy);
}

.close-modal {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13.5px;
  outline: none;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.star-rating-select {
  display: flex;
  gap: 6px;
  font-size: 22px;
  color: #cbd5e1;
  cursor: pointer;
}

.star-rating-select i.active {
  color: var(--accent-gold);
}

.btn-submit-review {
  width: 100%;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
}

/* Toast Notice */
.toast-notice {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0f172a;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 1000;
}

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

.toast-notice i {
  color: #22c55e;
  font-size: 16px;
}
