@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', Arial, sans-serif;
}

.jic-bg {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: url('../img/image.png') center/cover no-repeat;
  overflow: hidden;
}

.jic-back-btn {
  position: absolute;
  top: 40px;
  left: 35px;
  z-index: 2;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.jic-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 900px;
  background: rgba(214, 203, 203, 0.79);
  border-radius: 40px 40px 0 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 36px 40px 32px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.jic-dragbar {
  width: 80px;
  height: 8px;
  background: black;
  opacity: 0.5;
  border-radius: 8px;
  margin: 0 auto 18px auto;
}

.jic-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.jic-title {
  font-size: 2.1em;
  font-weight: bold;
  margin-bottom: 8px;
  color: #222;
}

.jic-ingredients-label {
  font-weight: bold;
  font-size: 1.15em;
  margin-bottom: 8px;
  color: #222;
}

.jic-ingredients-list {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
}

.jic-ingredient-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jic-ingredient-img img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.jic-rating {
  background: #eee;
  color: #222;
  border-radius: 18px;
  padding: 7px 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.jic-star {
  color: orange;
  font-size: 1.2em;
}

.jic-desc {
  font-family: 'Outfit', Arial, sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.6;
}

.jic-price {
  background: #5C4033;
  color: #F9F7F3;
  font-weight: bold;
  font-size: 1.25em;
  border-radius: 12px;
  padding: 12px 28px;
  display: inline-block;
  margin-top: 8px;
  align-self: flex-end;
  border: none;
  outline: none;
  box-shadow: none;
  transition: background 0.2s;
}
.jic-price:hover {
  background: #4B3621;
} 

.jic-ingredients-label,
.jic-ingredients-list {
  margin-left: 5px;
} 