.gift-empty-state{
  padding:28px 18px;
  text-align:center;
  color:#9b8a6a;
  border-top:1px solid #efe4d4;
}

.gift-grid-public{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

.gift-card-public{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:18px;
  background:#fff;
  border:1px solid #e8dfcf;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(46,37,24,.06);
}

.gift-card-public__image-wrap{
  background:#f8f5ef;
  min-height:180px;
}

.gift-card-public__image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.gift-card-public__placeholder{
  width:100%;
  height:100%;
  min-height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#9b8a6a;
  font-size:14px;
}

.gift-card-public__body{
  padding:18px 18px 18px 0;
}

.gift-card-public__title{
  margin:0 0 8px;
  font-size:24px;
  color:#3e2f22;
}

.gift-card-public__desc{
  margin:0 0 14px;
  color:#7b6f63;
  line-height:1.55;
  font-size:15px;
}

.gift-card-public__amounts{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-bottom:12px;
}

.gift-card-public__amounts span{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#9a8d7a;
  margin-bottom:4px;
}

.gift-card-public__amounts strong{
  color:#47372a;
  font-size:15px;
}

.gift-progress-public{
  width:100%;
  height:10px;
  background:#eee6d9;
  border-radius:999px;
  overflow:hidden;
  margin-bottom:16px;
}

.gift-progress-public__bar{
  height:100%;
  background:linear-gradient(90deg,#9ec5a4,#6fa57c);
  border-radius:999px;
}

.gift-card-public__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.gift-btn-primary,
.gift-btn-secondary,
.gift-btn-disabled{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
}

.gift-btn-primary{
  background:#c6a86b;
  color:#fff;
}

.gift-btn-primary:hover{
  background:#b59353;
}

.gift-btn-secondary{
  background:#f5efe5;
  color:#7d6641;
  border:1px solid #eadfcd;
}

.gift-btn-disabled{
  background:#dde8de;
  color:#5e8265;
}

.gift-page-wrap{
  max-width:760px;
  margin:0 auto;
  padding:24px 16px 40px;
}

.gift-page-card{
  background:#fff;
  border:1px solid #e8dfcf;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(46,37,24,.06);
  padding:22px;
}

.gift-page-image{
  width:100%;
  max-height:340px;
  object-fit:cover;
  border-radius:16px;
  display:block;
  background:#f8f5ef;
  margin-bottom:16px;
}

.gift-page-title{
  margin:0 0 10px;
  color:#3e2f22;
  font-size:30px;
}

.gift-page-desc{
  color:#7b6f63;
  line-height:1.6;
  margin-bottom:16px;
}

.gift-page-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-bottom:16px;
}

.gift-page-meta span{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#9a8d7a;
  margin-bottom:4px;
}

.gift-page-meta strong{
  color:#47372a;
  font-size:15px;
}

.gift-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:16px;
}

.gift-form-col-full{
  grid-column:1 / -1;
}

.gift-field label{
  display:block;
  margin-bottom:6px;
  font-weight:600;
  color:#6e5d44;
}

.gift-field input,
.gift-field textarea{
  width:100%;
  box-sizing:border-box;
  border:1px solid #e2d7c6;
  border-radius:14px;
  padding:12px 14px;
  background:#fffdf8;
}

.gift-field textarea{
  min-height:110px;
  resize:vertical;
}

.gift-amount-options{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gift-amount-chip{
  position:relative;
  display:inline-flex;
  align-items:center;
}

.gift-amount-chip input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.gift-amount-chip span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid #e7dac6;
  background:#fffaf2;
  color:#7b6645;
  font-weight:600;
  cursor:pointer;
}

.gift-amount-chip input:checked + span{
  background:#c7a86a;
  color:#fff;
  border-color:#c7a86a;
}

.gift-amount-chip--exact span{
  border-color:#7cab88;
  background:#edf7ef;
  color:#4f7d5b;
}

.gift-alert{
  padding:14px 16px;
  border-radius:14px;
  margin-bottom:16px;
  font-weight:600;
}

.gift-alert-success{
  background:#edf7ef;
  color:#356746;
}

.gift-alert-error{
  background:#fdecec;
  color:#9d2f2f;
}

.gift-actions-bottom{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

@media (max-width: 980px){
  .gift-card-public{
    grid-template-columns:1fr;
  }

  .gift-card-public__body{
    padding:16px;
  }

  .gift-card-public__amounts,
  .gift-page-meta,
  .gift-form-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .gift-page-wrap{
    padding:18px 12px 32px;
  }

  .gift-page-card{
    padding:16px;
  }

  .gift-card-public__title,
  .gift-page-title{
    font-size:26px;
  }

  .gift-card-public__amounts{
    gap:12px;
  }

  .gift-card-public__actions,
  .gift-actions-bottom{
    flex-direction:column;
  }

  .gift-btn-primary,
  .gift-btn-secondary,
  .gift-btn-disabled,
  .gift-actions-bottom .btn,
  .gift-actions-bottom a{
    width:100%;
  }
}
