:root {
  --bg: #f5f7fb;
  --bg-soft: #eef3f9;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --card: #ffffff;
  --line: rgba(15, 23, 42, 0.08);
  --text: #111827;
  --muted: #5f6f86;
  --primary: #0f172a;
  --primary-strong: #1d4ed8;
  --accent: #e2e8f0;
  --success: #0f766e;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(148, 163, 184, 0.2), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 45%, #edf2f8 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

#audio,
#bg-music {
  display: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0f172a, #334155);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 14px 22px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  font-weight: 700;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.14);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.hero {
  padding: 90px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 22px 0 16px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.subtitle {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.mini-stats {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.mini-stats li {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.mini-stats strong {
  font-size: 1.5rem;
}

.mini-stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-window {
  width: min(100%, 490px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 14px;
  position: relative;
  animation: float 7s ease-in-out infinite;
}

.window-top {
  display: flex;
  gap: 8px;
  padding: 8px 10px 14px;
}

.window-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.window-top span:nth-child(1) { background: #ff5f57; }
.window-top span:nth-child(2) { background: #ffbd2e; }
.window-top span:nth-child(3) { background: #27c93f; }

.panel-content {
  background: linear-gradient(180deg, #f9fafb, #f3f6fb);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px 20px;
}

.terminal-line {
  color: var(--text);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.95rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

.prompt {
  color: #1d4ed8;
}

.result-card {
  margin-top: 18px;
  padding: 18px 16px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.96), rgba(51, 65, 85, 0.94));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  color: #e5eefb;
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.network-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f8fafc;
}

.result-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #dbeafe;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
  color: #dbeafe;
  font-size: 0.72rem;
}

.result-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.field-label {
  color: #bfd6ff;
  font-size: 0.8rem;
  font-weight: 700;
}

.field-value {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #f8fafc;
  font-weight: 600;
}

.field-value.masked {
  font-family: "SFMono-Regular", Consolas, monospace;
}

.premium-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
  color: #e2e8f0;
  font-weight: 600;
}

.premium-check {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e;
  color: #06210d;
  font-size: 0.78rem;
  font-weight: 800;
}

.network-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148,163,184,0.18);
}

.bar-brand {
  color: #f8fafc;
  font-size: 0.8rem;
  opacity: 0.9;
}

.bar-progress {
  width: 78px;
  height: 10px;
  border-radius: 999px;
  background: rgba(148,163,184,0.2);
  overflow: hidden;
}

.bar-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #34d399, #60a5fa);
}

.bar-count {
  font-size: 0.72rem;
  color: #dbeafe;
}

.request-note {
  margin-top: 12px;
  color: #cbd5e1;
  font-size: 0.72rem;
  text-align: left;
}

.mini-result-card {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text);
}

.mini-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.section-block {
  padding: 88px 0;
}

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

.section-header h2 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.database-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.database-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 228px;
}

.database-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  background:
    linear-gradient(135deg, rgba(10, 12, 16, 0.96), rgba(40, 44, 48, 0.9)),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.06) 2px,
      transparent 2px,
      transparent 6px
    );
  image-rendering: pixelated;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.database-card img[src=""],
.database-card img:not([src]) {
  display: none;
}

.database-name {
  padding: 12px 14px 14px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text);
  text-transform: lowercase;
  background: rgba(255,255,255,0.8);
  min-height: 52px;
  display: flex;
  align-items: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 23, 42, 0.12);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  font-size: 1.8rem;
  margin-bottom: 18px;
}

}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.footer-row {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

.orb-one {
  width: 320px;
  height: 320px;
  background: rgba(148, 163, 184, 0.7);
  top: 10%;
  left: -90px;
}

.orb-two {
  width: 280px;
  height: 280px;
  background: rgba(191, 219, 254, 0.8);
  right: -80px;
  bottom: 8%;
}

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

@media (max-width: 900px) {
  .hero-grid,
  .pricing-wrap,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .footer-row {
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 70px;
  }

  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .faq-box {
    padding: 24px 18px;
  }
}

/* -- MODAL METODOS DE PAGO -------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  width: min(540px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
  padding: 28px;
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transform: scale(0.92) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-header {
  margin-bottom: 20px;
  padding-right: 32px;
}

.modal-header h3 {
  margin: 0 0 6px 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
}

.modal-header p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.modal-field {
  margin-bottom: 18px;
}

.modal-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #334155;
  margin-bottom: 8px;
}

.modal-field input,
.modal-field select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #cbd5e1;
  font-size: 0.95rem;
  background: #f8fafc;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-field input:focus,
.modal-field select:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

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

.pm-card {
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pm-card:hover {
  border-color: #94a3b8;
  background: #ffffff;
  transform: translateY(-2px);
}

.pm-card.selected {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}

.pm-card .pm-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.pm-card .pm-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0f172a;
}

.pm-details-panel {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
  display: none;
}

.pm-details-panel.active {
  display: block;
  animation: fadeIn 0.25s ease;
}

#paypal-container-5DMDDYEL3AFYS {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  text-align: center;
}

#paypal-container-5DMDDYEL3AFYS * {
  max-width: 100%;
}

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

.crypto-subtabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.crypto-tab {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  color: #475569;
  transition: all 0.2s ease;
}

.crypto-tab.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.copy-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px 12px;
  margin-top: 6px;
}

.copy-box code {
  font-family: monospace;
  font-size: 0.85rem;
  word-break: break-all;
  color: #0f172a;
  flex: 1;
}

.btn-copy {
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.btn-copy:hover {
  background: #1d4ed8;
}

.btn-submit-payment {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  transition: all 0.2s ease;
}

.btn-submit-payment:hover {
  background: linear-gradient(135deg, #1e293b, #334155);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.3);
}

.modal-success-screen {
  text-align: center;
  padding: 20px 10px;
  display: none;
}

.modal-success-screen.active {
  display: block;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  color: #166534;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin: 0 auto 16px auto;
}

/* ==========================================================================
   TIENDA Y CARRITO DE COMPRAS / PRICING CARDS
   ========================================================================== */

.pricing {
  padding: 60px 0;
  position: relative;
}

.pricing-wrap {
  width: 100%;
}

.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 36px;
}

@media (max-width: 1100px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .pricing-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Tarjetas de Producto / Carrito */
.price-card-compact,
.price-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 26px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.price-card-compact:hover,
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 22px 50px rgba(37, 99, 235, 0.14), 0 6px 16px rgba(15, 23, 42, 0.06);
}

/* Tarjeta Destacada / Recomendada */
.price-card-compact.featured,
.price-card.featured {
  border: 2px solid #2563eb;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.18);
  transform: scale(1.02);
}

.price-card-compact.featured:hover,
.price-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 26px 60px rgba(37, 99, 235, 0.24);
}

/* Header de la tarjeta */
.price-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.price-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.price-card-compact.featured .price-card-icon {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
}

/* Etiqueta de Precio */
.price-tag {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 12px 0 6px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-tag small,
.price-period {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: normal;
}

/* Título de Producto */
.price-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Lista de características estilo e-commerce */
.price-card-compact ul,
.price-card ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 28px 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card-compact li,
.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.4;
  padding: 0;
  margin: 0;
}

.price-card-compact li::before,
.price-card li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.price-card-compact.featured li::before,
.price-card.featured li::before {
  background: #2563eb;
  color: #ffffff;
}

/* Botón estilo Carrito de Compra */
.price-card-compact .button,
.price-card .button,
.button-primary {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-card-compact .button::before,
.price-card .button::before {
  content: "🛒";
  font-size: 1.05rem;
}

.price-card-compact.featured .button,
.price-card.featured .button {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.price-card-compact .button:hover,
.price-card .button:hover,
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.28);
  filter: brightness(1.1);
}

.price-card-compact.featured .button:hover,
.price-card.featured .button:hover {
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
}

/* Header cart widget */
.cart-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
}

.cart-nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  filter: brightness(1.08);
}

