/* Mobile Sticky Footer Styles */
#mobile-sticky-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 9999;
  padding: 10px;
  box-sizing: border-box;
}

#mobile-sticky-footer .variant-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

#mobile-sticky-footer .variant-btn {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  background: white;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
}

#mobile-sticky-footer .variant-btn.active {
  background: #000;
  color: white;
  border-color: #000;
}

#mobile-sticky-footer .sticky-cta-btn {
  width: 100%;
  padding: 15px;
  background: #000;
  color: white;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.sticky-timer {
  text-align: center;
  margin-bottom: 5px;
  color: red;
  font-weight: bold;
  font-size: 12px;
}

@media (max-width: 768px) {
  #mobile-sticky-footer {
    display: block;
  }
  /* Optional: Add padding to body to prevent content being covered */
  body {
    padding-bottom: 140px; 
  }
}
