:root {
  --bg: #f5f1ea;
  --surface: #fbf8f3;
  --ink: #171717;
  --graphite: #3a3a3a;
  --border: #e6ded3;
  --accent: #c8a2a8;
  --ring: rgba(200, 162, 168, 0.5);
  --r-lg: 20px;
  --r-md: 14px;
  --max-shell: 1240px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% 14%, rgba(23, 23, 23, 0.02), transparent 38%),
    radial-gradient(circle at 84% 80%, rgba(200, 162, 168, 0.07), transparent 40%);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 280ms ease;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--ring);
}

p {
  margin: 0;
  color: var(--graphite);
}

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

.editorial-shell {
  width: 100%;
  max-width: var(--max-shell);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-main {
  min-height: calc(100vh - 240px);
}

.checkout-clean .site-main,
.checkout-clean-main {
  min-height: 100vh;
}

.checkout-clean .woocommerce-generic-section {
  padding-top: 28px;
}

.checkout-clean .woocommerce-generic-header {
  margin-bottom: 12px;
}

.checkout-clean .shop-archive-title {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
}

.checkout-content-wrap {
  display: grid;
  gap: 12px;
}

.order-received-page .woocommerce-generic-section {
  padding-top: 36px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(230, 222, 211, 0.8);
  backdrop-filter: blur(10px);
  background: rgba(245, 241, 234, 0.9);
}

body.admin-bar .site-header {
  top: 32px;
}

.header-row {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-title {
  display: inline-block;
  font-family: "Instrument Serif", serif;
  letter-spacing: 0.02em;
  font-size: clamp(1.9rem, 2.4vw, 2.15rem);
}

.site-branding img {
  max-height: 60px;
  width: auto;
}

.main-navigation {
  display: none;
}

.menu-inline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.menu-inline a {
  font-size: 0.93rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quiet-icon {
  height: 38px;
  width: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(251, 248, 243, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  position: relative;
}

.icon-svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quiet-icon:hover {
  color: var(--ink);
  border-color: rgba(200, 162, 168, 0.8);
  background: rgba(200, 162, 168, 0.15);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  background: var(--accent);
  color: var(--ink);
  font-size: 10px;
  line-height: 1;
}

.mobile-navigation {
  padding-bottom: 12px;
}

.mobile-navigation .menu-inline {
  gap: 1rem;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 960px) {
  .woocommerce-shell .wc-block-checkout__sidebar {
    position: static;
    top: auto;
  }
}

.editorial-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.hero-section {
  padding-top: 48px;
  padding-bottom: 32px;
}

.section-tight-top {
  padding-top: 32px;
}

.hero-grid {
  display: grid;
  align-items: end;
  gap: 40px;
}

.meta-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite);
}

.h1-large,
.h2-large,
h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.06;
}

.h1-large {
  margin-top: 12px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
}

.h2-large {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3.9vw, 3.15rem);
}

.body-copy {
  margin-top: 20px;
  max-width: 66ch;
}

.hero-cta-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.quiet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.quiet-button:hover {
  border-color: rgba(200, 162, 168, 0.8);
  background: rgba(200, 162, 168, 0.2);
  color: var(--ink);
}

.text-link {
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

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

.section-head-row.single-column {
  justify-content: flex-start;
}

.product-grid {
  display: grid;
  gap: 24px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
}

.media-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.media-frame img,
.collection-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 720ms ease;
}

.product-card:hover .media-frame img,
.collection-card:hover .collection-media-frame img {
  transform: scale(1.02);
}

.product-card-body {
  padding: 20px;
  display: grid;
  gap: 14px;
}

.product-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.product-description {
  font-size: 0.9rem;
  color: var(--graphite);
  max-width: 62ch;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-mono {
  font-family: "IBM Plex Mono", monospace;
  color: var(--ink);
  font-size: 0.9rem;
}

.price-mono ins {
  text-decoration: none;
}

.manifesto-section {
  padding-top: 80px;
  padding-bottom: 96px;
}

.manifesto-blockquote {
  margin: 0;
  max-width: 18ch;
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.015em;
  color: var(--ink);
}

.collection-grid {
  display: grid;
  gap: 16px;
}

.collection-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
}

.collection-media-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.collection-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 162, 168, 0.25), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(23, 23, 23, 0.08), transparent 35%),
    #ede5d8;
}

.collection-body {
  padding: 16px;
}

.collection-title {
  margin-top: 8px;
  font-size: 1.6rem;
}

.collection-description {
  margin-top: 8px;
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  gap: 16px;
}

.process-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: 24px;
}

.process-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(200, 162, 168, 0.55);
  align-items: center;
  justify-content: center;
  color: #7f5e62;
}

.process-card h3 {
  margin-top: 12px;
  font-size: 1.8rem;
}

.process-card p {
  margin-top: 8px;
  font-size: 0.9rem;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: clamp(24px, 4vw, 42px);
}

.contact-card .body-copy {
  margin-top: 14px;
}

.contact-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 40px 0;
}

.footer-separator {
  margin: 0 0 32px;
  border: 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
}

.footer-tagline {
  margin-top: 10px;
  font-size: 0.92rem;
}

.footer-mail {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-navigation .menu-inline {
  gap: 18px;
}

.empty-state {
  border: 1px dashed rgba(58, 58, 58, 0.35);
  border-radius: var(--r-md);
  padding: 22px;
  background: rgba(251, 248, 243, 0.65);
}

.empty-state h1,
.empty-state p {
  margin-bottom: 12px;
}

.posts-list {
  display: grid;
  gap: 16px;
}

.content-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: clamp(20px, 2.2vw, 32px);
}

.content-title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.content-meta {
  margin-top: 8px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--graphite);
}

.entry-content {
  margin-top: 14px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.3em;
  margin-bottom: 0.45em;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
  margin-bottom: 1em;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.2em;
}

.entry-content blockquote {
  margin: 1.3em 0;
  padding: 0.6em 1em;
  border-left: 2px solid rgba(200, 162, 168, 0.8);
  background: rgba(200, 162, 168, 0.1);
}

.pagination-wrap {
  margin-top: 24px;
}

.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 0 12px;
  font-size: 0.86rem;
}

.nav-links .current {
  border-color: rgba(200, 162, 168, 0.8);
  background: rgba(200, 162, 168, 0.2);
}

.woocommerce-shell .woocommerce-notices-wrapper {
  margin-bottom: 16px;
}

.woocommerce-generic-header {
  margin-bottom: 18px;
}

.woocommerce-page-shell > .woocommerce {
  display: grid;
  gap: 20px;
}

.checkout-page-section .shop-archive-header {
  margin-bottom: 14px;
}

.checkout-page-section .shop-archive-title {
  font-size: clamp(2.5rem, 6vw, 4.1rem);
  line-height: 0.95;
}

.checkout-content-wrap > .wp-block-woocommerce-checkout,
.checkout-content-wrap > .wc-block-checkout,
.checkout-content-wrap > .wp-block-woocommerce-cart,
.checkout-content-wrap > .wc-block-cart {
  margin: 0;
}

.shop-archive-header {
  margin-bottom: 24px;
}

.shop-archive-title {
  margin-top: 8px;
}

.shop-archive-description {
  margin-top: 14px;
  max-width: 70ch;
  color: var(--graphite);
}

.shop-archive-description p {
  margin: 0;
}

.woocommerce-shell .woocommerce-products-header {
  margin-bottom: 10px;
}

.woocommerce-shell .woocommerce-products-header .page-title {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
}

.woocommerce-shell .woocommerce-result-count {
  margin: 0;
  color: var(--graphite);
  font-size: 0.92rem;
}

.woocommerce-shell .woocommerce-ordering {
  margin: 0;
}

.woocommerce-shell .woocommerce-ordering select {
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 14px;
}

.woocommerce-shell .woocommerce-result-count,
.woocommerce-shell .woocommerce-ordering {
  float: none;
}

.woocommerce-shell .woocommerce::after,
.woocommerce-shell .woocommerce::before {
  content: "";
  display: table;
}

.woocommerce-shell .woocommerce::after {
  clear: both;
}

.woocommerce-shell .woocommerce ul.products,
.woocommerce-shell .woocommerce-page ul.products,
.woocommerce-shell ul.products {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 22px;
}

.woocommerce-shell .woocommerce ul.products li.product,
.woocommerce-shell .woocommerce-page ul.products li.product,
.woocommerce-shell ul.products li.product {
  width: auto;
  float: none;
  margin: 0;
  list-style: none;
}

.woocommerce-shell .woocommerce ul.products li.product.shop-product-card .media-frame {
  position: relative;
}

.woocommerce-shell .woocommerce ul.products li.product.shop-product-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.woocommerce-shell .woocommerce ul.products li.product.shop-product-card .onsale {
  margin: 0;
  min-height: 0;
  min-width: 0;
  border-radius: 999px;
  padding: 6px 10px;
  line-height: 1;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  top: 12px;
  left: 12px;
  right: auto;
  background: rgba(23, 23, 23, 0.86);
  color: #fff;
}

.woocommerce-shell .woocommerce ul.products li.product.shop-product-card .button {
  margin: 0;
}

.woocommerce-shell .woocommerce ul.products li.product.shop-product-card a.added_to_cart {
  margin-left: 10px;
  font-size: 0.84rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-shell .woocommerce ul.products li.product.shop-product-card .woocommerce-loop-product__link {
  color: inherit;
}

.woocommerce-shell .woocommerce ul.products li.product.shop-product-card .price,
.woocommerce-shell .woocommerce ul.products li.product.shop-product-card .price * {
  color: inherit;
}

.woocommerce-shell .woocommerce ul.products li.product.shop-product-card .price del {
  opacity: 0.55;
}

.woocommerce-shell .woocommerce ul.products li.product.shop-product-card .price ins {
  text-decoration: none;
}

.woocommerce-shell .woocommerce a.button,
.woocommerce-shell .woocommerce button.button,
.woocommerce-shell .woocommerce input.button {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-weight: 500;
}

.woocommerce-shell .woocommerce nav.woocommerce-pagination {
  margin-top: 30px;
}

.woocommerce-shell .woocommerce nav.woocommerce-pagination ul {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  gap: 8px;
}

.woocommerce-shell .woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce-shell .woocommerce nav.woocommerce-pagination ul li a,
.woocommerce-shell .woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0 12px;
  color: var(--ink);
  font-size: 0.85rem;
}

.woocommerce-shell .woocommerce nav.woocommerce-pagination ul li span.current {
  border-color: rgba(200, 162, 168, 0.8);
  background: rgba(200, 162, 168, 0.2);
}

.woocommerce-shell .woocommerce-no-products-found .woocommerce-info,
.woocommerce-shell .woocommerce-info,
.woocommerce-shell .woocommerce-message,
.woocommerce-shell .woocommerce-error {
  margin: 0 0 14px;
  border: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: var(--r-md);
  background: rgba(251, 248, 243, 0.9);
  color: var(--graphite);
}

.woocommerce-shell .wp-block-woocommerce-checkout,
.woocommerce-shell .wc-block-checkout,
.woocommerce-shell .wc-block-cart {
  font-family: "Inter", sans-serif;
  color: var(--ink);
}

.woocommerce-shell .wc-block-checkout *,
.woocommerce-shell .wc-block-cart * {
  letter-spacing: normal;
}

.woocommerce-shell .wc-block-components-sidebar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.woocommerce-shell .wc-block-checkout__main,
.woocommerce-shell .wc-block-checkout__sidebar {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: rgba(251, 248, 243, 0.92);
  padding: clamp(18px, 2.2vw, 30px);
}

.woocommerce-shell .wc-block-checkout__sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
}

.checkout-clean .woocommerce-shell .wc-block-checkout__sidebar {
  top: 18px;
}

.woocommerce-shell .wc-block-components-checkout-step__heading,
.woocommerce-shell .wc-block-components-title,
.woocommerce-shell .wc-block-checkout__sidebar-heading {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.02;
  color: var(--ink);
}

.woocommerce-shell .wc-block-components-title,
.woocommerce-shell .wc-block-checkout__sidebar-heading {
  font-size: clamp(1.9rem, 3vw, 2.45rem);
}

.woocommerce-shell .wc-block-components-checkout-step__heading {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.woocommerce-shell .wc-block-components-checkout-step__description,
.woocommerce-shell .wc-block-components-order-summary-item__description,
.woocommerce-shell .wc-block-components-address-card__address {
  color: var(--graphite);
  font-size: 0.92rem;
  line-height: 1.55;
}

.woocommerce-shell .wc-block-components-order-summary {
  border: 0;
}

.woocommerce-shell .wc-block-components-order-summary .wc-block-components-order-summary-item {
  border-top: 1px solid var(--border);
  margin: 0;
  padding: 14px 0;
}

.woocommerce-shell .wc-block-components-order-summary .wc-block-components-order-summary-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.woocommerce-shell .wc-block-components-order-summary-item__description {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 10px;
  align-items: start;
}

.woocommerce-shell .wc-block-components-product-name {
  grid-column: 1;
  margin: 0;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 500;
  word-break: normal;
  overflow-wrap: anywhere;
}

.woocommerce-shell .wc-block-components-product-price {
  grid-column: 2;
  justify-self: end;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  color: var(--ink);
  white-space: nowrap;
}

.woocommerce-shell .wc-block-components-product-metadata {
  display: none;
}

.woocommerce-shell .wc-block-components-order-summary-item__quantity {
  grid-column: 1;
  color: var(--graphite);
  font-size: 0.78rem;
  line-height: 1.2;
}

.woocommerce-shell .wc-block-components-product-image {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.woocommerce-shell .wc-block-components-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.woocommerce-shell .wc-block-components-product-image__quantity {
  background: var(--accent);
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}

.woocommerce-shell .wc-block-components-totals-wrapper {
  border-top-color: var(--border);
  padding-top: 10px;
}

.woocommerce-shell .wc-block-components-totals-item {
  padding: 8px 0;
}

.woocommerce-shell .wc-block-components-totals-item__label {
  color: var(--graphite);
}

.woocommerce-shell .wc-block-components-totals-item__value {
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
}

.woocommerce-shell .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-family: "Instrument Serif", serif;
  color: var(--ink);
  font-size: 2rem;
}

.woocommerce-shell .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 1.25rem;
}

.woocommerce-shell .wc-block-components-radio-control__option {
  border-color: var(--border);
  background: var(--surface);
}

.woocommerce-shell .wc-block-components-checkbox label,
.woocommerce-shell .wc-block-components-radio-control__label {
  color: var(--ink);
}

.woocommerce-shell .wc-block-components-form .wc-block-components-text-input input,
.woocommerce-shell .wc-block-components-form .wc-block-components-text-input select,
.woocommerce-shell .wc-block-components-form .wc-block-components-address-form input,
.woocommerce-shell .wc-block-components-form .wc-block-components-address-form select,
.woocommerce-shell .wc-block-components-text-input input,
.woocommerce-shell .wc-block-components-text-input select {
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fffdfa;
  color: var(--ink);
  box-shadow: none;
}

.woocommerce-shell .wc-block-components-text-input label {
  color: var(--graphite);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.woocommerce-shell .wc-block-components-validation-error,
.woocommerce-shell .wc-block-components-validation-error p {
  color: #8b3a3a;
}

.woocommerce-shell .wc-block-components-checkout-place-order-button,
.woocommerce-shell .wc-block-components-button {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-weight: 500;
  min-height: 44px;
  box-shadow: none;
}

.woocommerce-shell .wc-block-components-checkout-place-order-button:hover,
.woocommerce-shell .wc-block-components-button:hover {
  border-color: rgba(200, 162, 168, 0.8);
  background: rgba(200, 162, 168, 0.2);
  color: var(--ink);
}

.woocommerce-shell .wc-block-components-checkout-place-order-button,
.woocommerce-shell .wc-block-components-checkout-return-to-cart-button,
.woocommerce-shell .wc-block-components-button {
  letter-spacing: 0.01em;
}

.woocommerce-shell .wc-block-components-checkout-return-to-cart-button {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-shell .wc-block-components-express-payment {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px;
  background: rgba(251, 248, 243, 0.65);
}

.woocommerce-shell .wc-block-components-radio-control-accordion-option,
.woocommerce-shell .wc-block-components-payment-method {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.woocommerce-shell .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option-layout,
.woocommerce-shell .wc-block-components-payment-method .wc-block-components-radio-control__option-layout {
  padding: 10px 12px;
}

.woocommerce-shell .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__description,
.woocommerce-shell .wc-block-components-payment-method .wc-block-components-radio-control__description {
  color: var(--graphite);
}

.woocommerce-shell .wc-block-components-checkout-step {
  margin-bottom: 14px;
}

.woocommerce-shell .wc-block-components-checkout-step:last-child {
  margin-bottom: 0;
}

.woocommerce-shell .wc-block-components-form .wc-block-components-combobox-control .components-form-token-field__suggestions-list,
.woocommerce-shell .wc-block-components-form .wc-block-components-combobox-control .components-form-token-field__input {
  color: var(--ink);
}

.woocommerce-shell .wc-block-components-form .wc-block-components-text-input input:focus,
.woocommerce-shell .wc-block-components-form .wc-block-components-text-input select:focus,
.woocommerce-shell .wc-block-components-form .wc-block-components-address-form input:focus,
.woocommerce-shell .wc-block-components-form .wc-block-components-address-form select:focus {
  border-color: rgba(200, 162, 168, 0.85);
  box-shadow: 0 0 0 2px rgba(200, 162, 168, 0.22);
}

.order-received-page .checkout-content-wrap > .woocommerce-order,
.order-received-page .checkout-content-wrap [class*="wc-block-order-confirmation"] {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: rgba(251, 248, 243, 0.92);
  padding: clamp(16px, 2vw, 24px);
}

.order-received-page .checkout-content-wrap > .woocommerce-order + .woocommerce-order,
.order-received-page .checkout-content-wrap [class*="wc-block-order-confirmation"] + [class*="wc-block-order-confirmation"] {
  margin-top: 12px;
}

.order-received-page .woocommerce-thankyou-order-received,
.order-received-page .wc-block-order-confirmation-status__content,
.order-received-page .wc-block-order-confirmation-status__title {
  color: var(--ink);
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.order-received-page .woocommerce-order-overview,
.order-received-page .wc-block-order-confirmation-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.order-received-page .woocommerce-order-overview li,
.order-received-page .wc-block-order-confirmation-summary-list-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--surface);
  color: var(--ink);
}

.order-received-page .woocommerce-order-overview li strong,
.order-received-page .wc-block-order-confirmation-summary-list-item__value {
  display: block;
  margin-top: 4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
}

.order-received-page .woocommerce-table--order-details,
.order-received-page .wc-block-order-confirmation-totals .wc-block-components-totals-wrapper {
  margin-top: 12px;
}

.woocommerce-shell .shop_table {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface);
}

.woocommerce-shell .shop_table th,
.woocommerce-shell .shop_table td {
  border-color: var(--border);
  padding: 14px 16px;
}

.woocommerce-shell .shop_table th {
  color: var(--ink);
  font-weight: 500;
}

.woocommerce-shell .shop_table td {
  color: var(--graphite);
}

.woocommerce-shell .shop_table td.product-name a {
  color: var(--ink);
  font-family: "Instrument Serif", serif;
  font-size: 1.35rem;
}

.woocommerce-shell .shop_table td.product-price,
.woocommerce-shell .shop_table td.product-subtotal {
  font-family: "IBM Plex Mono", monospace;
  color: var(--ink);
}

.woocommerce-shell .shop_table td.product-thumbnail img {
  width: 78px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.woocommerce-shell .woocommerce-cart-form .quantity .qty {
  width: 68px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
}

.woocommerce-shell .woocommerce-cart-form .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.woocommerce-shell .woocommerce-cart-form .coupon {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.woocommerce-shell .woocommerce-cart-form .coupon input.input-text {
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 14px;
}

.woocommerce-shell .woocommerce-cart-form .button,
.woocommerce-shell .cart_totals .button,
.woocommerce-shell .woocommerce-checkout .button,
.woocommerce-shell .woocommerce-form-login .button {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-weight: 500;
}

.woocommerce-shell .cart-collaterals {
  margin-top: 20px;
}

.woocommerce-shell .cart_totals {
  max-width: 420px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: 18px;
}

.woocommerce-shell .cart_totals h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.woocommerce-shell .cart_totals .shop_table {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.woocommerce-shell .cart_totals .shop_table th,
.woocommerce-shell .cart_totals .shop_table td {
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.woocommerce-shell .woocommerce-checkout .col2-set {
  display: grid;
  gap: 16px;
}

.woocommerce-shell .woocommerce-checkout #customer_details .col-1,
.woocommerce-shell .woocommerce-checkout #customer_details .col-2,
.woocommerce-shell .woocommerce-checkout-review-order,
.woocommerce-shell .woocommerce-checkout-payment {
  width: 100%;
  float: none;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: 18px;
}

.woocommerce-shell .woocommerce-checkout #customer_details h3,
.woocommerce-shell #order_review_heading {
  margin-bottom: 12px;
  font-size: 1.9rem;
}

.woocommerce-shell .form-row {
  margin-bottom: 12px;
}

.woocommerce-shell input.input-text,
.woocommerce-shell textarea,
.woocommerce-shell select {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fffdfa;
  color: var(--ink);
  min-height: 42px;
  padding: 10px 12px;
}

.woocommerce-shell #order_review {
  margin-top: 14px;
}

.woocommerce-shell .woocommerce-checkout-payment .wc_payment_method {
  margin: 0;
  padding: 10px 0;
}

.woocommerce-shell .woocommerce-checkout-payment div.payment_box {
  margin-top: 10px;
  background: rgba(200, 162, 168, 0.12);
}

.woocommerce-shell .woocommerce-checkout-payment div.payment_box::before {
  border-bottom-color: rgba(200, 162, 168, 0.12);
}

.woocommerce-shell .woocommerce-form-login,
.woocommerce-shell .woocommerce-form-register,
.woocommerce-shell .woocommerce-MyAccount-content,
.woocommerce-shell .woocommerce-MyAccount-navigation {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  padding: 18px;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
}

.woocommerce-shell .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.woocommerce-shell .woocommerce-MyAccount-navigation a {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 8px 12px;
}

.single-product-section {
  padding-top: 56px;
}

.single-product-grid {
  display: grid;
  gap: 32px;
}

.single-main-image-frame {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.single-main-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-thumb-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.single-thumb {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-thumb.is-active {
  box-shadow: 0 0 0 2px var(--ring);
}

.single-product-info {
  display: grid;
  gap: 18px;
  align-content: start;
}

.single-product-title {
  margin-top: 10px;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.single-product-price {
  margin-top: 8px;
  font-size: 1rem;
}

.single-product-short {
  margin-top: 8px;
  color: var(--graphite);
  max-width: 65ch;
}

.single-product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-cart-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.single-product-actions .quantity {
  margin: 0;
}

.single-product-actions .quantity .qty {
  height: 42px;
  width: 78px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  padding: 0 12px;
  text-align: center;
}

.single-product-actions .single_add_to_cart_button {
  margin: 0;
}

.single-wishlist-link {
  text-decoration: none;
}

.single-product-description {
  color: var(--graphite);
}

.single-product-description p {
  margin: 0 0 0.95em;
}

.single-product-description p:last-child {
  margin-bottom: 0;
}

.single-product-accordion {
  display: grid;
  gap: 10px;
}

.single-detail-panel {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: rgba(251, 248, 243, 0.72);
  padding: 14px 16px;
}

.single-detail-panel > summary {
  cursor: pointer;
  list-style: none;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}

.single-detail-panel > summary::-webkit-details-marker {
  display: none;
}

.single-detail-panel[open] > summary {
  margin-bottom: 10px;
}

.single-detail-panel p {
  margin: 0;
  color: var(--graphite);
  font-size: 0.92rem;
}

.single-detail-panel dl {
  margin: 0;
  display: grid;
  gap: 8px;
}

.single-spec-row {
  display: grid;
  gap: 2px;
}

.single-spec-row dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
}

.related-products-section {
  padding-top: 0;
}

.related-products-grid {
  margin-top: 0;
}

.woocommerce-shell .woocommerce div.product form.cart .variations {
  margin-bottom: 10px;
}

.woocommerce-shell .woocommerce div.product form.cart .button {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
}

.woocommerce-shell .woocommerce div.product form.cart .reset_variations {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.84rem;
}

.fa-logo-stage {
  width: 100%;
  height: 100%;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.fa-logo-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-assembly {
  transform-origin: 56% 55%;
  transform-box: fill-box;
  animation: logo-settle 8s cubic-bezier(0.4, 0.05, 0.22, 1) infinite;
}

.panel-stroke {
  fill: none;
  stroke: #111111;
  stroke-width: 11;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.panel-f1,
.panel-f2,
.panel-f3,
.panel-a1,
.panel-a2,
.panel-a3 {
  transform-box: fill-box;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.panel-f1 {
  transform-origin: 50% 100%;
  animation: fold-f1 8s cubic-bezier(0.46, 0.03, 0.24, 1) infinite;
}

.panel-f2 {
  transform-origin: 0% 50%;
  animation: fold-f2 8s cubic-bezier(0.46, 0.03, 0.24, 1) infinite;
}

.panel-f3 {
  transform-origin: 0% 50%;
  animation: fold-f3 8s cubic-bezier(0.46, 0.03, 0.24, 1) infinite;
}

.panel-a1 {
  transform-origin: 100% 100%;
  animation: fold-a1 8s cubic-bezier(0.46, 0.03, 0.24, 1) infinite;
}

.panel-a2 {
  transform-origin: 0% 100%;
  animation: fold-a2 8s cubic-bezier(0.46, 0.03, 0.24, 1) infinite;
}

.panel-a3 {
  transform-origin: 50% 50%;
  animation: fold-a3 8s cubic-bezier(0.46, 0.03, 0.24, 1) infinite;
}

.shadow {
  opacity: 0.06;
  transform-origin: center;
  transform-box: fill-box;
  animation: shadow-pulse 8s ease-in-out infinite;
}

@keyframes fold-f1 {
  0%,
  10% {
    transform: translate(128px, 94px) rotateY(-82deg) rotate(-7deg) scale(0.94);
  }

  14%,
  70% {
    transform: translate(0, 0) rotateY(0deg) rotate(0deg) scale(1);
  }

  94%,
  100% {
    transform: translate(128px, 94px) rotateY(-82deg) rotate(-7deg) scale(0.94);
  }
}

@keyframes fold-f2 {
  0%,
  10% {
    transform: translate(98px, 132px) rotateX(86deg) rotate(-4deg) scale(0.95);
  }

  18%,
  70% {
    transform: translate(0, 0) rotateX(0deg) rotate(0deg) scale(1);
  }

  90%,
  100% {
    transform: translate(98px, 132px) rotateX(86deg) rotate(-4deg) scale(0.95);
  }
}

@keyframes fold-f3 {
  0%,
  16% {
    transform: translate(82px, 98px) rotateX(-82deg) rotate(3deg) scale(0.95);
  }

  25%,
  70% {
    transform: translate(0, 0) rotateX(0deg) rotate(0deg) scale(1);
  }

  85%,
  100% {
    transform: translate(82px, 98px) rotateX(-82deg) rotate(3deg) scale(0.95);
  }
}

@keyframes fold-a1 {
  0%,
  25% {
    transform: translate(-112px, 112px) rotateY(84deg) rotate(9deg) scale(0.95);
  }

  33%,
  70% {
    transform: translate(0, 0) rotateY(0deg) rotate(0deg) scale(1);
  }

  80%,
  100% {
    transform: translate(-112px, 112px) rotateY(84deg) rotate(9deg) scale(0.95);
  }
}

@keyframes fold-a2 {
  0%,
  32% {
    transform: translate(-136px, 104px) rotateY(84deg) rotate(-8deg) scale(0.95);
  }

  39%,
  70% {
    transform: translate(0, 0) rotateY(0deg) rotate(0deg) scale(1);
  }

  76%,
  100% {
    transform: translate(-136px, 104px) rotateY(84deg) rotate(-8deg) scale(0.95);
  }
}

@keyframes fold-a3 {
  0%,
  38% {
    transform: translate(-94px, 78px) rotateX(84deg) rotate(2deg) scale(0.95);
  }

  45%,
  70% {
    transform: translate(0, 0) rotateX(0deg) rotate(0deg) scale(1);
  }

  72%,
  100% {
    transform: translate(-94px, 78px) rotateX(84deg) rotate(2deg) scale(0.95);
  }
}

@keyframes shadow-pulse {
  0%,
  10% {
    opacity: 0.05;
    transform: scale(0.78);
  }

  45%,
  70% {
    opacity: 0.13;
    transform: scale(1);
  }

  100% {
    opacity: 0.05;
    transform: scale(0.78);
  }
}

@keyframes logo-settle {
  0%,
  10%,
  25%,
  100% {
    transform: translateY(1px) scale(0.996);
  }

  45%,
  70% {
    transform: translateY(-1px) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 640px) {
  .editorial-shell {
    padding-left: 40px;
    padding-right: 40px;
  }

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

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

  .woocommerce-shell .woocommerce ul.products,
  .woocommerce-shell .woocommerce-page ul.products,
  .woocommerce-shell ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .main-navigation {
    display: block;
    justify-self: center;
  }

  .mobile-navigation {
    display: none;
  }

  .header-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 18px;
  }

  .site-branding {
    justify-self: start;
  }

  .header-actions {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

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

  .editorial-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .hero-section {
    padding-top: 72px;
  }

  .woocommerce-shell .woocommerce-ordering {
    float: right;
  }

  .woocommerce-shell .woocommerce-result-count {
    float: left;
    margin-top: 8px;
  }

  .single-product-grid {
    gap: 40px;
  }

  .woocommerce-shell .woocommerce-checkout .col2-set {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }

}

@media (min-width: 1024px) {
  .woocommerce-shell .woocommerce ul.products,
  .woocommerce-shell .woocommerce-page ul.products,
  .woocommerce-shell ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .single-product-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }

  .woocommerce-shell .wc-block-components-sidebar-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.68fr);
  }
}

@media (min-width: 1280px) {
  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
