:root {
  --accent-color: #73c9ad;
  --secondary-color: #1f6b4f;
  --secondary-dark: #174f3a;
  --dark-color: #1a1a1a;
  --light-color: #f2f8f4;
  --surface-color: #ffffff;
  --border-soft: #d8e7de;
  --body-text-color: #38413d;
  --light-text-color: #f7fffa;
  --dark-text-color: #133325;
  --bs-primary: #1f6b4f;
  --bs-primary-rgb: 31, 107, 79;
  --bs-secondary: #73c9ad;
  --bs-secondary-rgb: 115, 201, 173;
  --glow-soft: 0 0 0 rgba(115, 201, 173, 0);
  --glow-strong: 0 0 45px rgba(115, 201, 173, 0.45);
}

* {
  scroll-behavior: smooth;
}

body {
  background: #f8fcfa;
  color: var(--body-text-color);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px circle at var(--glow-x, 15%) var(--glow-y, 10%), rgba(115, 201, 173, 0.12), transparent 40%),
    radial-gradient(420px circle at 85% 70%, rgba(31, 107, 79, 0.08), transparent 45%);
  z-index: 0;
}

body>* {
  position: relative;
  z-index: 1;
}

.top-content {
  background: #1f6b4f;
}

.top-content a,
.top-content span {
  color: #f7fffa;
}

.main-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f6b4f;
  letter-spacing: 0.2px;
}

.main-menu ul.menu-list a {
  font-weight: 600;
  position: relative;
  transition: color 0.25s ease;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid #b8d8ca;
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  gap: 5px;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.hamburger .bar {
  width: 18px;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-menu.menu-open .hamburger .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.main-menu.menu-open .hamburger .bar:nth-child(2) {
  opacity: 0;
}

.main-menu.menu-open .hamburger .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-menu ul.menu-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.25s ease;
}

.main-menu ul.menu-list a:hover::after,
.main-menu ul.menu-list a:focus-visible::after {
  width: 100%;
}

.menu-item.active a {
  color: var(--accent-color) !important;
  text-shadow: 0 0 15px rgba(115, 201, 173, 0.55);
}

.page-hero {
  background: linear-gradient(120deg, #f2f8f4 0%, #d8efe6 100%);
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.25;
}

.page-hero::before {
  width: 280px;
  height: 280px;
  top: -70px;
  right: 5%;
  background: radial-gradient(circle at center, #73c9ad 0%, transparent 70%);
  animation: floatGlow 9s ease-in-out infinite;
}

.page-hero::after {
  width: 220px;
  height: 220px;
  bottom: -60px;
  left: -50px;
  background: radial-gradient(circle at center, #1f6b4f 0%, transparent 70%);
  animation: floatGlow 12s ease-in-out infinite reverse;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-hero p {
  font-size: 1.05rem;
  max-width: 860px;
}

.section-block {
  padding: 80px 0;
}

.section-block.alt {
  background: #f9fcfa;
}

.pathway-grid,
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.pathway-card,
.catalogue-card {
  border: 1px solid var(--border-soft);
  background: var(--surface-color);
  padding: 1.25rem;
  height: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(24, 78, 57, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}

.pathway-card:hover,
.catalogue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(24, 78, 57, 0.16);
  border-color: #b8d8ca;
}

.pathway-card::before,
.catalogue-card::before,
.info-panel::before,
.bundle-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(115, 201, 173, 0.65), rgba(31, 107, 79, 0.08), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.pathway-card:hover::before,
.catalogue-card:hover::before,
.info-panel:hover::before,
.bundle-card:hover::before {
  opacity: 0.65;
}

.catalogue-card figure {
  margin-bottom: 1rem;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f8f4;
  border-radius: 10px;
  overflow: hidden;
}

.catalogue-card img {
  max-height: 210px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.catalogue-card:hover img {
  transform: scale(1.04);
}

.catalogue-card.is-clickable-card {
  cursor: pointer;
}

.catalogue-card.is-clickable-card:focus-visible {
  outline: 2px solid #1f6b4f;
  outline-offset: 3px;
}

.catalogue-meta {
  font-size: 0.9rem;
  color: #577265;
}

.price {
  color: #1f6b4f;
  font-weight: 700;
}

.status-pill {
  display: inline-block;
  border: 1px solid #9fc5b4;
  color: #1f6b4f;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  margin-left: 0.4rem;
  border-radius: 999px;
}

.btn {
  border-radius: 10px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.btn.cta-glow {
  box-shadow: 0 0 0 rgba(115, 201, 173, 0);
  animation: pulseCta 2.5s ease-in-out infinite;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 64, 46, 0.22);
}

.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.store-toolbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  border: 1px solid #dbeae2;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 14px 35px rgba(19, 58, 42, 0.12);
}

.store-filter-btn {
  border: 1px solid #b8d8ca;
  background: #fff;
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  margin: 0.2rem;
  transition: all 0.2s ease;
}

.store-filter-btn.is-active,
.store-filter-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
  box-shadow: 0 0 18px rgba(31, 107, 79, 0.35);
}

.catalogue-card {
  opacity: 0;
  transform: translateY(18px);
  animation: cardIn 0.5s ease forwards;
}

.catalogue-card.is-hidden {
  display: none;
}

.catalogue-card h4 {
  font-size: 1.08rem;
}

.catalogue-card .card-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.mini-link {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.save-btn {
  border-radius: 999px;
  font-size: 0.82rem;
  padding: 0.3rem 0.75rem;
}

.save-btn.is-saved {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.add-cart-btn {
  border-radius: 999px;
  font-size: 0.82rem;
  padding: 0.3rem 0.75rem;
}

.cart-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
}

.cart-dock-btn {
  border: 0;
  border-radius: 999px;
  background: #1f6b4f;
  color: #fff;
  padding: 0.7rem 1rem;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(15, 53, 39, 0.28);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 96vw);
  height: 100dvh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-left: 1px solid #cfe5d9;
  box-shadow: -18px 0 34px rgba(14, 45, 33, 0.16);
  z-index: 90;
  transform: translateX(104%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-panel-header,
.cart-panel-footer {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #deece5;
}

.cart-panel-footer {
  border-top: 1px solid #deece5;
  border-bottom: 0;
  margin-top: auto;
}

.cart-lines {
  overflow: auto;
  padding: 0.85rem 1rem;
  display: grid;
  gap: 0.7rem;
}

.cart-line {
  border: 1px solid #d7e8df;
  border-radius: 10px;
  background: #fff;
  padding: 0.65rem 0.7rem;
}

.cart-line-top {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}

.qty-controls {
  display: inline-flex;
  border: 1px solid #c7dfd2;
  border-radius: 999px;
  overflow: hidden;
}

.qty-controls button {
  border: 0;
  background: #f2fbf6;
  color: #1f6b4f;
  width: 28px;
  height: 28px;
  font-weight: 700;
}

.qty-controls span {
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1f6b4f;
}

.cart-empty {
  border: 1px dashed #c8ded2;
  border-radius: 10px;
  padding: 0.9rem;
  color: #547163;
}

.checkout-form .form-control,
.checkout-form .form-select {
  border-radius: 10px;
}

.cart-totals {
  font-size: 0.92rem;
  color: #355647;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 14, 0.25);
  z-index: 85;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cart-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.store-result-count {
  color: #5a7468;
  font-weight: 600;
  margin-top: 0.7rem;
}

.currency-row {
  margin-top: 0.35rem;
  color: #4d655a;
  font-size: 0.84rem;
}

.small-note {
  color: #5a7468;
  font-size: 0.92rem;
}

.value-strip {
  background: #ecf8f2;
  border: 1px solid #cbe4d8;
  border-radius: 14px;
  padding: 1rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.75rem;
}

.value-item {
  background: #fff;
  border: 1px solid #d8e7de;
  border-radius: 10px;
  padding: 0.8rem;
}

.value-item h4 {
  font-size: 0.98rem;
  margin-bottom: 0.28rem;
}

.age-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.age-pill {
  border: 1px solid #c1ddcf;
  border-radius: 999px;
  background: #fff;
  color: var(--secondary-color);
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.age-pill:hover,
.age-pill.is-active {
  background: var(--secondary-color);
  color: #fff;
  box-shadow: 0 0 16px rgba(31, 107, 79, 0.3);
}

.age-switch-panels .catalogue-card {
  display: none;
}

.age-switch-panels .catalogue-card.is-visible {
  display: block;
}

.quote-card {
  border: 1px solid #d6e7de;
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
}

.quote-tag {
  font-size: 0.75rem;
  border: 1px solid #c3decf;
  color: #245a43;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}

.store-age-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.6rem;
}

.store-age-tab {
  border: 1px solid #c5ddd1;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  background: #fff;
  font-weight: 600;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.store-age-tab.is-active,
.store-age-tab:hover {
  background: #1f6b4f;
  color: #fff;
  border-color: #1f6b4f;
}

.collection-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.9rem;
}

.collection-tile {
  border: 1px solid #cde3d8;
  border-radius: 12px;
  padding: 1rem;
  background: linear-gradient(160deg, #ffffff, #f2fbf6);
  display: block;
  color: inherit;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.collection-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(22, 66, 49, 0.13);
}

.most-loved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.store-preview-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.store-preview-card figure {
  min-height: 300px;
  margin-bottom: 0.75rem;
}

.store-preview-card img {
  max-height: 280px;
}

.store-preview-card p:not(.price) {
  font-size: 0.9rem;
  line-height: 1.35;
  margin-bottom: 0.45rem;
}

.store-preview-card h4 {
  font-size: 1rem;
}

.store-page .catalogue-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.store-page .catalogue-card > :not(figure):not(h4) {
  display: none !important;
}

.store-page .catalogue-card figure {
  min-height: 320px;
  margin-bottom: 0.35rem;
}

.store-page .catalogue-card img {
  max-height: 300px;
}

.store-page .catalogue-card h4 {
  font-size: 0.92rem;
  line-height: 1.25;
  margin: 0;
}

.bundle-compare {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d4e6dc;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.bundle-compare th,
.bundle-compare td {
  border-bottom: 1px solid #e2eee8;
  padding: 0.7rem;
  vertical-align: top;
}

.bundle-compare thead th {
  background: #edf8f3;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.trust-badge {
  border: 1px solid #cce3d8;
  border-radius: 12px;
  padding: 0.85rem;
  background: #fff;
}

.quiz-box {
  border: 1px solid #c8dfd3;
  border-radius: 14px;
  background: #f3faf6;
  padding: 1rem;
}

.quiz-result {
  margin-top: 0.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #bedbcb;
  background: #fff;
  color: #234d3b;
  font-weight: 600;
}

.mini-newsletter {
  background: #e7f5ee;
  border: 1px solid #c5e2d5;
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: 0 10px 24px rgba(26, 75, 55, 0.08);
}

.pathway-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.info-panel {
  background: #fff;
  border: 1px solid #d8e7de;
  border-radius: 14px;
  padding: 1.2rem;
  height: 100%;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(23, 70, 51, 0.14);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.bundle-card {
  background: linear-gradient(165deg, #ffffff 0%, #f4fbf7 100%);
  border: 1px solid #cde4d8;
  border-radius: 14px;
  padding: 1.2rem;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.bundle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(24, 74, 55, 0.13);
}

.bundle-card h4 {
  margin-bottom: 0.4rem;
}

.bundle-badge {
  display: inline-block;
  border-radius: 999px;
  background: #1f6b4f;
  color: #fff;
  font-size: 0.74rem;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.75rem;
}

.bank-details {
  font-size: 0.95rem;
  line-height: 1.7;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.character-card {
  background: #fff;
  border: 1px solid #d8e7de;
  border-radius: 12px;
  padding: 0.75rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.character-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(24, 74, 55, 0.16);
}

.character-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.6rem;
}

.about-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.about-subnav a {
  border: 1px solid #c5ddd1;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.admin-tools {
  background: #f3faf6;
  border: 1px solid #cbe4d8;
  border-radius: 14px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(17, 63, 46, 0.1);
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(115, 201, 173, 0.2) 0%, rgba(115, 201, 173, 0) 70%);
  transition: opacity 0.35s ease;
}

body.has-cursor-glow .cursor-glow {
  opacity: 1;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.8s cubic-bezier(.21, .72, .31, .98), transform 0.8s cubic-bezier(.21, .72, .31, .98);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.glow-surface {
  position: relative;
  overflow: hidden;
}

.glow-surface::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  right: -50px;
  top: -50px;
  background: radial-gradient(circle, rgba(115, 201, 173, 0.35), transparent 68%);
  pointer-events: none;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.65s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseCta {
  0%,
  100% {
    box-shadow: var(--glow-soft);
  }
  50% {
    box-shadow: var(--glow-strong);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(18px) scale(1.04);
  }
}

form label {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-control,
.form-select {
  border-radius: 0;
  border: 1px solid #c7d7ce;
}

.footer-newsletter {
  background: #1f6b4f;
  color: #f7fffa;
  padding: 60px 0;
}

.footer-newsletter .form-control {
  border: 0;
}

footer {
  background: #113f2e;
  color: #deefe7;
  padding: 30px 0;
}

footer a {
  color: #deefe7;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 80px 0 60px;
  }

  .section-block {
    padding: 56px 0;
  }

  .main-logo a {
    font-size: 1.45rem;
  }

  .catalogue-grid,
  .pathway-grid,
  .info-grid,
  .bundle-grid,
  .character-grid,
  .trust-badges,
  .value-grid,
  .collection-tiles,
  .most-loved-grid,
  .store-preview-grid {
    grid-template-columns: 1fr;
  }

  .store-page .catalogue-card figure {
    min-height: 260px;
  }

  .store-page .catalogue-card img {
    max-height: 240px;
  }

  .store-filter-btn,
  .store-age-tab,
  .age-pill,
  .about-subnav a {
    font-size: 0.88rem;
    padding: 0.4rem 0.65rem;
  }

  .store-toolbar [style*="max-width"],
  #store-search,
  #store-sort,
  #age-filter,
  #language-filter,
  #status-filter {
    max-width: none !important;
    width: 100%;
  }

  .store-age-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .bundle-compare {
    min-width: 640px;
  }

  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .character-card img {
    height: 220px;
    object-fit: cover;
  }

  .right-element {
    justify-content: flex-start;
  }

  .store-toolbar {
    position: static;
  }

  .bundle-compare {
    font-size: 0.9rem;
  }

  body::before {
    background:
      radial-gradient(380px circle at 50% 0%, rgba(115, 201, 173, 0.13), transparent 55%),
      radial-gradient(260px circle at 85% 78%, rgba(31, 107, 79, 0.08), transparent 55%);
  }
}

@media (max-width: 992px) {
  .container,
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  #header .row.align-items-center {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  #header .row.align-items-center > .col-md-3 {
    flex: 0 0 100%;
    width: 100%;
  }

  #header .row.align-items-center > .col-md-9 {
    flex: 0 0 100%;
    width: 100%;
    margin-left: 0;
  }

  #header #navbar {
    width: 100%;
  }

  .main-menu {
    position: relative;
    display: block;
    width: 100%;
  }

  .hamburger {
    display: inline-flex;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(18, 64, 46, 0.12);
    margin-left: 0;
    position: relative;
    z-index: 1;
  }

  .main-menu .menu-list {
    display: none;
    position: static;
    width: 100%;
    background: #fff;
    border: 1px solid #cde4d8;
    border-radius: 12px;
    box-shadow: 0 12px 26px rgba(16, 56, 41, 0.12);
    padding: 0.4rem;
    margin-top: 0.5rem;
  }

  .main-menu .menu-list .menu-item {
    width: 100%;
  }

  .main-menu .menu-list .menu-item a {
    display: block;
    padding: 0.7rem 0.75rem;
    border-radius: 10px;
    font-size: 0.96rem;
  }

  .main-menu .menu-list .menu-item a:hover {
    background: #edf8f2;
  }

  .main-menu.menu-open .menu-list {
    display: block;
  }

  .main-menu ul.menu-list a::after {
    display: none;
  }

  .top-content .row,
  footer .container {
    row-gap: 0.6rem;
  }

  footer .container {
    text-align: center;
  }

  .footer-newsletter .input-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-newsletter .input-group .form-control,
  .footer-newsletter .input-group .btn {
    width: 100%;
    border-radius: 10px;
  }
}

@media (max-width: 576px) {
  h1,
  h2,
  h3,
  h4,
  p,
  a,
  li,
  small,
  span {
    overflow-wrap: anywhere;
  }

  .page-hero {
    padding: 68px 0 48px;
  }

  .section-block {
    padding: 44px 0;
  }

  .catalogue-card,
  .pathway-card,
  .bundle-card,
  .info-panel,
  .quote-card,
  .mini-newsletter,
  .admin-tools,
  .store-toolbar {
    padding: 0.9rem;
  }

  .store-page .catalogue-card figure,
  .store-preview-card figure {
    min-height: 220px;
  }

  .store-page .catalogue-card img,
  .store-preview-card img {
    max-height: 205px;
  }

  .cart-panel {
    width: 100vw;
  }

  .cart-dock {
    right: 12px;
    bottom: 12px;
  }

  .cart-dock-btn {
    padding: 0.62rem 0.9rem;
    font-size: 0.9rem;
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
