/* ── ORDER ── */

.order {
    background: var(--warm);
    text-align: center;
    
  }
  
  .order-text {
    max-width: 680px;
    margin: 0 auto 28px;
    color: var(--soft);
    font-size: 1.05rem;
    line-height: 1.8;
  }
  
  .order-button {
    display: inline-block;
    background: var(--pink);
    color: white;
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(232, 160, 176, 0.28);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .order-button:hover {
    transform: translateY(-3px);
    opacity: 0.9;
  }
