@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=Hanken+Grotesk:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --uplink-primary: #003d8e;
  --uplink-primary-container: #1254b7;
  --uplink-primary-container-tint: rgba(18, 84, 183, 0.15);
  --uplink-on-primary: #ffffff;
  --uplink-secondary: #336b00;
  --uplink-secondary-container: #99fb53;
  --uplink-neutral: #737784;
  --uplink-surface: #0b1c30;
  --uplink-card-bg: #132238;
  --uplink-card-border: #1e3352;
  --uplink-text: #f8f9ff;
  --uplink-text-muted: #94a3b8;
  --uplink-gold: #ffb800;
  --uplink-success: #10b981;
  --uplink-red: #ef4444;

  /* Aliases */
  --alvar-primary: var(--uplink-primary);
  --alvar-primary-container: var(--uplink-primary-container);
  --alvar-primary-container-tint: var(--uplink-primary-container-tint);
  --alvar-on-primary: var(--uplink-on-primary);
  --alvar-secondary: var(--uplink-secondary);
  --alvar-neutral: var(--uplink-neutral);
  --alvar-surface: var(--uplink-surface);
  --alvar-card-bg: var(--uplink-card-bg);
  --alvar-card-border: var(--uplink-card-border);
  --alvar-text: var(--uplink-text);
  --alvar-text-muted: var(--uplink-text-muted);
  --alvar-gold: var(--uplink-gold);
  --alvar-success: var(--uplink-success);
  --alvar-red: var(--uplink-red);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--alvar-surface);
  color: var(--alvar-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  padding-bottom: 80px;
}

h1, h2, h3, h4, h5, h6, .brand-title, .hero-title, .auction-title {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

#root {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (min-width: 600px) {
  #root {
    max-width: 480px;
  }
}

.header {
  background: linear-gradient(180deg, #071322 0%, var(--alvar-surface) 100%);
  padding: 1.25rem 1rem 1rem 1rem;
  border-bottom: 1px solid var(--alvar-card-border);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  max-height: 28px;
  filter: brightness(0) invert(1);
}

.brand-badge {
  background: var(--alvar-primary-container);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
  font-family: 'Geist', sans-serif;
  letter-spacing: 0.5px;
}

.user-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--alvar-card-border);
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: var(--alvar-text-muted);
  font-family: 'Geist', sans-serif;
}

.hero-banner {
  margin: 1rem;
  background: linear-gradient(135deg, #0016e5 0%, #2e3eff 100%);
  border-radius: 1rem;
  padding: 1.2rem 1.25rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 22, 229, 0.25);
}

.hero-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-desc {
  font-size: 0.82rem;
  opacity: 0.95;
  line-height: 1.35;
  font-family: 'Inter', sans-serif;
}

.section-header {
  padding: 0 1rem;
  margin: 1.25rem 0 0.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--alvar-text-muted);
  font-family: 'Geist', sans-serif;
}

.auction-list {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auction-card {
  background: var(--alvar-card-bg);
  border: 1px solid var(--alvar-card-border);
  border-radius: 1rem;
  padding: 1.15rem;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.auction-card:hover {
  border-color: rgba(18, 84, 183, 0.5);
  box-shadow: 0 8px 24px rgba(18, 84, 183, 0.15);
}

.auction-card:active {
  transform: scale(0.985);
  border-color: var(--alvar-primary-container);
}

/* Product Image Showcase Container */
.auction-img-container {
  position: relative;
  width: 100%;
  height: 180px;
  background: radial-gradient(circle at center, rgba(18, 84, 183, 0.25) 0%, rgba(6, 19, 37, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.auction-product-img {
  max-height: 155px;
  max-width: 85%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.6));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auction-card:hover .auction-product-img {
  transform: scale(1.05);
}

/* Floating Image Overlay Badges */
.img-tier-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 28, 48, 0.85);
  color: #93c5fd;
  border: 1px solid rgba(147, 197, 253, 0.3);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 9999px;
  font-family: 'Geist', sans-serif;
  letter-spacing: 0.5px;
  z-index: 2;
}

.img-live-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
  backdrop-filter: blur(8px);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
  font-family: 'Geist', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.pulse-dot-sm {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulse-sm 1.8s infinite;
}

@@keyframes pulse-sm {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

.img-retail-badge {
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: 'Geist', sans-serif;
  z-index: 2;
}

/* Modal Product Header Preview */
.modal-product-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.modal-product-thumb {
  width: 54px;
  height: 54px;
  background: radial-gradient(circle at center, rgba(18, 84, 183, 0.3) 0%, rgba(6, 19, 37, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  object-fit: contain;
  padding: 3px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.auction-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.tier-badge {
  background: var(--alvar-primary-container-tint);
  color: #d4d5ff;
  border: 1px solid rgba(46, 62, 255, 0.4);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  font-family: 'Geist', sans-serif;
}

.card-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background: rgba(0,0,0,0.3);
  border-radius: 0.5rem;
  padding: 0.65rem;
  margin-bottom: 0.85rem;
}

.metric-item {
  text-align: center;
}

.metric-lbl {
  font-size: 0.65rem;
  color: var(--alvar-text-muted);
  text-transform: uppercase;
  font-family: 'Geist', sans-serif;
}

.metric-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Geist', sans-serif;
}

.countdown-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  color: var(--alvar-gold);
  font-family: 'Geist', sans-serif;
}

.btn-bid {
  width: 100%;
  background: var(--alvar-primary-container);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'Geist', sans-serif;
  transition: all 0.2s ease;
}

.btn-bid:hover {
  background: var(--alvar-primary);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: flex-end;
  z-index: 999;
}

.modal-overlay.active {
  display: flex;
}

.bottom-sheet {
  background: var(--alvar-card-bg);
  border-top: 3px solid var(--alvar-primary-container);
  border-radius: 1.25rem 1.25rem 0 0;
  width: 100%;
  max-width: 480px;
  padding: 1.5rem;
  box-shadow: 0 -10px 35px rgba(0,0,0,0.6);
  animation: slideUp 0.25s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.input-field {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--alvar-card-border);
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  outline: none;
  font-family: 'Geist', sans-serif;
}

.input-field:focus {
  border-color: var(--alvar-primary-container);
}

/* Bid Notice & Transparent Terms Box */
.bid-terms-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.76rem;
  line-height: 1.4;
  color: #cbd5e1;
}

.terms-icon {
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.text-non-refundable {
  font-weight: 700;
  color: #fff;
}

/* Explicit Terms Acceptance Consent */
.terms-consent-wrapper {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 0.65rem;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.85rem;
  transition: all 0.2s ease;
}

.terms-consent-wrapper.shake-error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.terms-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 0;
}

.terms-consent-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: #10b981;
  cursor: pointer;
}

.terms-consent-text {
  font-size: 0.78rem;
  line-height: 1.35;
  color: #e2e8f0;
}

.terms-consent-text strong {
  color: #fff;
}

.terms-legal-notice {
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}

.badge-unique {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 9999px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Geist', sans-serif;
  letter-spacing: 0.5px;
}

.badge-duplicate {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 9999px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Geist', sans-serif;
  letter-spacing: 0.5px;
}

.my-bid-card {
  background: var(--alvar-card-bg);
  border: 1px solid var(--alvar-card-border);
  border-radius: 1rem;
  padding: 1.15rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.my-bid-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.my-bid-amount {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Geist', sans-serif;
}

.my-bid-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--alvar-text-muted);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.6rem;
  margin-top: 0.6rem;
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #071322;
  border-top: 1px solid var(--alvar-card-border);
  display: flex;
  justify-content: space-around;
  padding: 0.65rem 0;
  z-index: 100;
  max-width: 480px;
  margin: 0 auto;
}

.nav-link {
  color: var(--alvar-text-muted);
  text-decoration: none;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: 'Geist', sans-serif;
}

.nav-link.active {
  color: #fff;
}

.nav-link.active i {
  color: var(--alvar-primary-container);
}

/* ==========================================================================
   WINNERS HALL OF FAME TICKER (SOCIAL PROOF)
   ========================================================================== */
.winner-ticker-wrapper {
  margin: 0.5rem 1rem 1rem 1rem;
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: 0.85rem;
  padding: 0.75rem 1rem;
  position: relative;
  overflow: hidden;
}

.winner-ticker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--alvar-gold);
  font-family: 'Geist', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ticker-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ticker-scroll::-webkit-scrollbar {
  display: none;
}

.ticker-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
  padding: 0.5rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-thumb {
  width: 38px;
  height: 38px;
  border-radius: 0.4rem;
  background: #0f172a;
  object-fit: contain;
  padding: 2px;
}

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

.ticker-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticker-savings {
  font-size: 0.7rem;
  color: #10b981;
  font-weight: 700;
  font-family: 'Geist', sans-serif;
}

/* ==========================================================================
   QUICK-BID STEPPERS & SMART RANDOMIZER
   ========================================================================== */
.stepper-chips-row {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.chip-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--alvar-card-border);
  color: #e2e8f0;
  font-family: 'Geist', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.chip-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.chip-btn:active {
  transform: scale(0.95);
  background: var(--alvar-primary-container);
  color: #fff;
}

.chip-randomizer {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(168, 85, 247, 0.25) 100%);
  border-color: rgba(168, 85, 247, 0.4);
  color: #c084fc;
}

.chip-randomizer:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(168, 85, 247, 0.4) 100%);
  color: #fff;
}

/* ==========================================================================
   COMPETITION HEATMAP BAR
   ========================================================================== */
.heatmap-container {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.65rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.heatmap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--alvar-text-muted);
  font-family: 'Geist', sans-serif;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.heatmap-bar {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  gap: 2px;
  margin-bottom: 6px;
}

.heatmap-segment {
  height: 100%;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.heatmap-segment.high {
  background: #ef4444;
}

.heatmap-segment.moderate {
  background: #f59e0b;
}

.heatmap-segment.low {
  background: #3b82f6;
}

.heatmap-segment.unexplored {
  background: #10b981;
}

.heatmap-legend {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: #94a3b8;
  font-family: 'Geist', sans-serif;
}

.heatmap-item-legend {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ==========================================================================
   WINNER CELEBRATION MODAL & CONFETTI CANVAS
   ========================================================================== */
.celebration-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 19, 37, 0.95);
  backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 1.5rem;
}

.celebration-overlay.active {
  display: flex;
}

#confettiCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10001;
}

.celebration-card {
  position: relative;
  z-index: 10002;
  background: linear-gradient(145deg, #0b1c30 0%, #132238 100%);
  border: 2px solid var(--alvar-gold);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 50px rgba(255, 184, 0, 0.35);
  animation: popIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.trophy-glow {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.3) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--alvar-gold);
}

/* Interactive Safaricom M-Pesa STK Prompt Dialog */
.stk-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.stk-dialog {
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 12px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  animation: popIn 0.25s ease-out;
}

.stk-header {
  background: #00843D; /* Safaricom Green */
  color: #ffffff;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stk-body {
  padding: 16px;
  font-size: 0.88rem;
}

.stk-prompt-text {
  color: #2d3748;
  margin-bottom: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.stk-pin-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 6px;
}

.stk-pin-box {
  width: 100%;
  padding: 10px;
  border: 2px solid #00843D;
  border-radius: 8px;
  font-size: 1.25rem;
  text-align: center;
  letter-spacing: 6px;
  font-weight: bold;
  background: #f8fafc;
  outline: none;
}

.stk-actions {
  display: flex;
  border-top: 1px solid #e2e8f0;
}

.stk-btn {
  flex: 1;
  padding: 12px;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  background: transparent;
  transition: background 0.15s;
}

.stk-btn-cancel {
  color: #64748b;
  border-right: 1px solid #e2e8f0;
}
.stk-btn-cancel:hover {
  background: #f1f5f9;
}

.stk-btn-confirm {
  color: #00843D;
}
.stk-btn-confirm:hover {
  background: #ecfdf5;
}
