/*
Theme Name: ChatBudgie
Author: ChatBudgie Team
Description: AI Chatbot for WordPress
Version: 1.1.0
Text Domain: chatbudgie
Domain Path: /languages
*/

:root {
  --blue: #0f70ff;
  --blue-2: #075de7;
  --ink: #161f33;
  --text: #18223a;
  --muted: #60708b;
  --line: #d9e7ff;
  --shadow: 0 12px 30px rgba(24, 52, 98, 0.11);
  --container: 1296px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 72px)); margin: 0 auto; }
.screen-reader-text {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0, 0, 0, 0);
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto !important;
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  box-shadow: var(--shadow);
}
:focus-visible {
  outline: 3px solid rgba(15, 112, 255, .28);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222, 233, 255, 0.75);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo img {
  width: clamp(132px, 21.2vw, 154px);
  height: auto;
}
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 4.3vw, 46px);
  font-size: clamp(10px, 1.55vw, 14px);
  font-weight: 600;
  color: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 4.3vw, 46px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a:hover { color: var(--blue); }
.github-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease;
}
.github-link:hover,
.github-link:focus-visible {
  color: var(--blue);
}
.github-icon {
  width: clamp(14px, 2.1vw, 18px);
  height: clamp(14px, 2.1vw, 18px);
  flex: 0 0 auto;
  fill: currentColor;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7.2vw, 94px) 0;
}
.hero {
  padding: clamp(42px, 6.9vw, 98px) 0 clamp(38px, 5.7vw, 78px);
  background:
    radial-gradient(ellipse 54% 68% at 82% 50%, rgba(28, 119, 255, .14) 0%, rgba(28, 119, 255, .06) 45%, transparent 72%),
    linear-gradient(174deg, transparent 0 76%, rgba(229, 241, 255, .96) 76.2% 100%),
    linear-gradient(180deg, #fff 0%, #fbfdff 72%, #edf6ff 100%);
  background-image: url("assets/images/bg-hero.svg");
  background-position: center right;
  background-size: cover;
}
.feature-blue {
  background:
    radial-gradient(ellipse 50% 62% at 72% 50%, rgba(54, 125, 255, .11) 0%, rgba(54, 125, 255, .055) 45%, transparent 72%),
    radial-gradient(ellipse 40% 55% at 82% 18%, rgba(255, 255, 255, .92) 0%, transparent 65%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}
.feature-green {
  background:
    radial-gradient(ellipse 48% 62% at 72% 52%, rgba(22, 198, 124, .105) 0%, rgba(22, 198, 124, .045) 45%, transparent 72%),
    radial-gradient(ellipse 42% 58% at 9% 68%, rgba(229, 255, 245, .9) 0%, transparent 66%),
    linear-gradient(180deg, #fbfffd 0%, #f0fbf6 100%);
  background-image: url("assets/images/bg-feature-setup.svg");
  background-position: center;
  background-size: cover;
}
.feature-purple {
  background:
    radial-gradient(ellipse 48% 66% at 61% 50%, rgba(120, 112, 255, .12) 0%, rgba(120, 112, 255, .055) 46%, transparent 74%),
    radial-gradient(ellipse 42% 60% at 14% 24%, rgba(255, 255, 255, .85) 0%, transparent 68%),
    linear-gradient(180deg, #f7f5ff 0%, #f1efff 100%);
}
.pricing {
  padding-top: clamp(18px, 2.8vw, 62px);
  background:
    radial-gradient(ellipse 66% 22% at 50% 22%, rgba(31, 111, 255, .065) 0%, transparent 72%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  text-align: center;
}
.two-col {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5.6vw, 70px);
}
.two-col > * { min-width: 0; }
.hero .two-col { grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); transform: translateY(-16px); }
.feature .two-col { grid-template-columns: minmax(205px, .42fr) minmax(0, 1fr); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: clamp(4px, .9vw, 7px) clamp(8px, 1.6vw, 13px);
  border-radius: 999px;
  margin-bottom: clamp(18px, 3.3vw, 28px);
  background: #d8e7ff;
  color: var(--blue);
  font-size: clamp(9px, 1.35vw, 12px);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.eyebrow.green { background: #d2f4e1; color: #18bd73; }
.eyebrow.purple { background: #dedefb; color: #7a70ff; }

h1, h2, h3, p { margin: 0; }
h1 {
  max-width: 640px;
  font-size: clamp(24px, 3.62vw, 54px);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: clamp(15px, 2.8vw, 24px);
}
h2 {
  font-size: clamp(23px, 3.3vw, 46px);
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: clamp(10px, 2vw, 16px);
}
.accent { color: var(--blue); }
.lead {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(12px, 1.62vw, 18px);
  line-height: 1.68;
}
.feature-intro .lead { font-weight: 780; color: #333e55; margin-bottom: clamp(12px, 2.1vw, 20px); line-height: 1.45; }
.desc { color: var(--muted); font-size: clamp(10px, 1.45vw, 15px); line-height: 1.75; max-width: 390px; }

.actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 24px);
  margin-top: clamp(22px, 3.8vw, 34px);
  flex-wrap: nowrap;
}
.btn {
  min-height: clamp(39px, 5.8vw, 58px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: clamp(8px, 1.35vw, 14px);
  padding: 0 clamp(14px, 2.5vw, 26px);
  font-size: clamp(10px, 1.42vw, 15px);
  font-weight: 600;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 14px 28px rgba(17, 114, 255, .09);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: linear-gradient(180deg, var(--blue), var(--blue-2)); }
.btn-secondary { color: var(--blue); background: #fff; border-color: #b8d0ff; }
.btn-symbol {
  width: clamp(17px, 2.6vw, 22px);
  height: clamp(17px, 2.6vw, 22px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(10px, 1.4vw, 13px);
  line-height: 1;
  background: rgba(255,255,255,.18);
  flex: 0 0 auto;
}
.btn-primary .btn-symbol { background: #fff; }
.btn-secondary .btn-symbol { background: #fff; }
.btn-symbol svg, .btn-symbol img { fill: currentColor; object-fit: contain; }

.art {
  position: relative;
  min-width: 0;
}
.art::before {
  content: "";
  position: absolute;
  inset: 10% 3% 8%;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(31, 111, 255, .12), transparent 68%);
}
.art img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(29, 55, 96, .11));
}
.hero .art img { transform: scale(1.22); transform-origin: center right; }
.feature-blue .art img { transform: scale(1.13); transform-origin: center center; }
.feature-green .art img { transform: scale(1.24); transform-origin: center center; }
.feature-purple .art img { transform: scale(1.16); transform-origin: center center; }
.feature { display: flex; align-items: center; }
.feature-blue { padding-top: clamp(52px, 7vw, 92px); padding-bottom: clamp(52px, 7vw, 92px); }
.feature-green { padding-top: clamp(50px, 6.8vw, 86px); padding-bottom: clamp(50px, 6.8vw, 86px); }
.feature-purple { padding-top: clamp(26px, 3.8vw, 76px); padding-bottom: clamp(26px, 3.8vw, 76px); }
.feature-purple h2 { white-space: nowrap; }

.pricing-head {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto clamp(22px, 3.8vw, 40px);
}
.pricing-head .eyebrow { margin-bottom: 14px; }
.pricing-head .lead { max-width: none; font-size: clamp(10px, 1.45vw, 16px); line-height: 1.6; }
.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3.2vw, 38px);
  text-align: left;
  align-items: stretch;
}
.price-card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(10px, 1.7vw, 18px);
  border: 1.5px solid #e3ebf8;
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(18px, 2.8vw, 36px) clamp(16px, 2.6vw, 28px) clamp(14px, 2.3vw, 26px);
}
.price-card.featured { border: 2px solid var(--blue); transform: translateY(-6px); }
.ribbon {
  position: absolute;
  inset: 0 0 auto 0;
  padding: clamp(6px, 1.25vw, 10px) clamp(12px, 2.2vw, 18px);
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
  font-size: clamp(8px, 1.2vw, 12px);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.price-card.featured .price-content { margin-top: clamp(12px, 2vw, 20px); }
.token { font-size: clamp(13px, 1.9vw, 19px); font-weight: 850; text-align: center; }
.one-time { color: var(--muted); text-align: center; font-size: clamp(9px, 1.3vw, 13px); margin-top: 5px; }
.old-price { text-align: center; margin-top: clamp(10px, 1.8vw, 18px); color: #9ba8bb; font-size: clamp(12px, 1.8vw, 17px); font-weight: 750; text-decoration: line-through; }
.new-price { text-align: center; color: var(--blue); font-size: clamp(27px, 4vw, 46px); line-height: 1; font-weight: 600; letter-spacing: -.05em; margin-top: 3px; }
.price-note { text-align: center; color: #202a3f; font-size: clamp(9px, 1.35vw, 13px); font-weight: 780; margin-top: 8px; }
.features-list { list-style: none; padding: clamp(12px, 1.8vw, 18px) 0 clamp(12px, 1.9vw, 17px); margin: clamp(12px, 1.9vw, 18px) 0 0; border-top: 1px solid #edf2f8; display: grid; gap: clamp(7px, 1.25vw, 12px); }
.features-list li { display: flex; align-items: center; gap: 8px; color: #56647b; font-size: clamp(9px, 1.28vw, 13px); }
.check { width: clamp(14px, 2vw, 18px); height: clamp(14px, 2vw, 18px); border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; background: #eef4ff; color: var(--blue); font-size: clamp(8px, 1vw, 11px); font-weight: 950; }
.price-card .btn { width: 100%; min-height: clamp(34px, 5vw, 50px); }

.cta-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(36px, 1fr) clamp(70px, 9vw, 96px) minmax(220px, 640px) auto minmax(36px, 1fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  min-height: clamp(94px, 11vw, 122px);
  border-radius: 0;
  padding: clamp(18px, 2.7vw, 30px) 0;
  text-align: left;
  color: #fff;
  background:
    radial-gradient(ellipse 60% 120% at 70% 120%, rgba(255, 255, 255, .13) 0%, transparent 62%),
    linear-gradient(135deg, #0667f4 0%, #0066f0 46%, #087dff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), inset 0 -1px 0 rgba(0, 40, 130, .16);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background:
    radial-gradient(ellipse 44% 90% at 30% 130%, rgba(255,255,255,.25), transparent 62%),
    linear-gradient(155deg, transparent 0 56%, rgba(255,255,255,.12) 56.2% 58%, transparent 58.2% 100%);
}
.wp-emblem {
  position: relative;
  z-index: 1;
  grid-column: 2;
  width: clamp(62px, 8.6vw, 92px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6.4vw, 70px);
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.08em;
  text-shadow: 0 2px 10px rgba(0, 39, 112, .18);
  background: #fff;
}
.cta-copy {
  position: relative;
  z-index: 1;
  grid-column: 3;
  min-width: 0;
}
.cta-banner h3 { font-size: clamp(18px, 2.5vw, 31px); line-height: 1.12; letter-spacing: -.04em; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.9); font-size: clamp(10px, 1.4vw, 15px); line-height: 1.55; }
.cta-banner .btn {
  position: relative;
  z-index: 1;
  grid-column: 4;
  min-width: clamp(150px, 20vw, 226px);
  min-height: clamp(42px, 5.5vw, 62px);
  padding-inline: clamp(18px, 3vw, 32px);
  border-radius: clamp(8px, 1.25vw, 13px);
  background: #fff;
  color: var(--blue);
  box-shadow: 0 16px 36px rgba(0, 40, 130, .16);
}
.cta-banner .btn-symbol {
  background: #fff;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.footer { background: #fff; padding: clamp(32px, 5vw, 54px) 0 clamp(18px, 3vw, 28px); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 32px; }
.footer-logo { margin-bottom: 14px; }
.footer-logo img { width: clamp(110px, 16vw, 144px); }
.footer h4 { margin: 0 0 12px; font-size: clamp(10px, 1.4vw, 14px); color: #172033; }
.footer p, .footer a, .footer li { color: #667085; font-size: clamp(9px, 1.25vw, 13px); line-height: 1.85; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.copyright { color: #9aa6b8; font-size: clamp(9px, 1.3vw, 13px); text-align: center; margin-top: 10px; }

.page-template-main {
  background:
    radial-gradient(ellipse 58% 22% at 50% 0%, rgba(15, 112, 255, .08), transparent 70%),
    linear-gradient(180deg, #f8fbff 0%, #fff 300px);
}
.content-page-shell {
  width: min(920px, calc(100% - 72px));
  margin: 0 auto;
}
.content-page-hero {
  padding: clamp(42px, 6vw, 72px) 0 clamp(28px, 4vw, 44px);
}
.page-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  color: #6c7a92;
  font-size: 13px;
  font-weight: 650;
}
.page-breadcrumbs a {
  color: var(--blue);
}
.content-page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #101a33;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.content-page-body {
  margin-bottom: clamp(48px, 7vw, 88px);
  padding: clamp(30px, 4.8vw, 56px);
  border: 1px solid #e2ecfb;
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 58px rgba(24, 52, 98, .08);
}
.content-page-body > *:first-child {
  margin-top: 0;
}
.content-page-body > *:last-child {
  margin-bottom: 0;
}
.content-page-body p,
.content-page-body li {
  color: #516079;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.82;
}
.content-page-body p {
  margin: 0 0 18px;
}
.content-page-body h2,
.content-page-body h3,
.content-page-body h4 {
  color: #121d35;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.content-page-body h2 {
  margin: clamp(30px, 4vw, 44px) 0 12px;
  padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid #e3edf9;
  font-size: clamp(22px, 2.8vw, 32px);
}
.content-page-body h3 {
  margin: 28px 0 10px;
  font-size: clamp(19px, 2vw, 24px);
}
.content-page-body h4 {
  margin: 24px 0 8px;
  font-size: 18px;
}
.content-page-body ul,
.content-page-body ol {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding-left: 22px;
}
.content-page-body li::marker {
  color: var(--blue);
  font-weight: 850;
}
.content-page-body a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.content-page-body strong {
  color: #172033;
  font-weight: 850;
}
.content-page-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  background: #f3f8ff;
  color: #33435f;
}

/* Blog */
.blog-main,
.single-post-main,
.commerce-main {
  min-height: 65vh;
  background:
    radial-gradient(ellipse 62% 23% at 50% 0%, rgba(15, 112, 255, .09), transparent 72%),
    linear-gradient(180deg, #f8fbff 0%, #fff 420px);
}
.blog-hero {
  padding: clamp(58px, 8vw, 104px) 0 clamp(48px, 6.5vw, 76px);
  border-bottom: 1px solid rgba(217, 231, 255, .72);
}
.blog-hero-compact {
  padding-block: clamp(44px, 6vw, 74px);
}
.blog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(36px, 7vw, 100px);
}
.blog-hero h1 {
  max-width: 790px;
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.blog-hero-compact h1 {
  font-size: clamp(36px, 5vw, 58px);
}
.blog-hero p,
.archive-description {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.7;
}
.archive-description p { margin: 0; }
.blog-hero .page-breadcrumbs { margin-bottom: 18px; }
.search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.search-form label { width: 100%; }
.search-form .search-field {
  width: 100%;
  min-height: 56px;
  padding: 0 126px 0 18px;
  border: 1px solid #d6e4f8;
  border-radius: 13px;
  background: rgba(255, 255, 255, .94);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  box-shadow: 0 16px 38px rgba(24, 52, 98, .08);
}
.search-form .search-field::placeholder { color: #8b98ac; }
.search-form .search-submit {
  position: absolute;
  right: 6px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.blog-feed {
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(64px, 8vw, 112px);
}
.featured-post { margin-bottom: clamp(28px, 4vw, 52px); }
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.8vw, 34px);
}
.post-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #e1eafa;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 52, 98, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  border-color: #c8daf7;
  box-shadow: 0 22px 52px rgba(24, 52, 98, .12);
}
.post-card-media {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 10;
  background: #edf5ff;
}
.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.post-card:hover .post-card-media img { transform: scale(1.025); }
.post-card-media-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, .66), transparent 23%),
    linear-gradient(145deg, #e9f3ff, #cfe2ff);
}
.post-card-placeholder-mark,
.empty-state-mark {
  display: grid;
  place-items: center;
  width: 76px;
  aspect-ratio: 1;
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(15, 112, 255, .13);
}
.post-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 2.4vw, 30px);
}
.post-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 12px;
  margin-bottom: 14px;
  color: #7b889c;
  font-size: 12px;
  font-weight: 650;
}
.post-category {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e6f0ff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.post-card-title {
  margin: 0 0 12px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  letter-spacing: -.025em;
}
.post-card-title a:hover { color: var(--blue); }
.post-card-excerpt {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}
.post-card-excerpt p { margin: 0; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.text-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(3px); }
.post-card-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  min-height: 430px;
}
.post-card-featured .post-card-media { aspect-ratio: auto; min-height: 100%; }
.post-card-featured .post-card-content { justify-content: center; padding: clamp(32px, 5vw, 64px); }
.post-card-featured .post-card-title { font-size: clamp(28px, 3.5vw, 44px); line-height: 1.12; }
.post-card-featured .post-card-excerpt { font-size: 16px; }
.navigation.pagination { margin-top: clamp(34px, 5vw, 58px); }
.navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.navigation.pagination .page-numbers,
.page-links > * {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid #dce7f7;
  border-radius: 10px;
  background: #fff;
  color: #54627a;
  font-size: 13px;
  font-weight: 750;
}
.navigation.pagination .current,
.navigation.pagination a:hover,
.page-links > span {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.empty-state {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 68px);
  border: 1px solid #e1eafa;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}
.empty-state-mark { margin: 0 auto 24px; }
.empty-state h2 { margin-bottom: 12px; }
.empty-state p { margin-bottom: 26px; color: var(--muted); line-height: 1.7; }

/* Single article */
.single-post-hero {
  padding: clamp(48px, 7vw, 90px) 0 clamp(36px, 5vw, 60px);
  text-align: center;
}
.article-shell {
  width: min(860px, calc(100% - 72px));
  margin-inline: auto;
}
.single-post-hero .page-breadcrumbs { justify-content: center; }
.single-post-hero .post-category { margin-bottom: 18px; }
.single-post-hero h1 {
  max-width: 850px;
  margin: 0 auto 22px;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.single-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #718096;
  font-size: 13px;
  font-weight: 650;
}
.single-featured-image {
  overflow: hidden;
  width: min(1080px, calc(100% - 72px));
  max-height: 640px;
  border-radius: 20px;
  box-shadow: 0 24px 65px rgba(24, 52, 98, .13);
}
.single-featured-image img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: cover;
}
.article-content {
  margin-top: clamp(38px, 6vw, 72px);
  color: #46556e;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.85;
}
.article-content > *:first-child { margin-top: 0; }
.article-content > *:last-child { margin-bottom: 0; }
.article-content p { margin: 0 0 24px; }
.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--ink);
  letter-spacing: -.025em;
}
.article-content h2 { margin: 48px 0 16px; font-size: clamp(28px, 3.2vw, 38px); }
.article-content h3 { margin: 36px 0 12px; font-size: clamp(22px, 2.5vw, 29px); }
.article-content h4 { margin: 30px 0 10px; font-size: 20px; }
.article-content ul,
.article-content ol { margin: 0 0 26px; padding-left: 25px; }
.article-content li { margin-bottom: 8px; padding-left: 4px; }
.article-content li::marker { color: var(--blue); font-weight: 850; }
.article-content a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.article-content blockquote {
  margin: 36px 0;
  padding: 26px 30px;
  border-left: 4px solid var(--blue);
  border-radius: 0 14px 14px 0;
  background: #f1f7ff;
  color: #33435f;
  font-size: 1.08em;
  font-weight: 650;
}
.article-content pre,
.article-content code {
  border-radius: 6px;
  background: #f1f5fa;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.article-content code { padding: .14em .35em; font-size: .9em; }
.article-content pre { overflow-x: auto; padding: 22px; }
.article-content pre code { padding: 0; background: transparent; }
.article-content table { width: 100%; margin: 28px 0; border-collapse: collapse; font-size: .9em; }
.article-content th,
.article-content td { padding: 13px 15px; border: 1px solid #dce7f5; text-align: left; }
.article-content th { background: #f3f8ff; color: var(--ink); }
.article-content .wp-block-image { margin-block: 32px; }
.article-content .alignwide { width: min(1040px, calc(100vw - 72px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}
.post-tags a {
  padding: 8px 12px;
  border-radius: 8px;
  background: #eef5ff;
  color: #4770a9;
  font-size: 12px;
  font-weight: 750;
}
.author-box {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 46px;
  padding: 26px;
  border: 1px solid #dfe9f8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(24, 52, 98, .06);
}
.author-box img { border-radius: 50%; }
.author-box span { color: #7d899b; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.author-box h2 { margin: 3px 0 6px; font-size: 20px; }
.author-box p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.post-navigation { margin-block: 32px 48px; }
.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.post-navigation a {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #dfe9f8;
  border-radius: 13px;
  background: #fff;
}
.post-navigation .nav-next { text-align: right; }
.post-navigation span { margin-bottom: 6px; color: #8490a2; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .05em; }
.post-navigation strong { color: var(--ink); font-size: 14px; line-height: 1.45; }
.comments-area {
  margin-bottom: clamp(58px, 8vw, 100px);
  padding-top: 42px;
  border-top: 1px solid #dfe9f8;
}
.comments-title,
.comment-reply-title { margin: 0 0 24px; font-size: clamp(24px, 3vw, 32px); }
.comment-list { padding: 0; list-style: none; }
.comment-list .children { padding-left: 52px; list-style: none; }
.comment-body { margin-bottom: 18px; padding: 22px; border: 1px solid #e0e9f7; border-radius: 13px; background: #fff; }
.comment-meta { margin-bottom: 12px; font-size: 12px; }
.comment-author { display: flex; align-items: center; gap: 10px; }
.comment-author img { border-radius: 50%; }
.comment-content { color: #536178; font-size: 14px; line-height: 1.7; }
.comment-content p { margin: 0 0 10px; }
.comment-form { display: grid; gap: 14px; }
.comment-form p { margin: 0; }
.comment-form label { display: block; margin-bottom: 7px; color: #384760; font-size: 13px; font-weight: 750; }
.comment-form input:not([type="checkbox"]),
.comment-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d7e3f3;
  border-radius: 9px;
  background: #fff;
  color: var(--text);
  font: inherit;
}
.comment-form .submit {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

/* WooCommerce */
.commerce-main {
  padding: clamp(42px, 6vw, 76px) 0 clamp(64px, 8vw, 104px);
}
.commerce-main.has-shop-showcase {
  padding: 0;
  background: #fff;
}
.has-shop-showcase > .container {
  padding-top: clamp(52px, 7vw, 84px);
  padding-bottom: clamp(64px, 8vw, 104px);
  scroll-margin-top: 92px;
}
.shop-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 92px) 0 clamp(64px, 8vw, 104px);
  border-bottom: 1px solid rgba(205, 223, 250, .9);
  background:
    radial-gradient(ellipse 46% 70% at 82% 45%, rgba(15, 112, 255, .16), transparent 70%),
    radial-gradient(circle at 8% 16%, rgba(93, 173, 255, .10), transparent 24%),
    linear-gradient(155deg, #fff 0%, #f6faff 58%, #eaf4ff 100%);
}
.shop-showcase::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -43%;
  width: min(760px, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(15, 112, 255, .10);
  border-radius: 50%;
  box-shadow:
    0 0 0 64px rgba(15, 112, 255, .025),
    0 0 0 128px rgba(15, 112, 255, .018);
  pointer-events: none;
}
.shop-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}
.shop-showcase-copy { min-width: 0; }
.shop-showcase .eyebrow { margin-bottom: 22px; }
.shop-showcase h1 {
  max-width: 690px;
  margin: 0 0 20px;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.shop-showcase-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(16px, 1.65vw, 19px);
  line-height: 1.72;
}
.shop-product-search {
  width: min(100%, 690px);
  margin-top: 30px;
}
.shop-product-search-inner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) 58px;
  min-height: 58px;
  border: 2px solid var(--blue);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(15, 112, 255, .13);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.shop-product-search-inner:focus-within {
  border-color: #075de7;
  box-shadow: 0 18px 42px rgba(15, 112, 255, .2);
}
.shop-product-category,
.shop-product-search input[type="search"] {
  min-width: 0;
  min-height: 54px;
  border: 0;
  border-radius: 0;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: 0;
}
.shop-product-category-control .shop-product-category {
  padding: 0 34px 0 14px;
  border-right: 1px solid #d7e5f8;
  background-color: #f1f6fd;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.shop-product-search input[type="search"] {
  width: 100%;
  padding: 0 17px;
  background: #fff;
  appearance: none;
}
.shop-product-search input[type="search"]::-webkit-search-cancel-button { cursor: pointer; }
.shop-product-search input[type="search"]::placeholder { color: #8794a8; }
.shop-product-search button {
  display: grid;
  place-items: center;
  width: 58px;
  min-height: 54px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease;
}
.shop-product-search button:hover { background: var(--blue-2); }
.shop-product-search button svg { width: 23px; height: 23px; }
.shop-product-search + .shop-showcase-actions { margin-top: 18px; }
.shop-showcase-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 30px;
}
.shop-showcase-actions .btn {
  min-height: 54px;
  padding-inline: 24px;
}
.shop-showcase-actions .btn svg {
  width: 19px;
  height: 19px;
  transition: transform .2s ease;
}
.shop-showcase-actions .btn:hover svg { transform: translateX(3px); }
.shop-showcase-link {
  padding: 10px 2px;
  border-bottom: 1px solid #a9c8f4;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}
.shop-showcase-link:hover { border-color: var(--blue); }
.shop-benefits {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.shop-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #53627a;
  font-size: 13px;
  font-weight: 700;
}
.shop-benefits span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #dceaff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}
.shop-showcase-art {
  position: relative;
  min-width: 0;
}
.shop-showcase-art::before {
  content: "";
  position: absolute;
  inset: 9% 2% 4% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 112, 255, .19), rgba(15, 112, 255, .055) 48%, transparent 72%);
  filter: blur(5px);
}
.shop-showcase-frame {
  position: relative;
  width: min(100%, 650px);
  margin-inline: auto;
}
.shop-showcase-frame img {
  position: relative;
  width: 100%;
  max-height: 530px;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(24, 52, 98, .16));
}

/* Reference-led shop landing treatment. */
.shop-showcase {
  overflow: visible;
  padding: 0;
  border: 0;
  background: #f3f9ff;
}
.shop-showcase::before { display: none; }
.shop-showcase-panel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  min-height: 550px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-bottom: 1px solid #dcecff;
  border-radius: 0;
  background-color: #f3f9ff;
  background-image: url("assets/images/shop-hero-background.png");
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}
.shop-showcase-copy {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 86px 54px 58px;
  text-align: center;
}
.shop-showcase h1 {
  max-width: none;
  margin: 0 0 14px;
  color: #0b1d43;
  font-size: clamp(38px, 4.1vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.045em;
}
.shop-showcase-copy > p {
  max-width: none;
  margin: 0;
  color: #607296;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 500;
  line-height: 1.6;
}
.shop-product-search {
  width: min(100%, 880px);
  margin: 34px auto 0;
}
.shop-product-search-inner {
  overflow: hidden;
  grid-template-columns: 170px 52px minmax(0, 1fr) 126px;
  min-height: 76px;
  border: 1px solid #aacfff;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(27, 83, 155, .14), 0 3px 8px rgba(27, 83, 155, .08);
}
.shop-product-category-control {
  position: relative;
  min-width: 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  border-right: 1px solid #d8e6f8;
  background: #fff;
  transition: background-color .2s ease, box-shadow .2s ease;
}
.shop-product-category-control:hover { background: #f8fbff; }
.shop-product-category-control:focus-within {
  z-index: 1;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(15, 112, 255, .2);
}
.shop-product-category-control .dashicons {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 18px;
  height: 18px;
  color: #173667;
  font-size: 18px;
  line-height: 18px;
  transform: translateY(-50%);
  pointer-events: none;
}
.shop-product-search-inner:focus-within {
  border-color: var(--blue);
  box-shadow: 0 17px 38px rgba(15, 112, 255, .19), 0 0 0 3px rgba(15, 112, 255, .08);
}
.shop-product-category,
.shop-product-search input[type="search"] {
  min-height: 74px;
  font-size: 15px;
}
.shop-product-category-control .shop-product-category {
  width: 100%;
  padding: 0 48px 0 22px;
  border: 0;
  background: transparent;
  color: #122347;
  font-size: 14px;
  font-weight: 650;
  appearance: none;
  cursor: pointer;
}
.shop-product-search-icon {
  width: 52px;
  height: 74px;
  display: grid;
  place-items: center;
  color: #173667;
  font-size: 27px;
  line-height: 1;
}
.shop-product-search input[type="search"] {
  padding: 0 18px 0 0;
  color: #17294b;
  font-weight: 500;
}
.shop-product-search input[type="search"]::placeholder { color: #7282a4; opacity: 1; }
.shop-product-search button {
  width: auto;
  min-height: 56px;
  margin: 9px 9px 9px 0;
  padding: 0 22px;
  border-radius: 9px;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
}
.shop-benefits {
  justify-content: center;
  gap: 20px clamp(38px, 6vw, 76px);
  margin-top: 42px;
}
.shop-benefits li {
  gap: 11px;
  color: #3f5278;
  font-size: 13px;
  font-weight: 600;
}
.shop-benefits .dashicons {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 27px;
  font-weight: 400;
}
.has-shop-showcase > .container {
  padding-top: clamp(40px, 5vw, 62px);
}
.has-shop-showcase .woocommerce-breadcrumb { display: none; }
.has-shop-showcase .woocommerce-products-header { margin-bottom: 26px; }
.has-shop-showcase .woocommerce-products-header__title.page-title {
  color: #0b1d43;
  font-size: clamp(40px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -.045em;
}
.shop-category-tabs {
  float: left;
  overflow: hidden;
  width: 54%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
  margin: 2px 0 26px;
  white-space: nowrap;
}
.shop-category-tabs a {
  position: relative;
  overflow: hidden;
  max-width: 148px;
  flex: 0 1 auto;
  padding: 10px 1px 12px;
  color: #607296;
  font-size: 14px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop-category-tabs a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: transparent;
}
.shop-category-tabs a:hover,
.shop-category-tabs a.is-active { color: var(--blue); }
.shop-category-tabs a.is-active::after { background: var(--blue); }
.has-shop-showcase .woocommerce-result-count {
  float: left;
  margin: 15px 20px 28px 0;
  font-size: 12px;
  font-weight: 600;
}
.has-shop-showcase .woocommerce-ordering {
  float: right;
  margin: 0 0 24px;
}
.has-shop-showcase .woocommerce-ordering select {
  min-height: 48px;
  border-color: #cbdcf1;
  border-radius: 9px;
  color: #26395d;
  font-size: 13px;
  font-weight: 600;
}
.commerce-shell { min-width: 0; }
.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 24px;
  color: #738096;
  font-size: 13px;
  font-weight: 650;
}
.woocommerce .woocommerce-breadcrumb a { color: var(--blue); }
.woocommerce-products-header { margin-bottom: clamp(28px, 4vw, 44px); }
.woocommerce-products-header__title.page-title,
.woocommerce .commerce-shell > h1 {
  margin: 0;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.woocommerce .term-description {
  max-width: 720px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.woocommerce .woocommerce-result-count {
  margin: 12px 0 34px;
  color: #718096;
  font-size: 13px;
}
.woocommerce .woocommerce-ordering { margin: 0 0 28px; }
.woocommerce .woocommerce-ordering select,
.woocommerce select {
  min-height: 44px;
  padding: 0 40px 0 14px;
  border: 1px solid #d5e2f4;
  border-radius: 9px;
  background: #fff;
  color: #43516a;
  font: inherit;
  font-size: 13px;
}
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  align-items: stretch;
  gap: clamp(16px, 1.8vw, 24px);
  clear: both;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  position: relative;
  overflow: hidden;
  float: none !important;
  width: 100% !important;
  max-width: none;
  min-width: 0;
  height: 100%;
  margin: 0 !important;
  padding: 0 0 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e9f7;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(24, 52, 98, .055);
  transition: transform .22s ease, box-shadow .22s ease;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(24, 52, 98, .12);
}
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  flex: 1 1 auto;
  display: block;
  min-width: 0;
}
.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1;
  margin: 0 0 18px;
  padding: 10px;
  object-fit: contain;
  background: #f7faff;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0 17px;
  color: var(--ink);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -.025em;
}
.woocommerce ul.products li.product .star-rating { margin: 0 17px 9px; color: #ffb020; }
.woocommerce ul.products li.product .price {
  display: block;
  margin: 6px 17px 16px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
}
.woocommerce ul.products li.product .price del { color: #8d99aa; font-size: .85em; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce span.onsale {
  top: 14px;
  left: 14px;
  min-width: auto;
  min-height: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
  font-size: 11px;
  line-height: 28px;
}
.woocommerce ul.products li.product .onsale {
  top: 14px;
  right: auto;
  left: 14px;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wp-block-button__link,
.wc-block-components-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: background .2s ease, transform .2s ease;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.wp-block-button__link:hover,
.wc-block-components-button:hover {
  background: var(--blue-2);
  color: #fff;
  transform: translateY(-1px);
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart {
  align-self: stretch;
  width: calc(100% - 34px);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto 17px 0 !important;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--blue);
  color: #fff !important;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
}
.woocommerce ul.products li.product .added_to_cart {
  margin-top: 10px !important;
  border: 1px solid #b8d0ff;
  border-radius: 9px;
  background: #fff;
  color: var(--blue) !important;
  font-size: 13px;
  font-weight: 800;
}
.woocommerce ul.products li.product .button.loading {
  padding-right: 36px;
}
.woocommerce nav.woocommerce-pagination { margin-top: 48px; }
.woocommerce nav.woocommerce-pagination ul { overflow: visible; display: inline-flex; gap: 8px; border: 0; }
.woocommerce nav.woocommerce-pagination ul li { overflow: visible; border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #dce7f7;
  border-radius: 10px;
  background: #fff;
  color: #54627a;
  font-size: 13px;
  font-weight: 750;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover { border-color: var(--blue); background: var(--blue); color: #fff; }

.woocommerce div.product {
  display: flow-root;
  padding: clamp(24px, 3.5vw, 46px);
  border: 1px solid #e0e9f7;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(24, 52, 98, .08);
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary { margin-bottom: 38px; }
.woocommerce div.product div.images img { border-radius: 13px; background: #f3f7fc; }
.woocommerce div.product .product_title {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--blue); font-size: 24px; font-weight: 850; }
.woocommerce div.product p.price del { color: #8d99aa; font-size: .72em; }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce-product-details__short-description { color: #56647b; font-size: 15px; line-height: 1.75; }
.woocommerce .quantity .qty {
  min-height: 44px;
  border: 1px solid #d5e2f4;
  border-radius: 9px;
  color: var(--text);
  font: inherit;
}
.woocommerce div.product form.cart { display: flex; align-items: center; gap: 10px; margin-block: 26px; }
.woocommerce div.product form.cart::before,
.woocommerce div.product form.cart::after { display: none; }
.woocommerce div.product .stock { color: #16845b; font-weight: 700; }
.woocommerce div.product .out-of-stock { color: #c44949; }
.product_meta {
  display: grid;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid #e4ebf5;
  color: #7b8799;
  font-size: 12px;
}
.product_meta a { color: var(--blue); }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: #dde7f4; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 5px 0 0;
  border-color: #dde7f4;
  border-radius: 9px 9px 0 0;
  background: #f4f8fd;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: #fff; color: var(--blue); }
.woocommerce div.product .woocommerce-tabs .panel { color: #56647b; font-size: 15px; line-height: 1.75; }
.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce .related.products > h2 { font-size: clamp(24px, 3vw, 34px); }
.woocommerce .related.products { clear: both; padding-top: 34px; }

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  margin-bottom: 24px;
  border: 1px solid #d6e5fa;
  border-top: 3px solid var(--blue);
  border-radius: 10px;
  background: #f5f9ff;
  color: #3f4f68;
}
.woocommerce-error { border-top-color: #d64b4b; }
.woocommerce-message { border-top-color: #18a96b; }
.woocommerce form .form-row label { color: #34435b; font-size: 13px; font-weight: 750; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .select2-container .select2-selection--single {
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid #d5e2f4;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
}
.woocommerce .select2-container .select2-selection--single .select2-selection__rendered { padding: 0; line-height: 22px; }
.woocommerce table.shop_table {
  overflow: hidden;
  border-color: #dfe8f5;
  border-radius: 12px;
  background: #fff;
}
.woocommerce table.shop_table th { color: var(--ink); font-size: 13px; }
.woocommerce table.shop_table td { border-color: #e5edf7; color: #526078; }
.woocommerce table.shop_table a:not(.button):not(.remove) { color: var(--blue); font-weight: 700; }
.woocommerce-cart a.button,
.woocommerce-cart button.button,
.woocommerce-cart input.button,
.woocommerce-cart .checkout-button,
.woocommerce-cart .wc-block-components-button {
  color: #fff !important;
}
.woocommerce-cart .wc-block-components-button__text {
  color: inherit !important;
}
.woocommerce-cart a.button:hover,
.woocommerce-cart button.button:hover,
.woocommerce-cart input.button:hover,
.woocommerce-cart .checkout-button:hover,
.woocommerce-cart .wc-block-components-button:hover {
  color: #fff !important;
}
.woocommerce-cart a.button:disabled,
.woocommerce-cart button.button:disabled,
.woocommerce-cart button.button:disabled[disabled],
.woocommerce-cart input.button:disabled {
  color: rgba(255, 255, 255, .82) !important;
}
.woocommerce-cart table.cart img { width: 68px; border-radius: 8px; }
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 24px;
  border: 1px solid #dfe8f5;
  border-radius: 13px;
  background: #fff;
}
.woocommerce .cart-collaterals .cart_totals h2,
.woocommerce-checkout #order_review_heading { font-size: 24px; }
.woocommerce-checkout #order_review_heading { margin: 28px 0 0; border-radius: 13px 13px 0 0; border-bottom: 0; }
.woocommerce-checkout #order_review { border-radius: 0 0 13px 13px; }
.woocommerce-checkout #payment { background: #f2f7fd; }
.woocommerce-account .woocommerce-MyAccount-navigation { width: 28%; }
.woocommerce-account .woocommerce-MyAccount-content { width: 69%; min-height: 260px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation li + li { border-top: 1px solid #e5edf7; }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; padding: 12px 5px; color: #536178; font-size: 13px; font-weight: 750; }
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a { color: var(--blue); }
.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  border-color: #d5e2f4 !important;
  border-radius: 8px !important;
}

@media (min-width: 980px) {
  .feature .two-col { grid-template-columns: minmax(260px, .45fr) minmax(0, 1fr); }
}

@media (max-width: 640px) {
  .container { width: calc(100vw - 28px); max-width: calc(100vw - 28px); }
  .content-page-shell { width: calc(100vw - 28px); max-width: calc(100vw - 28px); }
  .site-header { position: static; }
  .nav { flex-direction: column; align-items: flex-start; padding: 18px 0; }
  .nav-right { justify-content: flex-start; flex-wrap: wrap; gap: 16px 22px; }
  .nav-links, .nav-menu { justify-content: flex-start; }
  .nav-menu { gap: 16px 22px; flex-wrap: wrap; }
  .two-col, .hero .two-col, .feature .two-col, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero .two-col { transform: none; }
  .hero h1 { max-width: 340px; font-size: 28px; }
  .lead, .desc { max-width: 320px; }
  .hero .art img { transform: none; }
  .feature-purple h2 { white-space: normal; }
  .actions { flex-wrap: wrap; }
  .actions, .btn { width: 100%; }
  .price-card.featured { transform: none; }
  .new-price { font-size: 42px; }
  .cta-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
    padding: 28px 20px;
  }
  .wp-emblem, .cta-copy, .cta-banner .btn { grid-column: 1; }
  .cta-copy { width: 100%; max-width: 340px; }
  .cta-banner p { max-width: 285px; margin-inline: auto; }
  .cta-banner .btn { width: min(100%, 260px); }
  .content-page-hero { padding: 38px 0 24px; }
  .content-page-hero h1 { font-size: 36px; }
  .content-page-body {
    padding: 24px 20px;
    border-radius: 14px;
  }
  .blog-hero { padding: 42px 0; }
  .blog-hero-inner { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .blog-hero h1 { font-size: 40px; }
  .post-grid { grid-template-columns: 1fr; }
  .post-card-featured { display: flex; min-height: 0; }
  .post-card-featured .post-card-media { min-height: 230px; aspect-ratio: 16 / 10; }
  .post-card-featured .post-card-content { padding: 26px 22px; }
  .post-card-featured .post-card-title { font-size: 28px; }
  .article-shell,
  .single-featured-image { width: calc(100vw - 28px); }
  .single-post-hero { padding: 40px 0 30px; }
  .single-post-hero h1 { font-size: 37px; }
  .single-featured-image { border-radius: 13px; }
  .article-content .alignwide { width: calc(100vw - 28px); }
  .author-box { grid-template-columns: 52px minmax(0, 1fr); padding: 20px; }
  .author-box img { width: 52px; height: 52px; }
  .post-navigation .nav-links { grid-template-columns: 1fr; }
  .post-navigation .nav-next { text-align: left; }
  .comment-list .children { padding-left: 16px; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .woocommerce div.product { padding: 18px; border-radius: 14px; }
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary { float: none; width: 100%; }
  .woocommerce div.product form.cart { align-items: stretch; flex-wrap: wrap; }
  .woocommerce div.product form.cart .button { flex: 1; }
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content { float: none; width: 100%; }
  .woocommerce-account .woocommerce-MyAccount-navigation { margin-bottom: 18px; }
  .woocommerce table.shop_table_responsive tr td::before { color: var(--ink); }
  .shop-showcase {
    padding: 0;
  }
  .shop-showcase-panel {
    width: 100%;
    max-width: none;
    min-height: 0;
    margin: 0;
    border-radius: 0;
    background-position: center;
  }
  .shop-showcase-copy {
    padding: 54px 18px 38px;
  }
  .shop-showcase h1 {
    margin-bottom: 10px;
    font-size: 34px;
  }
  .shop-showcase-copy > p { font-size: 15px; }
  .shop-product-search {
    margin-top: 26px;
  }
  .shop-product-search-inner {
    grid-template-columns: minmax(0, 1fr) 92px;
    min-height: 58px;
    border-radius: 11px;
  }
  .shop-product-category-control,
  .shop-product-search-icon { display: none; }
  .shop-product-search input[type="search"] {
    min-height: 56px;
    padding: 0 14px;
    font-size: 13px;
  }
  .shop-product-search button {
    width: auto;
    min-height: 44px;
    margin: 6px 6px 6px 0;
    padding: 0 14px;
    font-size: 12px;
  }
  .shop-benefits {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    margin-top: 30px;
  }
  .has-shop-showcase > .container {
    padding-top: 36px;
    padding-bottom: 72px;
  }
  .shop-category-tabs {
    float: none;
    overflow-x: auto;
    width: 100%;
    gap: 24px;
    margin: 0 0 18px;
    scrollbar-width: none;
  }
  .shop-category-tabs::-webkit-scrollbar { display: none; }
  .shop-category-tabs a {
    max-width: none;
    flex: 0 0 auto;
  }
  .has-shop-showcase .woocommerce-result-count {
    float: none;
    margin: 0 0 14px;
  }
  .has-shop-showcase .woocommerce-ordering {
    float: none;
    width: 100%;
    margin-bottom: 22px;
  }
  .has-shop-showcase .woocommerce-ordering select { width: 100%; }
}

@media (min-width: 641px) and (max-width: 960px) {
  .post-grid,
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(260px, 340px); }
  .post-card-featured { grid-template-columns: 1fr 1fr; }
  .shop-showcase-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .shop-showcase-copy {
    max-width: 720px;
  }
  .shop-showcase-art {
    width: min(100%, 650px);
    margin-inline: auto;
  }
  .shop-category-tabs {
    float: none;
    overflow-x: auto;
    width: 100%;
    margin-bottom: 18px;
    scrollbar-width: none;
  }
  .shop-category-tabs::-webkit-scrollbar { display: none; }
  .shop-category-tabs a {
    max-width: none;
    flex: 0 0 auto;
  }
  .has-shop-showcase .woocommerce-result-count { margin-top: 14px; }
}

@media (min-width: 961px) and (max-width: 1199px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .shop-category-tabs { width: 50%; gap: 22px; }
}

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