@charset "UTF-8";
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;
}

.transformation-visual {
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.555), rgba(10, 10, 10, 0.9));
  padding: 2.5rem 1rem;
  border-radius: 1.5rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.6);
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
  /* --- RESPONSYWNOŚĆ (CLEAN MOBILE) --- */
}
.transformation-visual.visible {
  opacity: 1;
  transform: translateY(0);
}
.transformation-visual h3 {
  font-size: 1.9rem;
  color: #70fa00;
  font-weight: 800;
  margin-bottom: 2.2rem;
  text-transform: uppercase;
}
.transformation-visual h3 i {
  margin-right: 0.6rem;
  color: #70fa00;
}
.transformation-visual .transformation-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.transformation-visual .transformation-wrapper .transformation-side {
  flex: 1;
  max-width: 280px;
  text-align: center;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.5);
  background: linear-gradient(160deg, #141414, rgb(25.1, 25.1, 25.1));
}
.transformation-visual .transformation-wrapper .transformation-side img {
  width: 4vw;
  height: 8vw;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}
.transformation-visual .transformation-wrapper .transformation-side h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.transformation-visual .transformation-wrapper .transformation-side ul.body-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}
.transformation-visual .transformation-wrapper .transformation-side ul.body-stats li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  color: #ccc;
  font-size: 0.95rem;
}
.transformation-visual .transformation-wrapper .transformation-side ul.body-stats li strong {
  font-weight: 700;
  min-width: 80px;
  text-align: right;
}
.transformation-visual .transformation-wrapper .transformation-side.now {
  border: 1px solid rgba(255, 68, 68, 0.4);
}
.transformation-visual .transformation-wrapper .transformation-side.now h4 {
  color: #ff4444;
}
.transformation-visual .transformation-wrapper .transformation-side.now strong {
  color: #ff4444;
}
.transformation-visual .transformation-wrapper .transformation-side.future {
  border: 1px solid rgba(112, 250, 0, 0.4);
}
.transformation-visual .transformation-wrapper .transformation-side.future h4 {
  color: #70fa00;
}
.transformation-visual .transformation-wrapper .transformation-side.future strong {
  color: #70fa00;
}
.transformation-visual .transformation-wrapper .transformation-arrow {
  align-self: center;
  font-size: 2.2rem;
  color: #70fa00;
  animation: arrowPulse 2s infinite;
}
.transformation-visual .transformation-chart-container {
  width: 100%;
  max-width: 700px;
  margin: 3rem auto 0;
  background: rgba(10, 10, 10, 0.95);
  border-radius: 1.2rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.6);
  padding: 1.5rem 1rem;
  position: relative;
}
.transformation-visual .transformation-chart-container canvas {
  width: 100% !important;
  height: 300px !important;
  display: block;
  border-radius: 1rem;
}
.transformation-visual .time-estimate {
  font-size: 1rem;
  color: #ccc;
  margin: -1.5rem 0 2rem 0;
  font-style: italic;
  text-align: center;
  opacity: 0.9;
  transition: opacity 0.5s ease;
}
.transformation-visual .time-estimate.visible {
  opacity: 1;
}
.transformation-visual .calorie-evolution {
  margin-top: 2.5rem;
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
  border-radius: 1.2rem;
  padding: 1.5rem 1rem;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.5);
  text-align: center;
}
.transformation-visual .calorie-evolution h4 {
  color: #70fa00;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.transformation-visual .calorie-evolution ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.transformation-visual .calorie-evolution ul li {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.transformation-visual .calorie-evolution ul li strong {
  color: #fff;
  font-weight: 700;
}
.transformation-visual .calorie-evolution ul li span {
  color: #70fa00;
  font-weight: 600;
  margin-right: 0.3rem;
}
@media (max-width: 800px) {
  .transformation-visual .transformation-visual h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .transformation-visual .transformation-visual .transformation-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .transformation-visual .transformation-visual .transformation-wrapper .transformation-arrow {
    transform: rotate(90deg);
    font-size: 1.8rem;
    margin: 1rem 0;
  }
  .transformation-visual .transformation-visual .transformation-wrapper .transformation-side {
    width: 95%;
    max-width: 350px;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 0.8rem;
  }
  .transformation-visual .transformation-visual .transformation-wrapper .transformation-side h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .transformation-visual .transformation-visual .transformation-wrapper .transformation-side ul.body-stats li {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  .transformation-visual .transformation-visual .transformation-wrapper .transformation-side ul.body-stats li strong {
    min-width: 60px;
  }
  .transformation-visual .transformation-visual .transformation-chart-container {
    margin-top: 1.5rem;
    padding: 1rem;
    box-shadow: none;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(112, 250, 0, 0.1);
  }
  .transformation-visual .transformation-visual .transformation-chart-container canvas {
    height: 240px !important;
  }
  .transformation-visual .calorie-evolution {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(20, 20, 20, 0.85);
    box-shadow: none;
    text-align: center;
  }
  .transformation-visual .calorie-evolution h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  .transformation-visual .calorie-evolution ul li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
}
.transformation-visual .time-estimate {
  font-size: 0.85rem;
  margin: -1rem 0 1.5rem 0;
}
@keyframes arrowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}
@media (max-width: 800px) {
  .transformation-visual .transformation-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .transformation-visual .transformation-wrapper .transformation-arrow {
    transform: rotate(90deg);
  }
}

.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%);
  left: 0%;
  transition: left 1.5s ease-out;
}
.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;
}

.plan-info-section {
  margin: 4rem 0 4rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.8), rgba(10, 10, 10, 0.9));
  border-radius: 1.5rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.plan-info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 140%;
  height: 100%;
  background: radial-gradient(circle at top center, rgba(112, 250, 0, 0.08), transparent 50%);
  z-index: 0;
}
.plan-info-section h3 {
  position: relative;
  z-index: 1;
  font-size: 1.9rem;
  font-weight: 800;
  color: #70fa00;
  margin-bottom: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.plan-info-section h3 i {
  margin-right: 0.6rem;
  color: #70fa00;
}
.plan-info-section h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #70fa00;
  border-radius: 10px;
  margin: 0.8rem auto 0;
  opacity: 0.8;
}
.plan-info-section .plan-info-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}
.plan-info-section .plan-info-item {
  background: linear-gradient(160deg, #141414, rgb(25.1, 25.1, 25.1));
  border-radius: 1rem;
  padding: 1.6rem 1.2rem;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}
.plan-info-section .plan-info-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.plan-info-section .plan-info-item i {
  font-size: 2rem;
  color: #70fa00;
  margin-bottom: 0.6rem;
  display: block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.plan-info-section .plan-info-item h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.plan-info-section .plan-info-item p {
  font-size: 0.95rem;
  color: #ccc;
}
.plan-info-section .plan-info-item:hover {
  transform: translateY(-6px);
}
.plan-info-section .plan-info-item:hover i {
  transform: scale(1.15);
  color: rgb(139.632, 255, 46);
}

.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;
}

.product-card {
  position: relative;
}

/* 🖥️ DESKTOP – mały badge w prawym dolnym rogu */
.social-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(112, 250, 0, 0.1);
  border: 1px solid rgba(112, 250, 0, 0.3);
  color: #70fa00;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.6rem;
  box-shadow: 0 0 0.6rem rgba(112, 250, 0, 0.2);
  width: fit-content;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  animation: fadePulse 2.5s infinite;
  transition: all 0.3s ease;
}
.social-proof-badge i {
  font-size: 1rem;
  color: #70fa00;
}
.social-proof-badge span {
  color: #fff;
  font-weight: 500;
}
.social-proof-badge span #buyers-count {
  color: #70fa00;
  font-weight: 700;
}
.social-proof-badge:hover {
  transform: scale(1.04);
  background: rgba(112, 250, 0, 0.2);
}

/* 📱 MOBILE – subtelny, mniejszy banner pod przyciskiem CTA */
@media (max-width: 800px) {
  .social-proof-badge {
    position: static; /* przestaje być w rogu */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: linear-gradient(90deg, rgba(112, 250, 0, 0.12), rgba(112, 250, 0, 0.05));
    border: 1px solid rgba(112, 250, 0, 0.3);
    border-radius: 0.6rem;
    margin-top: 1rem; /* więcej przestrzeni nad bannerem */
    margin-bottom: 1rem; /* dodatkowy oddech od przycisku CTA */
    padding: 0.65rem 1rem; /* mniejsze wnętrze */
    box-shadow: 0 0 0.2rem rgba(112, 250, 0, 0.25);
    font-size: 0.85rem; /* mniejsza czcionka */
    font-weight: 600;
    animation: fadePulse 3s infinite ease-in-out;
    text-align: center;
  }
  .social-proof-badge i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
  }
  .social-proof-badge span {
    color: #fff;
    line-height: 1.3;
  }
  .social-proof-badge span #buyers-count {
    color: #70fa00;
    font-weight: 700;
  }
  .product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product-info .cta-button {
    margin-bottom: 0rem !important; /* więcej przestrzeni pod przyciskiem */
  }
}
@keyframes fadePulse {
  0% {
    box-shadow: 0 0 0.6rem rgba(112, 250, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 1rem rgba(112, 250, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 0.6rem rgba(112, 250, 0, 0.3);
  }
}
@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;
  }
  .plan-info-section {
    margin: 2rem 0 2rem;
    padding: 2rem 1.2rem;
  }
  .plan-info-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.6rem;
  }
  .plan-info-section h3::after {
    width: 60px;
    height: 2px;
    margin-top: 0.6rem;
  }
  .plan-info-section .plan-info-grid {
    gap: 1rem;
  }
  .plan-info-section .plan-info-item {
    padding: 1.2rem;
  }
  .plan-info-section .plan-info-item i {
    font-size: 1.6rem;
  }
  .plan-info-section .plan-info-item h4 {
    font-size: 1rem;
  }
  .plan-info-section .plan-info-item p {
    font-size: 0.85rem;
  }
  .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 */
