.amount-wrap {
    position: relative;
    width: 100%;
}

.amount-input {
    width: 100%;
    padding: 16px 50px 16px 16px;
    border-radius: 14px;
    border: 1px solid #d2d2d7;
    background: #fbfbfd;
    font-size: 16px;
}

.amount-input:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0,113,227,0.25);
}

/* Stepper container */
.stepper {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 22px;
    border-radius: 8px;
    border: 1px solid #d2d2d7;
    background: #f5f5f7;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Buttons */
.step {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 10px;
    cursor: pointer;
    line-height: 1;
    color: #6e6e73;
    transition: background 0.2s;
}

.step:hover {
    background: #e8e8ed;
}

.step:active {
    background: #dcdce1;
}

/* Divider line */
.step.up {
    border-bottom: 1px solid #d2d2d7;
}
.gift-img {
  width: 200px;
  height: 250px;
  object-fit: cover;
}
.icons {
  display: grid;
  grid-template-columns: repeat(8, 1fr); /* adjust based on rows */
  gap: 40px;
  text-align: center;
  justify-content: center;
}

.icon img {
  width: 50px;   /* control icon size here */
  height: auto;
}

.icon p {
  margin-top: 8px;
  font-size: 14px;
}