@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Premium Dark Theme Variables */
  --bg-primary: #0a1120;
  --bg-secondary: #0f1f38;
  --bg-tertiary: #162a4a;
  
  --accent-gold: #c8973a;
  --accent-gold-light: #e8b85a;
  --accent-gold-glow: rgba(200, 151, 58, 0.3);
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(200, 151, 58, 0.4);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  
  --glass-bg: rgba(15, 31, 56, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 var(--accent-gold-glow); }
  70% { box-shadow: 0 0 0 15px rgba(200,151,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,151,58,0); }
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.text-gold {
  color: var(--accent-gold-light);
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fcebb6 0%, #c8973a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.cso-header {
  background: var(--bg-secondary);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-bottom: 2px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(15, 31, 56, 0.85);
}

.cso-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-decoration: none;
}
.cso-brand span {
  color: var(--accent-gold);
}

.cso-header-links {
  display: flex;
  gap: 24px;
}
.cso-header-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.cso-header-links a:hover {
  color: var(--accent-gold-light);
}

/* Primary CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  color: var(--bg-primary);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  animation: pulseGlow 3s infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--accent-gold-glow);
  color: #000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--accent-gold-light);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.btn-secondary:hover {
  background: rgba(200, 151, 58, 0.1);
  box-shadow: 0 4px 12px var(--accent-gold-glow);
}


/* ===============================================================
   Landing Page specific styles
=============================================================== */
.lp-hero {
  position: relative;
  padding: 120px 5% 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Abstract glowing orbs in the background */
.lp-hero::before, .lp-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
}
.lp-hero::before {
  width: 400px;
  height: 400px;
  background: rgba(200, 151, 58, 0.15);
  top: -100px;
  left: -100px;
}
.lp-hero::after {
  width: 500px;
  height: 500px;
  background: rgba(22, 42, 74, 0.8);
  bottom: -200px;
  right: -100px;
}

.lp-hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.lp-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  color: var(--accent-gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(200, 151, 58, 0.05);
}

.lp-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}

.lp-hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}

.lp-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* Features Section */
.lp-features {
  padding: 100px 5%;
  background: var(--bg-secondary);
  position: relative;
}
.lp-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.lp-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
}
.lp-section-header p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-feature-card {
  padding: 40px 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.lp-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: rgba(200, 151, 58, 0.3);
}
.lp-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-feature-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 500;
}
.lp-feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonial / Trust Section */
.lp-trust {
  padding: 80px 5%;
  background: var(--bg-primary);
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.lp-trust p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-gold-light);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 30px;
}
.lp-trust-author {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* CTA Bottom */
.lp-cta-bottom {
  padding: 100px 5%;
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
  text-align: center;
}
.lp-cta-bottom h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 20px;
}
.lp-cta-bottom p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* ===============================================================
   Legal Documents specific styles (Termos e Política)
=============================================================== */
.cso-hero-doc {
  background: var(--bg-secondary);
  padding: 60px 5% 50px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}
.cso-hero-doc h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}
.cso-hero-doc .cso-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: block;
}
.cso-hero-doc .cso-meta {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cso-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5% 100px;
  align-items: start;
}

.cso-sidebar {
  position: sticky;
  top: 100px;
}
.cso-nav-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}
.cso-nav-list {
  list-style: none;
}
.cso-nav-list li + li { margin-top: 8px; }
.cso-nav-list a {
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 12px;
  border-left: 2px solid transparent;
  transition: all 0.2s;
  border-radius: 0 6px 6px 0;
}
.cso-nav-list a:hover {
  color: #fff;
  border-left-color: var(--accent-gold);
  background: rgba(200,151,58,0.1);
}

.cso-content {
  border-left: 1px solid var(--border-light);
  padding-left: 60px;
}

.cso-section {
  margin-bottom: 60px;
}
.cso-section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.cso-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}
.cso-section p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

/* Legal Cards */
.cso-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}
.cso-card, .cso-mini-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease;
}
.cso-card:hover, .cso-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 151, 58, 0.3);
}
.cso-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.cso-card-title, .cso-mini-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-gold-light);
  margin-bottom: 8px;
}
.cso-card p, .cso-mini-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Legal Lists */
.cso-policy-list, .cso-numbered-list, .cso-commit-list {
  list-style: none;
  margin: 24px 0;
}
.cso-policy-list li, .cso-numbered-list li {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
}
.cso-policy-list li::before {
  content: '';
  display: block;
  min-width: 4px;
  border-radius: 2px;
  background: var(--accent-gold);
  align-self: stretch;
}
.cso-numbered-list { counter-reset: items; }
.cso-numbered-list li::before {
  content: counter(items);
  counter-increment: items;
  min-width: 30px;
  height: 30px;
  background: var(--bg-tertiary);
  color: var(--accent-gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cso-commit-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.cso-commit-num {
  min-width: 36px;
  height: 36px;
  background: var(--bg-secondary);
  color: var(--accent-gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}
.cso-commit-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
}

/* Highlights */
.cso-highlight {
  background: rgba(200, 151, 58, 0.05);
  border-radius: 12px;
  padding: 24px 32px;
  margin: 32px 0;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.8;
  border-left: 4px solid var(--accent-gold);
}
.cso-highlight strong {
  color: var(--accent-gold-light);
  font-weight: 600;
}
.cso-highlight a {
  color: var(--accent-gold-light);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(200, 151, 58, 0.3);
  text-underline-offset: 4px;
}
.cso-highlight a:hover {
  text-decoration-color: var(--accent-gold-light);
}


/* Footer */
.cso-footer {
  background: var(--bg-primary);
  padding: 40px 5%;
  border-top: 1px solid var(--border-light);
  text-align: center;
}
.cso-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cso-footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.cso-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.cso-footer-links a:hover {
  color: var(--accent-gold-light);
}
.cso-footer p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .cso-layout {
    grid-template-columns: 1fr;
    padding-left: 5%;
    padding-right: 5%;
  }
  .cso-sidebar {
    position: static;
    display: none; /* Hide sidebar on mobile for simplicity */
  }
  .cso-content {
    border-left: none;
    padding-left: 0;
  }
  .cso-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .cso-header {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 16px;
  }
  .lp-hero-ctas {
    flex-direction: column;
  }
  .lp-hero-ctas .btn-primary, .lp-hero-ctas .btn-secondary {
    width: 100%;
  }
}

/* ===============================================================
   Product Catalog & Admin specific styles
=============================================================== */

/* Admin Panel */
.admin-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.admin-header {
  text-align: center;
  margin-bottom: 40px;
}
.admin-header h1 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 2rem;
}

.cso-form-group {
  margin-bottom: 20px;
}
.cso-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cso-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s;
}
.cso-input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(200, 151, 58, 0.2);
}

.admin-list {
  margin-top: 40px;
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
}
.admin-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px solid transparent;
}
.admin-item:hover {
  border-color: var(--border-light);
}
.admin-item-info strong {
  color: #fff;
  display: block;
  font-size: 1.05rem;
}
.admin-item-info small {
  color: var(--text-muted);
}
.btn-danger {
  background: transparent;
  color: #ef4444;
  border: 1px solid #ef4444;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.85rem;
}
.btn-danger:hover {
  background: #ef4444;
  color: #fff;
}
.btn-edit {
  background: transparent;
  color: var(--accent-gold-light);
  border: 1px solid var(--accent-gold);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.85rem;
}
.btn-edit:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
}
.btn-pause {
  background: transparent;
  color: #fb923c;
  border: 1px solid #fb923c;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.85rem;
}
.btn-pause:hover {
  background: #fb923c;
  color: var(--bg-primary);
}
.btn-activate {
  background: transparent;
  color: #22c55e;
  border: 1px solid #22c55e;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 0.85rem;
}
.btn-activate:hover {
  background: #22c55e;
  color: var(--bg-primary);
}
.item-paused {
  opacity: 0.6;
  border-left: 4px solid #fb923c !important;
}

/* ===============================================================
   Interactive Storefront Cards (Cinematic)
=============================================================== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.interactive-card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  background: var(--bg-tertiary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--border-light);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.interactive-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(200, 151, 58, 0.3);
  border-color: rgba(200, 151, 58, 0.5);
}

.ic-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}
.ic-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-primary));
}

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

/* Gradient Overlay handles contrast */
.ic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 17, 32, 0.95) 0%, rgba(10, 17, 32, 0.6) 50%, rgba(10, 17, 32, 0.2) 100%);
  z-index: 2;
  transition: all 0.5s ease;
}

.interactive-card:hover .ic-overlay {
  background: linear-gradient(to top, rgba(10, 17, 32, 0.98) 0%, rgba(10, 17, 32, 0.85) 60%, rgba(10, 17, 32, 0.4) 100%);
}

.ic-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ic-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
  transition: transform 0.4s ease;
  transform: translateY(0);
}

.ic-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(20px);
}

.ic-action {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--accent-gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.1s;
}

.ic-action svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

/* Hover State Reveal */
.interactive-card:hover .ic-title {
  transform: translateY(-5px);
}
.interactive-card:hover .ic-desc {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 4px;
}
.interactive-card:hover .ic-action {
  opacity: 1;
  transform: translateY(0);
}
.interactive-card:hover .ic-action svg {
  transform: translateX(5px);
}

/* ===============================================================
   Toast Notifications
=============================================================== */
#toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cso-toast {
  background: var(--bg-tertiary);
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-left: 4px solid var(--accent-gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cso-toast.show {
  transform: translateX(0);
  opacity: 1;
}
.cso-toast.error {
  border-left-color: #ef4444;
}
.cso-toast.success {
  border-left-color: #22c55e;
}
.cso-toast-icon {
  font-size: 1.2rem;
}
