/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Paleta Sem Culpa Saudável — Verde Natural */
  --bg-primary:     #060d08;
  --bg-secondary:   #0b1510;
  --bg-card:        rgba(255, 255, 255, 0.04);
  --bg-card-hover:  rgba(255, 255, 255, 0.08);
  --border-color:   rgba(255, 255, 255, 0.07);
  --border-hover:   rgba(74, 188, 100, 0.45);

  /* Verdes principais */
  --green-main:     #4abc64;
  --green-light:    #7dd891;
  --green-dark:     #2d8a47;
  --green-glow:     rgba(74, 188, 100, 0.18);

  /* Acentos */
  --lime:           #a3e635;
  --mint:           #6ee7b7;
  --red-berry:      #e7484e;
  --gold:           #f59e0b;
  --orange:         #f97316;

  /* Textos */
  --text-primary:   #eefbf0;
  --text-secondary: #93b89a;
  --text-muted:     #4a6e52;

  /* Layout */
  --radius:         20px;
  --radius-sm:      12px;
  --shadow-card:    0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow:    0 0 40px rgba(74, 188, 100, 0.12);
  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* =============================================
   FUNDO — GRADIENTE SUTIL
   ============================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(45, 138, 71, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(74, 188, 100, 0.07) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* =============================================
   PARTÍCULAS
   ============================================= */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 20px 36px;
  max-width: 680px;
  margin: 0 auto;
}

.hero-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(74, 188, 100, 0.18) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

/* AVATAR */
.avatar-ring {
  width: 100px;
  height: 100px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--lime), var(--mint));
  margin-bottom: 22px;
  animation: spin-ring 8s linear infinite;
  flex-shrink: 0;
}

@keyframes spin-ring {
  from { filter: hue-rotate(0deg); }
  to   { filter: hue-rotate(30deg); }
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-emoji {
  font-size: 2.6rem;
  animation: bounce-emoji 3s ease-in-out infinite;
}

@keyframes bounce-emoji {
  0%, 100% { transform: scale(1) rotate(-3deg); }
  50%       { transform: scale(1.12) rotate(3deg); }
}

/* TÍTULOS */
.hero-title {
  font-size: clamp(1.7rem, 5.5vw, 2.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--green-light) 45%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.15;
  margin-bottom: 4px;
  animation: slide-up 0.6s ease both;
}

.hero-subtitle {
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 22px;
  animation: slide-up 0.6s 0.1s ease both;
}

/* BADGES HERO */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  animation: slide-up 0.6s 0.15s ease both;
}

.hero-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(74, 188, 100, 0.12);
  border: 1px solid rgba(74, 188, 100, 0.25);
  color: var(--green-light);
  white-space: nowrap;
}

/* STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(74, 188, 100, 0.15);
  border-radius: 50px;
  padding: 14px 30px;
  backdrop-filter: blur(16px);
  animation: slide-up 0.6s 0.2s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-num {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--green-light);
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(74, 188, 100, 0.15);
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 8px 16px 90px;
}

/* =============================================
   SECTION
   ============================================= */
.section {
  margin-bottom: 48px;
  animation: slide-up 0.6s ease both;
}

.section:nth-child(2) { animation-delay: 0.15s; }

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(74, 188, 100, 0.1);
}

.section-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.digital-icon {
  background: linear-gradient(135deg, rgba(74, 188, 100, 0.25), rgba(163, 230, 53, 0.2));
  border: 1px solid rgba(74, 188, 100, 0.3);
  color: var(--green-light);
}

.affiliate-icon {
  background: linear-gradient(135deg, rgba(231, 72, 78, 0.2), rgba(245, 158, 11, 0.15));
  border: 1px solid rgba(231, 72, 78, 0.25);
  color: #f87171;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.section-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   CARDS GRID
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

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

/* =============================================
   PRODUCT CARD
   ============================================= */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: card-enter 0.5s ease both;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 188, 100, 0.03) 0%, transparent 55%);
  pointer-events: none;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 188, 100, 0.5), transparent);
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.product-card:hover::after { opacity: 1; }

@keyframes card-enter {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* CARD TOP */
.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.card-emoji-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(74, 188, 100, 0.15), rgba(163, 230, 53, 0.1));
  border: 1px solid rgba(74, 188, 100, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.product-card:hover .card-emoji-wrap {
  transform: scale(1.1) rotate(-5deg);
  border-color: rgba(74, 188, 100, 0.4);
}

.card-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

/* BADGES */
.badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.badge-highlight {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.15));
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.badge-category { font-size: 0.64rem; font-weight: 600; }

.badge-digital {
  background: rgba(74, 188, 100, 0.15);
  border: 1px solid rgba(74, 188, 100, 0.28);
  color: var(--green-light);
}

.badge-affiliate {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.25);
  color: #fca5a5;
}

/* Amazon */
.badge-amazon {
  background: rgba(255, 153, 0, 0.15);
  border: 1px solid rgba(255, 153, 0, 0.3);
  color: #ff9900;
}

/* Mercado Livre */
.badge-mercadolivre {
  background: rgba(255, 230, 0, 0.1);
  border: 1px solid rgba(255, 230, 0, 0.28);
  color: #fde047;
}

/* Shopee */
.badge-shopee {
  background: rgba(238, 77, 45, 0.14);
  border: 1px solid rgba(238, 77, 45, 0.28);
  color: #fb923c;
}

/* TEXTOS CARD */
.card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.card-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

/* =============================================
   BOTÕES CTA
   ============================================= */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-cta:hover::before { opacity: 1; }
.btn-cta:hover { transform: scale(1.03); }
.btn-cta:active { transform: scale(0.98); }

/* VERDE (principal) */
.btn-green {
  background: linear-gradient(135deg, #2d8a47, #4abc64);
  color: #fff;
  box-shadow: 0 4px 20px rgba(74, 188, 100, 0.38);
}
.btn-green:hover { box-shadow: 0 6px 30px rgba(74, 188, 100, 0.55); }

/* ROXO */
.btn-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35);
}
.btn-purple:hover { box-shadow: 0 6px 28px rgba(168, 85, 247, 0.5); }

/* ROSA */
.btn-pink {
  background: linear-gradient(135deg, #be185d, #ec4899);
  color: #fff;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
}
.btn-pink:hover { box-shadow: 0 6px 28px rgba(236, 72, 153, 0.5); }

/* DOURADO */
.btn-gold {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}
.btn-gold:hover { box-shadow: 0 6px 28px rgba(245, 158, 11, 0.5); }

/* AZUL */
.btn-blue {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}
.btn-blue:hover { box-shadow: 0 6px 28px rgba(59, 130, 246, 0.5); }

/* LARANJA */
.btn-orange {
  background: linear-gradient(135deg, #c2410c, #f97316);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}
.btn-orange:hover { box-shadow: 0 6px 28px rgba(249, 115, 22, 0.5); }

/* PULSE — primeiro produto */
.btn-pulse {
  animation: pulse-btn-green 2.5s ease-in-out infinite;
}

@keyframes pulse-btn-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(74, 188, 100, 0.38); }
  50%       { box-shadow: 0 4px 40px rgba(74, 188, 100, 0.7), 0 0 0 6px rgba(74, 188, 100, 0.1); }
}

/* =============================================
   EMPTY STATE
   ============================================= */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
  border: 1px dashed rgba(74, 188, 100, 0.15);
  border-radius: var(--radius);
}

.empty-state i { font-size: 2.5rem; margin-bottom: 12px; display: block; opacity: 0.5; }
.empty-state p { font-size: 0.88rem; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-top: 1px solid rgba(74, 188, 100, 0.07);
}

.footer-text {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.heart {
  color: var(--red-berry);
  animation: heartbeat 1.6s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.3); }
}

.admin-trigger {
  background: transparent;
  border: 1px solid rgba(74, 188, 100, 0.12);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: var(--transition);
  opacity: 0.35;
}

.admin-trigger:hover {
  opacity: 1;
  border-color: var(--green-main);
  color: var(--green-light);
}

/* =============================================
   ADMIN OVERLAY
   ============================================= */
.admin-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fade-in 0.2s ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.admin-panel {
  background: #0c1a0f;
  border: 1px solid rgba(74, 188, 100, 0.2);
  border-radius: 24px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 60px rgba(74, 188, 100, 0.08);
  animation: panel-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes panel-in {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
}

.admin-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(74, 188, 100, 0.25), rgba(163, 230, 53, 0.15));
  border: 1px solid rgba(74, 188, 100, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 1rem;
}

.admin-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.admin-close {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.admin-close:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* TABS */
.admin-tabs {
  display: flex;
  gap: 8px;
  padding: 20px 24px 0;
  border-bottom: 1px solid rgba(74, 188, 100, 0.1);
}

.tab-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 10px 10px 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: -1px;
  font-family: 'Inter', sans-serif;
}

.tab-btn.active {
  background: rgba(74, 188, 100, 0.1);
  border-color: rgba(74, 188, 100, 0.2);
  border-bottom-color: #0c1a0f;
  color: var(--green-light);
}

.tab-btn:hover:not(.active) {
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
}

.tab-content { padding: 24px; }
.tab-content.hidden { display: none !important; }

/* FORM */
.admin-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-label i { color: var(--green-main); font-size: 0.74rem; }

.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(74, 188, 100, 0.12);
  border-radius: 12px;
  padding: 11px 14px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
}

.form-input:focus {
  border-color: var(--green-main);
  background: rgba(74, 188, 100, 0.05);
  box-shadow: 0 0 0 3px rgba(74, 188, 100, 0.1);
}

.form-input::placeholder { color: var(--text-muted); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2393b89a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 80px; }

.btn-submit {
  background: linear-gradient(135deg, #2d8a47, #4abc64);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(74, 188, 100, 0.3);
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 188, 100, 0.45);
}

.btn-submit:active { transform: translateY(0); }

/* =============================================
   MANAGE LIST
   ============================================= */
.manage-list { display: flex; flex-direction: column; gap: 10px; }

.manage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(74, 188, 100, 0.1);
  border-radius: 14px;
  padding: 13px 15px;
  transition: var(--transition);
}

.manage-item:hover {
  border-color: rgba(74, 188, 100, 0.25);
  background: rgba(74, 188, 100, 0.04);
}

.manage-emoji { font-size: 1.4rem; width: 40px; text-align: center; flex-shrink: 0; }

.manage-info { flex: 1; min-width: 0; }

.manage-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.manage-meta { font-size: 0.73rem; color: var(--text-muted); margin-top: 2px; }

.manage-actions { display: flex; gap: 6px; flex-shrink: 0; }

.btn-edit, .btn-delete {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(74, 188, 100, 0.12);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: var(--transition);
}

.btn-edit { color: var(--green-light); }
.btn-edit:hover {
  background: rgba(74, 188, 100, 0.12);
  border-color: rgba(74, 188, 100, 0.3);
}

.btn-delete { color: #f87171; }
.btn-delete:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
}

.empty-manage { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.empty-manage i { font-size: 2rem; margin-bottom: 12px; display: block; opacity: 0.5; }
.empty-manage p { font-size: 0.85rem; }

/* =============================================
   TOAST
   ============================================= */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0e1f11;
  border: 1px solid rgba(74, 188, 100, 0.35);
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
}

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

.toast-icon { color: var(--green-main); font-size: 1.1rem; }
.toast-msg { font-size: 0.875rem; font-weight: 500; color: var(--text-primary); }

/* EDIT MODAL */
.edit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fade-in 0.2s ease;
}

.edit-modal {
  background: #0c1a0f;
  border: 1px solid rgba(74, 188, 100, 0.2);
  border-radius: 24px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  animation: panel-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.edit-modal .tab-content { padding: 24px; }

/* =============================================
   UTILITÁRIOS
   ============================================= */
.hidden { display: none !important; }

@keyframes slide-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: rgba(74, 188, 100, 0.25);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(74, 188, 100, 0.45); }

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 480px) {
  .hero { padding: 36px 16px 24px; }
  .hero-stats { padding: 12px 18px; gap: 14px; }
  .hero-badges { gap: 6px; }
  .product-card { padding: 18px; }
  .admin-panel, .edit-modal { border-radius: 18px; }
}
