:root {
  --indigo: #4f46e5;
  --indigo-deep: #3525cd;
  --orange: #ff6b35;
  --ink: #111827;
  --muted: #464555;
  --line: #c7c4d8;
  --wash: #f8fafc;
  --page: #f7f9fb;
  --white: #fff;
  --shadow: 0 8px 24px rgba(17, 24, 39, .1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.home-updates {
  padding: 42px 0 26px;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, .72) 100%),
    var(--page);
  border-bottom: 1px solid rgba(199, 196, 216, .62);
}

.home-update-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
}

.home-update-head h2 {
  max-width: 680px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.home-update-head p:last-child {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.actor-head {
  margin-top: 34px;
}

.update-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.update-card {
  position: relative;
  display: flex;
  min-height: 232px;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, .07);
}

.update-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--indigo));
}

.actor-card::before {
  background: linear-gradient(90deg, var(--indigo), #14b8a6);
}

.update-card span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: var(--indigo-deep);
  background: #e8e5ff;
  border-radius: 8px;
  font-family: Outfit, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.actor-card span {
  color: #0f766e;
  background: #dff7f3;
}

.update-card h3 {
  margin-top: 16px;
  font-size: 22px;
  line-height: 1.12;
}

.update-card p {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.update-card em {
  margin-top: auto;
  color: var(--orange);
  font-family: Outfit, Inter, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.update-card:hover {
  border-color: rgba(79, 70, 229, .42);
  box-shadow: 0 14px 32px rgba(17, 24, 39, .1);
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 249, 251, .86);
  border-bottom: 1px solid rgba(199, 196, 216, .7);
  backdrop-filter: blur(12px);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 270px;
  height: 58px;
  display: flex;
  align-items: center;
}

.brand img {
  height: 58px;
  width: auto;
  max-width: none;
}

.links,
.acts {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: Outfit, Inter, sans-serif;
  font-weight: 700;
}

.links a {
  color: #252437;
}

.links a:hover,
.ghost {
  color: var(--indigo-deep);
}

.ghost,
.solid,
.shop-link,
.search button {
  border-radius: 8px;
  font-family: Outfit, Inter, sans-serif;
  font-weight: 800;
}

.ghost {
  padding: 10px 16px;
}

.solid,
.shop-link,
.search button {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(255, 107, 53, .22);
}

.solid {
  padding: 12px 22px;
}

.menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mob {
  display: none;
}

.hero {
  padding: 88px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.eyebrow,
.tags,
.section-head p,
.item-body p,
.perks p,
.help p,
footer p,
footer a {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 14px;
  font-family: Outfit, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Outfit, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: .98;
}

.lead {
  max-width: 650px;
  margin: 24px 0 30px;
  color: #4f5260;
  font-size: 19px;
  line-height: 1.7;
}

.search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 650px;
  padding: 10px 10px 10px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(17, 24, 39, .06);
}

.search span {
  color: #777587;
  font-size: 28px;
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  font: 500 16px Inter, sans-serif;
}

.search button {
  border: 0;
  padding: 13px 24px;
  cursor: pointer;
}

.tags {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 800;
}

.tags a {
  color: var(--indigo-deep);
}

.shop-link {
  display: inline-flex;
  margin-top: 42px;
  padding: 18px 32px;
}

.hero-card,
.item,
.cat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(17, 24, 39, .05);
}

.hero-card {
  overflow: hidden;
}

.preview-art {
  position: relative;
  min-height: 430px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 107, 53, .12), transparent 48%),
    linear-gradient(135deg, #ffffff 0%, #f2f4f6 100%);
}

.sun {
  position: absolute;
  width: 250px;
  height: 250px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: linear-gradient(#ffba38, #ff6b35 48%, #4f46e5);
  transform: translate(-50%, -48%);
}

.line {
  position: absolute;
  left: 50%;
  width: 280px;
  height: 12px;
  background: rgba(255, 255, 255, .84);
  transform: translateX(-50%);
}

.one { top: 203px; }
.two { top: 232px; }
.three { top: 261px; }

.palm {
  position: absolute;
  bottom: 122px;
  width: 12px;
  height: 156px;
  background: #171827;
  border-radius: 999px;
  transform-origin: bottom;
}

.palm::before {
  content: "";
  position: absolute;
  top: -32px;
  left: -54px;
  width: 120px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #171827 0 14%, transparent 15%),
    conic-gradient(from 18deg, transparent 0 8%, #171827 8% 12%, transparent 12% 22%, #171827 22% 27%, transparent 27% 38%, #171827 38% 43%, transparent 43% 54%, #171827 54% 59%, transparent 59% 70%, #171827 70% 74%, transparent 74% 100%);
}

.left {
  left: 47%;
  transform: rotate(10deg);
}

.right {
  left: 57%;
  height: 170px;
  transform: rotate(-10deg);
}

.drop-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-family: Outfit, Inter, sans-serif;
  font-size: 19px;
}

.drop-row strong {
  color: var(--orange);
  flex: 0 0 auto;
}

.band {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head h2,
.help h2 {
  font-size: 34px;
  line-height: 1.15;
}

.section-head p,
.help p {
  margin: 12px 0 0;
  font-size: 17px;
  line-height: 1.7;
}

.left-text {
  margin-left: 0;
  text-align: left;
}

.cat-grid,
.product-grid,
.perks,
.foot {
  display: grid;
  gap: 24px;
}

.cat-grid {
  grid-template-columns: repeat(4, 1fr);
}

.cat {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cat:hover,
.item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.cat span {
  color: var(--indigo);
  font-size: 42px;
}

.cat strong {
  font-family: Outfit, Inter, sans-serif;
}

.product-zone {
  padding: 78px 0;
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.item {
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.thumb {
  min-height: 260px;
  background: var(--wash);
}

.sunset {
  background:
    linear-gradient(transparent 0 42%, rgba(255,255,255,.76) 42% 46%, transparent 46% 52%, rgba(255,255,255,.76) 52% 56%, transparent 56%),
    radial-gradient(circle at 50% 48%, #ffba38 0 18%, #ff6b35 35%, #4f46e5 68%, transparent 69%),
    #f8fafc;
}

.frond {
  background:
    radial-gradient(circle at 50% 46%, #ffba38 0 24%, #ff6b35 46%, transparent 47%),
    linear-gradient(135deg, #ffffff, #f8fafc);
}

.type {
  background:
    linear-gradient(145deg, rgba(255,107,53,.18), transparent 58%),
    repeating-linear-gradient(-8deg, transparent 0 14px, rgba(79,70,229,.08) 14px 18px),
    #fff7ed;
}

.item-body {
  padding: 22px;
}

.item-body h3 {
  font-size: 22px;
}

.item-body p {
  min-height: 72px;
  line-height: 1.6;
}

.item-body div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.item-body a {
  color: var(--indigo-deep);
  font-family: Outfit, Inter, sans-serif;
  font-weight: 800;
}

.soft {
  background: var(--page);
}

.perks {
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.perks span {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e2dfff;
  color: var(--indigo);
  font-size: 28px;
}

.perks h3 {
  margin-top: 18px;
  font-size: 23px;
}

.perks p {
  max-width: 310px;
  margin: 10px auto 0;
  line-height: 1.6;
}

.help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 72px 0;
}

.help div {
  max-width: 720px;
}

.big {
  white-space: nowrap;
}

footer {
  background: #e0e3e5;
  padding: 50px 0;
}

.foot {
  grid-template-columns: 1.25fr .85fr .85fr 1.15fr;
}

footer h2 {
  font-size: 24px;
}

footer strong,
footer a {
  display: block;
  margin-bottom: 14px;
}

footer strong {
  font-family: Outfit, Inter, sans-serif;
}

.pay-box strong {
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.pay-row {
  display: flex;
  gap: 7px;
  margin: 10px 0 6px;
}

.pay-card {
  width: 42px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8dadc;
  border-radius: 2px;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 1px 2px rgba(17, 24, 39, .04);
}

.paypal {
  color: #003087;
  font-size: 8px;
}

.visa {
  color: #1434cb;
  font-style: italic;
}

.mc {
  position: relative;
}

.mc i,
.mc b {
  width: 17px;
  height: 17px;
  display: block;
  border-radius: 50%;
}

.mc i {
  margin-right: -5px;
  background: #eb001b;
}

.mc b {
  background: #f79e1b;
}

.gift {
  color: #69b345;
  font-size: 22px;
  line-height: 1;
}

.pay-box p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.page-pad {
  padding: 38px 0 78px;
}

.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.crumbs a:hover {
  color: var(--indigo-deep);
}

.buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.showcase {
  min-width: 0;
}

.product-art .preview-art {
  min-height: 520px;
}

.image-product {
  padding: 22px;
  background:
    linear-gradient(135deg, #ffffff, #f2f4f6);
}

.image-product img {
  width: 100%;
  max-height: 620px;
  object-fit: scale-down;
  border-radius: 10px;
}

.mini-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.mini {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.mini.active {
  border: 2px solid var(--indigo);
}

.tiny-sun,
.tiny-palm {
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 50%;
}

.tiny-sun {
  background: linear-gradient(#ffba38, #ff6b35 48%, #4f46e5);
}

.tiny-palm {
  background: radial-gradient(circle at 50% 50%, #ffba38 0 22%, #ff6b35 46%, transparent 47%);
}

.tiny-type {
  color: var(--indigo);
  font-family: Outfit, Inter, sans-serif;
  font-size: 30px;
  font-weight: 800;
}

.play {
  color: var(--muted);
  font-size: 32px;
}

.buy-box {
  position: sticky;
  top: 104px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.product-title {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1.08;
}

.product-cost {
  margin-top: 8px;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.cost-row strong {
  font-family: Outfit, Inter, sans-serif;
  font-size: 34px;
}

.cost-row span {
  margin-left: 10px;
  color: var(--muted);
  text-decoration: line-through;
}

.cost-row em {
  align-self: start;
  padding: 6px 9px;
  border-radius: 5px;
  background: #ffdbd0;
  color: #832600;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.stars {
  margin: 18px 0 22px;
  color: var(--orange);
  font-weight: 700;
}

.stars span {
  color: var(--muted);
  font-weight: 500;
}

.full {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  padding: 15px 18px;
}

.wish {
  background: var(--indigo);
  color: var(--white);
  border-radius: 8px;
  font-family: Outfit, Inter, sans-serif;
  font-weight: 800;
}

.facts {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.facts div {
  margin-bottom: 18px;
}

.facts strong {
  font-family: Outfit, Inter, sans-serif;
}

.facts p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.copy-block {
  width: 760px;
  margin-top: 42px;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(17, 24, 39, .05);
}

.copy-block h1 {
  font-size: 46px;
}

.small-lead {
  margin-top: 14px;
  font-size: 18px;
}

.copy-block p,
.copy-block li {
  color: var(--muted);
  line-height: 1.75;
}

.copy-block h2 {
  margin-top: 24px;
  font-size: 24px;
}

.related {
  margin-top: 62px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.resource-hero {
  padding: 74px 0 52px;
}

.center-copy {
  text-align: center;
}

.center-copy h1 {
  font-size: 58px;
}

.resource-search {
  margin: 0 auto;
}

.resource-zone {
  padding: 28px 0 86px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(17, 24, 39, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.wide-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}

.resource-card h3 {
  margin-top: 16px;
  font-size: 27px;
  line-height: 1.2;
}

.resource-card p {
  color: var(--muted);
  line-height: 1.65;
}

.resource-card strong {
  color: var(--indigo-deep);
  font-family: Outfit, Inter, sans-serif;
}

.resource-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #e2dfff;
  color: var(--indigo);
  font-size: 26px;
  font-weight: 800;
}

.orange-icon {
  background: #ffdbd0;
  color: var(--orange);
}

.dark-icon {
  background: #e0e3e5;
  color: var(--ink);
}

.resource-visual {
  border-radius: 10px;
  min-height: 260px;
}

.cutter {
  background:
    linear-gradient(90deg, #ffffff 0 38%, transparent 38%),
    radial-gradient(circle at 72% 36%, #ff6b35 0 10%, transparent 11%),
    linear-gradient(135deg, rgba(79,70,229,.12), rgba(255,107,53,.16)),
    #f2f4f6;
}

.support-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.support-card h3 {
  margin-top: 0;
}

.shop-hero {
  padding: 76px 0 22px;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, .06), rgba(255, 107, 53, .05) 52%, transparent 52%),
    var(--page);
  border-bottom: 1px solid rgba(199, 196, 216, .58);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: start;
}

.shop-top {
  max-width: 760px;
}

.shop-top h1 {
  font-size: 68px;
  line-height: .98;
  max-width: 760px;
}

.kw-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.kw-strip span {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--indigo-deep);
  font-family: Outfit, Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(17, 24, 39, .05);
}

.blog-note {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(17, 24, 39, .12);
}

.blog-note span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 6px;
  background: #ffdbd0;
  color: #832600;
  font-family: Outfit, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.blog-note h2 {
  font-size: 28px;
  line-height: 1.18;
}

.blog-note p {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.blog-note a {
  display: inline-flex;
  padding: 13px 18px;
  border-radius: 8px;
  background: var(--indigo);
  color: var(--white);
  font-family: Outfit, Inter, sans-serif;
  font-weight: 800;
}

.shop-zone {
  padding: 54px 0 90px;
}

.shop-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
}

.shop-section-head h2 {
  font-size: 36px;
}

.shop-section-head p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.deal-timer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 26px;
  padding: 26px 30px;
  border: 1px solid rgba(199, 196, 216, .82);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, .08), rgba(255, 107, 53, .08)),
    var(--white);
  box-shadow: 0 12px 32px rgba(17, 24, 39, .08);
}

.deal-timer h2 {
  font-size: 34px;
}

.deal-timer p:not(.eyebrow) {
  max-width: 610px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.timer-boxes {
  display: grid;
  grid-template-columns: repeat(4, 84px);
  gap: 12px;
}

.timer-boxes span {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(199, 196, 216, .82);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(17, 24, 39, .05);
}

.timer-boxes strong {
  color: var(--indigo-deep);
  font-family: Outfit, Inter, sans-serif;
  font-size: 31px;
  line-height: 1;
}

.timer-boxes em {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.topic-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid rgba(199, 196, 216, .82);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(17, 24, 39, .04);
}

.topic-list span {
  color: var(--ink);
  font-family: Outfit, Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.topic-list a {
  padding: 8px 11px;
  border: 1px solid rgba(79, 70, 229, .2);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--indigo-deep);
  font-family: Outfit, Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.product-find {
  max-width: none;
  margin-bottom: 16px;
}

.find-status {
  min-height: 22px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  align-items: stretch;
}

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

.shop-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(17, 24, 39, .05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.shop-img {
  display: block;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, #ffffff, #f2f4f6);
  overflow: hidden;
  padding: 8px;
}

.shop-img img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  border-radius: 8px;
  transition: transform .35s ease;
}

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

.shop-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 16px 17px;
}

.shop-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  background: #e2dfff;
  color: var(--indigo-deep);
  font-family: Outfit, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.shop-body strong {
  display: block;
  min-height: 66px;
  color: var(--ink);
  font-family: Outfit, Inter, sans-serif;
  font-size: 17px;
  line-height: 1.28;
}

.shop-desc {
  display: block;
  min-height: 90px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(199, 196, 216, .72);
}

.price-row b {
  color: var(--ink);
  font-family: Outfit, Inter, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.price-row del {
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
}

.price-row small {
  margin-left: auto;
  padding: 5px 8px;
  border-radius: 5px;
  background: #ffdbd0;
  color: #832600;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.shop-meta {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.shop-body em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-style: normal;
  font-family: Outfit, Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.download-page {
  min-height: 100vh;
  background: #f7f9fb;
}

.download-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 56px 20px;
}

.delivery-shell {
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: 340px minmax(0, 448px) 340px;
  gap: 30px;
  align-items: center;
}

.delivery-side {
  padding: 24px;
  border: 1px solid rgba(199, 196, 216, .72);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 34px rgba(17, 24, 39, .08);
}

.delivery-side span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #e2dfff;
  color: var(--indigo-deep);
  font-family: Outfit, Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-side strong {
  display: block;
  color: var(--ink);
  font-family: Outfit, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.12;
}

.delivery-side p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.delivery-side ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.delivery-side li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.delivery-side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.delivery-side-right span {
  background: #ffdbd0;
  color: #832600;
}

.delivery-side-stack {
  display: grid;
  gap: 16px;
}

.related-side {
  display: grid;
  gap: 12px;
}

.related-side strong {
  margin-bottom: 2px;
}

.related-mini {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(199, 196, 216, .72);
  border-radius: 10px;
  background: var(--white);
}

.related-mini img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 8px;
}

.related-mini span {
  min-width: 0;
  display: block;
  padding-top: 4px;
}

.related-mini b {
  display: block;
  color: var(--ink);
  font-family: Outfit, Inter, sans-serif;
  font-size: 15px;
  line-height: 1.15;
}

.related-mini em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.download-card {
  width: 100%;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(17, 24, 39, .12);
  text-align: center;
}

.download-img {
  width: 100%;
  max-height: 336px;
  object-fit: scale-down;
  border-radius: 10px;
  background: #f2f4f6;
}

.download-card h1 {
  margin-top: 20px;
  font-size: 30px;
  line-height: 1.08;
}

.download-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.download-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.download-or {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.download-or::before,
.download-or::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.email-label {
  display: block;
  color: var(--ink);
  font-family: Outfit, Inter, sans-serif;
  font-size: 17px;
}

.download-btn,
.download-form button {
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: Outfit, Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.download-btn {
  display: flex;
  justify-content: center;
  padding: 14px 18px;
}

.download-form {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 10px;
}

.download-form input {
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: 600 15px Inter, sans-serif;
}

.download-form button {
  padding: 14px 15px;
  background: var(--indigo);
}

.download-ok {
  display: block;
  margin-top: 18px;
  padding: 12px;
  border-radius: 8px;
  background: #dff7f3;
  color: #0f766e;
  font-size: 14px;
}

.download-bad {
  display: block;
  margin-top: 18px;
  padding: 12px;
  border-radius: 8px;
  background: #ffdbd0;
  color: #832600;
  font-size: 14px;
}

.download-card small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.custom-note {
  padding: 24px;
  border: 1px solid rgba(79, 70, 229, .22);
  border-radius: 12px;
  background: #f8fafc;
  text-align: left;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}

.custom-note strong {
  display: block;
  color: var(--ink);
  font-family: Outfit, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.12;
}

.custom-note p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.custom-note a {
  display: inline-flex;
  padding: 12px 15px;
  border-radius: 8px;
  background: var(--indigo);
  color: var(--white);
  font-family: Outfit, Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.chat-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 15px;
  border: 0;
  border-radius: 8px;
  background: var(--indigo);
  color: var(--white);
  font-family: Outfit, Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(79, 70, 229, .18);
}

.delivery-side .chat-open {
  margin-top: 18px;
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(255, 107, 53, .18);
}

@media (max-width: 1100px) {
  .delivery-shell {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 18px;
  }

  .download-card {
    order: 1;
  }

  .related-side {
    order: 2;
  }

  .delivery-side-stack {
    order: 3;
  }
}

@media (max-width: 640px) {
  .download-wrap {
    place-items: start center;
    padding: 18px 14px 28px;
  }

  .delivery-shell {
    gap: 14px;
  }

  .download-card,
  .delivery-side,
  .custom-note {
    padding: 16px;
    border-radius: 10px;
  }

  .download-img {
    max-height: none;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .download-card h1 {
    margin-top: 16px;
    font-size: 25px;
    line-height: 1.08;
  }

  .download-card p,
  .delivery-side p,
  .custom-note p {
    font-size: 14px;
  }

  .download-actions {
    margin-top: 18px;
  }

  .download-form {
    grid-template-columns: 1fr;
  }

  .download-form button,
  .download-btn {
    width: 100%;
  }

  .related-mini {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .related-mini img {
    width: 70px;
    height: 70px;
  }

  .delivery-side strong,
  .custom-note strong {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .links,
  .acts {
    display: none;
  }

  .menu {
    display: block;
  }

  .mob.open {
    display: grid;
    gap: 14px;
    padding: 0 20px 20px;
    font-family: Outfit, Inter, sans-serif;
    font-weight: 800;
  }

  .hero {
    padding: 58px 0 70px;
  }

  .hero-grid,
  .product-grid,
  .perks,
  .foot {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .search {
    margin: 0 auto;
  }

  .tags {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 32px, 1120px);
  }

  h1 {
    font-size: 42px;
  }

  .search {
    border-radius: 18px;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .search input {
    flex: 1 1 calc(100% - 44px);
  }

  .search button {
    width: 100%;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .preview-art {
    min-height: 340px;
  }

  .sun {
    width: 210px;
    height: 210px;
  }

  .line {
    width: 230px;
  }

  .one { top: 163px; }
  .two { top: 190px; }
  .three { top: 217px; }

  .palm {
    bottom: 92px;
  }
}
