:root {
  --ink: #32101f;
  --muted: #78616b;
  --line: #efdce4;
  --surface: #ffffff;
  --soft: #fff4f8;
  --green: #c2185b;
  --green-dark: #8e0e46;
  --mint: #fbd3e3;
  --gold: #f4b400;
  --navy: #3b0a22;
  --shadow: 0 18px 50px rgba(145, 18, 73, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffafd 0, #fff 580px);
  font-family: "Noto Sans Thai", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(220, 229, 224, .85);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  width: min(1160px, calc(100% - 40px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.03em;
}
.brand > span:last-child > span { color: var(--green); }
.brand-logo { width: 58px; height: 34px; object-fit: contain; }
nav { display: flex; gap: 26px; }
nav a { color: #43544d; font-size: .92rem; font-weight: 600; text-decoration: none; }
nav a:hover { color: var(--green); }

.app-hero {
  padding: 54px 20px 38px;
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 80, 157, .19), transparent 31%),
    radial-gradient(circle at 88% 10%, rgba(255, 184, 215, .25), transparent 25%);
}
.app-card {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 270px 1fr;
  column-gap: 44px;
  row-gap: 12px;
  align-items: start;
}
.app-icon {
  grid-row: 1 / 5;
  align-self: center;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, #ffffff 0 38%, #fff1f7 72%, #f8ccdf 100%);
  border: 8px solid white;
  border-radius: 44px;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}
.app-icon img { display: block; width: 112%; max-width: none; height: auto; }
.app-intro, .app-meta, .hero-download, .download-note { grid-column: 2; }
.eyebrow { margin: 0 0 4px; color: var(--green); font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 0; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.12; letter-spacing: -.045em; }
.publisher { margin: 10px 0 0; color: var(--green); font-weight: 700; }
.app-meta { display: flex; align-items: stretch; margin: 6px 0; }
.app-meta div { min-width: 130px; padding: 0 22px; border-left: 1px solid var(--line); text-align: center; }
.app-meta div:first-child { padding-left: 0; border-left: 0; }
.app-meta strong, .app-meta span { display: block; }
.app-meta strong { color: #253a31; font-size: .95rem; }
.app-meta span { color: var(--muted); font-size: .75rem; }
.primary-download {
  display: inline-flex;
  min-height: 52px;
  padding: 0 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  background: var(--green);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(194, 24, 91, .23);
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.primary-download:hover { background: var(--green-dark); transform: translateY(-2px); }
.primary-download svg { width: 22px; fill: currentColor; }
.hero-download { justify-self: start; }
.download-note { margin: 8px 0 0; color: var(--muted); font-size: .76rem; }

.content-layout {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 50px;
  align-items: start;
}
.article-content { min-width: 0; display: flex; flex-direction: column; }
.article-content > .lead-section { order: 1; }
.article-content > .reviews-section { order: 2; }
.article-content > .content-section:not(.lead-section):not(.final-cta) { order: 3; }
.article-content > .final-cta { order: 4; }
.content-section, .reviews-section { padding: 45px 0; border-bottom: 1px solid var(--line); }
.lead-section { padding-top: 24px; }
.lead-section p { color: #34483f; font-size: 1.08rem; }
h2 { margin: 0 0 14px; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.35; letter-spacing: -.025em; }
h3 { margin: 0 0 6px; font-size: 1.08rem; line-height: 1.4; }
p { margin: 0 0 16px; }
.section-heading { display: flex; align-items: flex-start; gap: 12px; }
.heading-icon { display: grid; width: 30px; height: 30px; flex: 0 0 30px; margin-top: 4px; place-items: center; color: white; background: var(--green); border-radius: 50%; font-weight: 800; }
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.platform-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid #e1ebe6;
  border-radius: 20px;
}
.platform-card p { margin: 0; color: #52645c; font-size: .9rem; }
.platform-badge { display: grid; width: 46px; height: 46px; flex: 0 0 46px; place-items: center; color: white; border-radius: 13px; font-size: .76rem; font-weight: 800; }
.platform-badge.android { background: #d81b60; }
.platform-badge.ios { background: #56102e; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.comparison-grid div { padding: 20px; background: white; border: 1px solid var(--line); border-radius: 16px; }
.comparison-grid span, .comparison-grid strong { display: block; }
.comparison-grid span { margin-bottom: 4px; color: var(--green); font-size: .78rem; font-weight: 800; }
.comparison-grid strong { font-size: .94rem; }
.check-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 14px; color: #40534a; }
.check-list span { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; color: var(--green); background: var(--mint); border-radius: 50%; font-size: .8rem; font-weight: 800; }

.reviews-header { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; }
.rating-summary { display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 10px; }
.rating-summary strong { grid-row: 1 / 3; font-size: 3.2rem; line-height: 1; letter-spacing: -.08em; }
.stars { color: var(--gold); font-size: .95rem; letter-spacing: .08em; }
.rating-summary small { color: var(--muted); }
.rating-bars { max-width: 330px; margin: 24px 0 30px; display: grid; grid-template-columns: 14px 1fr; gap: 5px 10px; align-items: center; color: var(--muted); font-size: .72rem; }
.rating-bars i { height: 7px; overflow: hidden; background: #e4ebe7; border-radius: 999px; }
.rating-bars b { display: block; height: 100%; background: var(--green); border-radius: inherit; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.review-card { padding: 22px; background: white; border: 1px solid var(--line); border-radius: 18px; }
.review-card.extra-review { display: none; }
.reviews-grid.expanded .extra-review { display: block; }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.avatar { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; color: var(--green-dark); background: #fbd9e8; border-radius: 50%; font-weight: 800; }
.review-author { display: block; margin: 0; font-size: .92rem; font-weight: 700; }
.review-top time, .review-card small { color: var(--muted); font-size: .72rem; }
.review-card p { margin: 8px 0 14px; color: #3e5148; font-size: .9rem; }
.show-reviews { width: 100%; margin-top: 18px; padding: 13px 20px; color: var(--green); background: white; border: 1px solid var(--green); border-radius: 13px; font: inherit; font-weight: 700; cursor: pointer; }
.show-reviews:hover { background: var(--soft); }
.faq-list { display: grid; gap: 12px; margin-top: 24px; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 17px; }
.faq-list summary { padding: 18px 52px 18px 20px; color: var(--ink); font-weight: 700; cursor: pointer; position: relative; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--green); font-size: 1.4rem; font-weight: 500; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }
.final-cta { margin-top: 45px; padding: 36px; display: flex; justify-content: space-between; align-items: center; gap: 28px; color: white; background: linear-gradient(135deg, #c2185b, #650d36); border: 0; border-radius: var(--radius); }
.final-cta .eyebrow { color: #ffd5e7; }
.final-cta p { max-width: 590px; margin-bottom: 0; color: #ffeaf3; }
.primary-download.light { flex: 0 0 auto; color: var(--green-dark); background: white; box-shadow: none; }

.side-card { position: sticky; top: 100px; margin-top: 46px; padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 14px 36px rgba(20, 35, 29, .07); }
.side-icon { display: grid; width: 100%; min-height: 84px; padding: 10px; place-items: center; overflow: hidden; background: linear-gradient(145deg, #fff8fb, #f8d5e4); border-radius: 19px; }
.side-icon img { display: block; width: 100%; height: 76px; object-fit: contain; }
.side-card h2 { margin-top: 16px; font-size: 1.2rem; }
.side-card dl { margin: 24px 0; }
.side-card dl div { display: flex; justify-content: space-between; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .82rem; }
.side-card dt { color: var(--muted); }
.side-card dd { margin: 0; font-weight: 700; text-align: right; }
.side-download { display: block; padding: 12px; color: white; background: var(--green); border-radius: 12px; text-align: center; text-decoration: none; font-weight: 700; }

footer { color: #e9c9d7; background: #2d0919; }
.footer-inner { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 50px 0; display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center; }
.footer-brand { color: white; }
.footer-inner p { margin: 0; font-size: .78rem; }
.mobile-download-bar { display: none; }

@media (max-width: 900px) {
  nav { display: none; }
  .app-card { grid-template-columns: 210px 1fr; column-gap: 28px; }
  .app-meta div { min-width: auto; padding: 0 15px; }
  .content-layout { grid-template-columns: 1fr; }
  .side-card { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 74px; }
  .nav-wrap { width: min(100% - 28px, 1160px); min-height: 62px; }
  .app-hero { padding: 30px 16px 26px; }
  .app-card { grid-template-columns: 108px minmax(0, 1fr); column-gap: 16px; row-gap: 12px; align-items: start; }
  .app-icon { grid-row: 1; min-height: 94px; border-width: 4px; border-radius: 23px; }
  .app-intro { grid-column: 2; min-width: 0; }
  h1 { font-size: 1.65rem; }
  .publisher { margin: 6px 0 0; font-size: .8rem; }
  .app-meta { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin: 4px 0 0; padding-top: 0; }
  .app-meta div { padding: 0 7px; }
  .app-meta span { font-size: .62rem; }
  .hero-download { grid-column: 1 / -1; width: 100%; margin: 0; }
  .download-note { grid-column: 1 / -1; width: 100%; margin: -2px 0 0; text-align: center; }
  .content-layout { width: min(100% - 32px, 1160px); margin-bottom: 40px; }
  .content-section, .reviews-section { padding: 34px 0; }
  .platform-grid, .comparison-grid, .reviews-grid { grid-template-columns: 1fr; }
  .platform-card { padding: 20px; }
  .reviews-header { align-items: flex-start; }
  .rating-summary strong { font-size: 2.5rem; }
  .final-cta { padding: 26px; display: block; }
  .final-cta .primary-download { width: 100%; margin: 24px 0 0; }
  .mobile-download-bar {
    position: fixed;
    z-index: 60;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    min-height: 66px;
    padding: 9px 16px calc(9px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(20,35,29,.09);
    backdrop-filter: blur(16px);
  }
  .mobile-download-bar strong, .mobile-download-bar span { display: block; }
  .mobile-download-bar strong { font-size: .88rem; }
  .mobile-download-bar span { color: var(--muted); font-size: .68rem; }
  .mobile-download-bar a { padding: 10px 22px; color: white; background: var(--green); border-radius: 11px; font-size: .84rem; font-weight: 700; text-decoration: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* Android app-detail page */
.store-page {
  margin: 0;
  padding: 0;
  color: #202124;
  background: #fff;
  font-family: "Noto Sans Thai", system-ui, sans-serif;
}
.store-page a { color: inherit; }
.store-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e7e7e7;
  box-shadow: 0 2px 8px rgba(60,64,67,.08);
  backdrop-filter: blur(14px);
}
.store-topbar-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.store-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: #3c4043;
  font-weight: 800;
  letter-spacing: -.03em;
  text-decoration: none;
}
.store-brand img {
  width: 52px;
  height: 34px;
  object-fit: contain;
}
.store-brand > span > span { color: #c2185b; }
.store-search {
  display: flex;
  width: min(400px, 34vw);
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  gap: 11px;
  color: #777;
  background: #f5f6f7;
  border-radius: 999px;
  font-size: .86rem;
}
.store-search svg { width: 19px; fill: #687078; }
.store-nav {
  display: flex;
  margin-left: auto;
  align-items: stretch;
  align-self: stretch;
  gap: 25px;
}
.store-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #5f6368;
  font-size: .84rem;
  font-weight: 600;
  text-decoration: none;
}
.store-nav a:hover,
.store-nav a.active { color: #b51657; }
.store-nav a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #c2185b;
  border-radius: 3px 3px 0 0;
}
.store-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.store-breadcrumb {
  display: flex;
  gap: 9px;
  padding: 24px 0 10px;
  align-items: center;
  color: #80868b;
  font-size: .75rem;
}
.store-breadcrumb a { color: #a60e49; text-decoration: none; }
.store-breadcrumb strong { color: #5f6368; font-weight: 600; }
.store-app-summary {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  padding: 34px 0 46px;
  align-items: start;
}
.store-app-icon {
  display: grid;
  width: 190px;
  height: 190px;
  padding: 18px;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, #fff 0 36%, #fff0f6 72%, #f6c8da 100%);
  border: 1px solid #eadce2;
  border-radius: 34px;
  box-shadow: 0 8px 26px rgba(60,64,67,.13);
}
.store-app-icon img {
  display: block;
  width: 112%;
  max-width: none;
  height: auto;
}
.store-category {
  margin: 0 0 5px;
  color: #b51657;
  font-size: .82rem;
  font-weight: 700;
}
.store-app-details h1 {
  max-width: 800px;
  margin: 0;
  color: #202124;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -.035em;
}
.store-publisher {
  display: inline-block;
  margin-top: 10px;
  color: #b51657 !important;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}
.store-facts {
  display: flex;
  margin: 26px 0 24px;
  align-items: stretch;
}
.store-facts div {
  min-width: 132px;
  padding: 0 23px;
  border-left: 1px solid #dadce0;
  text-align: center;
}
.store-facts div:first-child { padding-left: 0; border-left: 0; }
.store-facts strong,
.store-facts span { display: block; }
.store-facts strong { color: #3c4043; font-size: .9rem; }
.store-facts span { margin-top: 2px; color: #777; font-size: .7rem; }
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-install,
.store-web-button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid #b51657;
  border-radius: 9px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.store-install {
  color: #fff !important;
  background: #b51657;
  box-shadow: 0 5px 14px rgba(181,22,87,.2);
}
.store-web-button { color: #a00e49 !important; background: #fff; }
.store-install:hover,
.store-web-button:hover { transform: translateY(-1px); box-shadow: 0 7px 18px rgba(181,22,87,.18); }
.store-device-note {
  margin: 16px 0 0;
  color: #6f7377;
  font-size: .73rem;
}
.store-gallery {
  padding: 29px 0 43px;
  border-top: 1px solid #e4e5e7;
  border-bottom: 1px solid #e4e5e7;
}
.store-section-title {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.store-section-title h2 {
  margin: 0;
  color: #202124;
  font-size: 1.45rem;
  line-height: 1.35;
  letter-spacing: -.02em;
}
.store-section-title.with-arrow > span {
  flex: 0 0 auto;
  color: #5f6368;
  font-size: 1.35rem;
}
.store-screenshot-rail {
  display: flex;
  gap: 14px;
  padding: 2px 2px 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: #d0d3d6 transparent;
  scrollbar-width: thin;
}
.store-shot {
  flex: 0 0 199px;
  width: 199px;
  height: 430px;
  margin: 0;
  overflow: hidden;
  background: #f7eaf0;
  border: 1px solid #e2e4e6;
  border-radius: 13px;
  scroll-snap-align: start;
}
.store-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 65px;
  align-items: start;
}
.store-article { min-width: 0; }
.store-content-section {
  padding: 42px 0;
  border-bottom: 1px solid #e4e5e7;
  scroll-margin-top: 78px;
}
.store-content-section > p {
  color: #4c5053;
  font-size: 1rem;
  line-height: 1.85;
}
.store-content-section h3 {
  margin: 0 0 7px;
  color: #292c2f;
  font-size: 1.05rem;
  line-height: 1.5;
}
.store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.store-tags span {
  padding: 8px 16px;
  color: #5f6368;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 600;
}
.store-option-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.store-option {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 23px;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 14px;
  scroll-margin-top: 82px;
}
.store-option-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: #6c2440;
  border-radius: 13px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
}
.store-option-icon.apk { background: #c2185b; }
.store-option-label {
  margin: 0 0 4px !important;
  color: #b51657 !important;
  font-size: .72rem !important;
  font-weight: 800;
}
.store-option p:last-child {
  margin: 0;
  color: #5f6368;
  font-size: .9rem;
}
.store-step-list {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  background: #fff;
  border: 1px solid #dadce0;
  border-radius: 14px;
  list-style: none;
}
.store-step-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 21px 23px;
  border-top: 1px solid #e7e8ea;
}
.store-step-list li:first-child { border-top: 0; }
.store-step-list li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: #b51657;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 800;
}
.store-step-list li strong { color: #292c2f; }
.store-step-list li p {
  margin: 3px 0 0;
  color: #63676a;
  font-size: .87rem;
}
.store-update-box {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  margin: 22px 0;
  padding: 22px;
  align-items: start;
  background: #f8f9fa;
  border-radius: 14px;
}
.store-update-box > div {
  display: grid;
  padding: 13px;
  background: #fff;
  border: 1px solid #e0e1e3;
  border-radius: 10px;
}
.store-update-box span { color: #7b7f83; font-size: .67rem; }
.store-update-box strong { color: #b51657; font-size: .93rem; }
.store-update-box p { margin: 0; color: #5f6368; font-size: .88rem; }
.store-safety-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 25px;
  padding: 22px;
  align-items: center;
  background: #fff8fb;
  border: 1px solid #ebcad8;
  border-radius: 16px;
}
.store-safety-card img {
  display: block;
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
}
.store-safety-card p:last-child {
  margin: 0;
  color: #5f6368;
  font-size: .86rem;
}
.store-conclusion .inline-install { margin-top: 10px; }
.store-aside {
  position: sticky;
  top: 92px;
  padding-top: 42px;
}
.store-aside > section {
  padding: 22px;
  border: 1px solid #dadce0;
  border-radius: 14px;
}
.store-aside h2 { margin: 0 0 14px; font-size: 1.05rem; }
.store-aside dl { margin: 0; }
.store-aside dl > div {
  padding: 11px 0;
  border-top: 1px solid #eceeef;
}
.store-aside dl > div:first-child { border-top: 0; }
.store-aside dt { color: #777; font-size: .7rem; }
.store-aside dd { margin: 2px 0 0; color: #3c4043; font-size: .82rem; font-weight: 600; }
.store-aside .store-responsible {
  display: flex;
  margin-top: 13px;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
}
.responsible-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  color: #fff;
  background: #5f6368;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
}
.store-responsible strong { font-size: .78rem; }
.store-responsible p { margin: 1px 0 0; color: #777; font-size: .67rem; }
.store-footer {
  color: #d8dadd;
  background: #202124;
}
.store-footer > div {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}
.footer-store-brand { color: #fff !important; }
.store-footer p { margin: 0; font-size: .74rem; }
.store-mobile-install { display: none; }

@media (max-width: 900px) {
  .store-search { display: none; }
  .store-content-grid { grid-template-columns: 1fr; }
  .store-aside { display: none; }
  .store-footer > div { grid-template-columns: 1fr; gap: 15px; }
}

@media (max-width: 680px) {
  .store-page { padding-bottom: 76px; }
  .store-topbar-inner { width: min(100% - 28px, 1240px); min-height: 62px; }
  .store-nav { display: none; }
  .store-main { width: min(100% - 32px, 1120px); }
  .store-breadcrumb { padding-top: 18px; }
  .store-app-summary {
    grid-template-columns: 104px 1fr;
    gap: 10px 17px;
    padding: 23px 0 32px;
  }
  .store-app-icon {
    grid-row: 1 / 4;
    width: 104px;
    height: 104px;
    padding: 10px;
    border-radius: 23px;
  }
  .store-app-details { display: contents; }
  .store-category,
  .store-app-details h1,
  .store-publisher { grid-column: 2; }
  .store-category { align-self: end; margin: 0; }
  .store-app-details h1 { align-self: center; font-size: 1.48rem; line-height: 1.25; }
  .store-publisher { align-self: start; margin: 0; }
  .store-facts,
  .store-actions,
  .store-device-note { grid-column: 1 / -1; }
  .store-facts {
    width: 100%;
    margin: 20px 0 14px;
    overflow-x: auto;
  }
  .store-facts div { flex: 1 0 94px; min-width: 94px; padding: 0 10px; }
  .store-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .store-install,
  .store-web-button { min-height: 46px; padding: 0 14px; }
  .store-device-note { margin: 4px 0 0; }
  .store-gallery { padding: 25px 0 35px; }
  .store-shot { flex-basis: 180px; width: 180px; height: 390px; }
  .store-content-section { padding: 35px 0; }
  .store-section-title h2 { font-size: 1.28rem; }
  .store-section-title.with-arrow > span { display: none; }
  .store-option { grid-template-columns: 48px 1fr; padding: 19px; gap: 14px; }
  .store-option-icon { width: 48px; height: 48px; font-size: .62rem; }
  .store-update-box { grid-template-columns: 1fr; gap: 14px; }
  .store-safety-card { grid-template-columns: 1fr; }
  .store-safety-card img { width: 100%; height: 260px; object-position: center 55%; }
  .store-mobile-install {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 9px;
    padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97);
    border-top: 1px solid #dadce0;
    box-shadow: 0 -7px 20px rgba(60,64,67,.13);
  }
  .store-mobile-install a {
    display: grid;
    min-height: 48px;
    place-items: center;
    color: #a00e49;
    border: 1px solid #b51657;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
  }
  .store-mobile-install a.primary { color: #fff; background: #b51657; }
}

@media (max-width: 430px) {
  .store-brand > span { font-size: .9rem; }
  .store-app-summary { grid-template-columns: 88px 1fr; gap: 9px 14px; }
  .store-app-icon { width: 88px; height: 88px; border-radius: 20px; }
  .store-app-details h1 { font-size: 1.3rem; }
  .store-category { font-size: .72rem; }
  .store-publisher { font-size: .75rem; }
  .store-actions { grid-template-columns: 1fr; }
  .store-shot { flex-basis: 166px; width: 166px; height: 360px; }
  .store-option { grid-template-columns: 1fr; }
}
