
.place-order {
    display: block;
    text-align: center;
    background: green;
    color: white;
    font-size: 0.7rem;
    padding: 0.7rem 1.2rem;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(239, 71, 111, 0.3);
    transition: transform 0.2s ease;
  }
  
  .place-order:hover {
    transform: scale(1.05);
  }