/* BACKDROP */
.gift-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  z-index:999;
}

/* BOTTOM SHEET */
.gift-picker{
  position:fixed;
  bottom:-100%;
  left:0;
  right:0;
  height:60%;
  background:#141414;
  border-radius:20px 20px 0 0;
  transition:.3s ease;
  z-index:1000;
  display:flex;
  flex-direction:column;
}

/* HEADER */
.gift-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 18px;
  border-bottom:1px solid #1f1f1f;
  font-weight:600;
}

.gift-header button{
  background:none;
  border:none;
  color:#fff;
  font-size:18px;
}

/* GRID */
.gift-grid{
  padding:16px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  overflow-y:auto;
}

/* GIFT CARD */
.gift-item{
  background:#1c1c1c;
  border-radius:14px;
  padding:10px;
  text-align:center;
  cursor:pointer;
  transition:.2s;
}

.gift-item:hover{
  background:#ff2f6d;
}

.gift-item img,
.gift-item video{
  width:100%;
  height:60px;
  object-fit:contain;
}

.gift-name{
  font-size:12px;
  margin-top:6px;
}

.gift-cost{
  font-size:11px;
  opacity:.7;
}

/* ACTIVE */
.gift-picker.show{
  bottom:0;
}

.gift-backdrop.show{
  display:block;
}
