@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;700&display=swap");

:root {
  --bg-base: #030712;
  --bg-accent: #0d1333;
  --bg-highlight: #172554;
  --glass: rgba(255, 255, 255, 0.16);
  --glass-strong: rgba(255, 255, 255, 0.28);
  --border-glass: rgba(255, 255, 255, 0.35);
  --text-primary: #f8fbff;
  --text-secondary: #cbd5ff;
  --glow: rgba(82, 123, 255, 0.45);
}

a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.3rem;
}
a:hover {
  color: #7dd3fc;
}
body {
  font-family: "Baloo 2", Arial, sans-serif;
  font-size: 1.2rem;
  background: radial-gradient(circle at 20% 20%, #1f3b82, #090a1a 65%);
  background-attachment: fixed;
  margin: 0;
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.12), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(255, 123, 196, 0.18), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(64, 255, 213, 0.15), transparent 40%);
  z-index: 0;
  pointer-events: none;
}
header {
  background: rgba(3, 7, 18, 0.35);
  padding: 1.4rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(3, 7, 18, 0.4);
}
nav a {
  margin-right: 1rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
nav a:last-child {
  margin-right: 0;
}
nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
main {
  max-width: 1200px;
  margin: 0 auto;
  background: none;
  padding: 2rem 1.5rem 4rem;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.product-list {
  list-style: none;
  padding: 0;
}
.product-list li {
  margin: 1.2rem 0;
  font-size: 1.3rem;
  background: #f7faff;
  border-radius: 8px;
  overflow: hidden;
}
.product-list li:hover {
  background: #eaf2ff;
}
button {
  background: linear-gradient(120deg, #ff7eb3, #ff758c 40%, #f9cb28 100%);
  color: #1f0930;
  border: none;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 15px 30px rgba(255, 118, 171, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  letter-spacing: 0.5px;
}
button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 118, 171, 0.45);
  filter: brightness(1.05);
}
input[type="text"] {
  padding: 0.5rem 0.8rem;
  border: 1px solid #cfd8e3;
  border-radius: 5px;
  font-size: 1rem;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  background: #f9fbfd;
  transition: border 0.2s;
}
input[type="text"]:focus {
  border: 1.5px solid #0077ff;
  outline: none;
}
.order-list {
  list-style: none;
  padding: 0;
}
.order-list li {
  margin: 0.7rem 0;
  font-size: 1.1rem;
  background: #f7faff;
  border-radius: 8px;
  padding: 0.7rem 1.1rem;
}
.logo-img,
.basket-img {
  transition: transform 0.22s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.logo-img:hover,
.basket-img:hover {
  transform: rotate(-3deg) scale(1.04);
  cursor: pointer;
}
.logo-img {
  height: 300px;
  margin-right: 1rem;
  vertical-align: middle;
  display: inline-block;
}
.basket-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.basket-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

.products-text {
  display: block;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

.basket-img {
  height: 300px;
  vertical-align: middle;
  display: block;
}
.products-title {
  text-align: center;
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.product-link {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}
.product-link:hover {
  color: #0077ff;
}
.product-desc {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 1.2rem;
  font-style: italic;
}
#successMsg {
  color: green;
}
.header-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
}
.product-li-link {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  transition: background 0.2s, box-shadow 0.25s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.product-li-link:hover {
  background: #eaf2ff;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.emoji-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 3rem 0 0 0;
}
.emoji-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(14, 165, 233, 0.35));
  border-radius: 26px;
  font-size: 4.5rem;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.emoji-box:hover {
  box-shadow: 0 35px 80px rgba(14, 165, 233, 0.4);
  transform: translateY(-6px) scale(1.05);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.5), rgba(236, 72, 153, 0.55));
}
.content-box {
  width: min(680px, 95vw);
  margin: 3rem auto 0 auto;
  background: var(--glass);
  border-radius: 28px;
  border: 1px solid var(--border-glass);
  box-shadow: 0 30px 80px rgba(5, 9, 20, 0.45);
  padding: 2.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(22px);
}
.admin-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem 4rem;
}
.admin-card {
  width: min(820px, 95vw);
  align-items: stretch;
}
.product-hidden {
  display: none !important;
}
.admin-dashboard-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.admin-eyebrow {
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.2rem;
  margin: 0;
  color: #888;
}
.admin-hint {
  margin-top: 1rem;
  font-size: 1rem;
  color: #777;
}
.admin-code {
  font-family: "Courier New", Courier, monospace;
  background: #f3f3f3;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}
.admin-error {
  color: #c62828;
  min-height: 1.5rem;
}
.admin-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 1.5rem;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.admin-table th,
.admin-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.admin-table th {
  background: #fafafa;
  font-weight: 600;
}
.admin-emoji {
  font-size: 1.8rem;
}
.secondary-btn {
  background: #fff;
  color: #222;
  border: 2px solid #222;
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.secondary-btn:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}
.vibes-toggle {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  background: rgba(8, 15, 40, 0.85);
  color: #f8fbff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.vibes-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.55);
}
.fireworks-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 900;
  overflow: visible;
}
.firework-particle {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, hsl(var(--hue, 200), 90%, 80%) 0%, hsl(var(--hue, 200), 90%, 55%) 60%);
  opacity: 0;
  animation: firework-pop 1.2s ease-out forwards;
  box-shadow: 0 0 15px hsla(var(--hue, 200), 100%, 70%, 0.8);
}
@keyframes firework-pop {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.2);
  }
  70% {
    opacity: 1;
    transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, 0px))) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, 0px))) scale(0.2);
  }
}
body.vibes-on .vibes-toggle {
  background: rgba(34, 197, 94, 0.85);
  color: #041222;
}
@media (max-width: 640px) {
  .vibes-toggle {
    right: 1rem;
    bottom: 1rem;
    font-size: 0.85rem;
  }
  header {
    padding: 1rem;
  }
}
.toggle-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.toggle-switch input[type="checkbox"] {
  appearance: none;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #ddd;
  position: relative;
  transition: background 0.2s;
  cursor: pointer;
  border: 2px solid #bbb;
}
.toggle-switch input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 1px;
  left: 1px;
  transition: transform 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.toggle-switch input[type="checkbox"]:checked {
  background: #4caf50;
  border-color: #3a8c3f;
}
.toggle-switch input[type="checkbox"]:checked::after {
  transform: translateX(20px);
}
.basket-indicator {
  position: absolute;
  bottom: 4rem;
  right: 3rem;
  background: #e53935;
  color: #fff;
  border: 2.5px solid #111;
  border-radius: 50%;
  min-width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.18);
  z-index: 2;
  pointer-events: none;
}
.basket-emoji {
  font-size: 2.5rem;
  vertical-align: middle;
  display: inline-block;
  margin-right: 0.5rem;
}
#basketList li {
  background: none !important;
}
.cart-buttons-row {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
.cart-action-btn,
.cart-buttons-row button {
  background: #e53935;
  color: #fff;
  border: 2.5px solid #111;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.18);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  letter-spacing: 0.5px;
}
.cart-action-btn:hover,
.cart-buttons-row button:hover {
  background: #b71c1c;
  color: #fff;
  box-shadow: 0 4px 16px rgba(229, 57, 53, 0.22);
  transform: scale(1.04);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #cfd8e3;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-group input:focus {
  border-color: #0077ff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.1);
}
.bundles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bundle-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.bundle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.bundle-emojis {
  font-size: 3rem;
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.bundle-desc {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.bundle-card h2 {
  color: #222;
  margin: 0;
  font-size: 1.8rem;
}

.bundles-promo {
  text-align: center;
  padding: 2rem;
  margin: 3rem auto;
  background: #fff;
  border-radius: 18px;
  max-width: 800px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bundles-promo:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.bundle-link {
  text-decoration: none;
  color: inherit;
}

.bundle-link h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.8rem;
}

.bundle-link p {
  margin: 0;
  font-size: 1.1rem;
  color: #555;
}

.quiz-promo {
  margin: 3rem auto;
  padding: 2rem;
  max-width: 800px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.quiz-promo:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.25);
}

.quiz-promo .quiz-link {
  color: white;
  text-decoration: none;
}

.quiz-promo h2 {
  margin: 0 0 1rem;
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quiz-promo p {
  margin: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.2s, transform 0.2s;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-links a:hover {
  transform: scale(1.05);
  background-color: rgba(0,0,0,0.05);
}

.nav-links a.active {
  color: #0077ff;
  font-weight: 700;
}

.nav-links .quiz-link {
  color: #2ecc71;
  background-color: rgba(46, 204, 113, 0.1);
}

.nav-links .quiz-link:hover {
  color: #27ae60;
  background-color: rgba(46, 204, 113, 0.2);
}

/* Quiz Styles */
.quiz-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quiz-section {
    text-align: center;
}

.quiz-intro {
    font-size: 1.2rem;
    color: #666;
    margin: 1.5rem 0;
}

.start-button, .quiz-option, .retry-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    margin: 0.5rem;
    transition: background-color 0.3s;
}

.start-button:hover, .quiz-option:hover, .retry-button:hover {
    background-color: #45a049;
}

.quiz-option {
    display: block;
    width: 80%;
    margin: 1rem auto;
    background-color: #f8f8f8;
    color: #333;
    border: 2px solid #ddd;
}

.quiz-option:hover {
    background-color: #e8e8e8;
    border-color: #4CAF50;
}

.question {
    font-size: 1.3rem;
    color: #333;
    margin: 2rem 0;
}

.personality-description {
    font-size: 1.2rem;
    color: #666;
    margin: 1.5rem 0;
    line-height: 1.6;
}

.recommendations {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.recommendations ul {
    list-style: none;
    padding: 0;
}

.recommendations li {
    margin: 0.5rem 0;
}

.recommendations a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

.recommendations a:hover {
    text-decoration: underline;
}

.bundles-promo p {
  font-size: 1rem;
  color: #555;
  margin: 0.5rem 0 0;
}
.bundles-promo:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}
.bundle-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.bundle-link h2 {
  margin: 0;
  font-size: 1.5rem;
}
.bundle-link p {
  margin: 0.5rem 0 0;
  color: #555;
}
.quiz-promo {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.quiz-promo:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}
.quiz-promo .quiz-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.quiz-promo h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}
.quiz-promo p {
  font-size: 1.1rem;
  color: #555;
  margin: 0.5rem 0 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #0077ff;
}
.nav-links a.active {
  font-weight: 700;
  color: #0056b3;
}
.nav-links .quiz-link {
  background: linear-gradient(90deg, #ffe259 0%, #ffa751 100%);
  color: #7a4c00;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
}
.nav-links .quiz-link:hover {
  background: linear-gradient(90deg, #ffa751 0%, #ffe259 100%);
  color: #a85c00;
}

/* Personality Quiz Styles */
.quiz-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}
.quiz-section {
  margin-bottom: 2rem;
}
.quiz-intro {
  text-align: center;
  margin-bottom: 2rem;
}
.start-button,
.quiz-option,
.retry-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(90deg, #ffe259 0%, #ffa751 100%);
  color: #7a4c00;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.start-button:hover,
.quiz-option:hover,
.retry-button:hover {
  background: linear-gradient(90deg, #ffa751 0%, #ffe259 100%);
  transform: scale(1.05);
}
.quiz-option {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  background: #f7faff;
  color: #333;
  text-align: left;
}
.quiz-option:hover {
  background: #eaf2ff;
}
.question {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.personality-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.recommendations {
  margin-top: 2rem;
}
.recommendations ul {
  list-style: none;
  padding: 0;
}
.recommendations li {
  margin-bottom: 1rem;
}
.recommendations a {
  display: block;
  padding: 1rem;
  background: #f7faff;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s, box-shadow 0.2s;
}
.recommendations a:hover {
  background: #eaf2ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }
  header {
    padding: 1rem;
  }
  .header-center {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  .nav-links {
    order: 2; /* Change order to show links after basket */
    flex-direction: column;
    gap: 0.8rem;
  }
  .basket-link {
    order: 1; /* Show basket before nav links */
  }
  .logo-img {
    height: 120px;
    margin-right: 0;
  }
  .basket-img {
    height: 120px;
  }
  .basket-text,
  .products-text {
    display: none; /* Hide text on small screens */
  }
  .products-title {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .emoji-list {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .emoji-box {
    width: 120px;
    height: 120px;
    font-size: 3rem;
  }
  .content-box {
    width: 90%;
    margin: 2rem auto;
    padding: 1.5rem;
  }
  .basket-indicator {
    bottom: 1rem;
    right: 1rem;
    min-width: 1.8rem;
    height: 1.8rem;
    font-size: 1rem;
  }
  .bundles-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .bundle-card {
    width: 90%;
    margin: 0 auto;
  }
  .quiz-container {
    width: 90%;
    margin: 2rem auto;
    padding: 1.5rem;
  }
  .quiz-promo h2,
  .bundles-promo h2 {
    font-size: 1.5rem;
  }
  .quiz-promo p,
  .bundles-promo p {
    font-size: 1rem;
  }
}

.facts-section {
  margin-top: 3rem;
  padding: 2rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.facts-section h3 {
  color: #222;
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  text-align: center;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.nutrition-item {
  text-align: center;
  padding: 1rem;
  background: #f7faff;
  border-radius: 12px;
  transition: transform 0.2s;
}

.nutrition-item:hover {
  transform: translateY(-3px);
}

.nutrition-value {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #e53935;
  margin-bottom: 0.5rem;
}

.nutrition-label {
  color: #666;
  font-size: 1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.benefits-list li {
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
  background: #f7faff;
  border-radius: 8px;
  color: #444;
  transition: transform 0.2s;
  position: relative;
  padding-left: 2.5rem;
}

.benefits-list li:before {
  content: "✨";
  position: absolute;
  left: 1rem;
}

.benefits-list li:hover {
  transform: translateX(5px);
}

.facts-carousel {
  position: relative;
  height: 120px;
  margin: 2rem 0;
  overflow: hidden;
}

.fact-card {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f7faff;
  border-radius: 12px;
  padding: 1.5rem;
  box-sizing: border-box;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.fact-card.active {
  opacity: 1;
  transform: translateX(0);
}

.fact-card p {
  margin: 0;
  font-size: 1.1rem;
  color: #444;
  text-align: center;
  line-height: 1.4;
}

.season-info {
  text-align: center;
  padding: 1.5rem;
  background: #f7faff;
  border-radius: 12px;
  margin-top: 2rem;
}

.season-info p {
  margin: 0;
  color: #444;
  font-size: 1.2rem;
}
