* { margin: 0; padding: 0; box-sizing: border-box; }
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/baloo2.woff2') format('woff2');
}
:root { --font-display: 'Baloo 2', 'Segoe UI', system-ui, sans-serif; }
h1, h2, h3, .btn-download, .cat-pill { font-family: var(--font-display); }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: linear-gradient(160deg, #fdf2f8 0%, #ede9fe 45%, #e0f2fe 100%) fixed;
  color: #3b2d4f;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; width: 100%; }
main.wrap { flex: 1; padding-bottom: 60px; }

/* header */
.site-header { background: rgba(255,255,255,.85); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 20; }
.site-header::after { content: ""; display: block; height: 4px;
  background: linear-gradient(90deg, #f9a8d4, #c4b5fd, #93c5fd, #99f6e4, #fde68a, #f9a8d4); }
.header-row { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 20px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; min-width: 0; }
.brand-icon { width: 46px; height: 46px; flex: none; filter: drop-shadow(0 2px 5px rgba(168,85,247,.28)); transition: transform .25s ease; }
.brand:hover .brand-icon { transform: rotate(-8deg) scale(1.06); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.38rem; color: #5b21b6; white-space: nowrap; }
.brand-name em { font-style: normal; background: linear-gradient(95deg, #ec4899 20%, #a855f7 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-tagline { font-size: .64rem; font-weight: 600; color: #a08cc0; letter-spacing: .13em; text-transform: uppercase; margin-top: 3px; white-space: nowrap; }
@media (max-width: 879px) {
  .brand { flex: 1; }
  .brand-tagline { font-size: .55rem; letter-spacing: .07em; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
}
@media (max-width: 379px) { .brand-tagline { display: none; } }

/* mobile nav (CSS-only) */
.nav-open { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger { width: 46px; height: 46px; border-radius: 15px; background: #fff; border: 2px solid #e9d5ff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; flex: none; transition: border-color .2s; }
.nav-burger:hover { border-color: #c084fc; }
.nav-burger span { display: block; width: 20px; height: 3px; border-radius: 3px; background: #7c5cbf;
  transition: transform .25s ease, opacity .2s ease; }
.nav-open:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open:checked ~ .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.nav-open:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-open:focus-visible ~ .nav-burger { outline: 3px solid #c084fc; outline-offset: 2px; }
.header-nav { display: none; position: absolute; top: calc(100% + 10px); left: 12px; right: 12px;
  flex-direction: column; background: #fff; border: 1px solid #f0e6ff; border-radius: 22px; padding: 10px;
  box-shadow: 0 18px 44px rgba(139,92,246,.22); }
.nav-open:checked ~ .header-nav { display: flex; animation: navdrop .22s ease; }
@keyframes navdrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.header-nav a { font-family: var(--font-display); display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 16px; border-radius: 15px; color: #5b21b6; text-decoration: none; font-weight: 700; font-size: 1.02rem; }
.header-nav a:hover:not(.nav-cta) { background: #faf5ff; color: #a855f7; }
.nav-cta { margin-top: 6px; }
.header-nav .nav-cta, .btn-download { background: linear-gradient(90deg, #a855f7, #ec4899); color: #fff;
  box-shadow: 0 4px 14px rgba(168, 85, 247, .35); }
.header-nav .nav-cta:hover, .btn-download:hover { filter: brightness(1.08); }
@media (min-width: 880px) {
  .nav-burger, .nav-open { display: none; }
  .header-nav { display: flex; position: static; flex-direction: row; align-items: center; gap: 2px;
    background: none; border: none; box-shadow: none; padding: 0; }
  .header-nav a { padding: 9px 13px; font-size: .98rem; }
  .nav-cta { margin: 0 0 0 10px; padding: 10px 20px; border-radius: 9999px; }
}

/* hero */
.hero { text-align: center; padding: 44px 0 26px; }
@media (max-width: 879px) {
  .hero { padding: 20px 0 12px; }
  .hero .lead { font-size: 1rem; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
  .card.coloring-card img { aspect-ratio: 1 / 1; }
}
.hero h1 { font-size: clamp(1.7rem, 5vw, 2.6rem); font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(90deg, #a855f7, #ec4899, #38bdf8); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 12px; }
.hero .lead { color: #6b5b8a; font-size: 1.1rem; max-width: 680px; margin: 0 auto; line-height: 1.6; }

/* grids + cards */
.grid { display: grid; gap: 22px; }
.galleries-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); padding: 18px 0 8px; }
.galleries-grid.small { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
.coloring-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); padding: 18px 0; }
.card { background: #fff; border: 1px solid #f0e6ff; border-radius: 18px; overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: 0 4px 16px rgba(139, 92, 246, .08); transition: transform .15s ease, box-shadow .15s ease; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(139, 92, 246, .18); }
.card img { width: 100%; height: auto; aspect-ratio: 1 / 1.2; object-fit: cover; object-position: top; background: #fff; border-bottom: 1px solid #f5efff; }
.card h2, .card h3 { font-size: 1.05rem; padding: 12px 14px 4px; color: #4c3575; }
.card .count { padding: 0 14px 14px; color: #a08cc0; font-size: .85rem; }

/* gallery page */
.breadcrumbs { padding: 18px 0 0; font-size: .85rem; color: #a08cc0; }
.breadcrumbs a { color: #7c5cbf; text-decoration: none; }
.coloring-card { align-items: center; padding-bottom: 16px; }
.cp-imglink { display: block; width: 100%; line-height: 0; }
.cp-imgwrap { position: relative; width: 100%; }
.pin-btn { position: absolute; top: 10px; left: 10px; z-index: 2; display: inline-flex; align-items: center; gap: 6px;
  background: #e60023; color: #fff; font-weight: 700; font-size: .82rem; line-height: 1; padding: 8px 13px;
  border-radius: 999px; text-decoration: none; box-shadow: 0 2px 8px rgba(60, 20, 90, .22);
  opacity: 0; transition: opacity .15s ease, transform .15s ease; }
.pin-btn:hover { background: #c8001f; }
.coloring-card:hover .pin-btn, .pin-btn:focus-visible { opacity: 1; }
@media (hover: none) { .pin-btn { opacity: 1; } }
.share-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 16px; }
.share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 999px;
  color: #fff; font-size: .86rem; font-weight: 700; line-height: 1; text-decoration: none; border: 0;
  cursor: pointer; font-family: inherit; transition: filter .15s ease; }
.share-btn:hover { filter: brightness(.92); }
.sb-pin { background: #e60023; }
.sb-fb { background: #1877f2; }
.sb-wa { background: #25d366; }
.sb-copy { background: #7c5cbf; }
.canvas-share { margin: 26px 0 10px; }
.cp-title { font-family: var(--font-display); font-size: 1.02rem; color: #4c3575; padding: 12px 16px 0; text-align: center; }
.cp-desc { color: #8b7ab0; font-size: .82rem; line-height: 1.45; padding: 4px 18px 0; text-align: center; }
.btn-download { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; padding: 10px 22px; border-radius: 9999px;
  font-weight: 700; text-decoration: none; font-size: .95rem; }

/* gallery editorial body + updated stamp */
.updated-stamp { color: #a08cc0; font-size: .78rem; margin-top: 10px; }
.gallery-body { max-width: 760px; margin: 30px auto 0; background: #fff; border: 1px solid #f0e6ff;
  border-radius: 18px; padding: 26px 32px; }
.gallery-body h2 { color: #4c3575; font-size: 1.15rem; margin: 18px 0 8px; }
.gallery-body h2:first-child { margin-top: 0; }
.gallery-body h3 { color: #6b4fa0; font-size: .98rem; margin: 14px 0 4px; }
.gallery-body p, .gallery-body li { color: #5c4d7a; line-height: 1.7; margin: 8px 0; }
.gallery-body a { color: #a855f7; }
.home-about, .hub-about { max-width: 720px; margin: 30px auto 0; }
.home-about h2, .hub-about h2 { color: #4c3575; font-size: 1.2rem; margin-bottom: 8px; text-align: center; }
.home-about p, .hub-about p { color: #5c4d7a; line-height: 1.7; margin: 8px 0; }

/* online-coloring hub + home section */
.oh-about { margin-top: 34px; }
.oh-gallery { margin-top: 26px; }
.oh-gallery h2 { color: #4c3575; margin-bottom: 4px; }
.oh-gallery h2 a { color: inherit; text-decoration: none; }
.oh-gallery h2 a:hover { color: #a855f7; }
.oh-card { text-decoration: none; }
.cuLink { cursor: pointer; }
.oh-btn { font-size: .88rem; padding: 9px 18px; }
.home-online { text-align: center; margin-top: 34px; }
.home-online h2 { color: #4c3575; font-size: 1.35rem; }
.home-online .lead { color: #6b5b8a; margin: 6px auto 4px; max-width: 620px; }
.home-online .galleries-grid { text-align: initial; }
.home-online-cta { margin: 6px 0 4px; }
.home-online-cta .btn-download { margin-top: 0; }

/* how it works */
.how { background: #fff; border: 1px solid #f0e6ff; border-radius: 18px; padding: 26px 30px; margin-top: 28px; }
.how h2 { color: #4c3575; margin-bottom: 14px; }
.how ol { padding-left: 22px; color: #6b5b8a; line-height: 2; }

.related { margin-top: 34px; }
.related h2 { color: #4c3575; margin-bottom: 6px; }

/* footer */
.site-footer { background: rgba(255,255,255,.7); border-top: 1px solid #f0e6ff; padding: 22px 0; text-align: center;
  color: #a08cc0; font-size: .85rem; margin-top: auto; }
.site-footer p { margin: 4px 0; }

/* static pages */
.static-page { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid #f0e6ff; border-radius: 18px; padding: 34px 38px; margin-top: 24px; }
.static-page h1 { color: #4c3575; margin-bottom: 16px; font-size: 1.7rem; }
.static-page h2 { color: #6b4fa0; margin: 22px 0 8px; font-size: 1.15rem; }
.static-page p, .static-page li { color: #5c4d7a; line-height: 1.7; }
.static-page ul, .static-page ol { padding-left: 24px; margin: 8px 0; }
.static-page a { color: #a855f7; }

/* contact form */
.contact-form { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.contact-form label { font-weight: 600; color: #4c3575; font-size: .92rem; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 5px; padding: 10px 14px; border: 2px solid #e9d5ff; border-radius: 12px; font: inherit; color: #3b2d4f; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #c084fc; }
.contact-form button { border: none; cursor: pointer; align-self: flex-start; }
.contact-ok { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; padding: 14px 18px; border-radius: 12px; }

/* category pills on hub */
.cat-strip { text-align: center; margin: 4px 0 10px; }
.cat-strip h2 { color: #4c3575; font-size: 1.1rem; margin-bottom: 12px; }
.cat-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cat-pill { padding: 8px 20px; border-radius: 9999px; background: #fff; border: 2px solid #e9d5ff; color: #7c5cbf; font-weight: 600; text-decoration: none; font-size: .92rem; }
.cat-pill:hover { border-color: #c084fc; color: #a855f7; }

/* online coloring studio */
.canvas-hero h1 { font-size: clamp(1.3rem, 4vw, 1.9rem); }
.canvas-lead { font-size: .95rem; }
.cu-studio { display: flex; gap: 20px; align-items: flex-start; flex-wrap: wrap; margin-top: 8px; }
.cu-panel { background: #fff; border: 1px solid #f0e6ff; border-radius: 20px; box-shadow: 0 4px 16px rgba(139,92,246,.08); }
.cu-tools { flex: 0 0 250px; padding: 16px; position: sticky; top: 84px; }
.cu-tools h2 { font-size: .7rem; text-transform: uppercase; letter-spacing: .13em; color: #a08cc0; margin: 14px 0 8px; }
.cu-tools h2:first-child { margin-top: 0; }
.cu-now { display: flex; align-items: center; gap: 10px; }
#cu-cur { width: 44px; height: 44px; border-radius: 14px; border: 2px solid #e9d5ff; flex: none; }
.cu-now input[type=color] { width: 44px; height: 44px; border: 2px dashed #e9d5ff; border-radius: 14px; background: none; cursor: pointer; padding: 2px; }
.cu-hint { font-size: .72rem; color: #a08cc0; line-height: 1.35; }
.cu-pal { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.cu-chip { aspect-ratio: 1; border-radius: 50%; border: 2.5px solid transparent; cursor: pointer; padding: 0; }
.cu-chip:focus-visible, .cu-ibtn:focus-visible { outline: 3px solid #c084fc; outline-offset: 2px; }
.cu-chip.sel { border-color: #3b2d4f; transform: scale(1.14); }
.cu-chip.eraser { background: repeating-conic-gradient(#ccc 0 25%, #fff 0 50%) 50%/9px 9px; border: 2.5px solid #e9d5ff; }
.cu-iconrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.cu-iconrow.cu-two { grid-template-columns: 1fr 1fr; margin-top: 8px; }
.cu-ibtn { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 6px; border-radius: 11px;
  border: 2px solid #e9d5ff; background: none; color: #3b2d4f; cursor: pointer; font: inherit; font-size: .78rem; font-weight: 700; text-decoration: none; }
.cu-ibtn:hover { border-color: #c084fc; color: #a855f7; }
.cu-ibtn:disabled { opacity: .35; cursor: default; }
.cu-ibtn:disabled:hover { border-color: #e9d5ff; color: #3b2d4f; }
.cu-ibtn svg { width: 16px; height: 16px; flex: none; }
.cu-btns { display: flex; flex-direction: column; gap: 8px; }
.cu-btns .btn-download { font-size: .88rem; padding: 10px 12px; white-space: nowrap; }
.cu-check { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: #6b5b8a; cursor: pointer; }
.cu-check input { width: 16px; height: 16px; accent-color: #a855f7; }
.cu-btns .btn-download { margin-top: 0; border: none; cursor: pointer; justify-content: center; }
.cu-stage { flex: 1 1 460px; min-width: 300px; padding: 12px; touch-action: none; }
.cu-stage svg { display: block; width: 100%; height: auto; border-radius: 12px; cursor: crosshair; }
.cu-stage.grabbing svg { cursor: grabbing; }
.cu-stage .region path { cursor: pointer; stroke-width: 1.6; stroke-linejoin: round; }
.cu-stage .region:hover path { fill-opacity: .85; }
.cu-stage #outline { pointer-events: none; }
.cu-zoomlbl { text-align: center; font-size: .72rem; color: #a08cc0; margin-top: 6px; }
.btn-canvas { display: inline-flex; align-items: center; gap: 7px; margin-top: 8px; padding: 8px 18px; border-radius: 9999px;
  border: 2px solid #e9d5ff; color: #7c5cbf; font-weight: 700; text-decoration: none; font-size: .88rem; font-family: var(--font-display); }
.btn-canvas:hover { border-color: #c084fc; color: #a855f7; }

/* download modal */
.cu-modal { position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center; padding: 16px; }
.cu-modal[hidden] { display: none; }
.cu-modal-back { position: absolute; inset: 0; background: rgba(35, 25, 60, .55); backdrop-filter: blur(3px); }
.cu-modal-card { position: relative; background: #fff; border-radius: 22px; width: 100%; max-width: 480px; max-height: 88vh;
  display: flex; flex-direction: column; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.cu-modal-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px 8px; }
.cu-modal-head h3 { font-family: var(--font-display); font-size: 1.06rem; color: #3b2d4f; margin: 0; }
.cu-modal-x { background: none; border: none; cursor: pointer; color: #a08cc0; padding: 6px; border-radius: 9px; }
.cu-modal-x:hover { color: #a855f7; background: #faf5ff; }
.cu-tabs { display: flex; gap: 4px; padding: 0 20px; border-bottom: 2px solid #f0e6ff; }
.cu-tabbtn { font: inherit; font-weight: 700; padding: 9px 16px; background: none; border: none; cursor: pointer;
  color: #a08cc0; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.cu-tabbtn.sel { color: #a855f7; border-bottom-color: #a855f7; }
.cu-modal-body { overflow-y: auto; padding: 14px 20px; display: flex; flex-direction: column; gap: 8px; }
.cu-modal-body h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: #a08cc0; margin: 10px 0 2px; }
.cu-tabpane { display: flex; flex-direction: column; gap: 8px; }
.cu-tabpane[hidden] { display: none; }
.cu-opt { display: flex; align-items: flex-start; gap: 11px; border: 2px solid #f0e6ff; border-radius: 14px;
  padding: 11px 14px; cursor: pointer; }
.cu-opt:has(input:checked) { border-color: #c084fc; background: #faf5ff; }
.cu-opt input { margin-top: 3px; width: 16px; height: 16px; accent-color: #a855f7; flex: none; }
.cu-opt b { display: block; color: #3b2d4f; font-size: .92rem; }
.cu-opt small { color: #8b7ab0; font-size: .78rem; line-height: 1.35; }
.cu-opt.disabled { opacity: .45; pointer-events: none; }
.cu-note { background: #f0f9ff; border: 1px solid #bae6fd; color: #0c4a6e; font-size: .8rem; line-height: 1.45;
  border-radius: 12px; padding: 10px 14px; margin: 4px 0 0; }
.cu-modal-foot { display: flex; gap: 10px; padding: 12px 20px 18px; border-top: 1px solid #f5efff; }
.cu-modal-foot .cu-ibtn { flex: 1; }
.cu-modal-foot .btn-download { flex: 2; margin: 0; border: none; cursor: pointer; justify-content: center; }
@media (max-width: 740px) { .cu-tools { position: static; flex-basis: 100%; order: 2; } .cu-pal { grid-template-columns: repeat(12, 1fr); } }
@media (prefers-reduced-motion: reduce) { .cu-chip.sel { transform: none; } }
@media print { .site-header, .site-footer, .breadcrumbs, .cu-tools, .cu-zoomlbl, .canvas-hero { display: none !important; } .cu-panel { border: none; box-shadow: none; } }

/* footer columns */
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; padding: 26px 20px 10px; text-align: left; }
.fcol h4 { color: #6b4fa0; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.fcol a { display: block; color: #8b7ab0; text-decoration: none; font-size: .9rem; padding: 3px 0; }
@media (max-width: 879px) { .fcol a { padding: 11px 0; } }
.fcol a:hover { color: #a855f7; }
.fcol .lang-current { display: block; color: #5b21b6; font-weight: 700; font-size: .9rem; padding: 3px 0; }
.footer-base { border-top: 1px solid #f0e6ff; margin-top: 14px; padding-top: 14px; }

/* ── prettycalendars additions ─────────────────────────────────────────────── */
.cal-grid, .month-grid, .style-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; margin: 22px 0; }
.cal-card { display: flex; flex-direction: column; align-items: center; padding-bottom: 16px; }
.cal-card img { width: 100%; height: auto; aspect-ratio: 612 / 792; object-fit: contain; background: #fff; border-bottom: 1px solid #f0e9f6; }
.cal-imglink { display: block; width: 100%; line-height: 0; }
.cal-card .cp-title { margin: 12px 12px 2px; font-size: 1.02rem; text-align: center; }
.cal-card .cp-desc { margin: 0 12px 12px; color: #8a7ca8; font-size: .9rem; text-align: center; }
.home-sec { margin: 40px 0; }
.home-sec > h2 { text-align: center; margin-bottom: 4px; }
.home-hero { text-align: center; }
.related { margin: 40px 0; }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a { display: inline-block; padding: 8px 14px; border-radius: 999px; background: #f6eefc; color: #6d2a7a; text-decoration: none; font-size: .9rem; font-weight: 600; }
.related-links a:hover { background: #efe0fa; }
.static-page { max-width: 760px; margin: 0 auto; line-height: 1.7; }
.static-page h1 { margin-bottom: 18px; }
.static-page ol, .static-page ul { padding-left: 22px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 520px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; }
.contact-form input, .contact-form textarea { padding: 10px 12px; border: 1.5px solid #e9d5ff; border-radius: 10px; font: inherit; }
.form-ok { background: #ecfdf5; color: #065f46; padding: 12px 16px; border-radius: 10px; }
.form-err { background: #fef2f2; color: #991b1b; padding: 12px 16px; border-radius: 10px; }

/* ── Calendar Maker ───────────────────────────────────────────────────────── */
.mk-wrap { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: start; margin: 24px 0 8px; }
.mk-controls { background: #fff; border: 1px solid #f0e6ff; border-radius: 18px; padding: 20px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 2px 14px rgba(120,80,170,.06); position: sticky; top: 92px; }
.mk-field { display: flex; flex-direction: column; gap: 5px; font-weight: 600; font-size: .9rem; color: #5b3a7a; }
.mk-field select, .mk-field input { padding: 9px 11px; border: 1.5px solid #e9d5ff; border-radius: 10px; font: inherit; background: #fff; }
.mk-checks { display: flex; flex-direction: column; gap: 9px; padding: 6px 0; border-top: 1px solid #f2eafc; }
.mk-checks label { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .92rem; color: #5b3a7a; cursor: pointer; }
.mk-actions { display: flex; flex-direction: column; gap: 10px; }
.mk-btn2 { padding: 11px 14px; border-radius: 999px; border: 1.5px solid #c9a9f0; background: #fff; color: #6d2a7a; font-weight: 700; font-family: inherit; cursor: pointer; font-size: .92rem; }
.mk-btn2:hover { background: #f6eefc; }
.mk-preview { background: #f7f2fb; border-radius: 18px; padding: 24px; display: flex; align-items: center; justify-content: center; min-height: 500px; }
.mk-preview svg { width: 100%; max-width: 520px; height: auto; box-shadow: 0 6px 26px rgba(90,40,120,.16); border-radius: 6px; background: #fff; }
.mk-loading { color: #9a86bb; font-weight: 600; }
.maker-body { max-width: 820px; }
@media (max-width: 760px) {
  .mk-wrap { grid-template-columns: 1fr; }
  .mk-controls { position: static; order: 2; }
  .mk-preview { order: 1; min-height: 380px; padding: 14px; }
}

/* maker call-to-action on calendar pages */
.mk-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: space-between;
  background: linear-gradient(120deg, #fbf1ff, #f0e8fd); border: 1px solid #eaddfa; border-radius: 18px;
  padding: 22px 26px; margin: 30px 0; }
.mk-cta-txt { flex: 1; min-width: 260px; }
.mk-cta-txt h2 { margin: 0 0 6px; font-size: 1.3rem; }
.mk-cta-txt p { margin: 0; color: #6a5a86; }
