     .action-btn {
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 10px;
      background: rgba(255, 255, 255, 0.05);
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
      border-radius: 5px;
    }

    .action-btn svg {
      width: 20px;
      height: 20px;
      margin-right: 5px;
    }
    
  .button-group {
    display: flex;
    backdrop-filter: blur(10px) saturate(180%);
    border-radius: 5px;
    margin: 10px 0;
  }

  .button-group .action-btn:first-child {
    margin-right: 10px;
  }

  .action-btn.favorite-btn {
  color: #fff;
  }
  .action-btn.favorite-btn.active {
  color: #ff6b9d;
  }

  .contact-single-btn {
    width: 100%;
    padding: 12px 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9500 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  }

  .contact-single-btn svg {
    width: 20px;
    height: 20px;
  }