.btn {
  padding: 0 clamp(16px, 4vw, 32px);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  text-decoration: none;
  margin-right: clamp(8px, 2vw, 20px);
  border-radius: clamp(4px, 1vw, 10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: 60px;
  box-sizing: border-box;
  letter-spacing: 0.5px;
}

.btn.green {
  background: var(--brand);
  color: #fff;
}

.btn.green:hover {
  background: var(--brand-700);
}

.btn.outline {
  border: 2px solid var(--brand);
  color: var(--brand);
}

.btn.outline:hover {
  background: var(--mint-50);
}

.btn-secondary {
  flex: 1 1 auto;
  white-space: nowrap;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.btn-primary {
  flex: 1 1 auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  background: #045D56;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #EAEAEA;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: #033c3a;
}

.btn-primary:active {
  transform: scale(0.98);
}

.action-buttons svg { 
  flex: 0 0 auto; 
}

/* Mobile button height */
@media (max-width: 768px) {
  .btn {
    height: 60px;
    font-size: clamp(36px, 5vw, 44px); /* Larger mobile button */
    padding: 0 clamp(20px, 5vw, 36px);
  }
  
  .action-buttons {
    flex-direction: column;
    gap: 8px;
  }
  
  .btn-secondary,
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .btn {
    font-size: 14px;
    padding: 10px 16px;
    margin-right: 8px;
  }
}

