:root {
  --yellow: #FED364;
  --yellow-lt: #FEF4CC;
  --orange: #FDA224;
  --orange-dk: #F28A01;
  --green: #88C33C;
  --green-dk: #6FAF25;
  --blue-lt: #EAF2FB;
  --blue: #BFD4EC;
  --dark: #0F1333;
  --dark2: #1A2060;
  --white: #FFFCF5;
  --pink: #E5596F;
  --pink-dk: #C9374F;
  --bg: #FFF9EE;
  --muted: #888;
  --card-bg: #FFFFFF;
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 28px;
  --shadow: 0 2px 16px rgba(15, 19, 51, 0.08);
  --shadow-lg: 0 8px 32px rgba(15, 19, 51, 0.14);
  --nav-top: 60px;
  --nav-bot: 64px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  padding-top: var(--nav-top);
  padding-bottom: var(--nav-bot);
}

img, svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--nav-top);
  background: var(--dark);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px 0 12px;
}
.header-inner .logo-link {
  margin-right: auto;
}

.search-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
  color: var(--yellow);
}
.search-btn:hover, .search-btn:active {
  background: rgba(255, 255, 255, 0.16);
}
.search-btn svg {
  width: 20px;
  height: 20px;
}

.search-panel {
  position: fixed;
  top: var(--nav-top);
  left: 0;
  right: 0;
  z-index: 290;
  background: var(--dark2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-105%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.search-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.sp-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-inner input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-sm);
  padding: 11px 16px;
  color: #fff;
  font-size: 0.95rem;
  font-family: "Nunito", sans-serif;
  outline: none;
  appearance: none;
}
.sp-inner input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.sp-inner input:focus {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.13);
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sr-item {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--blue);
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.sr-item:hover, .sr-item:focus {
  background: rgba(254, 211, 100, 0.15);
  color: var(--yellow);
  outline: none;
}

.sr-empty {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  padding: 8px 14px;
  text-align: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-link .logo-head {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.logo-link .logo-text {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--yellow);
  line-height: 1.1;
}
.logo-link .logo-text small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1px;
}

.menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.2s;
  flex-shrink: 0;
}
.menu-btn:active {
  background: rgba(255, 255, 255, 0.16);
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.menu-btn.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-btn.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.menu-wrap {
  position: relative;
  flex-shrink: 0;
}

.dropdown-menu {
  display: none;
}

.ds-wrap {
  display: none;
}

.page-hero-icon {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding-top: var(--nav-top);
  padding-bottom: env(safe-area-inset-bottom, 0);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 0.25s ease, transform 0.25s ease;
  overflow-y: auto;
}
.overlay-menu.visible {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}
.overlay-menu nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 8px 0;
}
.overlay-menu nav a {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 11px 22px;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue);
  transition: background 0.16s, color 0.16s;
}
.overlay-menu nav a .om-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  object-fit: contain;
}
.overlay-menu nav a:hover, .overlay-menu nav a:active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
}

.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-bot);
  background: var(--dark);
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.25);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.tab-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(191, 212, 236, 0.55);
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.tab-bar a .ti {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  display: block;
}
.tab-bar a.active {
  color: var(--yellow);
}
.tab-bar a.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--yellow);
  border-radius: 0 0 3px 3px;
}

@media (min-width: 635px) {
  :root {
    --nav-top: 70px;
    --nav-bot: 0px;
  }
  body {
    padding-bottom: 0;
  }
  .header-inner {
    padding: 0 32px;
    max-width: 1600px;
    gap: 8px;
  }
  .logo-link .logo-text {
    font-size: 1.35rem;
  }
  .logo-link .logo-head {
    width: 40px;
    height: 40px;
  }
  .menu-btn {
    display: flex;
  }
  .overlay-menu {
    display: none !important;
  }
  .tab-bar {
    display: none;
  }
  .dropdown-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    padding: 8px;
    min-width: 260px;
    z-index: 295;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px) scale(0.97);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    transform-origin: top right;
  }
  .dropdown-menu.open {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 16px;
    border-radius: var(--r-sm);
    font-family: "Baloo 2", cursive;
    font-weight: 700;
    font-size: 1rem;
    color: var(--blue);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
  }
  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--yellow);
  }
  .dropdown-menu a.current {
    color: var(--yellow);
    background: rgba(254, 211, 100, 0.1);
  }
  .dropdown-menu .dm-icon {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    flex-shrink: 0;
  }
  .desktop-nav {
    display: flex;
    gap: 2px;
    align-items: center;
  }
  .desktop-nav a {
    font-family: "Baloo 2", cursive;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--blue);
    padding: 8px 12px;
    border-radius: 50px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .desktop-nav a:hover {
    background: rgba(255, 255, 255, 0.09);
    color: var(--yellow);
  }
  .desktop-nav a.current {
    background: var(--yellow);
    color: var(--dark);
  }
}
@media (max-width: 634px) {
  .desktop-nav {
    display: none;
  }
}
@media (min-width: 635px) {
  :root {
    --nav-bot: 0px;
  }
  body {
    padding-bottom: 0;
  }
  .tab-bar {
    display: none;
  }
  .overlay-menu {
    display: none !important;
  }
  .desktop-nav {
    display: flex;
  }
}
@media (min-width: 900px) {
  .search-btn {
    display: none;
  }
  .search-panel {
    display: none !important;
  }
  .ds-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 220px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 0 14px;
    position: relative;
    transition: border-color 0.18s, background 0.18s;
  }
  .ds-wrap:focus-within {
    background: rgba(255, 255, 255, 0.13);
    border-color: var(--yellow);
  }
  .ds-ico {
    width: 15px;
    height: 15px;
    color: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
  }
  .ds-input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.85rem;
    font-family: "Nunito", sans-serif;
    padding: 9px 0;
    outline: none;
    appearance: none;
    min-width: 0;
  }
  .ds-input::placeholder {
    color: rgba(255, 255, 255, 0.38);
  }
  .ds-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
  }
  .ds-results {
    position: absolute;
    top: calc(100% + 10px);
    left: -8px;
    right: -8px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    padding: 6px;
    z-index: 290;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
    max-height: 380px;
    overflow-y: auto;
    display: none;
  }
  .ds-results.open {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}
.page-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}
.page-hero .ph-img {
  display: none;
}
.page-hero .ph-text {
  text-align: center;
}
.page-hero .ph-text h1 {
  font-family: "Baloo 2", cursive;
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  color: var(--yellow);
  margin-bottom: 8px;
  line-height: 1.15;
}
.page-hero .ph-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .page-hero {
    gap: 56px;
    padding: 44px 60px;
    justify-content: center;
  }
  .page-hero .ph-img {
    display: block;
    height: 200px;
    aspect-ratio: 2/1;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
  }
  .page-hero .ph-text {
    text-align: left;
    flex: 0 1 480px;
  }
  .page-hero .ph-text h1 {
    font-size: 2.6rem;
  }
  .page-hero .ph-text p {
    margin: 0;
  }
}
.cs-wrap {
  border: 2px solid var(--yellow-lt);
  border-radius: var(--r-lg);
  background: var(--card-bg);
  overflow: hidden;
}

.cs-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  background: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
  gap: 12px;
}
.cs-toggle:hover {
  background: rgba(254, 211, 100, 0.1);
}
.cs-toggle .cs-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--orange-dk);
}
.cs-toggle[aria-expanded=false] .cs-arrow {
  transform: rotate(-90deg);
}

.cs-body {
  padding: 4px 20px 16px;
  display: none;
}
.cs-body.open {
  display: block;
}

@media (min-width: 768px) {
  .info-items-2col {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    gap: 10px 24px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  border-radius: 50px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  font-size: 1rem;
  padding: 14px 30px;
  box-shadow: 0 5px 20px rgba(229, 89, 111, 0.38);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--dark);
  font-size: 1rem;
  padding: 14px 30px;
  box-shadow: 0 4px 16px rgba(254, 211, 100, 0.4);
}

.btn-green {
  background: var(--green);
  color: #fff;
  font-size: 1rem;
  padding: 14px 30px;
  box-shadow: 0 4px 16px rgba(136, 195, 60, 0.35);
}

.section-title {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.3rem, 4.5vw, 2rem);
  color: var(--dark);
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.img-wrap {
  display: block;
  overflow: hidden;
  user-select: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.info-section {
  padding: 28px 0 12px;
}
.info-section h2 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  color: var(--dark);
  margin-bottom: 14px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 13px;
}
.info-item .info-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
}
.info-item span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
}

.info-section-dark h2 {
  color: var(--yellow);
}
.info-section-dark .info-item span {
  color: var(--blue);
}

@media (min-width: 768px) {
  .info-items {
    gap: 10px;
  }
}
.why-section {
  background: var(--dark);
  padding: 32px 18px;
}
.why-section h2 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  color: var(--yellow);
  margin-bottom: 18px;
  text-align: center;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--blue);
  font-size: 0.92rem;
  line-height: 1.5;
}
.why-list li .wi {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.obs-section {
  padding: 24px 16px;
  max-width: 680px;
  margin: 0 auto;
}
.obs-section h2 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  margin-bottom: 14px;
}

.obs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.obs-tag {
  background: var(--yellow-lt);
  border: 1.5px solid var(--yellow);
  color: var(--dark);
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: 50px;
}

.under-construction {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--nav-top) - var(--nav-bot));
  padding: 40px 24px;
  text-align: center;
  gap: 18px;
}

.uc-mascot {
  width: 130px;
  height: 130px;
}

.uc-title {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--dark);
}

.uc-sub {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.5;
}

.uc-badge {
  background: var(--yellow);
  color: var(--dark);
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: 50px;
}

.home-page {
  height: calc(100svh - var(--nav-top) - var(--nav-bot));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 16px;
}

.home-logo {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-logo .img-wrap {
  max-width: min(100%, 100svh - var(--nav-top) - var(--nav-bot) - 80px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-logo .img-wrap img {
  width: 100%;
  height: auto;
  max-height: calc(100svh - var(--nav-top) - var(--nav-bot) - 80px);
  object-fit: contain;
}

@media (min-width: 635px) {
  .home-page {
    height: calc(100svh - var(--nav-top));
    padding: 32px;
  }
  .home-logo .img-wrap {
    max-width: min(55vh, 560px);
    max-height: min(55vh, 560px);
  }
}
.onas-about {
  padding: 32px 18px;
  max-width: 680px;
  margin: 0 auto;
}
.onas-about h2 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  color: var(--dark);
  margin-bottom: 14px;
}
.onas-about p {
  font-size: 0.93rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 10px;
}
.onas-about p:last-child {
  margin-bottom: 0;
}

.onas-more {
  display: none;
}
.onas-more.open {
  display: block;
}

.onas-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--dark);
  background: var(--yellow);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  padding: 7px 16px;
  margin-top: 6px;
  transition: background 0.18s, transform 0.12s;
}
.onas-toggle:hover {
  background: #f0c000;
}
.onas-toggle:active {
  transform: scale(0.95);
}

.onas-typy {
  background: var(--yellow-lt);
  padding: 32px 16px;
}
.onas-typy h2 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark);
}

.typy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.typy-card {
  background: var(--card-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 16px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.typy-card:active {
  transform: scale(0.97);
}
.typy-card .img-wrap {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.typy-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.typy-card h3 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.88rem;
  text-align: center;
  color: var(--dark);
  line-height: 1.2;
}
.typy-card.featured {
  grid-column: 1/-1;
  flex-direction: row;
  padding: 14px 16px;
  gap: 14px;
}
.typy-card.featured .img-wrap {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  aspect-ratio: 1;
}
.typy-card.featured h3 {
  font-size: 1rem;
  text-align: left;
}

@media (max-width: 767px) {
  .typy-card:nth-child(5) {
    display: none;
  }
}
.onas-why {
  background: var(--dark);
  padding: 36px 18px;
  overflow: hidden;
  isolation: isolate;
}
.onas-why h2 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  color: var(--yellow);
  text-align: center;
  margin-bottom: 22px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--r);
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.why-card .wc-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.why-card .wc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--blue);
  line-height: 1.4;
  font-weight: 600;
}

.onas-cta {
  padding: 36px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.onas-cta p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.5;
}

.onas-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

@media (min-width: 600px) {
  .onas-cta {
    flex-direction: row;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
  }
  .onas-cta p {
    white-space: nowrap;
    max-width: none;
    margin: 0;
  }
  .onas-cta-btns {
    flex-direction: row;
    flex-shrink: 0;
  }
}
@media (min-width: 600px) {
  .typy-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
    gap: 12px;
  }
  .typy-card h3 {
    font-size: 1rem;
  }
  .typy-card.featured {
    grid-column: auto;
    flex-direction: column;
    padding: 16px 10px 12px;
  }
  .typy-card.featured .img-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .typy-card.featured h3 {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .onas-about {
    max-width: 900px;
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 780px;
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .typy-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 900px;
    gap: 14px;
  }
}
@media (max-width: 599px) {
  .typy-card:nth-child(5) {
    display: none;
  }
}
.oferta-hero {
  background: linear-gradient(135deg, #3a1f7a 0%, var(--dark2) 55%, var(--dark) 100%);
  color: #fff;
}
.oferta-hero .ph-text p {
  color: var(--blue);
}

.oferta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 24px 14px;
  max-width: 720px;
  margin: 0 auto;
}

.oferta-card {
  background: var(--card-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.oferta-card:active {
  transform: scale(0.97);
  border-color: var(--yellow);
}
.oferta-card .oc-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5%;
}
.oferta-card .oc-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.oferta-card .oc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.oferta-card .oc-body {
  padding: 10px 12px 14px;
}
.oferta-card .oc-body h3 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.25;
}
.oferta-card .oc-body p {
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.5;
}
.oferta-card.link-card {
  border-color: var(--orange);
}
.oferta-card.link-card .oc-body h3 {
  color: var(--orange-dk);
}

.oferta-card.locked {
  position: relative;
  filter: grayscale(70%);
  opacity: 0.6;
  pointer-events: none;
}
.oferta-card.locked .oc-lock-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  background: rgba(15, 19, 51, 0.85);
  color: #fff;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.od-hero {
  padding: 16px 14px 0;
  max-width: 720px;
  margin: 0 auto;
}

.od-back {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-dk);
  text-decoration: none;
  margin-bottom: 16px;
}
.od-back:hover {
  text-decoration: underline;
}

.od-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 24px;
}
.od-top .od-img {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 10%;
}
.od-top .od-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.od-top .od-info h1 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.od-top .od-info .od-lead {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.od-details {
  padding: 0 14px 48px;
  max-width: 720px;
  margin: 0 auto;
  min-height: 60px;
}

.oferta-bottom {
  padding: 16px 14px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.obs-section {
  padding: 28px 0 20px;
}
.obs-section h2 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  color: var(--dark);
  margin-bottom: 18px;
}

.obs-items {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 10px;
}

.obs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
  width: calc(25% - 8px);
}
.obs-item .obs-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.obs-item span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.why-section {
  padding: 28px 0 8px;
  border-top: 2px solid var(--yellow-lt);
}
.why-section h2 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
.why-list .wi {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .oferta-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    gap: 14px;
    padding: 28px 20px;
  }
  .oferta-bottom {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    max-width: 900px;
    padding: 0 20px 48px;
  }
  .oferta-bottom .cs-wrap {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .oferta-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    gap: 16px;
    padding: 32px 24px;
  }
  .od-hero {
    max-width: 1100px;
    padding: 24px 24px 0;
  }
  .od-top {
    flex-direction: row;
    align-items: center;
    gap: 56px;
    padding-bottom: 32px;
  }
  .od-top .od-img {
    flex: 0 0 400px;
    max-width: 400px;
  }
  .od-top .od-info {
    flex: 1;
  }
  .od-details {
    max-width: 1100px;
    padding: 0 24px 56px;
  }
  .oferta-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow);
  }
  .oferta-card.link-card:hover {
    border-color: var(--orange-dk);
  }
  .oferta-bottom {
    max-width: 1200px;
    padding: 0 24px 56px;
  }
}
.warsztaty-hero {
  background: linear-gradient(135deg, var(--green-dk) 0%, #2d6011 100%);
  color: #fff;
}

.wk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 24px 14px;
  max-width: 720px;
  margin: 0 auto;
}

.wk-why-cell {
  grid-column: span 2;
  background: var(--card-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

.wk-why-standalone {
  max-width: 720px;
  margin: 12px auto 0;
  padding: 0 14px;
}

.wk-okazjonalne-cell {
  grid-column: span 2;
  background: var(--card-bg);
  border: 2px solid var(--yellow-lt);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 14px 16px 16px;
}
.wk-okazjonalne-cell .wk-okazjonalne-cell-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.wk-okazjonalne-cell .okazjonalne-icon-sm {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}
.wk-okazjonalne-cell h3 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--orange-dk);
}

.workshop-card {
  background: var(--card-bg);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.workshop-card:active {
  transform: scale(0.97);
}
.workshop-card .wk-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5%;
}
.workshop-card .wk-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.workshop-card .wk-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.workshop-card .wk-body {
  padding: 12px 12px 14px;
}
.workshop-card .wk-body h3 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 5px;
}
.workshop-card .wk-body p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.workshop-card.locked {
  position: relative;
  filter: grayscale(70%);
  opacity: 0.6;
  pointer-events: none;
}
.workshop-card.locked .wk-lock-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  background: rgba(15, 19, 51, 0.85);
  color: #fff;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.warsztaty-okazjonalne {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 14px 0;
}
.warsztaty-okazjonalne .okazjonalne-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0 8px;
}
.warsztaty-okazjonalne .okazjonalne-header .okazjonalne-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
}
.warsztaty-okazjonalne .okazjonalne-header .okazjonalne-text {
  flex: 1;
}
.warsztaty-okazjonalne .okazjonalne-header .okazjonalne-text h2 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  color: var(--orange-dk);
  padding-bottom: 4px;
  border-bottom: 3px solid var(--orange-dk);
  display: inline-block;
}
.warsztaty-okazjonalne .okazjonalne-header .okazjonalne-text p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}
.warsztaty-okazjonalne .okazjonalne-grid {
  padding: 8px 0 24px;
}

.okazjonalne-grid {
  padding: 0;
  max-width: none;
  margin: 0;
}

@media (min-width: 600px) {
  .wk-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    gap: 14px;
    padding: 28px 20px;
  }
  .wk-why-cell {
    grid-column: span 2;
  }
  .warsztaty-okazjonalne {
    max-width: 900px;
    padding: 8px 20px 0;
  }
  .okazjonalne-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
  }
  .wk-okazjonalne-cell .okazjonalne-grid {
    max-width: none;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
}
@media (min-width: 1024px) {
  .wk-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    gap: 16px;
    padding: 32px 24px;
  }
  .wk-why-cell {
    grid-column: span 2;
  }
  .warsztaty-okazjonalne {
    max-width: 1200px;
    padding: 8px 24px 0;
  }
  .okazjonalne-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
    margin: 0;
    padding: 0;
  }
  .wk-okazjonalne-cell .okazjonalne-grid {
    max-width: none;
    margin: 0;
  }
}
.exp-hero {
  background: linear-gradient(135deg, #1a0a4a 0%, #2e1070 55%, var(--dark2) 100%);
  color: #fff;
}
.exp-hero .ph-text p {
  color: rgba(210, 190, 255, 0.9);
}

.exp-wrap {
  padding: 24px 14px;
  max-width: 720px;
  margin: 0 auto;
}

.exp-left, .exp-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-section {
  margin-bottom: 24px;
}
.exp-section h2 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.1rem, 3.5vw, 1.4rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.exp-section > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.exp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exp-list li {
  background: var(--card-bg);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.exp-list li .el-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: contain;
}
.exp-list li .el-text h4 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 3px;
}
.exp-list li .el-text p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.exp-ages {
  background: var(--yellow-lt);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--yellow);
  padding: 18px 16px;
}
.exp-ages h3 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.age-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.age-tag {
  background: var(--yellow);
  color: var(--dark);
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 50px;
}

.exp-cta {
  text-align: center;
  margin-top: 28px;
  padding-bottom: 8px;
}

@media (min-width: 700px) {
  .exp-wrap {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 36px 24px;
  }
  .exp-list li {
    gap: 16px;
  }
}
.cc-icon-link img {
  transition: transform 0.3s ease;
}

.cc-icon-link {
  transition: background 0.18s, box-shadow 0.3s ease;
}

.kk-zoom-icon {
  box-shadow: 0 4px 28px rgba(254, 211, 0, 0.5);
}

.kk-zoom-icon img {
  transform: scale(1.5);
}

.cc-value {
  transition: transform 0.3s ease;
  display: inline-block;
  transform-origin: left center;
  max-width: 100%;
}

.kk-zoom-value .cc-value {
  transform: scale(1.22);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.kk-ob-toast {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  white-space: nowrap;
  border-radius: 50px;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 20px;
  background: var(--dark);
  color: var(--yellow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%) translateY(calc(-100% - 12px));
  transition: opacity 0.18s ease;
  z-index: 302;
}
.kk-ob-toast.visible {
  opacity: 1;
}

.kontakt-wrap {
  padding: 28px 16px 80px;
  max-width: 520px;
  margin: 0 auto;
}

.kontakt-header {
  text-align: center;
  margin-bottom: 24px;
}
.kontakt-header h1 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--dark);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-card {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.18s;
}
.contact-card:hover {
  box-shadow: 0 0 0 2px var(--yellow), 0 4px 16px rgba(0, 0, 0, 0.12);
}
.contact-card.static .cc-icon-link {
  cursor: default;
  pointer-events: none;
}

.cc-icon-link {
  width: 64px;
  min-height: 64px;
  align-self: stretch;
  background: var(--yellow-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 14px;
  text-decoration: none;
  transition: background 0.18s;
}
.cc-icon-link:hover, .cc-icon-link:active {
  background: var(--yellow);
}
.cc-icon-link img, .cc-icon-link svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cc-body {
  flex: 1;
  padding: 12px 14px;
  cursor: pointer;
  user-select: none;
  min-width: 0;
  transition: background 0.15s;
}
.cc-body:hover {
  background: rgba(0, 0, 0, 0.03);
}

.cc-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 2px;
}

.cc-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cc-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
  white-space: normal;
}

.contact-card.static .cc-value {
  white-space: normal;
}

.kk-zoom-icon img {
  transform: scale(1.35);
}

.cc-body .cc-value {
  transition: transform 0.3s ease;
  display: inline-block;
  transform-origin: left center;
}

.kk-zoom-value .cc-value {
  transform: scale(1.12);
}

.kk-body-tip {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange-dk);
  margin-top: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.kk-body-tip.show {
  opacity: 1;
}

.cc-copy-toast {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  white-space: nowrap;
  border-radius: 50px;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 20px;
  background: #2a7d32;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transform: translateX(-50%) translateY(calc(-100% - 12px));
  transition: opacity 0.18s ease;
  z-index: 301;
}
.cc-copy-toast.visible {
  opacity: 1;
}
.cc-copy-toast::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #2a7d32;
}

.kk-vcf-btn {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  border-radius: var(--r);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 28px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.kk-vcf-btn:hover {
  box-shadow: 0 0 0 2px var(--yellow), 0 4px 20px rgba(0, 0, 0, 0.13);
}
.kk-vcf-btn:active {
  transform: scale(0.98);
}

.vcf-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px;
  min-width: 0;
}

.vcf-icon {
  width: 64px;
  flex-shrink: 0;
  align-self: stretch;
  background: var(--yellow-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.vcf-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

@media (min-width: 600px) {
  .kontakt-wrap {
    max-width: 560px;
    padding: 40px 24px 56px;
  }
  .kk-vcf-btn {
    margin-top: 32px;
  }
}
@keyframes mysz-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.04);
  }
}
.mysz-page {
  min-height: calc(100vh - var(--nav-top));
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 80px;
  gap: 14px;
}

.mysz-coin {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 12px;
  animation: mysz-float 2.8s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(243, 138, 1, 0.55));
}

.mysz-label {
  font-family: "Baloo 2", cursive;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mysz-name {
  font-family: "Baloo 2", cursive;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: #FED364;
  line-height: 1.1;
  margin: 0;
}

.mysz-phone {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  color: #F28A01;
  text-decoration: none;
  transition: color 0.18s;
}
.mysz-phone:hover {
  color: #FED364;
}

.mysz-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}

.mysz-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}
.mysz-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.mysz-btn:hover {
  transform: scale(1.05);
}
.mysz-btn:active {
  transform: scale(0.97);
}

.mysz-btn-wa {
  background: #25D366;
  color: #fff;
}

.mysz-btn-home {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.mysz-btn-home:hover {
  border-color: rgba(254, 211, 100, 0.6);
  color: #FED364;
}

.detail-page {
  display: flex;
  flex-direction: column;
}

.detail-hero {
  background: var(--yellow-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  min-height: 220px;
}
.detail-hero img {
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}

.detail-info {
  padding: 20px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detail-info h1 {
  font-family: "Baloo 2", cursive;
  font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--dark);
  line-height: 1.2;
  margin: 0 0 -8px;
}

.detail-desc {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.meta-chip {
  background: var(--yellow-lt);
  border-radius: var(--r);
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.meta-chip .meta-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.meta-chip .meta-value {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--dark);
}

.detail-desc-box {
  max-height: 180px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.detail-desc-box.expanded {
  max-height: 2000px;
}

.detail-read-more {
  display: none;
  align-items: center;
  gap: 5px;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--dark);
  background: var(--yellow);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  padding: 7px 16px;
  margin-top: 6px;
  min-width: 152px;
  justify-content: center;
  transition: background 0.18s, transform 0.12s;
}
.detail-read-more.show {
  display: inline-flex;
}
.detail-read-more:hover {
  background: #f0c000;
}
.detail-read-more:active {
  transform: scale(0.95);
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-action-btn {
  flex: 1;
  justify-content: center;
  text-align: center;
}

.btn-outline {
  border: 2px solid var(--dark);
  background: transparent;
  color: var(--dark);
  font-size: 0.88rem;
  padding: 10px 22px;
  transition: background 0.18s, color 0.18s;
}
.btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

.detail-gallery {
  padding: 0;
}

.gallery-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px 14px;
}

.dg-title {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  color: var(--dark);
  margin: 0;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gf-btn {
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 50px;
  border: 2px solid var(--yellow);
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.18s;
}
.gf-btn:hover {
  background: var(--yellow-lt);
}
.gf-btn.active {
  background: var(--yellow);
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
  user-select: none;
}

.gc-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.18s ease;
  will-change: transform;
}

.gc-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 14px;
  box-sizing: border-box;
}
.gc-slide img {
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--r);
  display: block;
}

.gc-empty {
  flex: 0 0 100%;
  padding: 32px 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.gc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-65%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(15, 19, 51, 0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.18s;
}
.gc-btn:hover {
  background: rgba(15, 19, 51, 0.85);
}
.gc-btn.gc-prev {
  left: 18px;
}
.gc-btn.gc-next {
  right: 18px;
}

.gc-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0 8px;
}

.gc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 22px;
}

.gc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2.5px solid var(--yellow);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.gc-dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}

.gc-counter {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  min-height: 18px;
}

.gallery-grid {
  display: none;
}

.dg-hidden {
  display: none !important;
}

@media (min-width: 600px) {
  .detail-actions {
    flex-direction: row;
  }
  .gallery-carousel {
    display: none;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 12px;
    padding: 0 18px;
    align-items: start;
  }
  .dg-item {
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--card-bg);
  }
  .dg-item img {
    width: 100%;
    height: auto;
    display: block;
  }
  .gallery-header {
    flex-direction: row;
    align-items: center;
    padding: 20px 18px 16px;
  }
}
@media (min-width: 768px) {
  .detail-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 48px;
  }
  .detail-hero {
    border-radius: var(--r-lg);
    margin: 24px 0 24px 24px;
    padding: 48px 36px;
    min-height: 360px;
    align-self: stretch;
  }
  .detail-hero img {
    max-width: 100%;
  }
  .detail-info {
    padding: 28px 28px 24px 24px;
    gap: 18px;
  }
  .detail-meta {
    grid-template-columns: repeat(5, 1fr);
  }
  .detail-gallery {
    grid-column: 1/-1;
    padding: 0 24px 56px;
  }
  .gallery-grid {
    padding: 0;
    gap: 16px;
  }
}
.galeria-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 56px;
  gap: 28px;
}

.galeria-ig-link {
  display: block;
  width: min(88vw, 300px);
  transition: transform 0.2s ease, opacity 0.15s;
}
.galeria-ig-link:hover {
  transform: scale(1.04);
  opacity: 0.85;
}
.galeria-ig-link:active {
  transform: scale(0.97);
}
.galeria-ig-link img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.galeria-text {
  max-width: 480px;
}
.galeria-text h1 {
  font-family: "Baloo 2", cursive;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 12px;
}
.galeria-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 8px;
}

.galeria-cta {
  font-size: 0.92rem;
  color: var(--dark);
}

.galeria-qr {
  display: none;
}

.galeria-qr-cta {
  display: none;
}

@media (min-width: 768px) {
  .galeria-page {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 40px;
    padding: 0 40px;
    min-height: calc(100vh - 70px);
    max-width: 1100px;
    margin: 0 auto;
  }
  .galeria-ig-link {
    width: 260px;
    flex-shrink: 0;
  }
  .galeria-text {
    flex: 1;
  }
  .galeria-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: 220px;
  }
  .galeria-qr img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .galeria-qr p {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    text-align: center;
    line-height: 1.5;
  }
  .galeria-qr-cta {
    display: inline;
  }
}
.galeria-cta-desktop {
  display: none;
}

@media (min-width: 600px) and (max-width: 767px) {
  .galeria-page {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 32px;
    padding: 40px 32px;
  }
  .galeria-ig-link {
    width: 220px;
    flex-shrink: 0;
  }
  .galeria-text {
    flex: 1;
  }
  .galeria-qr {
    display: none;
  }
}
.cennik-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 64px;
  gap: 28px;
  max-width: 640px;
  margin: 0 auto;
}

.cennik-img-wrap {
  width: 220px;
  flex-shrink: 0;
}
.cennik-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cennik-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cennik-text h1 {
  font-family: "Baloo 2", cursive;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--dark);
}
.cennik-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
}

.cennik-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.cennik-btn-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 18px 48px;
}

.faq-hero {
  text-align: center;
  margin-bottom: 32px;
}
.faq-hero h1 {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 10px;
}
.faq-hero p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card-bg);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: var(--yellow);
}
.faq-item.faq-highlight {
  border-color: var(--orange-dk);
  box-shadow: 0 0 0 3px rgba(242, 138, 1, 0.25), var(--shadow);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.faq-q:hover {
  background: var(--yellow-lt);
}
.faq-q .faq-arrow {
  font-size: 2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--orange-dk);
}
.faq-q[aria-expanded=true] {
  background: var(--yellow-lt);
}
.faq-q[aria-expanded=true] .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 14px 18px 18px;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.75;
}
.faq-a.open {
  display: block;
}

@media (min-width: 600px) {
  .faq-wrap {
    padding: 40px 24px 56px;
  }
  .faq-q {
    font-size: 1rem;
    padding: 18px 22px;
  }
  .faq-a {
    padding: 14px 22px 22px;
    font-size: 0.95rem;
  }
  .cennik-page {
    flex-direction: row;
    text-align: left;
    max-width: 860px;
    gap: 56px;
    padding: 60px 40px;
  }
  .cennik-img-wrap {
    width: 280px;
  }
  .cennik-text {
    align-items: flex-start;
  }
}
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px 80px;
  min-height: 60vh;
}

.error-code {
  font-family: "Baloo 2", cursive;
  font-size: clamp(5rem, 22vw, 9rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  text-shadow: 4px 4px 0 var(--dark);
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.error-page h1 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.error-page p {
  color: #666;
  font-size: 1rem;
  max-width: 360px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.error-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/*# sourceMappingURL=main.css.map */
