.home-page {
  padding-bottom: 40px;
}

/* CARD PROFILO */

.profile-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 270px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  border: 1px solid #f1f1f1;
}

.body-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-right: 1px solid #eeeeee;
}

.body-model {
  position: relative;
  width: 86px;
  height: 190px;
}

.head {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f7f7f7, #d8d8d8);
  margin: 0 auto 8px;
}

.torso {
  width: 58px;
  height: 76px;
  background: linear-gradient(145deg, #ffc928, #f2aa00);
  border-radius: 24px 24px 18px 18px;
  margin: 0 auto;
  box-shadow: inset 0 -12px 18px rgba(255, 255, 255, 0.3);
}

.arms::before,
.arms::after {
  content: "";
  position: absolute;
  top: 58px;
  width: 16px;
  height: 78px;
  background: linear-gradient(145deg, #f7f7f7, #d7d7d7);
  border-radius: 18px;
}

.arms::before {
  left: 0;
}

.arms::after {
  right: 0;
}

.legs::before,
.legs::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 22px;
  height: 76px;
  background: linear-gradient(145deg, #ffc928, #f2aa00);
  border-radius: 18px;
}

.legs::before {
  left: 22px;
}

.legs::after {
  right: 22px;
}

.profile-info {
  position: relative;
  padding: 26px 22px;
}

.edit-btn {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #f1d686;
  background: #fffdf6;
  font-size: 22px;
  color: #777;
}

.profile-info h1 {
  margin: 0 0 12px;
  font-size: 29px;
  font-weight: 400;
}

.profile-info h1 strong {
  font-weight: 800;
}

.section-label {
  margin: 0 0 20px;
  font-size: 13px;
  color: #777;
  text-transform: uppercase;
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eeeeee;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff3cc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2b600;
  font-weight: 900;
}

.stat-box span {
  display: block;
  font-size: 12px;
  color: #444;
}

.stat-box strong {
  display: block;
  margin-top: 3px;
  font-size: 19px;
}

/* CARD PASTO */

.daily-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr auto 24px;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(90deg, #fff9df, #fff);
  border: 1px solid #ffd45d;
}

.meal-main-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid #ffc928;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.meal-text p,
.meal-text h2,
.meal-text span {
  margin: 0;
}

.meal-text p {
  color: #555;
  font-size: 14px;
}

.meal-text h2 {
  font-size: 18px;
  margin: 2px 0;
}

.meal-text span {
  color: #333;
  font-size: 14px;
}

.meal-items {
  display: flex;
  gap: 8px;
}

.meal-items div {
  min-width: 68px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  text-align: center;
}

.meal-items strong,
.meal-items span {
  display: block;
}

.meal-items strong {
  font-size: 13px;
}

.meal-items span {
  font-size: 11px;
  color: #555;
}

.meal-arrow {
  border: none;
  background: transparent;
  font-size: 38px;
  line-height: 1;
}

/* MENU CIRCOLARE */

.orbit-area {
  position: relative;
  height: 470px;
  margin-top: 28px;
}

.orbit-line {
  position: absolute;
  left: 50%;
  top: 150px;
  width: 240px;
  height: 240px;
  transform: translateX(-50%);
  border: 2px dashed #cfcfcf;
  border-radius: 50%;
}

.circle-item,
.center-circle {
  position: absolute;
  border: none;
  background: #fff;
  color: #111;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.circle-item {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  font-weight: 800;
}

.circle-icon {
  font-size: 34px;
  margin-bottom: 6px;
}

.circle-item span {
  font-size: 15px;
}

.circle-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.circle-left {
  top: 95px;
  left: 18px;
}

.circle-right {
  top: 95px;
  right: 18px;
}

.circle-bottom-left {
  bottom: 20px;
  left: 18px;
}

.circle-bottom-right {
  bottom: 20px;
  right: 18px;
}

.center-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  left: 50%;
  top: 235px;
  transform: translate(-50%, -50%);
  background: linear-gradient(145deg, #ffd947, #f7b900);
  box-shadow: 0 20px 45px rgba(247, 185, 0, 0.35);
}

.center-icon {
  font-size: 34px;
  margin-bottom: 8px;
}

.center-circle span {
  display: block;
  font-size: 15px;
}

.center-circle strong {
  display: block;
  font-size: 22px;
}

/* MOBILE PICCOLO */

@media (max-width: 430px) {
  #app {
    padding: 14px;
  }

  .profile-card {
    min-height: 250px;
  }

  .profile-info {
    padding: 22px 16px;
  }

  .profile-info h1 {
    font-size: 25px;
  }

  .stat-box {
    min-height: 68px;
    padding: 9px;
  }

  .stat-icon {
    width: 32px;
    height: 32px;
  }

  .stat-box strong {
    font-size: 16px;
  }

  .daily-card {
    grid-template-columns: 48px 1fr 22px;
  }

  .meal-items {
    display: none;
  }

  .orbit-area {
    height: 450px;
  }

  .circle-item {
    width: 105px;
    height: 105px;
  }

  .center-circle {
    width: 140px;
    height: 140px;
  }
}