﻿:root {
  --primary: #7C3AED;
  --primary-light: #EDE9FE;
  --secondary: #F97316;
  --secondary-light: #FFEDD5;
  --accent: #14B8A6;
  --accent-light: #CCFBF1;
  --soft-yellow: #FEF3C7;
  --soft-pink: #FCE7F3;
  --bg: #FAFAFF;
  --text: #111827;
  --muted: #6B7280;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --success: #10B981;
  --danger: #EF4444;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 6px 18px rgba(17, 24, 39, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(124, 58, 237, 0.09), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(20, 184, 166, 0.08), transparent 29%),
    var(--bg);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: clamp(2rem, 4vw, 2.7rem) 0; }
.center { text-align: center; }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(250, 250, 255, 0.96) 0%, rgba(255, 255, 255, 0.94) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.2rem;
  min-height: 96px;
}
.brand { text-decoration: none; display: inline-flex; flex-direction: column; gap: 0.1rem; }
.brand-title { font-size: 1.68rem; font-weight: 800; line-height: 1; }
.brand-pixel { color: var(--primary); }
.brand-craft { color: var(--text); }
.brand-spark { color: var(--secondary); }
.brand-tag { font-size: 0.78rem; color: var(--muted); font-weight: 600; }

.nav {
  display: flex;
  justify-content: center;
  gap: 0.28rem;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.58rem 0.72rem;
  border-radius: 999px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.nav a:hover { color: var(--primary); background: #f8f6ff; }
.nav a:active { transform: translateY(1px); }
.nav a.active { color: var(--primary); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.32rem;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.nav-actions { display: flex; gap: 0.5rem; }
.nav-actions { justify-self: end; }
.circle-action {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.05rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.circle-action:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(17, 24, 39, 0.14); }
.search-action { background: var(--primary-light); }
.store-action { background: var(--soft-yellow); }

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 14px;
  padding: 0.5rem 0.7rem;
  font-size: 1.05rem;
}

main { min-height: 60vh; }

.hero { padding: clamp(3.2rem, 6vw, 4.4rem) 0 2.8rem; }
.hero-layout { display: grid; gap: 1.5rem; align-items: center; }
.home-hero-layout { grid-template-columns: 1.03fr 0.97fr; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--soft-yellow);
  border: 1px solid #f7dfa1;
  border-radius: 999px;
  padding: 0.5rem 0.88rem;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}
.hero h1 {
  margin: 0 0 0.8rem;
  line-height: 1.12;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}
.gradient-text {
  background: linear-gradient(90deg, #7C3AED 0%, #9f67ff 65%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.highlight-orange { color: var(--secondary); }
.highlight-teal { color: var(--accent); }
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1rem 0 1.2rem;
}
.mini-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.55rem;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.mini-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.mini-purple { background: var(--primary-light); color: var(--primary); }
.mini-teal { background: var(--accent-light); color: #0f766e; }
.mini-orange { background: var(--secondary-light); color: #c2410c; }

.hero-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; }

.hero-collage {
  position: relative;
  min-height: 470px;
  border-radius: 28px;
  background: linear-gradient(145deg, #f8f5ff 0%, #fff3f9 56%, #ffffff 100%);
  border: 1px solid #ede9fe;
  overflow: hidden;
  padding: 1rem;
}
.blob {
  position: absolute;
  right: -65px;
  top: -70px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.27), rgba(124, 58, 237, 0.05));
}
.collage-card {
  position: absolute;
  background: #fff;
  border: 1px solid #ece9ff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 0.7rem;
}
.collage-card h3, .collage-card h4 { margin: 0 0 0.38rem; line-height: 1.25; }
.collage-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.collage-card.large { left: 18px; top: 18px; width: 58%; min-height: 212px; }
.collage-card.small { width: 42%; min-height: 145px; }
.card-a { right: 16px; top: 34px; }
.card-b { right: 30px; bottom: 118px; }
.collage-card.review { left: 28px; bottom: 28px; width: 42%; }
.collage-card.mini { right: 12px; bottom: 18px; width: 42%; min-height: 96px; }
.coloring-pack { background: linear-gradient(170deg, #ffffff, #f7f2ff); }
.worksheet-card { background: linear-gradient(170deg, #ffffff, #ecfeff); }
.story-card-mini { background: linear-gradient(170deg, #ffffff, #fff7ed); }
.quote-card { background: linear-gradient(170deg, #ffffff, #fdf4ff); }
.palette-card { background: linear-gradient(170deg, #ffffff, #f0fdfa); }
.collage-card img {
  width: 100%;
  height: 86px;
  margin-top: 0.45rem;
  border-radius: 12px;
  object-fit: cover;
}
.coloring-pack img { height: 108px; }
.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.25rem 0.5rem;
  background: var(--soft-yellow);
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.deco { position: absolute; }
.deco-rainbow {
  right: 28px;
  top: 10px;
  width: 72px;
  height: 42px;
  border-radius: 42px 42px 0 0;
  background: linear-gradient(180deg, #f97316 0 20%, #facc15 20% 40%, #22c55e 40% 60%, #3b82f6 60% 80%, #a855f7 80% 100%);
}
.deco-star {
  right: 12px;
  top: 62px;
  width: 12px;
  height: 12px;
  background: #f59e0b;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.deco-pencil {
  left: 52%;
  bottom: 12px;
  width: 68px;
  height: 8px;
  background: linear-gradient(90deg, #fb7185 0 33%, #f59e0b 33% 66%, #3b82f6 66% 100%);
  border-radius: 999px;
}
.deco-heart {
  left: 70%;
  top: 16px;
  width: 12px;
  height: 12px;
  background: #ec4899;
  transform: rotate(-45deg);
}
.deco-heart::before,
.deco-heart::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ec4899;
}
.deco-heart::before { top: -6px; left: 0; }
.deco-heart::after { top: 0; left: 6px; }

.stores-strip-wrap { padding-top: 0.4rem; }
.stores-strip {
  border: 1px solid #ddd6fe;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}
.store-col { padding: 1.15rem; border-right: 1px solid #efeaff; }
.store-col:last-child { border-right: 0; }
.store-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.store-icon.purple { background: var(--primary-light); color: var(--primary); }
.store-icon.orange { background: var(--secondary-light); color: #c2410c; }
.store-icon.teal { background: var(--accent-light); color: #0f766e; }

h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin: 0 0 0.45rem; }

.product-grid { display: grid; gap: 1rem; }
.featured-products-section {
  background: #fff;
}
.home-product-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.product-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 0.8rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(17, 24, 39, 0.12); }
.product-image {
  height: 152px;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--primary-light), var(--accent-light));
  overflow: hidden;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.fav-btn {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  border: 0;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: #9ca3af;
  cursor: pointer;
}
.product-card h3 { margin: 0.7rem 0 0.2rem; font-size: 1rem; }
.product-card p { margin: 0 0 0.35rem; color: var(--muted); font-size: 0.88rem; }
.product-list-card .badge { margin-top: 0.6rem; }
.products-hero {
  padding-top: 3.4rem;
  padding-bottom: 1rem;
}
.products-hero h1 { margin-bottom: 0.45rem; }
.products-hero-banner { padding-top: 2rem; padding-bottom: 0.7rem; }
.products-hero-banner .hero-banner-inner {
  background: #fff;
}
.hero-banner-inner {
  border-radius: 26px;
  border: 1px solid #e9ddff;
  background: linear-gradient(120deg, #efe8ff 0%, #f5eeff 45%, #efe3ff 100%);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}
.hero-banner-inner h1 { font-size: clamp(2rem, 3vw, 3rem); margin: 0 0 0.5rem; }
.hero-banner-inner p { font-size: 1.05rem; max-width: 560px; margin: 0; }
.hero-banner-inner img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}
.premium-hero-banner .hero-banner-inner {
  background: linear-gradient(120deg, #f3ecff 0%, #f8f3ff 45%, #efe4ff 100%);
}
.premium-list-card strong { color: var(--primary); }
.premium-list-card .btn { width: 100%; }
.premium-benefits {
  border-color: #e9ddff;
  background: linear-gradient(180deg, #fff 0%, #f7f1ff 100%);
}

.products-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
}
.products-sidebar {
  border: 1px solid #ece7ff;
  border-radius: 20px;
  background: #fff;
  padding: 0.8rem;
  height: fit-content;
}
.filter-box + .filter-box { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #f0edff; }
.filter-box h3 { margin: 0 0 0.6rem; font-size: 1rem; }
.filter-box ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.filter-box a {
  text-decoration: none;
  color: #374151;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  display: block;
}
.filter-box a:hover, .filter-box a.active {
  background: #f2ecff;
  color: #6d28d9;
  font-weight: 700;
}

.products-main { min-width: 0; }
.products-topbar { margin-bottom: 0.8rem; }
.products-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  border: 1px solid #ece7ff;
  border-radius: 24px;
  padding: 1rem;
}
.products-filter {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 0.7rem;
  margin-bottom: 0;
}
.products-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 0.9rem;
}
.products-list-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.products-benefits {
  border: 1px solid #ece7ff;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #faf7ff 100%);
  padding: 0.7rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
}
.products-benefits div {
  border: 1px solid #f0edff;
  border-radius: 12px;
  padding: 0.6rem;
}
.products-benefits h4 { margin: 0 0 0.2rem; font-size: 0.95rem; }
.products-benefits p { margin: 0; font-size: 0.84rem; color: #6b7280; }
.products-pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.products-pagination a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #374151;
}
.products-pagination a.active {
  background: #7c3aed;
  color: #fff;
  border-color: #7c3aed;
}

.product-detail-panel {
  border: 1px solid #ece7ff;
  border-radius: 26px;
  padding: 1rem;
  background: linear-gradient(145deg, #ffffff, #faf7ff);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.product-detail-media img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.product-media-gallery {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.product-media-item {
  border: 1px solid #ece7ff;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.product-media-video iframe {
  border: 0;
  width: 100%;
  height: 140px;
}
.product-media-video video {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: #000;
}
.product-media-video a {
  color: #6d28d9;
  text-decoration: none;
  font-weight: 700;
}
.product-detail-copy h1 { margin: 0.55rem 0 0.45rem; }
.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0.2rem 0 0.3rem;
}

.premium-panel {
  border-radius: 30px;
  background: linear-gradient(160deg, #f4efff 0%, #ffeef6 56%, #ffffff 100%);
  padding: 1.5rem;
  border: 1px solid #eadffe;
}
.grid { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.premium-card, .why-card, .story-card, .blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 0.95rem;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.premium-card:hover, .why-card:hover, .story-card:hover, .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.11);
}
.premium-card img, .blog-card img {
  border-radius: 14px;
  background: #f3f4f6;
  width: 100%;
  height: 165px;
  object-fit: cover;
  margin-bottom: 0.6rem;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
}
.why-icon.purple { background: var(--primary-light); }
.why-icon.teal { background: var(--accent-light); }
.why-icon.orange { background: var(--secondary-light); }
.why-icon.pink { background: var(--soft-pink); }

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.stars { color: #f59e0b; margin: 0.45rem 0; }
.story-card blockquote { margin: 0 0 0.7rem; color: #374151; }
.dots { margin-top: 0.9rem; display: flex; gap: 0.45rem; justify-content: center; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #d1d5db; }
.dot.active { background: var(--primary); }

.blog-panel {
  border-radius: 28px;
  border: 1px solid #e6ddff;
  background: var(--white);
  padding: 1.2rem;
}
.blog-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.8rem; }

.blog-hero { padding-top: 1.6rem; padding-bottom: 0.8rem; }
.blog-hero-inner {
  border-radius: 28px;
  border: 1px solid #e9ddff;
  background: linear-gradient(125deg, #f6f0ff 0%, #fff5fb 40%, #f1e7ff 100%);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1rem;
  align-items: center;
}
.blog-hero-inner h1 {
  margin: 0.45rem 0 0.6rem;
  line-height: 1.05;
  font-size: clamp(2rem, 4.5vw, 4rem);
}
.blog-hero-inner p { margin: 0; font-size: 1.04rem; max-width: 700px; color: #374151; }
.blog-hero-inner img {
  width: 100%;
  height: 300px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid #ebe4ff;
}

.blog-section { padding-top: 1rem; }
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1rem;
  align-items: start;
}
.blog-main h2 { margin-bottom: 0.8rem; }
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.blog-post-card {
  background: #fff;
  border: 1px solid #ece7ff;
  border-radius: 16px;
  padding: 0.7rem;
  box-shadow: var(--shadow-soft);
}
.blog-post-card img {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 0.45rem;
}
.blog-post-card h3 {
  margin: 0.32rem 0;
  line-height: 1.24;
  font-size: 1.3rem;
}
.blog-post-card p { margin: 0 0 0.45rem; color: #6b7280; font-size: 0.96rem; }
.blog-meta {
  display: flex;
  gap: 0.42rem;
  align-items: center;
  color: #6b7280;
  font-size: 0.84rem;
  margin-bottom: 0.55rem;
}

.blog-sidebar { display: grid; gap: 0.8rem; }
.blog-search, .blog-widget {
  border: 1px solid #ece7ff;
  border-radius: 16px;
  background: #fff;
  padding: 0.8rem;
}
.blog-widget h3 { margin: 0 0 0.45rem; font-size: 1.18rem; }
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.category-tags a {
  text-decoration: none;
  border-radius: 999px;
  background: #f4efff;
  color: #5b21b6;
  padding: 0.3rem 0.68rem;
  font-size: 0.84rem;
  font-weight: 700;
}
.category-tags a.active { background: #7c3aed; color: #fff; }
.category-tags a span { opacity: 0.75; }
.subscribe-widget {
  background: linear-gradient(170deg, #f7f0ff, #fff4fb);
}
.subscribe-widget p {
  margin: 0 0 0.55rem;
  color: #4b5563;
}
.subscribe-widget .btn { width: 100%; margin-top: 0.5rem; }
.subscribe-widget small { display: block; margin-top: 0.45rem; color: #6b7280; }

.post-page { padding-top: 1.2rem; }
.post-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1rem;
  align-items: start;
}
.post-main h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  margin: 0.45rem 0 0.5rem;
}
.post-breadcrumb {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #6b7280;
}
.post-breadcrumb a { text-decoration: none; color: #374151; }
.post-tags { margin-top: 0.8rem; display: flex; gap: 0.35rem; flex-wrap: wrap; }
.post-sub { color: #4b5563; font-size: 1.12rem; max-width: 840px; }
.post-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid #ece7ff;
  padding-bottom: 0.6rem;
  margin-bottom: 0.75rem;
}
.post-share {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #6b7280;
  flex-wrap: wrap;
}
.post-share-label {
  font-weight: 700;
  color: #475569;
}
.post-share a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #e9ddff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
  font-weight: 700;
}
.post-hero-img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid #ece7ff;
  max-height: 430px;
  object-fit: cover;
}
.post-content {
  margin-top: 1rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid #ece6ff;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
  color: #1f2937;
  line-height: 1.9;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 26px rgba(31, 41, 55, 0.07);
}
.post-content p {
  margin: 0 0 0.9rem;
}
.post-content p:last-child {
  margin-bottom: 0;
}
.post-content::first-letter {
  float: left;
  font-size: 2.4rem;
  line-height: 0.95;
  font-weight: 800;
  color: #6d28d9;
  margin-right: 0.38rem;
  margin-top: 0.18rem;
}
.related-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.6rem;
}
.related-mini {
  text-decoration: none;
  border: 1px solid #ece7ff;
  border-radius: 12px;
  padding: 0.45rem;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 0.5rem;
  background: #fff;
}
.related-mini img {
  width: 84px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
}
.related-mini strong { display: block; color: #111827; line-height: 1.3; }
.related-mini small { color: #6b7280; }
.post-nav-row {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid #ece7ff;
  padding-top: 0.8rem;
}
.post-nav-row a { color: #7c3aed; text-decoration: none; font-weight: 700; }

.post-side { display: grid; gap: 0.8rem; }
.side-card {
  border: 1px solid #ece7ff;
  border-radius: 16px;
  background: #fff;
  padding: 0.9rem;
}
.author-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.6rem;
}
.side-card h3 { margin: 0 0 0.5rem; }
.side-card p { margin: 0 0 0.5rem; color: #4b5563; }
.side-card a { color: #7c3aed; text-decoration: none; font-weight: 700; }
.side-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.side-list li {
  display: flex;
  justify-content: space-between;
  border: 1px solid #f0edff;
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
}
.side-posts { display: grid; gap: 0.55rem; }
.side-posts a {
  text-decoration: none;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0.45rem;
  align-items: center;
  color: #111827;
}
.side-posts img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.final-cta {
  border-radius: 28px;
  border: 1px solid #eadffe;
  background: linear-gradient(120deg, #efe8ff 0%, #ffe7f2 52%, #fffdf5 100%);
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}
.cta-visual {
  min-height: 180px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #f0ebff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
}
.cta-rainbow {
  width: 130px;
  height: 72px;
  border-radius: 72px 72px 0 0;
  background: linear-gradient(180deg, #fb923c 0 20%, #facc15 20% 40%, #34d399 40% 60%, #60a5fa 60% 80%, #c084fc 80% 100%);
}
.cta-cart {
  width: 110px;
  height: 66px;
  border-radius: 16px;
  background: linear-gradient(145deg, #8b5cf6, #6d28d9);
  position: relative;
}
.cta-cart::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 16px;
  height: 24px;
  background: rgba(255,255,255,0.22);
  border-radius: 10px;
}
.cta-cards {
  width: 44px;
  height: 54px;
  border-radius: 10px;
  background: linear-gradient(145deg, #f9a8d4, #fbcfe8);
  transform: rotate(8deg);
}

.official-hero { padding-top: 1.2rem; padding-bottom: 0.8rem; }
.official-hero-card {
  border: 1px solid #e8e7ef;
  border-radius: 30px;
  background: #fff;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}
.official-hero-art {
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #ebe6fb;
  background: #fff;
}
.official-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.official-chip {
  display: inline-flex;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #ede9fe;
  background: #f5f0ff;
  color: #43347a;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.official-hero-copy h1 {
  margin: 0.25rem 0 0.55rem;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1.06;
}
.official-hero-copy p { margin: 0; color: #374151; font-size: 1.05rem; }
.official-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.9rem 0 1rem;
}
.official-tags span {
  border: 1px solid #e8e8ef;
  border-radius: 12px;
  padding: 0.38rem 0.65rem;
  font-weight: 600;
  background: #fff;
}
.official-hero-art {
  min-height: 320px;
  position: relative;
  border-radius: 22px;
  border: 1px solid #ece8f8;
  background: radial-gradient(circle at 30% 20%, #f3edff 0%, #ffffff 62%);
  overflow: hidden;
}
.spark {
  position: absolute;
  font-size: 1.1rem;
  color: #f59e0b;
  text-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
}
.spark.s1 { right: 7%; top: 16%; }
.spark.s2 { left: 10%; top: 18%; color: #a78bfa; }
.spark.s3 { right: 20%; top: 8%; color: #fb7185; }
.official-hero-art .tile {
  position: absolute;
  border-radius: 14px;
  border: 1px solid #ebe7ff;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 0.58rem 0.7rem;
  font-weight: 700;
  color: #374151;
}
.tile-a { left: 9%; top: 9%; transform: rotate(-8deg); }
.tile-b { right: 7%; top: 9%; transform: rotate(5deg); }
.tile-c { left: 25%; top: 33%; transform: rotate(-4deg); }
.tile-d { right: 9%; top: 32%; transform: rotate(8deg); }
.store-badge {
  position: absolute;
  bottom: 10%;
  padding: 0.78rem 1rem;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.store-badge.etsy {
  left: 20%;
  background: linear-gradient(140deg, #fb923c, #ea580c);
}
.store-badge.tpt {
  right: 11%;
  background: linear-gradient(140deg, #2dd4bf, #0f766e);
}

.official-dual { padding-top: 0.65rem; }
.official-store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.official-card {
  border: 1px solid #e8e8ef;
  border-radius: 24px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.05);
}
.official-card h2 { margin: 0 0 0.4rem; }
.official-card p { margin: 0; color: #4b5563; }
.official-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.8rem 0;
}
.official-pills span {
  border-radius: 999px;
  border: 1px solid #ece7ff;
  background: #faf8ff;
  padding: 0.3rem 0.62rem;
  font-size: 0.86rem;
}
.etsy-card { border-color: #fed7aa; background: linear-gradient(180deg, #fff 0%, #fffaf4 100%); }
.tpt-card { border-color: #99f6e4; background: linear-gradient(180deg, #fff 0%, #f2fffd 100%); }

.official-compare { padding-top: 0.5rem; }
.official-heading {
  color: #1f1b53;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  position: relative;
  display: inline-block;
}
.official-heading::before,
.official-heading::after {
  content: "····";
  letter-spacing: 3px;
  color: #c4b5fd;
  font-size: 0.9rem;
  vertical-align: middle;
  margin: 0 0.6rem;
}
.official-compare-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.official-compare-card {
  border-radius: 20px;
  padding: 0.95rem;
  background: #fff;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.04);
}
.official-compare-card.etsy { border: 1px solid #fdba74; }
.official-compare-card.tpt { border: 1px solid #5eead4; }
.official-compare-card h3 { margin: 0 0 0.45rem; }
.official-compare-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #374151;
}

.official-note-wrap { padding-top: 0.5rem; }
.official-note {
  border: 1px solid #dccffc;
  border-radius: 20px;
  padding: 0.95rem 1rem;
  background: linear-gradient(120deg, #f8f4ff, #f9f7ff);
}
.official-note strong { display: block; margin-bottom: 0.2rem; }
.official-note p { margin: 0; color: #4b5563; }

.official-faq { padding-top: 0.7rem; }
.official-faq-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.official-faq-item {
  border: 1px solid #ececf3;
  border-radius: 20px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.03);
}
.official-faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.04rem;
  line-height: 1.33;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.official-faq-item p { margin: 0; color: #4b5563; }
.q-drop {
  margin-left: auto;
  color: #6b7280;
  font-size: 1rem;
}
.q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(130deg, #a78bfa, #7c3aed);
}
.official-faq-item:nth-child(2) .q-icon { background: linear-gradient(130deg, #2dd4bf, #0f766e); }
.official-faq-item:nth-child(3) .q-icon { background: linear-gradient(130deg, #fb7185, #ec4899); }
.official-faq-link { margin: 0.7rem 0 0; }
.official-faq-link a { color: #6d28d9; text-decoration: none; font-weight: 700; }

.official-cta-wrap { padding-top: 0.6rem; }
.official-cta {
  border: 1px solid #e4d6ff;
  border-radius: 26px;
  background: linear-gradient(120deg, #fff6e8 0%, #f6f8ff 46%, #eaf4ff 100%);
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.official-cta h2 { margin: 0 0 0.15rem; }
.official-cta p { margin: 0; color: #4b5563; }
.official-cta-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cta-deco-left,
.cta-deco-right {
  position: absolute;
  pointer-events: none;
}
.cta-deco-left {
  left: -16px;
  bottom: -10px;
  width: 180px;
  height: 120px;
  border-radius: 120px 120px 0 0;
  background:
    radial-gradient(circle at 28% 75%, #fff 0 24%, transparent 26%),
    linear-gradient(180deg, #fb923c 0 16%, #facc15 16% 32%, #34d399 32% 48%, #60a5fa 48% 64%, #c084fc 64% 80%, #f9a8d4 80% 100%);
  opacity: 0.45;
}
.cta-deco-right {
  right: 20px;
  bottom: 12px;
  width: 120px;
  height: 82px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f9a8d4, #f472b6);
  opacity: 0.35;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(0.98); box-shadow: var(--shadow-soft); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-etsy { background: var(--secondary); color: #fff; }
.btn-tpt { background: var(--accent); color: #fff; }
.btn-outline { border-color: var(--primary); color: var(--primary); background: #fff; }
.btn-outline-orange { border-color: var(--secondary); color: var(--secondary); background: #fff; }
.btn-outline-teal { border-color: var(--accent); color: var(--accent); background: #fff; }

.badge {
  display: inline-flex;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 0.28rem 0.6rem;
  margin-bottom: 0.45rem;
}
.badge.etsy { background: #ffedd5; color: #9a3412; }
.badge.tpt { background: #ccfbf1; color: #115e59; }
.badge.both { background: #ede9fe; color: #5b21b6; }

.form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem;
  font: inherit;
  background: #fff;
  min-height: 44px;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.footer {
  margin-top: 3rem;
  padding: 2.2rem 0 1rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%);
}
.footer-grid { display: grid; gap: 1rem; }
.footer-grid-5 { grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr; }
.footer a { display: block; text-decoration: none; margin: 0.32rem 0; color: #374151; }
.footer a:hover { color: var(--primary); }
.footer-brand { margin: 0; }
.footer-tagline { margin: 0.25rem 0 0.65rem; color: var(--muted); font-weight: 600; }
.social-row { display: flex; flex-wrap: wrap; gap: 0.5rem 0.85rem; margin-top: 0.7rem; }
.footer-subscribe .btn { width: 100%; margin-top: 0.5rem; }
.footer-bottom { padding-top: 1rem; color: var(--muted); text-align: center; }

.card {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #fdfcff 100%);
  border: 1px solid #ece8f7;
  border-radius: 24px;
  padding: 1rem;
  box-shadow:
    0 10px 26px rgba(31, 41, 55, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: #ddd6fe;
  box-shadow:
    0 18px 34px rgba(31, 41, 55, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}
.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 0.8rem;
  background: #f3f4f6;
}
.empty {
  background: #fff;
  border: 2px dashed var(--border);
  border-radius: 14px;
  padding: 1rem;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .home-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .container { width: min(1180px, 94%); }
  .nav-wrap { grid-template-columns: 1fr auto auto; min-height: 82px; }
  .menu-toggle { display: inline-block; }
  .nav-actions { display: flex; gap: 0.45rem; }
  .circle-action { width: 42px; height: 42px; font-size: 0.95rem; }
  .nav {
    display: none;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 78px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0.6rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 18px 28px rgba(31, 41, 55, 0.15);
    z-index: 60;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.72rem 0.8rem; }
  .home-hero-layout,
  .stores-strip,
  .grid-3,
  .grid-4,
  .final-cta,
  .footer-grid-5 { grid-template-columns: 1fr; }
  .blog-hero-inner,
  .blog-layout,
  .post-layout,
  .official-hero-card,
  .official-store-grid,
  .official-compare-grid,
  .official-cta { grid-template-columns: 1fr; }
  .official-faq-grid { grid-template-columns: 1fr; }
  .cta-deco-left,
  .cta-deco-right { display: none; }
  .blog-posts-grid { grid-template-columns: 1fr; }
  .hero-banner-inner { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .products-grid-wrap { grid-template-columns: 1fr; }
  .products-filter { grid-template-columns: 1fr; }
  .products-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail-grid { grid-template-columns: 1fr; }
  .hero-collage { min-height: 360px; }

  .post-main {
    border: 1px solid #e9defd;
    border-radius: 24px;
    background: linear-gradient(160deg, #f7f4ff 0%, #f1f8ff 100%);
    padding: 0.95rem;
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.08);
  }
  .post-main h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }
  .post-sub {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .post-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }
  .post-share { gap: 0.5rem; }
  .post-share-label { width: 100%; }
  .post-share a {
    width: 34px;
    height: 34px;
  }
  .post-hero-img {
    max-height: 340px;
    border-radius: 16px;
  }
  .post-content {
    font-size: 1.12rem;
    line-height: 1.85;
  }
  .post-side {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .side-card {
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  }
}

@media (max-width: 760px) {
  .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-features { grid-template-columns: 1fr; }
  .blog-panel-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .hero { padding-top: 3.6rem; }
  body { overflow-x: hidden; }
  .btn { width: 100%; min-height: 44px; }
  .section { padding: 1.2rem 0; }
  .site-header { backdrop-filter: blur(8px); }
  .nav { left: 3%; right: 3%; top: 74px; }
  .post-page { padding-top: 0.55rem; }
  .post-main { border-radius: 18px; padding: 0.8rem; }
  .post-breadcrumb { font-size: 0.82rem; gap: 0.3rem; }
  .post-tags { margin-top: 0.55rem; gap: 0.3rem; }
  .post-main h1 { margin-top: 0.3rem; margin-bottom: 0.45rem; }
  .post-sub { font-size: 1.03rem; }
  .blog-meta { font-size: 0.95rem; gap: 0.35rem; }
  .post-content { font-size: 1rem; line-height: 1.72; }
  .post-nav-row {
    flex-direction: column;
    gap: 0.45rem;
  }
  .post-nav-row a {
    border: 1px solid #e4dcfb;
    border-radius: 12px;
    padding: 0.6rem 0.7rem;
    background: #fff;
  }
  .author-card img {
    width: 82px;
    height: 82px;
  }
  .home-product-grid { grid-template-columns: 1fr; }
  .products-list-grid { grid-template-columns: 1fr; }
  .related-mini-grid { grid-template-columns: 1fr; }
  .collage-card.large { width: calc(100% - 36px); }
  .card-a, .card-b, .collage-card.review, .collage-card.mini { position: static; width: 100%; margin-top: 0.7rem; }
  .hero-collage { min-height: 0; display: flex; flex-direction: column; }
  .deco, .blob { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Official Stores Premium Override */
.official-hero { padding-top: 1rem; padding-bottom: 0.5rem; }
.official-hero-card {
  border: 1px solid #ebeaf2;
  border-radius: 32px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92) 42%, rgba(248, 246, 255, 0.95)),
    linear-gradient(130deg, #ffffff 0%, #fbfaff 48%, #f8fdff 100%);
  padding: 1.55rem;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.2rem;
  align-items: center;
  box-shadow: 0 14px 36px rgba(29, 17, 53, 0.08);
}
.official-chip {
  padding: 0.43rem 0.92rem;
  border-radius: 999px;
  border: 1px solid #ebe2ff;
  background: linear-gradient(120deg, #faf7ff, #f4eeff);
  color: #514096;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.official-hero-copy h1 {
  margin: 0.16rem 0 0.6rem;
  font-size: clamp(3rem, 5.3vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #21195a;
}
.official-hero-copy p {
  margin: 0;
  color: #303a4d;
  font-size: clamp(1.15rem, 1.7vw, 1.75rem);
  line-height: 1.5;
  max-width: 34ch;
}
.official-tags { gap: 0.62rem; margin: 1rem 0 1.15rem; }
.official-tags span {
  border: 1px solid #e8e9f3;
  border-radius: 14px;
  padding: 0.44rem 0.75rem;
  font-weight: 700;
  color: #455066;
  background: linear-gradient(120deg, #ffffff, #fcfbff);
}
.official-hero-art {
  min-height: 360px;
  border-radius: 26px;
  border: 1px solid #ebe7f7;
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 241, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 52%),
    radial-gradient(circle at 78% 72%, rgba(236, 252, 255, 0.9), rgba(255, 255, 255, 0.2) 56%);
}
.official-hero-art .tile {
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #fcfaff);
  box-shadow: 0 12px 24px rgba(90, 63, 153, 0.15);
  padding: 0.66rem 0.78rem;
  font-weight: 800;
}
.store-badge {
  padding: 0.86rem 1.06rem;
  border-radius: 16px;
  font-size: 1.2rem;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.2);
}
.official-store-grid { gap: 1rem; }
.official-card {
  border: 1px solid #e7eaf1;
  border-radius: 26px;
  background: linear-gradient(145deg, #ffffff, #fcfbff);
  padding: 1.15rem;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}
.official-card h2 { font-size: clamp(2rem, 3vw, 2.6rem); }
.official-card p { color: #445062; font-size: 1.1rem; }
.official-pills span { font-size: 0.9rem; color: #4b5563; }
.official-compare-card {
  border-radius: 22px;
  padding: 1.05rem;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}
.official-note {
  border-radius: 22px;
  padding: 1.06rem 1.12rem;
  background: linear-gradient(120deg, #f8f4ff, #f3f5ff);
  box-shadow: 0 10px 22px rgba(101, 58, 174, 0.1);
}
.official-faq-item {
  border-radius: 22px;
  padding: 1.05rem;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.04);
}
.official-faq-link a { font-weight: 800; font-size: 1.02rem; }
.official-cta {
  border-radius: 30px;
  background: linear-gradient(120deg, #fff5e5 0%, #f6f8ff 46%, #e9f6ff 100%);
  padding: 1.2rem;
  gap: 1rem;
  box-shadow: 0 14px 30px rgba(67, 56, 202, 0.1);
}
.official-cta h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); color: #20195c; }
.official-cta p { color: #475569; font-size: 1.1rem; }
.official-cta-actions { gap: 0.7rem; }

@media (max-width: 900px) {
  .official-hero-card,
  .official-store-grid,
  .official-compare-grid,
  .official-faq-grid,
  .official-cta { grid-template-columns: 1fr; }
  .official-hero-copy h1 { font-size: clamp(2.1rem, 9vw, 3.1rem); }
  .official-hero-copy p { font-size: 1rem; }
}

/* About Modern */
.about-modern { padding-top: 1.2rem; }
.about-breadcrumb { color: #64748b; font-weight: 600; margin-bottom: 0.8rem; }
.about-breadcrumb span { margin: 0 0.35rem; }
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.about-pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  background: #efe8ff;
  color: #7c3aed;
  font-weight: 800;
  font-size: 0.82rem;
}
.about-hero-copy h1 {
  margin: 0.45rem 0 0.35rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  color: #1f2758;
}
.about-hero-copy h2 {
  margin: 0 0 0.65rem;
  color: #8b5cf6;
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
}
.about-hero-copy p { color: #374151; font-size: 1.03rem; max-width: 540px; }
.about-thanks {
  margin-top: 0.7rem;
  display: inline-flex;
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(140deg, #8b5cf6, #7c3aed);
}
.about-hero-art {
  min-height: 420px;
  border: 1px solid #ebe7f7;
  border-radius: 28px;
  background: linear-gradient(140deg, #fff 0%, #fbf7ff 52%, #fffdfa 100%);
  position: relative;
  overflow: hidden;
}
.about-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.about-hero-art .sheet {
  position: absolute;
  border-radius: 14px;
  border: 1px solid #eae7f8;
  background: #fff;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.12);
  color: #6b21a8;
  font-weight: 900;
  letter-spacing: 0.01em;
  padding: 0.7rem 0.85rem;
}
.about-hero-art .s1 { left: 22%; top: 8%; transform: rotate(-8deg); }
.about-hero-art .s2 { left: 15%; top: 28%; transform: rotate(-7deg); font-size: 2rem; }
.about-hero-art .s3 { right: 16%; top: 24%; transform: rotate(3deg); color: #0f766e; }
.about-hero-art .s4 { right: 18%; top: 44%; transform: rotate(8deg); color: #fb7185; }

.about-story {
  border: 1px solid #ece8f8;
  border-radius: 24px;
  padding: 1rem;
  background: linear-gradient(120deg, #faf7ff, #f8fbff);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.about-story-media img {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  object-fit: cover;
}
.about-story-copy h3 { margin: 0 0 0.45rem; font-size: 2.2rem; color: #1f2758; }
.about-story-copy p { margin: 0 0 0.45rem; color: #374151; }
.about-story-copy .script { color: #8b5cf6; font-size: 2rem; font-family: cursive; margin-top: 0.6rem; }

.about-special h3,
.about-find h3,
.about-end h3 {
  text-align: center;
  color: #1f2758;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  margin: 0.5rem 0 0.8rem;
}
.about-special-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.about-special-grid article {
  text-align: center;
  border-right: 1px solid #edeaf8;
  padding: 0.5rem 0.55rem;
}
.about-special-grid article:last-child { border-right: 0; }
.about-special-grid span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: #f5f3ff;
  color: #7c3aed;
}
.about-special-grid h4 { margin: 0.45rem 0 0.2rem; color: #1e293b; }
.about-special-grid p { margin: 0; color: #475569; font-size: 0.95rem; }

.about-find {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 0.9rem;
  align-items: start;
  margin-bottom: 1rem;
}
.about-find-copy h3 { text-align: left; margin-top: 0; font-size: 2rem; }
.about-find-copy ul { margin: 0; padding-left: 1.1rem; color: #334155; display: grid; gap: 0.35rem; }
.about-find-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}
.about-find-grid div { text-align: center; }
.about-find-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #ece8f8;
}
.about-find-grid strong { display: block; margin-top: 0.35rem; color: #1f2758; }

.about-trust {
  border: 1px solid #ece8f8;
  border-radius: 22px;
  background: linear-gradient(120deg, #f8f5ff, #f7fbff);
  padding: 0.8rem 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}
.about-trust article { display: grid; grid-template-columns: 56px 1fr; gap: 0.55rem; align-items: center; }
.about-trust span {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #ede9fe; color: #7c3aed; font-size: 1.35rem; font-weight: 800;
}
.about-trust h4 { margin: 0; color: #1f2758; }
.about-trust p { margin: 0.15rem 0 0; color: #475569; }

.about-end p { text-align: center; color: #475569; margin-top: -0.45rem; }

@media (max-width: 980px) {
  .about-hero,
  .about-story,
  .about-find,
  .about-trust { grid-template-columns: 1fr; }
  .about-special-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-find-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-special-grid article { border-right: 0; border-bottom: 1px solid #edeaf8; padding-bottom: 0.8rem; }
}

/* FAQ Modern */
.faq-modern { padding-top: 1rem; }
.faq-modern-hero {
  border: 1px solid #ece8f7;
  border-radius: 28px;
  background: linear-gradient(130deg, #fff 0%, #fcf8ff 52%, #fffef8 100%);
  padding: 1.3rem;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}
.faq-modern-breadcrumb { margin: 0 0 0.6rem; color: #64748b; font-weight: 600; }
.faq-modern-breadcrumb span { margin: 0 0.35rem; }
.faq-modern-chip {
  display: inline-flex;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(130deg, #8b5cf6, #7c3aed);
  color: #fff;
  font-weight: 800;
}
.faq-modern-hero-copy h1 {
  margin: 0.5rem 0 0.45rem;
  color: #181f56;
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  line-height: 1.06;
}
.faq-modern-hero-copy p { margin: 0 0 0.35rem; color: #334155; max-width: 580px; }
.faq-modern-hero-art {
  min-height: 260px;
  border-radius: 20px;
  border: 1px solid #ece8f7;
  background: radial-gradient(circle at 18% 12%, #f5f0ff, #fff 58%);
  position: relative;
  overflow: hidden;
}
.faq-modern-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.faq-modern-hero-art .art-card {
  position: absolute;
  border-radius: 14px;
  border: 1px solid #ece8f7;
  background: #fff;
  padding: 0.7rem 0.8rem;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.1);
  font-weight: 900;
  color: #475569;
}
.faq-modern-hero-art .a1 { right: 22%; top: 18%; transform: rotate(-8deg); font-size: 2rem; color: #64748b; }
.faq-modern-hero-art .a2 { left: 28%; bottom: 12%; transform: rotate(-10deg); color: #fb7185; }
.faq-modern-hero-art .a3 { right: 8%; bottom: 14%; transform: rotate(9deg); color: #0f766e; }

.faq-modern-main {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 210px 1fr 190px;
  gap: 0.8rem;
}
.faq-modern-cats {
  border: 1px solid #ece8f7;
  border-radius: 20px;
  background: #fff;
  padding: 0.7rem;
  display: grid;
  gap: 0.5rem;
  align-content: start;
}
.faq-modern-cats a {
  text-decoration: none;
  border: 1px solid #ece8f7;
  border-radius: 13px;
  padding: 0.62rem 0.65rem;
  color: #1f2937;
  font-weight: 700;
  background: #fff;
}
.faq-modern-cats a.active {
  background: #f2ecff;
  border-color: #ddd6fe;
  color: #7c3aed;
}
.faq-modern-help-note {
  margin-top: 0.4rem;
  border-radius: 14px;
  padding: 0.7rem;
  background: linear-gradient(135deg, #fff5f8, #f7f1ff);
  border: 1px dashed #e9d5ff;
}
.faq-modern-help-note strong { color: #1f2758; }
.faq-modern-help-note p { margin: 0.3rem 0 0; color: #ec4899; font-weight: 700; }

.faq-modern-list {
  border: 1px solid #ece8f7;
  border-radius: 20px;
  background: #fff;
  padding: 0.72rem;
  display: grid;
  gap: 0.45rem;
}
.faq-item {
  border: 1px solid #ebe8f7;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.82rem 0.88rem;
  color: #1f2758;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.faq-item .faq-answer { display: none; padding: 0 0.88rem 0.85rem; color: #334155; }
.faq-item.open .faq-answer {
  display: block;
  border-top: 1px solid #f0ecfb;
  padding-top: 0.72rem;
  background: linear-gradient(180deg, #fff, #fbf9ff);
}
.faq-item .faq-answer p { margin: 0; }

.faq-modern-sideart {
  border: 1px solid #ece8f7;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff8f8, #f8fffe);
  padding: 0.7rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
}
.faq-modern-sideart .mini-card {
  border: 1px solid #ece8f7;
  border-radius: 14px;
  background: #fff;
  padding: 0.75rem 0.65rem;
  color: #475569;
  font-weight: 800;
  text-align: center;
}
.faq-modern-sideart .mini-card.strong { color: #0f766e; }

.faq-modern-help {
  margin-top: 0.9rem;
  border: 1px solid #ece8f7;
  border-radius: 24px;
  background: linear-gradient(120deg, #fff 0%, #fbf7ff 100%);
  padding: 1rem;
}
.faq-modern-help h2 {
  margin: 0 0 0.2rem;
  text-align: center;
  color: #1f2758;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.faq-modern-help > p { margin: 0 0 0.7rem; text-align: center; color: #475569; }
.faq-modern-help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}
.faq-modern-help-grid article {
  border: 1px solid #ece8f7;
  border-radius: 18px;
  padding: 0.85rem;
  background: #fff;
}
.faq-modern-help-grid h3 { margin: 0 0 0.35rem; color: #1f2758; }
.faq-modern-help-grid p { margin: 0 0 0.6rem; color: #475569; }

.faq-modern-features {
  margin-top: 0.8rem;
  border: 1px solid #ece8f7;
  border-radius: 18px;
  background: linear-gradient(120deg, #fffdf8, #fbfaff);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.faq-modern-features div {
  padding: 0.85rem;
  border-right: 1px solid #eeeaf8;
}
.faq-modern-features div:last-child { border-right: 0; }
.faq-modern-features strong { display: block; color: #1f2758; margin-bottom: 0.2rem; }
.faq-modern-features span { color: #475569; }

@media (max-width: 980px) {
  .faq-modern-hero,
  .faq-modern-main,
  .faq-modern-help-grid,
  .faq-modern-features { grid-template-columns: 1fr; }
}

/* Contact Modern */
.contact-modern { padding-top: 1rem; }
.contact-modern-hero {
  border: 1px solid #ece8f7;
  border-radius: 28px;
  background: linear-gradient(130deg, #fffdf3 0%, #fff 45%, #fff6fd 100%);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1rem;
  align-items: center;
}
.contact-modern-chip {
  display: inline-flex;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: #efe8ff;
  color: #7c3aed;
  font-weight: 800;
}
.contact-modern-hero h1 {
  margin: 0.5rem 0 0.45rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: #1f2758;
  line-height: 1.05;
}
.contact-modern-hero p { margin: 0 0 0.45rem; color: #334155; max-width: 620px; }
.contact-modern-hero-art {
  min-height: 280px;
  border: 1px solid #ece8f7;
  border-radius: 20px;
  background: radial-gradient(circle at 22% 20%, #f3ecff, #fff 55%);
  position: relative;
}
.contact-modern-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.contact-modern-hero-art .card-a,
.contact-modern-hero-art .card-b {
  position: absolute;
  border: 1px solid #ece8f7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.12);
  font-weight: 900;
  color: #475569;
  padding: 0.7rem 0.85rem;
}
.contact-modern-hero-art .card-a { left: 33%; top: 18%; transform: rotate(-4deg); font-size: 2rem; color: #1f2758; }
.contact-modern-hero-art .card-b { right: 15%; bottom: 16%; transform: rotate(8deg); color: #8b5cf6; }

.contact-modern-main {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.85rem;
}
.contact-modern-form-wrap {
  border: 1px solid #ece8f7;
  border-radius: 22px;
  background: #fff;
  padding: 0.95rem;
}
.contact-modern-form-wrap h2 { margin: 0 0 0.7rem; color: #2b2363; font-size: 2rem; }
.contact-modern-form { display: grid; gap: 0.5rem; }
.contact-modern-form label { font-weight: 700; color: #334155; }
.contact-modern-form .check-line {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.5rem;
  align-items: start;
  font-weight: 500;
}
.contact-modern-form .btn { width: fit-content; min-width: 220px; }

.contact-modern-side { display: grid; gap: 0.7rem; }
.side-box {
  border: 1px solid #ece8f7;
  border-radius: 18px;
  background: #fff;
  padding: 0.85rem;
}
.side-box h3 { margin: 0 0 0.45rem; color: #1f2758; font-size: 1.8rem; }
.contact-email { color: #6d28d9; text-decoration: none; font-weight: 900; font-size: 1.45rem; }
.side-box p { margin: 0.4rem 0 0; color: #475569; }
.store-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.store-mini-grid .mini {
  border: 1px solid #ece8f7;
  border-radius: 14px;
  padding: 0.6rem;
  display: grid;
  gap: 0.45rem;
  align-content: start;
}
.store-mini-grid .mini strong { font-size: 2rem; }
.store-mini-grid .mini.etsy strong { color: #ea580c; }
.store-mini-grid .mini.tpt strong { color: #0f766e; }
.social-badges { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.social-badges span,
.social-badges a {
  border: 1px solid #ece8f7;
  background: #faf8ff;
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.tag-grid span {
  border: 1px solid #ece8f7;
  border-radius: 10px;
  background: #faf8ff;
  padding: 0.3rem 0.52rem;
  font-size: 0.9rem;
}

.contact-modern-response {
  margin-top: 0.8rem;
  border: 1px solid #ece8f7;
  border-radius: 16px;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(130deg, #fff, #f9fbff);
}
.contact-modern-response strong { color: #1f2758; font-size: 1.4rem; }
.contact-modern-response p { margin: 0.25rem 0 0; color: #475569; }

.contact-modern-help {
  margin-top: 0.8rem;
  border: 1px solid #ece8f7;
  border-radius: 22px;
  background: linear-gradient(125deg, #faf7ff, #fff);
  padding: 0.95rem;
}
.contact-modern-help h2 {
  margin: 0;
  text-align: center;
  color: #2b2363;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}
.contact-modern-help > p { margin: 0.3rem 0 0.75rem; text-align: center; color: #475569; }
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}
.help-grid article {
  border: 1px solid #ece8f7;
  border-radius: 16px;
  background: #fff;
  padding: 0.8rem;
}
.help-grid h3 { margin: 0 0 0.35rem; color: #1f2758; }
.help-grid p { margin: 0 0 0.6rem; color: #475569; }

.contact-modern-features {
  margin-top: 0.8rem;
  border: 1px solid #ece8f7;
  border-radius: 16px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.contact-modern-features div {
  padding: 0.8rem;
  border-right: 1px solid #eeeaf8;
}
.contact-modern-features div:last-child { border-right: 0; }
.contact-modern-features strong { display: block; color: #1f2758; margin-bottom: 0.2rem; }
.contact-modern-features span { color: #475569; }

@media (max-width: 980px) {
  .contact-modern-hero,
  .contact-modern-main,
  .store-mini-grid,
  .help-grid,
  .contact-modern-features { grid-template-columns: 1fr; }
}

/* Premium Modern */
.premium-modern { padding-top: 1rem; }
.premium-modern-hero {
  border: 1px solid #ece8f7;
  border-radius: 28px;
  background: linear-gradient(130deg, #faf7ff 0%, #fff 52%, #fff8f2 100%);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}
.premium-chip {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  background: #efe8ff;
  color: #7c3aed;
  font-weight: 800;
}
.premium-modern-hero h1 {
  margin: 0.5rem 0 0.35rem;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1.05;
  color: #1f2758;
}
.premium-modern-hero h1 span { color: #7c3aed; }
.premium-modern-hero p { margin: 0 0 0.45rem; color: #334155; max-width: 540px; }
.premium-modern-hero ul { margin: 0; padding-left: 1.05rem; color: #334155; display: grid; gap: 0.35rem; }
.premium-hero-art {
  min-height: 300px;
  border: 1px solid #ece8f7;
  border-radius: 22px;
  background: radial-gradient(circle at 22% 18%, #f1e8ff, #fff 60%);
  position: relative;
}
.premium-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.premium-hero-art .art {
  position: absolute;
  border-radius: 14px;
  border: 1px solid #ece8f7;
  background: #fff;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.1);
  padding: 0.7rem;
  font-weight: 900;
}
.premium-hero-art .a1 { left: 12%; top: 18%; transform: rotate(-8deg); color: #7c3aed; }
.premium-hero-art .a2 { right: 22%; top: 12%; transform: rotate(4deg); color: #475569; }
.premium-hero-art .a3 { right: 10%; top: 45%; transform: rotate(9deg); color: #ec4899; }

.premium-heading { text-align: center; margin: 0.95rem 0 0.75rem; }
.premium-heading h2 { margin: 0; color: #1f2758; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.premium-heading p { margin: 0.25rem 0 0; color: #475569; }

.premium-plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.8rem; }
.premium-plan-grid .plan {
  border: 1px solid #e8e3fa;
  border-radius: 24px;
  background: linear-gradient(165deg, #ffffff 0%, #fbf9ff 62%, #f8fbff 100%);
  padding: 1rem;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.premium-plan-grid .plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(17, 24, 39, 0.13);
  border-color: #cabdff;
}
.premium-plan-grid .plan .plan-img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #ece8fb;
  margin-bottom: 0.8rem;
  background: #f3f4f6;
}
.premium-plan-grid .plan h3 { margin: 0; font-size: 2rem; }
.premium-plan-grid .plan .price { margin: 0.4rem 0; }
.premium-plan-grid .plan .price strong { font-size: 2.2rem; display: block; }
.premium-plan-grid .plan p { color: #475569; }
.premium-plan-grid .plan ul {
  margin: 0.55rem 0 0.75rem;
  padding: 0.7rem 0.85rem 0.7rem 1.5rem;
  color: #334155;
  display: grid;
  gap: 0.3rem;
  border: 1px solid #efeafd;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.04);
}
.premium-plan-grid .plan .btn { width: 100%; margin-top: 0.45rem; }
.premium-plan-grid .basic h3, .premium-plan-grid .basic .price strong { color: #0f766e; }
.premium-plan-grid .standard { border-color: #c4b5fd; position: relative; }
.premium-plan-grid .standard h3, .premium-plan-grid .standard .price strong { color: #7c3aed; }
.premium-plan-grid .premium h3, .premium-plan-grid .premium .price strong { color: #ea580c; }
.premium-plan-grid .popular {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, #7c3aed, #5b21b6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 0.32rem 0.9rem;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(91, 33, 182, 0.34);
  z-index: 3;
}

.premium-steps { margin-top: 1rem; text-align: center; }
.premium-steps h2 { margin: 0 0 0.6rem; color: #1f2758; font-size: 2.2rem; }
.premium-steps .steps-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.6rem; }
.premium-steps .steps-grid div { border: 1px solid #ece8f7; border-radius: 16px; background: #fff; padding: 0.7rem; text-align: left; }
.premium-steps .steps-grid b {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #ede9fe; color: #6d28d9; margin-bottom: 0.35rem;
}
.premium-steps .steps-grid h4 { margin: 0 0 0.25rem; color: #1f2758; }
.premium-steps .steps-grid p { margin: 0; color: #475569; }

.premium-custom-list { margin-top: 1rem; text-align: center; }
.premium-custom-list h2 { margin: 0 0 0.6rem; color: #1f2758; font-size: 2.2rem; }
.custom-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 0.5rem; }
.custom-grid span {
  border: 1px solid #ece8f7;
  border-radius: 12px;
  background: #fff;
  padding: 0.6rem 0.4rem;
  color: #334155;
  font-weight: 700;
}

.premium-testimonials {
  margin-top: 0.95rem;
  border: 1px solid #ece8f7;
  border-radius: 18px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.premium-testimonials article { padding: 0.85rem; border-right: 1px solid #eeeaf8; }
.premium-testimonials article { transition: background 0.2s ease; }
.premium-testimonials article:hover { background: #fcfbff; }
.premium-testimonials article:last-child { border-right: 0; }
.premium-testimonials p { margin: 0 0 0.35rem; color: #334155; }
.premium-testimonials strong { color: #1f2758; }

.premium-bottom { margin-top: 0.9rem; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0.7rem; }
.premium-faq-mini,
.premium-cta {
  border: 1px solid #ece8f7;
  border-radius: 18px;
  background: #fff;
  padding: 0.9rem;
}
.premium-faq-mini h3,
.premium-cta h3 { margin: 0 0 0.45rem; color: #1f2758; font-size: 1.6rem; }
.premium-faq-mini p {
  margin: 0.45rem 0 0;
  border: 1px solid #ece8f7;
  border-radius: 12px;
  padding: 0.45rem 0.55rem;
  color: #334155;
  background: #fff;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.premium-faq-mini p:hover { border-color: #d7ccff; transform: translateX(2px); }
.premium-cta { background: linear-gradient(130deg, #f8f3ff, #fff9f2); }
.premium-cta p { margin: 0 0 0.7rem; color: #475569; }
.premium-cta > div { display: flex; flex-wrap: wrap; gap: 0.5rem; }

@media (max-width: 1020px) {
  .premium-modern-hero,
  .premium-plan-grid,
  .premium-steps .steps-grid,
  .custom-grid,
  .premium-testimonials,
  .premium-bottom { grid-template-columns: 1fr; }
}

