@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --background: hsl(340,30%,97%);
  --foreground: hsl(340,20%,12%);
  --card: hsl(0,0%,100%);
  --card-foreground: hsl(340,20%,12%);
  --primary: hsl(335,70%,55%);
  --primary-foreground: hsl(0,0%,100%);
  --secondary: hsl(340,25%,93%);
  --secondary-foreground: hsl(340,20%,20%);
  --muted: hsl(340,18%,94%);
  --muted-foreground: hsl(340,10%,48%);
  --accent: hsl(280,60%,60%);
  --accent-foreground: hsl(0,0%,100%);
  --destructive: hsl(0,84%,60%);
  --border: hsl(340,18%,90%);
  --input: hsl(340,18%,90%);
  --ring: hsl(335,70%,55%);
  --radius: 0.75rem;
  --warm: hsl(15,85%,58%);
  --mild: hsl(45,80%,52%);
  --cold: hsl(210,50%,55%);
  --whatsapp: hsl(142,70%,45%);
  --giveaway: hsl(280,65%,58%);
  --instagram: hsl(340,75%,55%);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Quicksand', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body { background: var(--background); color: var(--foreground); font-family: var(--font-body); line-height: 1.5; min-height: 100vh; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--font-body); }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.text-gradient-brand { background: linear-gradient(135deg, hsl(335,70%,55%), hsl(280,60%,60%)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bg-gradient-brand { background: linear-gradient(135deg, hsl(335,70%,55%), hsl(280,60%,60%)); }
.bg-gradient-giveaway { background: linear-gradient(135deg, hsl(280,65%,58%), hsl(335,70%,55%)); }
.glow-primary { box-shadow: 0 0 20px hsl(335 70% 55% / 0.25), 0 0 60px hsl(335 70% 55% / 0.08); }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.navbar-inner { padding: 0 1rem; max-width: 1100px; margin: 0 auto; }
@media(min-width:640px)  { .navbar-inner { padding: 0 1.5rem; } }
@media(min-width:1280px) { .navbar-inner { padding: 0 2rem; } }
.navbar-top { display: flex; align-items: center; justify-content: space-between; height: 3rem; gap: 0.5rem; }
.navbar-logo { display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; }
.navbar-logo svg { width: 1.125rem; height: 1.125rem; color: var(--primary); fill: var(--primary); }
.logo-text { font-family: var(--font-display); font-size: 0.9375rem; font-weight: 700; letter-spacing: -0.025em; }
.navbar-search-wrap { position: relative; flex: 1; max-width: 22rem; display: none; }
.navbar-search-wrap svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: var(--muted-foreground); pointer-events: none; }
.navbar-search { height: 2.25rem; width: 100%; border-radius: 9999px; background: var(--secondary); padding: 0 1rem 0 2.25rem; font-size: 0.875rem; border: 1px solid transparent; outline: none; transition: border-color .15s, background .15s; }
.navbar-search:focus { border-color: var(--ring); background: var(--card); }
.navbar-search::placeholder { color: var(--muted-foreground); }
.navbar-actions { display: flex; align-items: center; gap: 0.375rem; }
.cat-bar { display: flex; align-items: center; gap: 0.125rem; padding-bottom: 0.375rem; overflow-x: auto; scrollbar-width: none; margin: 0 -0.25rem; padding: 0 0.25rem 0.375rem; }
.cat-bar::-webkit-scrollbar { display: none; }
.cat-link { flex-shrink: 0; padding: 0.25rem 0.625rem; font-size: 0.6875rem; font-weight: 600; border-radius: 9999px; color: var(--muted-foreground); transition: color .15s, background .15s; white-space: nowrap; }
.cat-link:hover { color: var(--foreground); background: var(--secondary); }
.mobile-menu { display: none; flex-direction: column; gap: 0.5rem; padding: 0.75rem 0; border-top: 1px solid var(--border); }
.mobile-search-bar { display: none; padding-bottom: 0.5rem; }
@media(min-width:640px) { .navbar-top { height: 3.5rem; } .logo-text { font-size: 1.25rem; } .navbar-logo svg { width: 1.25rem; height: 1.25rem; } .navbar-inner { padding: 0 1rem; } .cat-link { font-size: 0.75rem; padding: 0.25rem 0.75rem; } .cat-bar { padding-bottom: 0.5rem; } }
@media(min-width:768px) { .navbar-search-wrap { display: block; } }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.25rem; font-family: var(--font-body); font-weight: 600; border-radius: var(--radius); transition: all .15s; cursor: pointer; border: none; text-decoration: none; white-space: nowrap; }
.btn-xs { padding: 0.125rem 0.5rem; font-size: 0.6875rem; height: 1.625rem; border-radius: 0.375rem; }
.btn-sm { padding: 0 0.75rem; font-size: 0.75rem; height: 2rem; }
.btn-md { padding: 0 1rem; font-size: 0.875rem; height: 2.25rem; }
.btn-lg { padding: 0 1.25rem; font-size: 0.9375rem; height: 2.75rem; }
.btn-icon { width: 1.75rem; height: 1.75rem; padding: 0; border-radius: 0.375rem; }
.btn-deal { background: var(--primary); color: white; }
.btn-deal:hover { background: hsl(335,70%,48%); }
.btn-giveaway { background: var(--giveaway); color: white; }
.btn-giveaway:hover { background: hsl(280,65%,50%); }
.btn-instagram { background: var(--instagram); color: white; }
.btn-instagram:hover { background: hsl(340,75%,48%); }
.btn-nav { background: transparent; color: var(--foreground); border: 1px solid var(--border); }
.btn-nav:hover { background: var(--secondary); }
.btn-outline { background: transparent; color: var(--foreground); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--secondary); }
.btn-ghost { background: transparent; color: var(--muted-foreground); }
.btn-ghost:hover { background: var(--secondary); color: var(--foreground); }
.btn-ghost-red { background: transparent; color: var(--destructive); }
.btn-ghost-red:hover { background: hsl(0,84%,97%); }
.btn-secondary { background: var(--secondary); color: var(--secondary-foreground); }
.btn-secondary:hover { background: hsl(340,25%,87%); }
.btn-default { background: var(--foreground); color: var(--background); }
.btn-default:hover { opacity: .9; }

/* BADGES */
.badge { display: inline-flex; align-items: center; gap: 0.125rem; padding: 0.125rem 0.5rem; border-radius: 9999px; font-size: 0.625rem; font-weight: 700; font-family: var(--font-body); border: 1px solid transparent; white-space: nowrap; }
.badge-misprice, .badge-hot { background: hsl(335,80%,52%); color: white; }
.badge-warm { background: var(--warm); color: white; }
.badge-cold { background: var(--cold); color: white; }
.badge-mild { background: var(--mild); color: white; }
.badge-expired { background: var(--muted); color: var(--muted-foreground); }
.badge-category { background: var(--secondary); color: var(--secondary-foreground); border-color: var(--border); }
.badge-destructive { background: var(--destructive); color: white; }
.badge-outline { background: transparent; border-color: var(--border); color: var(--foreground); font-weight: 500; }
.badge-giveaway { background: linear-gradient(135deg, hsl(280,65%,58%), hsl(335,70%,55%)); color: white; }
.badge-whatsapp { background: var(--whatsapp); color: white; }

/* DEAL CARD */
.deal-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.deal-card:hover { border-color: hsl(335,70%,55%,0.3); box-shadow: 0 4px 12px rgba(0,0,0,.07); }
.deal-inner { display: flex; flex-direction: column; }
.deal-mobile-img { position: relative; }
.deal-mobile-img img { width: 100%; height: 8rem; object-fit: cover; }
.deal-desktop { display: none; flex-direction: row; }
.deal-thumb { width: 7rem; flex-shrink: 0; overflow: hidden; background: var(--secondary); }
.deal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.deal-content { flex: 1; padding: 0.75rem; min-width: 0; }
.deal-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.375rem; }
.deal-meta-left { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; }
.deal-time { font-size: 0.625rem; color: var(--muted-foreground); display: flex; align-items: center; gap: 0.125rem; flex-shrink: 0; }
.deal-title { font-family: var(--font-display); font-weight: 600; font-size: 0.8125rem; line-height: 1.3; margin-bottom: 0.25rem; color: var(--foreground); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .15s; }
.deal-card:hover .deal-title { color: var(--primary); }
.deal-desc { font-size: 0.6875rem; color: var(--muted-foreground); display: none; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; margin-bottom: 0.5rem; }
.deal-price-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.deal-price-left { display: flex; align-items: center; gap: 0.375rem; }
.deal-price { font-size: 1.125rem; font-weight: 800; color: var(--primary); }
.deal-rrp { font-size: 0.625rem; color: var(--muted-foreground); text-decoration: line-through; }
.deal-actions-right { display: flex; align-items: center; gap: 0.375rem; }
.deal-comments { font-size: 0.625rem; color: var(--muted-foreground); display: none; align-items: center; gap: 0.125rem; }
.deal-by { font-size: 0.625rem; color: var(--muted-foreground); margin-top: 0.25rem; display: none; }
@media(min-width:640px) {
  .deal-mobile-img { display: none; }
  .deal-desktop { display: flex; }
  .deal-inner { flex-direction: row; }
  .deal-title { font-size: 0.875rem; -webkit-line-clamp: 1; }
  .deal-desc { display: block; }
  .deal-price { font-size: 1.25rem; }
  .deal-rrp { font-size: 0.75rem; }
  .deal-comments { display: flex; }
  .deal-by { display: block; }
}

/* HERO */
.hero { background: var(--card); border-bottom: 1px solid var(--border); }
.hero-inner { padding: 0.75rem 1rem; max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
@media(min-width:640px)  { .hero-inner { padding: 0.875rem 1.5rem; } }
@media(min-width:1280px) { .hero-inner { padding: 1rem 2rem; } }
.hero-stat { padding: 0.25rem 0.625rem; background: var(--secondary); border-radius: 0.75rem; text-align: center; }
.hero-stat .val { font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; }
.hero-stat .val.primary { color: var(--primary); }
.hero-stat .lbl { font-size: 0.5rem; color: var(--muted-foreground); }
@media(min-width:640px) { .hero-inner { padding: 1.5rem 1rem; } .hero-stat .val { font-size: 1.125rem; } .hero-stat { padding: 0.5rem 1rem; } .hero-stat .lbl { font-size: 0.625rem; } }

/* GIVEAWAY BANNER */
.give-banner { background: linear-gradient(135deg, hsl(280,65%,58%), hsl(335,70%,55%)); border-radius: var(--radius); padding: 0.75rem; color: white; position: relative; overflow: hidden; display: block; text-decoration: none; transition: box-shadow .2s; }
.give-banner:hover { box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.give-inner { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; position: relative; z-index: 1; }
.give-left { display: flex; align-items: center; gap: 0.625rem; min-width: 0; }
.give-icon { width: 2.25rem; height: 2.25rem; border-radius: 9999px; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.give-icon svg { width: 1rem; height: 1rem; }
.give-title { font-family: var(--font-display); font-weight: 700; font-size: 0.8125rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.give-sub { font-size: 0.6875rem; opacity: .9; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.float-emoji { position: absolute; animation: floatUp 3s ease-in-out infinite; }
@keyframes floatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media(min-width:640px) { .give-banner { padding: 1.25rem; } .give-icon { width: 3rem; height: 3rem; } .give-icon svg { width: 1.5rem; height: 1.5rem; } .give-title { font-size: 1rem; } .give-sub { font-size: 0.875rem; } }

/* FILTER BAR */
.filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.filter-tabs { display: flex; align-items: center; gap: 0.25rem; overflow-x: auto; scrollbar-width: none; }
.filter-tabs::-webkit-scrollbar { display: none; }
.ftab { display: flex; align-items: center; gap: 0.25rem; padding: 0.375rem 0.625rem; border-radius: 9999px; font-size: 0.6875rem; font-weight: 600; transition: background .15s, color .15s; flex-shrink: 0; color: var(--muted-foreground); }
.ftab:hover { color: var(--foreground); background: var(--secondary); }
.ftab.active { background: var(--primary); color: white; }
.ftab svg { width: 0.75rem; height: 0.75rem; }
@media(min-width:640px) { .ftab { font-size: 0.75rem; padding: 0.375rem 0.75rem; } }

/* MAIN LAYOUT */
.main-pad {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem 1rem;
}
@media(min-width:640px)  { .main-pad { padding: 1.25rem 1.5rem; } }
@media(min-width:1280px) { .main-pad { padding: 1.5rem 2rem; } }

.deal-list { display: flex; flex-direction: column; gap: 0.5rem; }
.deal-feed-wrap { width: 100% !important; margin: 0 auto !important; display: block; }
.affiliate-note { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.625rem 0.75rem; background: var(--secondary); border-radius: var(--radius); }
.affiliate-note p { font-size: 0.625rem; color: var(--muted-foreground); line-height: 1.5; }

/* PAGINATION */
.pagination { display: flex; align-items: center; justify-content: center; gap: .375rem; padding: 1.5rem 0 .5rem; }
.page-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 2.25rem; height: 2.25rem; padding: 0 .625rem; border-radius: var(--radius); font-size: .875rem; font-weight: 500; border: 1px solid var(--border); background: var(--card); color: var(--foreground); text-decoration: none; transition: border-color .15s, background .15s, color .15s; }
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; pointer-events: none; }

/* FOOTER */
.site-footer { border-top: 1px solid var(--border); }
.footer-inner { padding: 0.75rem 1rem; max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; }
.footer-logo { display: flex; align-items: center; gap: 0.375rem; font-family: var(--font-display); font-weight: 700; font-size: 0.875rem; }
.footer-logo svg { width: 1rem; height: 1rem; color: var(--primary); fill: var(--primary); }
.footer-links { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 0.25rem 0.75rem; }
.footer-links a { font-size: 0.6875rem; color: var(--muted-foreground); transition: color .15s; }
.footer-links a:hover { color: var(--foreground); }
.footer-copy { font-size: 0.5625rem; color: var(--muted-foreground); }
@media(min-width:640px)  { .footer-inner { padding: 1.25rem 1.5rem; gap: 0.75rem; } .footer-links a { font-size: 0.75rem; } }
@media(min-width:1280px) { .footer-inner { padding: 1.5rem 2rem; } }

/* DEAL PAGE */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.breadcrumb a { display: flex; align-items: center; gap: 0.25rem; transition: color .15s; }
.breadcrumb a:hover { color: var(--foreground); }
.deal-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.deal-img-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.deal-img-card img { width: 100%; height: 12rem; object-fit: cover; }
.deal-main-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; }
.deal-badges { display: flex; align-items: center; gap: 0.375rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.deal-page-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.deal-price-section { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.deal-big-price { font-size: 1.75rem; font-weight: 800; color: var(--primary); font-family: var(--font-body); }
.deal-big-rrp { font-size: 1rem; color: var(--muted-foreground); text-decoration: line-through; }
.deal-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.icon-pill { display: flex; align-items: center; gap: 0.375rem; padding: 0.5rem 0.75rem; border-radius: 9999px; border: 1px solid var(--border); color: var(--muted-foreground); font-size: 0.875rem; transition: all .15s; }
.icon-pill:hover { color: var(--foreground); }
.deal-shared-by { margin-top: 1rem; padding: 0.75rem; background: var(--secondary); border-radius: var(--radius); font-size: 0.75rem; color: var(--muted-foreground); display: flex; align-items: center; gap: 0.5rem; }
.deal-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.deal-summary { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 0.25rem 0; }
.summary-row span:first-child { color: var(--muted-foreground); }
.summary-row span:last-child, .summary-row a { font-weight: 500; }
.comments-section { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; }
.comments-section h2 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.comment { padding: 0.75rem; background: hsl(340,25%,93%,0.5); border-radius: var(--radius); }
.comment-header { display: flex; justify-content: space-between; margin-bottom: 0.25rem; }
.comment-user { font-size: 0.75rem; font-weight: 600; }
.comment-time { font-size: 0.625rem; color: var(--muted-foreground); }
.comment-text { font-size: 0.875rem; color: var(--muted-foreground); }
.comment-form textarea { width: 100%; height: 5rem; padding: 0.75rem; border-radius: var(--radius); background: var(--secondary); border: 1px solid transparent; font-size: 0.875rem; outline: none; resize: none; transition: border-color .15s; color: var(--foreground); margin-top: 1rem; }
.comment-form textarea:focus { border-color: var(--ring); }
.comment-form textarea::placeholder { color: var(--muted-foreground); }
@media(min-width:1024px) { .deal-grid { grid-template-columns: 1fr 1fr 1fr; } .deal-main-col { grid-column: 1/3; } .deal-page-title { font-size: 1.5rem; } .deal-big-price { font-size: 2.25rem; } .deal-main-card { padding: 1.25rem; } }

/* CATEGORY PAGE */
/* Category hero bar */
.cat-hero-bar {
  background: linear-gradient(135deg, hsl(335,70%,52%), hsl(280,60%,54%));
  padding: .875rem 1rem 1rem;
}
.cat-hero-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
@media(min-width:640px)  { .cat-hero-bar { padding: 1.25rem 1.5rem 1.375rem; } }
@media(min-width:640px)  { .cat-hero-title { font-size: 1.625rem; } }
.cat-hero-title { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: #fff; margin: 0 0 .125rem; }
.cat-hero-sub   { font-size: .8125rem; color: rgba(255,255,255,.75); margin: 0; }
.cat-hero-search { position: relative; flex-shrink: 0; width: 100%; max-width: 18rem; }
.cat-toolbar    { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; padding: .75rem 0; border-bottom: 1px solid var(--border); margin-bottom: .75rem; }

/* legacy cat-header */
.cat-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.25rem; }
.cat-search-wrap { position: relative; width: 100%; }
.cat-search-wrap svg.srch-icon { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: var(--muted-foreground); pointer-events: none; }
.cat-clear { position: absolute; right: 0.625rem; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); display: none; }
.cat-search { height: 2.25rem; width: 100%; border-radius: 0.375rem; background: var(--secondary); padding: 0 1.75rem 0 2.25rem; font-size: 0.875rem; border: 1px solid transparent; outline: none; transition: border-color .15s, background .15s; color: var(--foreground); }
.cat-search:focus { border-color: var(--ring); background: var(--card); }
.cat-search::placeholder { color: var(--muted-foreground); }
.brand-filters { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.brand-btn { padding: 0.25rem 0.625rem; border-radius: 0.375rem; font-size: 0.75rem; font-weight: 500; background: var(--secondary); color: var(--secondary-foreground); transition: background .15s, color .15s; }
.brand-btn:hover, .brand-btn.active { background: var(--primary); color: white; }
.empty-state { text-align: center; padding: 4rem 1rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); }
@media(min-width:640px) { .cat-header { flex-direction: row; align-items: center; justify-content: space-between; } .cat-search-wrap { width: 18rem; } }

/* GIVEAWAY PAGE */
.give-hero { border-radius: 1rem; overflow: hidden; position: relative; margin-bottom: 2rem; }
.give-hero img { width: 100%; height: 12rem; object-fit: cover; }
.give-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 40%, transparent 100%); }
.give-hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 1.5rem; text-align: center; color: white; }
.give-hero-icon { width: 3.5rem; height: 3.5rem; border-radius: 9999px; background: rgba(255,255,255,.2); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.give-hero-icon svg { width: 1.75rem; height: 1.75rem; }
.entry-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.entry-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; text-align: center; }
.entry-icon { width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: hsl(335,70%,55%,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; color: var(--primary); }
.entry-icon svg { width: 1.25rem; height: 1.25rem; }
.entry-pill { display: inline-block; background: hsl(335,70%,55%,0.1); color: var(--primary); font-size: 0.6875rem; font-weight: 700; padding: 0.125rem 0.5rem; border-radius: 9999px; margin-bottom: 0.375rem; }
.prize-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.prize-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; display: flex; align-items: center; gap: 0.75rem; transition: border-color .15s; }
.prize-card:hover { border-color: hsl(335,70%,55%,0.3); }
.prize-card.grand { border: 2px solid hsl(280,60%,60%,0.2); position: relative; overflow: hidden; }
.prize-card.grand:hover { border-color: hsl(280,60%,60%,0.4); }
.grand-badge { position: absolute; top: 0; right: 0; background: linear-gradient(135deg, hsl(280,65%,58%), hsl(335,70%,55%)); color: white; font-size: 0.5625rem; font-weight: 700; padding: 0.125rem 0.5rem; border-bottom-left-radius: 0.375rem; }
.note-box { display: flex; align-items: flex-start; gap: 0.375rem; padding: 0.625rem; background: hsl(340,25%,93%,0.5); border-radius: 0.5rem; font-size: 0.6875rem; color: var(--muted-foreground); }
.cta-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; text-align: center; }
@media(min-width:640px) { .give-hero img { height: 16rem; } .entry-grid { grid-template-columns: repeat(3,1fr); } .prize-grid { grid-template-columns: repeat(2,1fr); } }

/* SHARE DEAL */
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.5rem; padding: 1.25rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-input { width: 100%; height: 2.5rem; padding: 0 0.75rem; border-radius: 0.375rem; background: var(--secondary); border: 1px solid transparent; font-size: 0.875rem; outline: none; transition: border-color .15s; color: var(--foreground); }
.form-input:focus { border-color: var(--ring); }
.form-input::placeholder { color: var(--muted-foreground); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2rem; color: var(--muted-foreground); }
.form-textarea { width: 100%; padding: 0.75rem; border-radius: 0.375rem; background: var(--secondary); border: 1px solid transparent; font-size: 0.875rem; outline: none; resize: none; transition: border-color .15s; color: var(--foreground); }
.form-textarea:focus { border-color: var(--ring); }
.form-textarea::placeholder { color: var(--muted-foreground); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.upload-zone { border: 2px dashed var(--border); border-radius: 0.5rem; padding: 1.5rem; text-align: center; cursor: pointer; transition: border-color .15s; }
.upload-zone:hover { border-color: hsl(335,70%,55%,0.3); }
.form-info { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.75rem; background: var(--secondary); border-radius: 0.5rem; margin-bottom: 1rem; }
.form-info p { font-size: 0.6875rem; color: var(--muted-foreground); line-height: 1.5; }
.form-actions { display: flex; align-items: center; gap: 0.75rem; }

/* REDIRECT */
.redirect-page { min-height: 100vh; background: var(--background); display: flex; align-items: center; justify-content: center; padding: 1rem; }
.redirect-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; text-align: center; width: 100%; max-width: 24rem; }
.countdown-wrap { position: relative; width: 5rem; height: 5rem; margin: 0 auto 1.25rem; }
.countdown-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.redirect-deal-box { background: var(--secondary); border-radius: var(--radius); padding: 0.75rem; margin-bottom: 1.25rem; text-align: left; }
.redirect-btns { display: flex; flex-direction: column; gap: 0.5rem; }
.redirect-note { margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.375rem; font-size: 0.625rem; color: var(--muted-foreground); }
.redirect-logo { margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.25rem; font-size: 0.625rem; color: var(--muted-foreground); }

/* 404 */
.not-found { display: flex; min-height: 100vh; align-items: center; justify-content: center; background: var(--muted); }
.not-found-inner { text-align: center; padding: 2rem; }

/* LOGIN PAGE */
.login-page { min-height: 100vh; background: var(--background); display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.login-wrap { width: 100%; max-width: 28rem; }
.login-logo-wrap { display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem; }
.login-logo-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.login-logo-icon svg { width: 1.75rem; height: 1.75rem; color: white; }
.login-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.5rem; padding: 1.5rem; }
.login-card h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.login-subtitle { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; height: 2.5rem; border: 1px solid var(--border); border-radius: 0.375rem; background: transparent; font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: background .15s; font-family: var(--font-body); }
.social-btn:hover { background: var(--secondary); }
.social-btn svg { width: 1rem; height: 1rem; }
.divider { position: relative; text-align: center; margin-bottom: 1.25rem; }
.divider::before { content: ''; position: absolute; left: 0; top: 50%; height: 1px; width: 100%; background: var(--border); }
.divider span { position: relative; background: var(--card); padding: 0 0.75rem; font-size: 0.75rem; color: var(--muted-foreground); }
.login-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label { font-size: 0.75rem; font-weight: 500; color: var(--muted-foreground); }
.label-row { display: flex; align-items: center; justify-content: space-between; }
.input-wrap { position: relative; }
.input-wrap svg.fi { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: var(--muted-foreground); pointer-events: none; }
.input-wrap .toggle-pw { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); cursor: pointer; transition: color .15s; }
.input-wrap .toggle-pw:hover { color: var(--foreground); }
.input-wrap .toggle-pw svg { width: 1rem; height: 1rem; }
.l-input { width: 100%; height: 2.5rem; border-radius: 0.375rem; background: var(--secondary); border: 1px solid transparent; font-size: 0.875rem; outline: none; transition: border-color .15s; color: var(--foreground); padding: 0 0.75rem 0 2.25rem; }
.l-input:focus { border-color: var(--ring); }
.l-input::placeholder { color: var(--muted-foreground); }
.l-input.pr { padding-right: 2.25rem; }
.forgot-btn { font-size: 0.75rem; color: var(--primary); background: none; border: none; cursor: pointer; font-family: inherit; }
.forgot-btn:hover { text-decoration: underline; }
.login-back { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; transition: color .15s; }
.login-back:hover { color: var(--foreground); }
.login-back svg { width: 0.875rem; height: 0.875rem; }
.login-footer-text { text-align: center; font-size: 0.875rem; color: var(--muted-foreground); margin-top: 1.25rem; }
.login-toggle-btn { color: var(--primary); font-weight: 600; cursor: pointer; background: none; border: none; font-size: 0.875rem; font-family: inherit; }
.login-toggle-btn:hover { text-decoration: underline; }
.login-terms { text-align: center; font-size: 0.6875rem; color: var(--muted-foreground); margin-top: 1rem; }

/* LOGIN MODAL */
.modal-overlay { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .2s; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box { background: var(--card); border-radius: var(--radius); width: 100%; max-width: 28rem; overflow: hidden; transform: translateY(12px); transition: transform .2s; }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header { padding: 1.5rem; text-align: center; position: relative; }
.modal-header h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: white; margin-top: 0.5rem; margin-bottom: 0.25rem; }
.modal-header p { font-size: 0.875rem; color: rgba(255,255,255,.7); }
.modal-header svg.sparkle { width: 2rem; height: 2rem; color: rgba(255,255,255,.9); }
.modal-close { position: absolute; top: 0.75rem; right: 0.75rem; color: rgba(255,255,255,.7); cursor: pointer; background: none; border: none; }
.modal-close:hover { color: white; }
.modal-close svg { width: 1.25rem; height: 1.25rem; }
.modal-body { padding: 1.5rem; }
.modal-divider { background: var(--card); }

/* ADMIN LAYOUT */
.admin-layout { display: flex; min-height: 100vh; width: 100%; background: var(--background); }
.admin-sidebar { height: 100vh; position: sticky; top: 0; display: flex; flex-direction: column; border-right: 1px solid var(--border); background: var(--card); transition: width .3s; width: 15rem; flex-shrink: 0; overflow: hidden; }
.admin-sidebar.collapsed { width: 4rem; }
.sidebar-logo { display: flex; align-items: center; gap: 0.5rem; padding: 0 1rem; height: 3.5rem; border-bottom: 1px solid var(--border); flex-shrink: 0; overflow: hidden; white-space: nowrap; }
.sidebar-logo svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; }
.sidebar-logo span { font-family: var(--font-display); font-weight: 700; font-size: 0.875rem; overflow: hidden; transition: opacity .2s, max-width .3s; max-width: 200px; }
.admin-sidebar.collapsed .sidebar-logo span { opacity: 0; max-width: 0; }
.admin-nav { flex: 1; overflow-y: auto; padding: 0.75rem 0.5rem; display: flex; flex-direction: column; gap: 1rem; }
.nav-group-label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); font-weight: 600; padding: 0 0.5rem; margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; transition: opacity .2s, height .3s; }
.admin-sidebar.collapsed .nav-group-label { opacity: 0; height: 0; margin: 0; padding: 0; }
.nav-link { display: flex; align-items: center; gap: 0.625rem; padding: 0.5rem 0.625rem; border-radius: 0.375rem; font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); transition: background .15s, color .15s; text-decoration: none; white-space: nowrap; }
.nav-link svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.nav-link span { overflow: hidden; transition: opacity .2s, max-width .3s; max-width: 200px; }
.admin-sidebar.collapsed .nav-link { justify-content: center; padding: 0.5rem; }
.admin-sidebar.collapsed .nav-link span { opacity: 0; max-width: 0; }
.nav-link:hover { background: var(--secondary); color: var(--foreground); }
.nav-link.active { background: hsl(335,70%,55%,0.1); color: var(--primary); }
.nav-link.active:hover { background: hsl(335,70%,55%,0.15); }
.collapse-btn { display: flex; align-items: center; justify-content: center; height: 2.5rem; border-top: 1px solid var(--border); color: var(--muted-foreground); transition: color .15s; flex-shrink: 0; }
.collapse-btn:hover { color: var(--foreground); }
.collapse-btn svg { width: 1rem; height: 1rem; }
.admin-main { flex: 1; overflow: auto; }
.admin-content { padding: 1.5rem; max-width: 1400px; }
@media(min-width:1024px) { .admin-content { padding: 2rem; } }

/* ADMIN PAGE COMPONENTS */
.page-header { margin-bottom: 1.5rem; }
.page-header h1 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.page-header p { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.page-header-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.page-header-row .page-header { margin-bottom: 0; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
@media(min-width:1024px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.5rem; padding: 1rem; }
.stat-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.stat-label { font-size: 0.75rem; font-weight: 500; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-icon { width: 2rem; height: 2rem; border-radius: 0.375rem; background: hsl(335,70%,55%,0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.stat-icon svg { width: 1rem; height: 1rem; }
.stat-val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.stat-change { font-size: 0.75rem; font-weight: 500; margin-top: 0.25rem; }
.stat-change.up { color: var(--whatsapp); }
.stat-change.down { color: var(--destructive); }
.stat-change.neutral { color: var(--muted-foreground); }
.a-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.5rem; }
.a-card-head { padding: 1rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.a-card-head h3 { font-family: var(--font-display); font-weight: 600; font-size: 0.875rem; display: flex; align-items: center; gap: 0.5rem; }
.a-card-head h3 svg { width: 1rem; height: 1rem; }
.a-card-body { padding: 1rem; }
.a-table-wrap { overflow-x: auto; }
.a-table { width: 100%; font-size: 0.875rem; border-collapse: collapse; }
.a-table thead tr { border-bottom: 1px solid var(--border); background: hsl(340,18%,94%,0.5); }
.a-table th { text-align: left; padding: 0.75rem 1rem; font-weight: 500; color: var(--muted-foreground); font-size: 0.875rem; }
.a-table th.right { text-align: right; }
.a-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.a-table tbody tr:last-child { border-bottom: none; }
.a-table tbody tr:hover { background: hsl(340,18%,94%,0.3); }
.a-table td { padding: 0.75rem 1rem; }
.a-table td.right { text-align: right; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media(min-width:1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
@media(min-width:768px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
@media(min-width:1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }
.hot-bar { display: flex; align-items: center; gap: 0.375rem; }
.hb-track { width: 3rem; height: 0.375rem; border-radius: 9999px; background: var(--muted); overflow: hidden; }
.hb-fill { height: 100%; border-radius: 9999px; background: var(--primary); }
.trust-bar { display: flex; align-items: center; gap: 0.375rem; }
.tb-track { width: 3rem; height: 0.375rem; border-radius: 9999px; background: var(--muted); overflow: hidden; }
.tb-fill { height: 100%; border-radius: 9999px; }
.tb-fill.high { background: var(--whatsapp); }
.tb-fill.mid { background: var(--mild); }
.tb-fill.low { background: var(--destructive); }
.adot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; flex-shrink: 0; }
.adot.error { background: var(--destructive); }
.adot.warning { background: var(--warm); }
.adot.info { background: var(--cold); }
.log-line { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.375rem 0; font-family: monospace; font-size: 0.75rem; }
.log-time { color: var(--muted-foreground); flex-shrink: 0; }
.log-dot { width: 0.375rem; height: 0.375rem; border-radius: 9999px; margin-top: 0.375rem; flex-shrink: 0; }
.log-dot.error { background: var(--destructive); }
.log-dot.warning { background: var(--warm); }
.log-dot.success { background: var(--whatsapp); }
.log-dot.info { background: var(--cold); }
.log-dot.system { background: var(--cold); }
.log-dot.approve, .log-dot.edit { background: var(--whatsapp); }
.log-dot.ban, .log-dot.shadow_ban { background: var(--destructive); }
.log-dot.rollback { background: var(--warm); }
.log-text { color: var(--muted-foreground); }
.log-text strong { color: var(--foreground); font-weight: 500; }
.bot-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.5rem; padding: 1rem; }
.bot-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.bot-name { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; }
.bot-name svg { width: 1rem; height: 1rem; color: var(--primary); }
.bot-status { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.sdot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; }
.sdot.running { background: var(--whatsapp); }
.sdot.paused { background: var(--mild); }
.sdot.error { background: var(--destructive); }
.pbar { width: 100%; height: 0.5rem; border-radius: 9999px; background: var(--muted); overflow: hidden; margin-top: 0.25rem; }
.pbar-fill { height: 100%; border-radius: 9999px; }
.pbar-fill.green { background: var(--whatsapp); }
.pbar-fill.yellow { background: var(--mild); }
.pbar-fill.orange { background: var(--warm); }
.pbar-fill.red { background: var(--destructive); }
.pbar-fill.primary { background: var(--primary); }
.pbar-fill.brand { background: linear-gradient(135deg, hsl(335,70%,55%), hsl(280,60%,60%)); }
.switch { position: relative; display: inline-block; width: 2.25rem; height: 1.25rem; }
.switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.slider { position: absolute; inset: 0; background: var(--muted); border-radius: 9999px; transition: background .2s; cursor: pointer; }
.slider::before { content: ''; position: absolute; width: 1rem; height: 1rem; left: 0.125rem; top: 0.125rem; background: white; border-radius: 9999px; transition: transform .2s; }
.switch input:checked + .slider { background: var(--primary); }
.switch input:checked + .slider::before { transform: translateX(1rem); }
.kw-tag { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.25rem 0.625rem; border-radius: 0.375rem; font-size: 0.75rem; font-weight: 500; background: var(--secondary); color: var(--secondary-foreground); border: 1px solid var(--border); cursor: pointer; }
.a-input { height: 2.25rem; border-radius: 0.375rem; border: 1px solid var(--input); background: var(--background); padding: 0 0.75rem; font-size: 0.875rem; outline: none; color: var(--foreground); font-family: var(--font-body); transition: border-color .15s; }
.a-input:focus { border-color: var(--ring); }
.a-input::placeholder { color: var(--muted-foreground); }
.a-textarea { width: 100%; padding: 0.5rem 0.75rem; border-radius: 0.375rem; border: 1px solid var(--input); background: var(--background); font-size: 0.875rem; outline: none; color: var(--foreground); font-family: var(--font-body); resize: none; transition: border-color .15s; min-height: 5rem; }
.channel-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.5rem; padding: 1rem; }
.metric-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.5rem; padding: 1rem; }
.metric-card .mval { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.db-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(min-width:768px) { .db-grid { grid-template-columns: repeat(4,1fr); } }
.db-stat { padding: 0.75rem; border: 1px solid var(--border); border-radius: 0.375rem; text-align: center; }
.cache-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media(min-width:768px) { .cache-grid { grid-template-columns: repeat(3,1fr); } }
.cache-item { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem; border: 1px solid var(--border); border-radius: 0.375rem; }
.cat-man-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
@media(min-width:768px) { .cat-man-grid { grid-template-columns: repeat(4,1fr); } }
.cat-man-item { border: 1px solid var(--border); border-radius: 0.375rem; padding: 0.75rem; display: flex; align-items: center; justify-content: space-between; }
.give-admin-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.5rem; padding: 1rem; }
.shadow-scroll { max-height: 18rem; overflow-y: auto; }
.rollback-row { display: flex; gap: 0.5rem; align-items: center; }
.rollback-input { height: 2rem; width: 10rem; border-radius: 0.375rem; border: 1px solid var(--input); background: var(--background); padding: 0 0.75rem; font-size: 0.875rem; outline: none; color: var(--foreground); font-family: var(--font-body); }
.section-space { margin-bottom: 1.5rem; }
.list-item { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.list-item:last-child { border-bottom: none; }
.list-item-inner { padding: 0.5rem 0; }
.list-item-inner:not(:last-child) { border-bottom: 1px solid var(--border); }

/* TOAST */
.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; background: var(--foreground); color: var(--background); padding: 0.875rem 1.25rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 500; box-shadow: 0 8px 24px rgba(0,0,0,.2); transform: translateY(2rem); opacity: 0; transition: transform .3s, opacity .3s; z-index: 9999; max-width: 20rem; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-title { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.125rem; }
.toast-desc { font-size: 0.75rem; opacity: .8; }

/* UTILS */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0, .shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.min-w-0 { min-width: 0; }
.w-full { width: 100%; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-mono { font-family: monospace; }
.truncate { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.relative { position: relative; }
.absolute { position: absolute; }
.border { border: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-1 { margin-right: 0.25rem; }
.bg-card { background: var(--card); }
.bg-secondary { background: var(--secondary); }
.bg-muted { background: var(--muted); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted-fg { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.text-whatsapp { color: var(--whatsapp); }
.text-destructive { color: var(--destructive); }
.text-warm { color: var(--warm); }
.text-cold { color: var(--cold); }
.text-mild { color: var(--mild); }
.text-white { color: white; }
.line-through { text-decoration: line-through; }
.underline { text-decoration: underline; }
.cursor-pointer { cursor: pointer; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
