body {
  margin: 0;
  padding-bottom: 60px;
  font-family: sans-serif;
}

.floating-bar {
  display: none;
}

@media (max-width: 768px) {
  .floating-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #fff;
    border-top: 1px solid #ccc;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
  }

  .floating-btn {
    flex: 1;
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 0;
    color: #fff;
    text-decoration: none !important;
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.1s ease;
  }

  .floating-btn:nth-child(1) {
    background: linear-gradient(135deg, #1F3B4D, #34495E);
  }

  .floating-btn:nth-child(2) {
    background: linear-gradient(135deg, #CBA135, #D4AF37);
  }

  .floating-btn:active {
    opacity: 0.8;
    transform: scale(0.97);
  }
}
