body {
  margin: 0;
  background: #0a0a0a;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.result-content.loading-blur {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s ease;
}

.result-page {
  margin-top: 3vw;
  display: none;
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(180deg, #0a0a0a, black);
  padding: 9vh 5vw 5vh;
}
.result-page.visible {
  display: block;
}

.result-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.result-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #70fa00;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.summary-header {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.summary-header h3 {
  grid-column: span 2;
  font-size: 1.8rem;
  text-align: left;
  color: #fff;
  margin-bottom: 0.8rem;
  border-left: 5px solid #70fa00;
  padding-left: 0.8rem;
}

.summary-bmi-box {
  background: #141414;
  border-radius: 1.2rem;
  padding: 1.5rem;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.7);
  text-align: center;
}
.summary-bmi-box .bmi-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #70fa00;
  display: block;
}
.summary-bmi-box .bmi-label {
  font-size: 1rem;
  color: #fff;
  margin-top: 0.4rem;
}
.summary-bmi-box .bmi-bar-container {
  margin-top: 0.8rem;
}
.summary-bmi-box .bmi-bar-container .bmi-bar {
  height: 0.8rem;
  background: linear-gradient(to right, #1e90ff, #4caf50, #ffc107, #f44336);
  border-radius: 0.8rem;
  position: relative;
}
.summary-bmi-box .bmi-bar-container .bmi-bar .bmi-indicator {
  position: absolute;
  top: -0.3rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #70fa00;
  box-shadow: 0 0 0.8rem #70fa00;
  transform: translateX(-50%);
}
.summary-bmi-box .bmi-bar-container .bmi-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #ccc;
  margin-top: 0.2rem;
}

.summary-stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.summary-stats-grid .summary-stat-box {
  flex: 1 1 200px;
  background: linear-gradient(160deg, #141414, rgb(25.1, 25.1, 25.1));
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.summary-stats-grid .summary-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.7);
}
.summary-stats-grid .summary-stat-box i {
  font-size: 1.9rem;
  color: #70fa00;
  margin-bottom: 0.8rem;
}
.summary-stats-grid .summary-stat-box .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}
.summary-stats-grid .summary-stat-box .stat-label {
  font-size: 0.9rem;
  color: #ccc;
}

.goals-section {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.goals-section .goal {
  background: linear-gradient(160deg, #141414, rgb(22.55, 22.55, 22.55));
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}
.goals-section .goal:hover {
  transform: translateY(-5px);
  border-color: rgba(112, 250, 0, 0.7);
}

.diet-plan-preview {
  padding: 3rem 2.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(145deg, #141414, rgb(4.7, 4.7, 4.7));
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.7);
  text-align: center;
}
.diet-plan-preview h3#diet-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #70fa00;
  margin-bottom: 0.8rem;
}
.diet-plan-preview #diet-details {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.diet-plan-preview #diet-details span {
  font-weight: bold;
  color: #70fa00;
}
.diet-plan-preview .diet-plan-content {
  max-height: 400px;
  overflow-y: auto;
  height: 7.9vw;
  padding: 1.5rem;
  border-radius: 0.8rem;
  background: rgba(10, 10, 10, 0.6);
  font-size: 0.9vw;
  line-height: 1.5;
  filter: blur(3px);
  user-select: none;
  pointer-events: none;
  color: #ccc;
}

.product-card {
  margin-top: 2rem;
  display: flex;
  height: 23vw;
  flex-wrap: wrap;
  border-radius: 1rem;
  overflow: hidden;
  background: #141414;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.7);
}
.product-card .product-image {
  flex: 1 1 35%;
  max-height: 23vw;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .product-info {
  flex: 1 1 65%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.product-card .product-info h3 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #70fa00;
}
.product-card .product-info p {
  font-size: 1.3rem;
  color: #fff;
  margin: 0.4rem 0 0.6rem;
  margin-top: 1vw;
}
.product-card .product-info .product-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: #70fa00;
  margin: 0.8rem 0;
  margin-top: 1.5vw;
}
.product-card .product-info .cta-button {
  display: inline-block;
  padding: 0.8rem 1rem;
  border-radius: 0.7vw;
  margin-top: 1vw;
  width: 19vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #70fa00, rgb(114.2952, 255, 0.1));
  color: #0a0a0a;
  font-size: 0.9vw;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.product-card .product-info .cta-button:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
}
.product-card .product-info .legal-note {
  margin-top: 2vw;
  font-size: 0.9rem;
  color: #ccc;
}
.product-card .product-info .legal-note a {
  color: #70fa00;
}

@media (max-width: 800px) {
  .result-page {
    padding: 4vh 5vw;
    margin-top: 14vw;
  }
  .result-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .summary-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
  }
  .summary-header h3 {
    font-weight: bold !important;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    border-left: none;
    padding-left: 0;
  }
  .summary-bmi-box {
    width: 100%;
    max-width: 360px;
    padding: 1.2rem;
    text-align: center;
    margin: 0 auto;
  }
  .summary-bmi-box .bmi-number {
    font-size: 1.8rem;
  }
  .summary-bmi-box .bmi-label {
    font-size: 0.9rem;
  }
  .summary-bmi-box .bmi-bar-container {
    margin-top: 0.6rem;
  }
  .summary-bmi-box .bmi-bar-container .bmi-bar {
    height: 0.6rem;
  }
  .summary-bmi-box .bmi-bar-container .bmi-labels {
    font-size: 0.7rem;
  }
  .summary-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    width: 100%;
    max-width: 360px;
    margin-top: 0.5rem;
  }
  .summary-stats-grid .summary-stat-box {
    background: linear-gradient(160deg, #141414, rgb(25.1, 25.1, 25.1));
    border-radius: 0.8rem;
    padding: 1rem 0.6rem;
    text-align: center;
  }
  .summary-stats-grid .summary-stat-box i {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }
  .summary-stats-grid .summary-stat-box .stat-value {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
  }
  .summary-stats-grid .summary-stat-box .stat-label {
    font-size: 0.75rem;
    line-height: 1.2;
    color: #ccc;
  }
  .summary-stats-grid .summary-stat-box:last-child {
    grid-column: span 2;
  }
  .goals-section {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin: 2rem 0;
    margin-top: -4vw;
  }
  .goals-section .goal {
    padding: 0.9rem;
    font-size: 0.95rem;
  }
  .diet-plan-preview {
    padding: 1.5rem;
  }
  .diet-plan-preview h3#diet-title {
    font-size: 1.3rem;
  }
  .diet-plan-preview #diet-details {
    font-size: 1rem;
  }
  .diet-plan-preview .diet-plan-content {
    max-height: 220px;
    font-size: 0.85rem;
    line-height: 1.4;
    height: auto;
    display: none !important;
  }
  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 1rem;
  }
  .product-card .product-image {
    width: 100%;
    max-width: 320px;
    max-height: 200px;
    margin: 0 auto 1rem;
  }
  .product-card .product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.8rem;
  }
  .product-card .product-info {
    padding: 0.5rem;
    text-align: center;
  }
  .product-card .product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .product-card .product-info p {
    font-size: 0.8rem;
    margin: 0.3rem 0 0.5rem;
  }
  .product-card .product-info .product-price {
    font-size: 1.3rem;
    margin: 0.8rem 0;
  }
  .product-card .product-info .cta-button {
    margin-top: 2vw !important;
    width: 100%;
    max-width: 260px;
    margin: 1rem auto 0;
    padding: 1.6rem;
    font-size: 4vw !important;
    border-radius: 10px;
  }
  .product-card .product-info .legal-note {
    margin-top: 0.8rem;
    font-size: 0.7rem;
  }
}

/*# sourceMappingURL=quiz-result.css.map */
