:root {
  --bg: #090d16;
  --bg-card: #111827;
  --bg-card-hover: #162032;
  --border: #1f293d;
  --border-focus: #3b82f6;
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.1);
  --danger: #f43f5e;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  border-bottom: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.logo-text strong {
  color: var(--primary);
}

/* Nav Suite Links */
.nav-links-suite {
  display: flex;
  gap: 6px;
  background: rgba(15, 23, 42, 0.6);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow-x: auto;
  white-space: nowrap;
  max-width: 750px;
  scrollbar-width: none;
}
.nav-links-suite::-webkit-scrollbar {
  display: none;
}

.nav-tool-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 7px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.nav-tool-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-tool-link.active {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

@media (max-width: 680px) {
  .nav-container {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
  .nav-links-suite {
    width: 100%;
    justify-content: center;
  }
}

.nav-badge {
  background: var(--border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.tip-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.15s, opacity 0.15s;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.tip-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Main Container */
.main-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 20px 60px;
  flex: 1;
  width: 100%;
}

.hero-section {
  text-align: center;
  margin-bottom: 32px;
}

.hero-section h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto;
}

/* Platform Tabs */
.platform-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 24px;
  scrollbar-width: none;
}

.platform-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.tab-btn:hover {
  background: var(--bg-card-hover);
  border-color: #374151;
}

.tab-btn.active {
  border-color: var(--primary);
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
}

.platform-badge {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
}

.tab-btn.active .platform-badge {
  color: #fff;
}

.platform-badge.ebay { color: #e53238; }
.platform-badge.etsy { color: #f1641e; }
.platform-badge.poshmark { color: #8e1c3e; }
.platform-badge.mercari { color: #2e59a8; }
.platform-badge.shopify { color: #96bf48; }
.tab-btn.active .platform-badge { color: #fff; }

/* Calculator Grid */
.calculator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }
}

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.card-header h2 {
  font-size: 18px;
  font-weight: 700;
}

.fee-badge {
  background: #1e293b;
  border: 1px solid #334155;
  color: #93c5fd;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.action-btn {
  background: #1f2937;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.action-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

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

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-prefix {
  position: absolute;
  left: 12px;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 14px;
}

.suffix {
  position: absolute;
  right: 12px;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 13px;
}

.input-wrap input {
  width: 100%;
  background: #0b0f19;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  padding: 10px 12px 10px 28px;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s;
}

.input-wrap input:focus {
  border-color: var(--border-focus);
}

#promoted-rate {
  padding-left: 12px;
}

/* Profit Results Card */
.profit-highlight {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.profit-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #a7f3d0;
}

.profit-amount {
  font-size: 38px;
  font-weight: 800;
  color: var(--success);
  margin: 4px 0 12px;
  letter-spacing: -1px;
}

.profit-amount.negative {
  color: var(--danger);
}

.profit-metrics {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  padding-top: 12px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.m-val {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* Breakdown List */
.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 12px;
  background: #0b0f19;
  border-radius: 6px;
  border: 1px solid #1a2233;
}

.breakdown-item span.val {
  font-weight: 700;
  color: #fff;
}

.breakdown-item.fee span.val {
  color: #f87171;
}

/* Comparison Table */
.comparison-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 30px;
}

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

.section-header h2 {
  font-size: 18px;
  font-weight: 700;
}

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

.table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.comparison-table th, 
.comparison-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  color: var(--text-muted);
  font-weight: 600;
}

.comparison-table tr:hover td {
  background: var(--bg-card-hover);
}

.profit-pill {
  font-weight: 700;
  color: var(--success);
}

.profit-pill.negative {
  color: var(--danger);
}

/* Affiliate Banner */
.affiliate-banner {
  background: linear-gradient(135deg, #1e1b4b, #172554);
  border: 1px solid #3b82f6;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.affiliate-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.affiliate-content p {
  font-size: 13px;
  color: #93c5fd;
}

.affiliate-cta {
  background: #3b82f6;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  transition: opacity 0.2s;
}

.affiliate-cta:hover {
  opacity: 0.9;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 650px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.faq-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.faq-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Ad Container Slot */
.ad-container-slot {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 30px;
  position: relative;
}

.ad-label {
  position: absolute;
  top: -9px;
  left: 16px;
  background: #1e293b;
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 1px 8px;
  border-radius: 4px;
}

.ad-placeholder-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-placeholder-box p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.ad-link-btn {
  background: #1f2937;
  border: 1px solid var(--border);
  color: #93c5fd;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}

.ad-link-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
}

/* Floating Bug Report / Feedback Button */
.feedback-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1e293b;
  border: 1px solid #334155;
  color: #94a3b8;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.feedback-floating-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Feedback Modal Overlay & Card */
.feedback-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.feedback-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.feedback-modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 480px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.feedback-modal-overlay.active .feedback-modal-card {
  transform: translateY(0) scale(1);
}

.feedback-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.feedback-close-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.15s;
}

.feedback-close-btn:hover {
  background: #334155;
  color: #fff;
}

.fb-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.fb-form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.fb-input {
  background: #0b0f19;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.fb-input:focus {
  border-color: var(--border-focus);
}

.fb-diag-box {
  background: #090d16;
  border: 1px solid #1a2233;
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 16px;
}

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

.fb-primary-btn {
  flex: 1;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.fb-primary-btn:hover {
  opacity: 0.95;
}

.fb-secondary-btn {
  background: #1f2937;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.fb-secondary-btn:hover {
  background: #374151;
  color: #fff;
}

/* Suite Explorer Grid Section */
.suite-explorer-section {
  margin: 48px 0 36px 0;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.suite-explorer-title {
  text-align: center;
  margin-bottom: 24px;
}
.suite-explorer-title h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.suite-explorer-title p {
  color: var(--text-muted);
  font-size: 13px;
}
.suite-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.suite-tool-card {
  background: #0b0f19;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s, border-color 0.2s;
}
.suite-tool-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}
.suite-tool-icon {
  font-size: 24px;
  margin-bottom: 10px;
}
.suite-tool-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.suite-tool-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
}
.suite-tool-cta {
  font-size: 11px;
  font-weight: 700;
  color: #60a5fa;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Exclusive Perks & Personal Referral Rewards Cards */
.perks-rewards-section {
  margin: 36px 0;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
}
.perks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}
.perks-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.perks-badge {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .perks-grid { grid-template-columns: 1fr; }
}
.perk-card {
  background: rgba(11, 15, 25, 0.8);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s, border-color 0.2s;
}
.perk-card:hover {
  transform: translateY(-2px);
  border-color: #3b82f6;
}
.perk-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.perk-icon-box {
  font-size: 28px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 8px;
  line-height: 1;
}
.perk-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.perk-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.perk-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.perk-code-tag {
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.15);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px dashed rgba(59, 130, 246, 0.4);
}
.perk-btn {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: opacity 0.2s, transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.perk-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}
.perk-btn.green {
  background: var(--success);
}

/* Share Calculation Button */
.share-calc-btn {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}
.share-calc-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* FAQ Accordion Section for SEO & Rich Snippets */
.faq-section {
  margin: 40px 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.faq-header {
  margin-bottom: 20px;
  text-align: center;
}
.faq-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.faq-header p {
  font-size: 13px;
  color: var(--text-muted);
}
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-accordion {
  background: rgba(11, 15, 25, 0.7);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-accordion[open] {
  border-color: var(--primary);
}
.faq-question {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: '+';
  font-size: 18px;
  color: var(--primary);
  font-weight: bold;
  transition: transform 0.2s;
}
.faq-accordion[open] .faq-question::after {
  content: '−';
}
.faq-answer {
  padding: 0 18px 16px 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 8px;
  padding-top: 12px;
}

/* Mobile Smart PWA Install Banner */
.pwa-install-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6), 0 0 15px rgba(59, 130, 246, 0.3);
  z-index: 9998;
  max-width: 90%;
  width: 440px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pwa-install-banner.show {
  transform: translateX(-50%) translateY(0);
}
.pwa-banner-icon {
  font-size: 26px;
}
.pwa-banner-text {
  flex: 1;
}
.pwa-banner-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.pwa-banner-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.pwa-install-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}
.pwa-dismiss-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  padding: 0 4px;
}

@media print {
  .feedback-floating-btn, .feedback-modal-overlay {
    display: none !important;
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--success);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

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