* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background-color: #e8decb;
  font-family: Georgia, serif;
}

/* Вся страница архива */
.kitchen-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* Область, внутри которой лежат полка и коробки */
.shelf-area {
  position: relative;
  width: min(900px, 95vw);
}

/* Сама полка */
.shelf-base {
  display: block;
  width: 100%;
  height: auto;
}

/* Все кликабельные коробочки */
.recipe-box {
  position: absolute;
  display: block;
  width: 25%;
  transform-origin: center bottom;
  transition: transform 0.18s ease, filter 0.18s ease;
  z-index: 2;
}

.recipe-box img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.recipe-box:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 8px 8px rgba(60, 40, 25, 0.28));
}

/* 
  Вот здесь ты вручную двигаешь коробочки.
  left — вправо/влево.
  top — вверх/вниз.
  width — размер коробки.
*/

.box-1 {
  left: 6%;
  top: 22.2%;
  width: 35%;
}

.box-2 {
  left: 41.9%;
  top: 19.2%;
  width: 33%;
}

.box-3 {
  left: 6.2%;
  top: 71.5%;
  width: 29.5%;
}

.box-4 {
  left: 37.2%;
  top: 72.5%;
  width: 28.2%;
}

.box-5 {
  left: 66%;
  top: 73%;
  width: 28%;
}