:root {
  --bg: #fff7ec;
  --ink: #20172c;
  --muted: #665c70;
  --orange: #ff7a3d;
  --red: #ff4b6e;
  --yellow: #ffd86b;
  --mint: #ddf8ef;
  --blue: #e4f0ff;
  --line: rgba(32, 23, 44, .13);
  --card: rgba(255, 255, 255, .88);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 216, 107, .55), transparent 260px),
    radial-gradient(circle at 92% 12%, rgba(228, 240, 255, .95), transparent 330px),
    var(--bg);
  font-family: Arial, "Noto Sans Thai", Tahoma, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, span, a, li { overflow-wrap: break-word; }
.wrap { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
.public-home .wrap { width: min(1320px, calc(100% - 44px)); }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin: 16px auto 28px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,.78); backdrop-filter: blur(16px);
  box-shadow: 0 14px 42px rgba(65, 42, 24, .08);
}
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 950; }
.brand span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--yellow); }
.nav a:not(.brand) { padding: 9px 12px; border-radius: 999px; color: var(--muted); font-size: 14px; font-weight: 800; }
.nav a.active, .nav a:hover { color: var(--ink); background: var(--mint); }
.links { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }

.hero {
  display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(24px, 5vw, 58px);
  align-items: center; padding: 34px 0 54px;
}
.eyebrow {
  display: inline-block; margin: 0 0 14px; padding: 8px 13px; border-radius: 999px;
  background: rgba(255,122,61,.12); color: #b84c1e; font-weight: 950; font-size: 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; font-size: clamp(42px, 7vw, 72px); line-height: .98; letter-spacing: -.055em; }
h2 { margin-bottom: 12px; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: -.035em; }
h3 { margin-bottom: 8px; }
.lead { color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.72; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px; border-radius: 999px;
  font-weight: 950; text-align: center;
}
.btn.disabled {
  cursor: default;
  opacity: .72;
  box-shadow: none;
  user-select: none;
}
.primary { color: white; background: linear-gradient(135deg, var(--orange), var(--red)); box-shadow: 0 16px 34px rgba(255, 76, 104, .25); }
.secondary { background: white; border: 1px solid var(--line); }
.ghost { background: var(--blue); border: 1px solid rgba(50, 92, 150, .14); }

.card, .product, .sample, .box, details {
  border: 1px solid var(--line); border-radius: 28px; background: var(--card);
  box-shadow: 0 16px 44px rgba(46, 34, 27, .08);
}
.product { padding: 28px; }
.price { font-size: clamp(48px, 8vw, 78px); font-weight: 950; letter-spacing: -.06em; margin: 4px 0 2px; }
.price small { font-size: 22px; letter-spacing: 0; }
.tag { display: inline-block; padding: 8px 12px; border-radius: 999px; background: var(--yellow); font-weight: 950; }
.checklist { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; color: #40364c; line-height: 1.55; }
.checklist li::before { content: "✓ "; color: #159064; font-weight: 950; }

.section { padding: 46px 0; }
.head { max-width: 760px; margin-bottom: 24px; }
.head.center { margin-left: auto; margin-right: auto; text-align: center; }
.head p:not(.eyebrow) { color: var(--muted); line-height: 1.68; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.samples { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.sample { padding: 18px; }
.sample .emoji { font-size: 36px; display: block; margin-bottom: 10px; }
.sample p { color: var(--muted); line-height: 1.55; font-size: 14px; }
.mini-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.mini {
  display: inline-flex; min-height: 38px; align-items: center; justify-content: center;
  padding: 0 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: 13px; font-weight: 900;
}
.download-note { padding: 18px; border-radius: 22px; background: #fff; border: 1px dashed rgba(255,122,61,.45); color: var(--muted); line-height: 1.65; }
.box { padding: clamp(22px, 4vw, 34px); }
.big-choice { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.center { text-align: center; }
details { padding: 18px 20px; }
summary { cursor: pointer; font-weight: 950; }
details p { margin: 12px 0 0; color: var(--muted); line-height: 1.6; }
footer { display: flex; justify-content: space-between; gap: 16px; padding: 32px 0 44px; color: var(--muted); }
footer p { margin: 0; }

.delivery-hero {
  overflow: hidden;
  margin: 20px auto 26px;
  border-radius: 0 0 32px 32px;
  color: white;
  background: linear-gradient(135deg, #09184a, #173b88);
  text-align: center;
  padding: 34px 18px 42px;
}
.delivery-hero .pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.17);
  font-weight: 900;
}
.delivery-hero h1 {
  margin: 0 auto 8px;
  font-size: clamp(32px, 6vw, 58px);
  letter-spacing: -.035em;
}
.delivery-hero p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 18px;
}
.instruction {
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 186, 73, .35);
  border-radius: 24px;
  background: #fff8de;
  padding: 22px;
  color: #6a5630;
  line-height: 1.75;
}
.instruction.device-help {
  display: grid;
  gap: 5px;
  margin: 2px auto 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
}
.instruction-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  line-height: 1.45;
}
.device-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 26px;
  width: 26px;
  height: 24px;
  color: #173b88;
  background: transparent;
}
.icon-laptop::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 16px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 2px;
  background: transparent;
}
.icon-laptop::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 22px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: currentColor;
}
.icon-phone::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 11px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 4px;
  background: transparent;
}
.icon-phone::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 17px;
  width: 3px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
@media (max-width: 560px) {
  .instruction-item { gap: 6px; font-size: 14px; }
}
.download-all {
  display: block;
  margin: 24px auto 26px;
  max-width: 980px;
  border-radius: 22px;
  padding: 26px 18px;
  background: #39af78;
  color: white;
  text-align: center;
  font-weight: 950;
  font-size: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 34px rgba(28, 134, 86, .25);
}
.download-all.disabled {
  cursor: default;
  opacity: .72;
  user-select: none;
}
.download-all small {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: rgba(255,255,255,.86);
}
.divider-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 18px 0 22px;
  color: var(--muted);
  text-align: center;
}
.divider-title::before,
.divider-title::after {
  content: "";
  height: 1px;
  background: var(--line);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.book-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(33, 23, 44, .08);
  content-visibility: auto;
  contain-intrinsic-size: 320px 520px;
}
.book-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #fff;
}
.book-info {
  padding: 12px 14px 14px;
  text-align: center;
}
.book-info h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.3;
}
.book-info .download {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 11px;
  background: #081447;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}
.book-info .download:disabled {
  cursor: not-allowed;
  opacity: .56;
  background: #59617d;
}
.sample-mode .book-info .download {
  background: #fff;
  color: #081447;
  border: 1px solid #081447;
}
.sample-mode .book-card::before {
  content: "ตัวอย่าง";
  position: absolute;
  left: 50%;
  top: 35%;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-22deg);
  color: rgba(8, 20, 71, .16);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 950;
  letter-spacing: .03em;
  pointer-events: none;
  white-space: nowrap;
}
.sample-mode .book-card::after {
  content: "napatsorn.shop";
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-22deg);
  color: rgba(8, 20, 71, .18);
  font-size: clamp(14px, 2.4vw, 23px);
  font-weight: 900;
  pointer-events: none;
  white-space: nowrap;
}
.writing-cover-sheet {
  overflow: hidden;
  margin: 0 auto 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(46,34,27,.08);
}
.writing-cover-sheet img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #fff7ec;
}
.writing-product-grid .book-card img {
  object-fit: contain;
  background: #fff;
}
.writing-product-grid .book-info h3 {
  min-height: 42px;
}
.sample-cta-card {
  margin: 34px 0 46px;
  padding: clamp(28px, 5vw, 48px) 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 44px rgba(46,34,27,.08);
  text-align: center;
}
.sample-cta-card h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.15;
  letter-spacing: 0;
}
.sample-cta-card p {
  margin: 0 auto 22px;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 850;
  line-height: 1.55;
}
.sample-cta-card .btn {
  min-width: min(330px, 100%);
}

/* napatsorn.shop package updates */
.full { width: 100%; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.package-card { position: relative; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: 28px; background: var(--card); box-shadow: 0 16px 44px rgba(46,34,27,.08); }
.package-card.featured { border: 2px solid var(--orange); transform: translateY(-8px); }
.package-kicker { color: var(--muted); font-size: 14px; font-weight: 800; }
.package-card h3 { margin: 8px 0 0; font-size: 28px; }
.package-card p { color: var(--muted); line-height: 1.6; }
.package-card .btn { margin-top: auto; }
.package-price { margin: 6px 0; font-size: 54px; font-weight: 950; letter-spacing: -.05em; }
.package-price small { font-size: 18px; letter-spacing: 0; }
.best-label { position: absolute; right: 18px; top: -15px; padding: 7px 13px; border-radius: 999px; color: white; background: linear-gradient(135deg,var(--orange),var(--red)); font-size: 13px; font-weight: 950; }
.preview-strip { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; margin: 0 0 24px; }
.preview-strip img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 10px 24px rgba(33,23,44,.08); }
.support-note { padding: 16px; border-radius: 16px; color: var(--muted); background: rgba(255,255,255,.72); text-align: center; }
.hero-gold { margin-top: 8px !important; color: #ffd86b !important; font-weight: 900; }
@media (max-width: 860px) { .package-grid { grid-template-columns: 1fr; } .package-card.featured { transform: none; } .preview-strip { grid-template-columns: repeat(3,1fr); } }

@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .book-info h3 { font-size: 14px; }
  .book-info .download { min-height: 42px; }
}

@media (max-width: 860px) {
  .hero, .grid2, .big-choice { grid-template-columns: 1fr; }
  .grid3, .samples { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .links { display: none; }
  .nav { border-radius: 24px; }
  h1 { font-size: 36px; line-height: 1.12; }
  h1, h2, h3, p, span, a, li { overflow-wrap: anywhere; }
  .grid3, .samples { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
.book-info .pages {
  margin: -3px 0 11px;
  color: #159064;
  font-size: 13px;
  font-weight: 900;
}

.no-menu .delivery-hero { margin-top: 0; border-radius: 0 0 32px 32px; }


/* Public-safe selling flow */
.home-hero-band {
  margin-top: -8px;
  padding: clamp(22px, 3vw, 42px) 0 clamp(28px, 4vw, 58px);
  background:
    radial-gradient(circle at 18% 50%, rgba(255,216,107,.46), transparent 360px),
    radial-gradient(circle at 86% 38%, rgba(228,240,255,.96), transparent 420px),
    linear-gradient(90deg, #fff1cf 0%, #fff8ee 48%, #eef6ff 100%);
  border-top: 1px solid rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(32,23,44,.08);
}
.order-band {
  margin-top: clamp(42px, 5vw, 72px);
  padding: clamp(70px, 7vw, 108px) 0 clamp(76px, 8vw, 118px);
  background: #fff;
  border-top: 1px solid rgba(32,23,44,.07);
  border-bottom: 1px solid rgba(32,23,44,.07);
}
.home-banner {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: 28px 0 18px;
}
.home-copy { text-align: center; }
.home-copy .pill { display: inline-flex; margin-bottom: 18px; }
.home-copy,
.home-preview,
.catalog-card,
.package-card,
.box,
.writing-preview,
.preorder-bonus,
.preorder-bonus > div {
  min-width: 0;
}
.home-copy h1 { margin-top: 0; font-size: clamp(42px, 6.5vw, 74px); line-height: 1.08; }
.home-copy .lead { max-width: 680px; margin-left: auto; margin-right: auto; font-size: 25px; line-height: 1.68; }
.quick-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 20px 0 8px; }
.quick-points span { padding: 10px 13px; border-radius: 999px; background: rgba(255,255,255,.82); border: 1px solid var(--line); font-weight: 850; }
.home-copy .actions { justify-content: center; }
.home-preview { position: relative; min-height: 560px; }
.home-preview img { position: absolute; width: 45%; border-radius: 26px; border: 1px solid var(--line); background: white; box-shadow: 0 22px 55px rgba(32,23,44,.16); }
.mixed-preview img:nth-child(1) {
  left: 29%;
  top: 86px;
  width: 44%;
  z-index: 3;
  transform: rotate(-1.5deg);
  box-shadow: 0 30px 70px rgba(32,23,44,.24);
}
.mixed-preview img:nth-child(2) {
  left: 5%;
  top: 46px;
  width: 38%;
  z-index: 1;
  transform: rotate(-7deg);
  filter: saturate(1.08) brightness(1.04);
}
.mixed-preview img.preview-cover {
  right: 2%;
  left: auto;
  top: 46px;
  bottom: auto;
  width: 38%;
  z-index: 2;
  border-radius: 24px;
  transform: rotate(6deg);
  filter: saturate(1.08) brightness(1.04);
}
.home-info { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 26px 0 56px; }
.home-info.order-only { grid-template-columns: minmax(0, 1240px); justify-content: center; padding-top: 0; padding-bottom: 0; }
.home-info .box { padding: 26px; }
.order-box { text-align: center; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.order-box h2 { margin: 10px 0 26px; font-size: clamp(50px, 5vw, 74px); line-height: 1.05; }
.pretty-steps { list-style: none; margin: 26px auto 28px; padding: 0; max-width: 1100px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; text-align: center; }
.pretty-steps li { display: grid; justify-items: center; gap: 10px; align-items: start; padding: 22px 16px 20px; border-radius: 22px; background: #fff; border: 1px solid rgba(32,23,44,.12); box-shadow: 0 12px 26px rgba(32,23,44,.055); }
.pretty-steps li > span { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; color: white; font-weight: 950; background: linear-gradient(135deg, var(--orange), var(--red)); box-shadow: 0 8px 18px rgba(255,99,99,.22); }
.pretty-steps strong { display: block; font-size: clamp(18px, 1.35vw, 22px); color: var(--ink); line-height: 1.25; }
.pretty-steps small { display: block; margin-top: 5px; color: var(--muted); font-weight: 750; line-height: 1.45; }
.order-box .btn.full { max-width: 1120px; margin: 0 auto; min-height: 56px; }
.mini-price { padding: 20px; border-radius: 24px; background: white; border: 1px solid var(--line); display: grid; gap: 6px; }
.mini-price strong { font-size: 34px; line-height: 1; }
.mini-price.hot { background: #fff3c5; }
.steps { margin: 12px 0 20px; padding-left: 22px; line-height: 1.9; color: var(--muted); font-weight: 750; }
.full { width: 100%; }
.center-actions { justify-content: center; }
.sales-note { text-align: center; }
.sales-page .download { background: linear-gradient(135deg, var(--orange), var(--red)); }
@media (max-width: 840px) {
  .public-home .wrap { width: min(1080px, calc(100% - 32px)); }
  .home-banner, .home-info, .home-info.order-only, .pretty-steps { grid-template-columns: 1fr; }
  .home-hero-band { margin-top: -8px; padding: 24px 0 34px; }
  .order-band { margin-top: 34px; padding: 42px 0 54px; }
  .home-banner { min-height: 0; padding-top: 18px; }
  .home-copy .pill { margin-bottom: 22px; }
  .home-copy h1 { line-height: 1.12; }
  .home-preview { min-height: 440px; }
  .home-info.order-only { padding-top: 0; padding-bottom: 0; }
  .order-box { padding: 0; border-radius: 0; }
}

.recommended-section {
  padding-top: clamp(48px, 5vw, 72px);
}
.recommended-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.recommended-card {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 44px rgba(46,34,27,.08);
  text-align: center;
}
.recommended-card.featured-recommend {
  border: 2px solid rgba(255,122,61,.48);
  background: #fffdf4;
}
.recommended-media {
  min-height: 280px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}
.recommended-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(32,23,44,.11);
}
.recommended-media img:nth-child(1) { transform: rotate(-3deg); }
.recommended-media img:nth-child(2) { transform: translateY(-12px); }
.recommended-media img:nth-child(3) { transform: rotate(3deg); }
.writing-covers {
  min-height: 360px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  padding: 28px 24px;
  border-radius: 26px;
  background: linear-gradient(135deg, #fff7df 0%, #eef8ff 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.writing-covers img {
  aspect-ratio: 3 / 4.24;
  object-fit: cover;
  border-radius: 20px;
}
.writing-covers img:nth-child(1) { transform: rotate(-6deg) translateX(14px); z-index: 1; }
.writing-covers img:nth-child(2) { transform: translateY(-14px) scale(1.08); z-index: 3; }
.writing-covers img:nth-child(3) { transform: rotate(6deg) translateX(-14px); z-index: 2; }

.recommended-wide {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.recommended-wide img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #fff7ec;
}
.recommended-card h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.recommended-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.recommended-card .btn {
  margin-top: auto;
}
.recommended-price {
  font-size: clamp(46px, 6vw, 62px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.04em;
}
.recommended-price small {
  font-size: 20px;
  letter-spacing: 0;
}
@media (min-width: 841px) and (max-width: 1100px) {
  .pretty-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); text-align: left; }
  .pretty-steps li { grid-template-columns: auto 1fr; justify-items: start; text-align: left; }
}
@media (max-width: 900px) {
  .recommended-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .public-home main,
  .public-home .wrap,
  .home-banner,
  .home-preview,
  .recommended-section,
  .recommended-grid,
  .recommended-card,
  .home-info,
  .home-info .box {
    max-width: 100%;
    overflow-x: hidden;
  }
  .mixed-preview img:nth-child(1) {
    left: 27%;
    top: 88px;
    width: 48%;
  }
  .mixed-preview img:nth-child(2) {
    left: 3%;
    top: 36px;
    width: 38%;
  }
  .mixed-preview img.preview-cover {
    right: 2%;
    left: auto;
    top: 36px;
    width: 38%;
    bottom: auto;
  }
  .recommended-card {
    padding: 16px;
    border-radius: 22px;
  }
  .recommended-media {
    min-height: 210px;
    gap: 6px;
  }
  .recommended-media img:nth-child(1),
  .recommended-media img:nth-child(2),
  .recommended-media img:nth-child(3) {
    transform: none;
  }
  .writing-covers { min-height: 220px; padding: 16px 12px; gap: 6px; }
  .writing-covers img:nth-child(1),
  .writing-covers img:nth-child(2),
  .writing-covers img:nth-child(3) { transform: none; }
}

.writing-store {
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 216, 107, .55), transparent 260px),
    radial-gradient(circle at 88% 18%, rgba(221, 248, 239, .95), transparent 330px),
    #fff7ec;
}
.writing-store .wrap { max-width: 1080px; }
.writing-product-hero {
  padding: 34px 0 24px;
  text-align: center;
}
.writing-product-hero .pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,122,61,.12);
  color: #b84c1e;
  font-weight: 950;
}
.writing-product-hero h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.writing-product-hero .lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.writing-top-actions {
  justify-content: center;
  margin-top: 20px;
}
.writing-price-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin: 12px auto 22px;
}
.writing-price-card {
  position: relative;
  display: grid;
  gap: 7px;
  align-content: center;
  min-height: 154px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(32,23,44,.07);
  text-align: center;
}
.writing-price-card.best {
  border: 2px solid var(--orange);
  background: #fffdf3;
}
.writing-price-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}
.writing-price-card strong {
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1;
  font-weight: 950;
}
.writing-price-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.writing-note {
  margin: 0 auto 18px;
  padding: 15px 18px;
  border: 1px solid rgba(255,186,73,.35);
  border-radius: 18px;
  background: #fff8de;
  color: #6a5630;
  line-height: 1.65;
  text-align: center;
}
.writing-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}
.writing-split figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 44px rgba(46,34,27,.08);
}
.writing-split img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #fff7ec;
}
.writing-summary-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 44px rgba(46,34,27,.08);
  text-align: center;
}
.writing-summary-card h2 {
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: 0;
}
.writing-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.writing-stat {
  padding: 14px 10px;
  border-radius: 18px;
  background: #f4fbff;
  color: #173b88;
  font-weight: 950;
}
.writing-stat b {
  display: block;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}
.writing-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0 14px;
}
.writing-gallery-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0;
}
.writing-gallery-head p {
  margin: 0;
  color: var(--muted);
}
.writing-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.writing-tile {
  appearance: none;
  display: grid;
  gap: 9px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(32,23,44,.07);
  cursor: pointer;
  font: inherit;
  text-align: center;
}
.writing-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 13px;
  background: #f4f6fb;
}
.writing-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.writing-thumb::after {
  content: "ตัวอย่าง";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-22deg);
  color: rgba(8,20,71,.22);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 950;
  pointer-events: none;
}
.writing-tile-title {
  min-height: 42px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.35;
}
.writing-page-count {
  justify-self: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eafaf2;
  color: #0f7a44;
  font-size: 12px;
  font-weight: 950;
}
.writing-cta {
  margin: 26px auto 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  text-align: center;
  box-shadow: 0 16px 44px rgba(46,34,27,.08);
}
.writing-cta h2 {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0;
}
.writing-cta p {
  color: var(--muted);
}
.writing-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(6,10,24,.9);
}
.writing-lightbox.on { display: grid; }
.writing-lightbox-card {
  position: relative;
  width: min(92vw, 520px);
  text-align: center;
}
.writing-lightbox-card img {
  display: block;
  max-height: 78vh;
  margin: 0 auto;
  border-radius: 16px;
  background: white;
}
.writing-lightbox-card::after {
  content: "ตัวอย่าง";
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%) rotate(-22deg);
  color: rgba(8,20,71,.18);
  font-size: 46px;
  font-weight: 950;
  pointer-events: none;
}
.writing-lightbox-caption {
  margin-top: 12px;
  color: white;
  font-weight: 950;
}
.writing-lightbox-close {
  position: fixed;
  top: 14px;
  right: 18px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 900px) {
  .writing-price-row,
  .writing-split {
    grid-template-columns: 1fr;
  }
  .writing-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .writing-gallery-head {
    display: block;
    text-align: center;
  }
}
@media (max-width: 620px) {
  .writing-product-hero { padding-top: 24px; }
  .writing-product-hero h1 {
    font-size: 34px;
    line-height: 1.18;
    word-break: break-all;
  }
  .writing-product-hero .lead {
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }
  .writing-summary-card p,
  .writing-gallery-head h2,
  .writing-gallery-head p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .writing-price-row { gap: 10px; }
  .writing-price-card { min-height: 0; padding: 16px; }
  .writing-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .writing-tile { padding: 9px; border-radius: 15px; }
  .writing-tile-title { min-height: 50px; font-size: 12px; }
  .writing-page-count { font-size: 11px; }
  .writing-summary-card,
  .writing-cta { padding: 18px; border-radius: 20px; }
  .writing-store .actions .btn { width: 100%; }
}

.product-showcase { padding-top: 22px; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 44px rgba(46,34,27,.08);
  text-align: center;
}
.catalog-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}
.catalog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.catalog-card .btn { margin-top: auto; }
.catalog-covers {
  min-height: 280px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}
.catalog-covers img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(32,23,44,.11);
}
.catalog-covers img:nth-child(1) { transform: rotate(-3deg); }
.catalog-covers img:nth-child(2) { transform: translateY(-12px); }
.catalog-covers img:nth-child(3) { transform: rotate(3deg); }
.wide-preview,
.writing-preview,
.preorder-bonus figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}
.wide-preview img,
.writing-preview img,
.preorder-bonus img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #fff7ec;
}
.catalog-tag {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #0f684a;
  background: #ddf8ef;
  font-size: 13px;
  font-weight: 950;
}
.catalog-tag.preorder { color: #7c4316; background: #fff1c3; }
.catalog-tag.bonus { color: #9a2d4d; background: #ffe2ea; }
.writing-section { padding-top: 34px; }
.writing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 18px;
  align-items: start;
}
.writing-preview {
  position: sticky;
  top: 18px;
}
.writing-prices {
  display: grid;
  gap: 14px;
}
.compact-card {
  min-height: 0;
  padding: 22px;
  text-align: center;
}
.compact-card.featured {
  transform: none;
}
.compact-card h3 {
  font-size: clamp(22px, 2.8vw, 30px);
}
.compact-card .package-price {
  font-size: clamp(42px, 5vw, 54px);
}
.preorder-bonus {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(280px, .72fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 186, 73, .35);
  border-radius: 28px;
  background: #fff8de;
  text-align: center;
}
.preorder-bonus h3 {
  margin: 12px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
}
.preorder-bonus p {
  max-width: 520px;
  margin: 0 auto;
  color: #6a5630;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .catalog-grid,
  .writing-layout,
  .preorder-bonus {
    grid-template-columns: 1fr;
  }
  .writing-preview { position: static; }
}
@media (max-width: 560px) {
  .home-copy .pill { margin-bottom: 24px; font-size: 18px; }
  .home-copy h1 { font-size: clamp(34px, 10vw, 40px); line-height: 1.16; }
  .home-copy .lead { font-size: 15px; line-height: 1.65; }
  .quick-points span { max-width: 100%; font-size: 14px; }
  .home-copy .actions .btn { width: 100%; max-width: 280px; min-height: 48px; }
  .home-preview { min-height: 390px; }
  .home-preview img { width: 50%; border-radius: 20px; }
  .home-preview img:nth-child(1) { left: -8px; top: 42px; }
  .home-preview img:nth-child(2) { right: -8px; top: 18px; }
  .home-preview img:nth-child(3) { left: 25%; bottom: 0; }
  .catalog-card,
  .preorder-bonus {
    border-radius: 22px;
    padding: 16px;
  }
  .catalog-covers { min-height: 210px; gap: 6px; }
  .catalog-covers img:nth-child(1),
  .catalog-covers img:nth-child(2),
  .catalog-covers img:nth-child(3) {
    transform: none;
  }
  .wide-preview,
  .writing-preview,
  .preorder-bonus figure {
    border-radius: 16px;
  }
}


/* Hide all top navigation/menu links for customer-safe pages */
.nav { display: none !important; }
body.no-menu main { padding-top: 0; }


/* Index service-only page */
.service-only-hero { padding-top: 64px; }
.safe-note { color: var(--muted); font-size: 14px; margin-top: 10px; }
.service-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 8px 0 60px; }
.service-box { padding: 26px; }
.service-box p { color: var(--muted); line-height: 1.7; }
@media (max-width: 840px) { .service-strip { grid-template-columns: 1fr; } }




/* Hero highlight line */
.hero-gold { color: #ffd86b !important; font-weight: 950; font-size: clamp(20px, 3vw, 30px); margin-top: -8px; }


/* One-page sample promo */
.sample-hero {
  padding: 26px 18px 30px;
  border-radius: 0 0 24px 24px;
  text-align: center;
}
.sample-hero .pill {
  margin-bottom: 10px;
  padding: 6px 12px;
  font-size: 14px;
}
.sample-hero h1 {
  margin-bottom: 6px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.08;
}
.sample-hero p {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.55;
}
.sample-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.offer-card {
  position: relative;
  text-align: center;
  padding: 17px 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 26px rgba(32,23,44,.07);
}
.offer-card.best { border-color: rgba(255, 191, 71, .65); background: #fffdf2; }
.offer-card b {
  position: absolute;
  left: 50%; top: -18px; transform: translateX(-50%);
  padding: 7px 13px; border-radius: 999px; background: var(--yellow); font-size: 13px;
}
.offer-card span { display: block; color: var(--muted); font-size: 14px; font-weight: 900; margin-bottom: 6px; }
.offer-card strong { display: block; font-size: clamp(30px, 3.5vw, 38px); line-height: 1; letter-spacing: -.04em; }
.offer-card small { display: block; color: var(--muted); margin-top: 7px; font-size: 12px; font-weight: 750; line-height: 1.4; }
.sample-one-page .instruction {
  max-width: 900px;
  margin-bottom: 14px;
  padding: 15px 18px;
  border-radius: 18px;
  font-size: 14px;
  text-align: center;
}
.sample-one-page .center-actions { margin: 12px 0 18px; }
.sample-one-page .center-actions .btn { min-height: 46px; padding-inline: 18px; }
.sample-one-page .divider-title { margin: 12px 0 18px; }
.sample-one-page .book-info { text-align: center; }
.sample-one-page footer { justify-content: space-between; flex-wrap: wrap; text-align: left; }
@media (max-width: 620px) {
  .sample-hero { padding: 22px 18px 24px; }
  .sample-hero h1 { font-size: 32px; }
  .sample-offers { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; padding-inline: 16px; }
  .offer-card { display: grid; grid-template-columns: 1fr; align-items: center; padding: 13px 15px; text-align: center; }
  .offer-card span { margin: 0 0 3px; }
  .offer-card strong { font-size: 29px; }
  .offer-card small { margin-top: 4px; }
  .offer-card b { left: 50%; right: auto; top: -10px; transform: translateX(-50%); padding: 4px 9px; font-size: 11px; }
  .sample-one-page .instruction { margin-inline: 16px; }
}

/* Homepage recommended cards hardening: prevents large cover images from breaking layout */
.public-home .recommended-section {
  width: min(1180px, calc(100% - 32px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.public-home .recommended-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}
.public-home .recommended-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 13px !important;
  min-width: 0 !important;
  overflow: hidden !important;
  padding: 22px !important;
  border: 1px solid var(--line) !important;
  border-radius: 28px !important;
  background: rgba(255,255,255,.94) !important;
  box-shadow: 0 16px 44px rgba(46,34,27,.08) !important;
  text-align: center !important;
}
.public-home .recommended-card.featured-recommend {
  border: 2px solid rgba(255,122,61,.48) !important;
  background: #fffdf4 !important;
}
.public-home .recommended-media {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  align-items: end !important;
  min-height: 0 !important;
  max-height: 330px !important;
  overflow: hidden !important;
}
.public-home .recommended-media img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 3 / 4 !important;
  object-fit: cover !important;
  border: 1px solid var(--line) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(32,23,44,.11) !important;
}
.public-home .recommended-media img:nth-child(1) { transform: rotate(-3deg) !important; }
.public-home .recommended-media img:nth-child(2) { transform: translateY(-12px) !important; }
.public-home .recommended-media img:nth-child(3) { transform: rotate(3deg) !important; }
.public-home .writing-covers {
  min-height: 0 !important;
  padding: 24px 20px !important;
  border-radius: 26px !important;
  background: linear-gradient(135deg, #fff7df 0%, #eef8ff 100%) !important;
  border: 1px solid var(--line) !important;
}
.public-home .writing-covers img { aspect-ratio: 3 / 4.24 !important; }
@media (max-width: 900px) {
  .public-home .recommended-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .public-home .recommended-card { padding: 16px !important; border-radius: 22px !important; }
  .public-home .recommended-media { gap: 6px !important; max-height: 240px !important; }
  .public-home .recommended-media img:nth-child(1),
  .public-home .recommended-media img:nth-child(2),
  .public-home .recommended-media img:nth-child(3) { transform: none !important; }
}

/* Single PNG composite mode for live hosting stability */
.public-home .single-product-preview {
  position: relative !important;
  min-height: clamp(300px, 36vw, 560px) !important;
  display: grid !important;
  place-items: center !important;
}
.public-home .single-product-preview img {
  position: static !important;
  display: block !important;
  width: min(100%, 680px) !important;
  max-width: 100% !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.public-home .single-recommend-media {
  display: grid !important;
  grid-template-columns: 1fr !important;
  place-items: center !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
}
.public-home .single-recommend-media img,
.public-home .single-recommend-media img:nth-child(1) {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  transform: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.public-home .writing-covers.single-recommend-media {
  padding: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
@media (max-width: 560px) {
  .public-home .single-product-preview { min-height: 270px !important; }
  .public-home .single-product-preview img { width: min(100%, 420px) !important; }
}

/* Clean promo burst labels on homepage product cards */
.public-home .single-recommend-media {
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
}
.public-home .promo-burst {
  position: absolute !important;
  z-index: 4 !important;
  display: grid !important;
  place-items: center !important;
  width: clamp(92px, 9vw, 130px) !important;
  height: clamp(92px, 9vw, 130px) !important;
  padding: 12px !important;
  background: linear-gradient(135deg, #ff3d1e 0%, #ff7a18 100%) !important;
  color: #fff !important;
  font-weight: 950 !important;
  font-size: clamp(17px, 1.55vw, 25px) !important;
  line-height: 1.02 !important;
  text-align: center !important;
  letter-spacing: .01em !important;
  clip-path: polygon(50% 0%, 58% 20%, 75% 7%, 73% 29%, 96% 25%, 80% 43%, 100% 50%, 80% 57%, 96% 75%, 73% 71%, 75% 93%, 58% 80%, 50% 100%, 42% 80%, 25% 93%, 27% 71%, 4% 75%, 20% 57%, 0% 50%, 20% 43%, 4% 25%, 27% 29%, 25% 7%, 42% 20%) !important;
  filter: none !important;
  box-shadow: none !important;
  pointer-events: none !important;
}
.public-home .color-burst {
  right: 24% !important;
  bottom: 10% !important;
  transform: rotate(-13deg) !important;
}
.public-home .writing-burst {
  left: 24% !important;
  top: -1% !important;
  transform: rotate(8deg) !important;
}
.public-home .featured-recommend p {
  max-width: 660px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media (max-width: 560px) {
  .public-home .promo-burst {
    width: 82px !important;
    height: 82px !important;
    font-size: 15px !important;
  }
  .public-home .color-burst { right: 20% !important; bottom: 8% !important; }
  .public-home .writing-burst { left: 20% !important; top: -3% !important; }
}

/* Imported promo badge image overlays */
.public-home .promo-badge {
  position: absolute !important;
  z-index: 5 !important;
  display: block !important;
  width: clamp(82px, 8vw, 118px) !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform-origin: center !important;
  pointer-events: none !important;
}
.public-home .color-badge {
  right: 23% !important;
  bottom: 8% !important;
  transform: rotate(-9deg) !important;
}
.public-home .writing-badge {
  left: 23% !important;
  top: -4% !important;
  transform: rotate(6deg) !important;
}
@media (max-width: 560px) {
  .public-home .promo-badge { width: 76px !important; }
  .public-home .color-badge { right: 18% !important; bottom: 6% !important; }
  .public-home .writing-badge { left: 18% !important; top: -5% !important; }
}
