/* ============================================================
   Ceeprinto Theme — Global Styles
   Applied sitewide (all pages). Does NOT duplicate homepage.css.
   ============================================================ */

/* ── Design tokens (sitewide scope) ─────────────────────────── */
:root {
  --accent:  #FF100C;
  /* Darkened accent for small text and small badges. #FF100C only reaches 3.7:1
     on our light backgrounds, which passes AA for large text but fails the 4.5
     required at body size. Reads as the same brand red. */
  --accent-ink: #D60D0A;
  --ink:     #0E0E0C;
  --ink-2:   #6B6862;
  --bg:      #FAF7F2;
  --line:    #E8E3D8;
  --good:    #14784A;
  --muted:   #9A9690;
  --dark-bg: #1A1916;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body:    'DM Sans', system-ui, sans-serif;
  --mono:    ui-monospace, 'SF Mono', monospace;
}

/* ── Reset & base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* Ensure the .cee-hp token scope applies globally */
body { --accent: #FF100C; --accent-ink: #D60D0A; --ink: #0E0E0C; --ink-2: #6B6862; --bg: #FAF7F2; --line: #E8E3D8; --good: #14784A; --muted: #9A9690; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.85; }

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(32px, 4vw, 52px); }
h2 { font-size: clamp(26px, 3vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 30px); }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p { margin: 0 0 1em; }

/* ── Layout helpers ──────────────────────────────────────────── */
.cee-container      { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.cee-container--wide { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.cee-section        { padding: 80px 0; }

/* ── Page title (non-WooCommerce pages) ──────────────────────── */
.cee-page-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 36px;
}

/* ── Entry content (page.php / single.php) ───────────────────── */
.cee-entry__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

.cee-entry__content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 72ch;
}
.cee-entry__content h2,
.cee-entry__content h3,
.cee-entry__content h4 { color: var(--ink); margin-top: 1.6em; }
.cee-entry__content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cee-entry__content ul,
.cee-entry__content ol { padding-left: 1.4em; margin: 0 0 1em; }
.cee-entry__content li { margin-bottom: 0.4em; }
.cee-entry__content blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.5em 0;
  padding: 12px 20px;
  color: var(--ink-2);
  font-style: italic;
}
.cee-entry__content img { border-radius: 10px; margin: 1.5em 0; }
.cee-entry__content pre {
  background: var(--ink);
  color: #FAF7F2;
  border-radius: 10px;
  padding: 20px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 14px;
  margin: 1.5em 0;
}
.cee-entry__content code {
  background: rgba(0,0,0,0.06);
  border-radius: 4px;
  padding: 2px 6px;
  font-family: var(--mono);
  font-size: 0.9em;
}

/* ── Blog post grid ──────────────────────────────────────────── */
.cee-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.cee-post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 200ms, transform 200ms;
  color: var(--ink);
}
.cee-post-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }

.cee-post-card__img { display: block; aspect-ratio: 16/9; overflow: hidden; }
.cee-post-card .cee-post-card__img img { width: 100%; height: 100%; object-fit: cover; }

.cee-post-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.cee-post-card__meta { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.cee-post-card__title { font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: -0.015em; margin: 0; flex: 1; }
.cee-post-card__title a { color: var(--ink); }
.cee-post-card__title a:hover { color: var(--accent); opacity: 1; }
.cee-post-card__excerpt { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0; }

/* ── Pagination ──────────────────────────────────────────────── */
.cee-pagination { margin-top: 40px; }
.cee-pagination .nav-links { display: flex; gap: 8px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cee-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff;
  font-size: 14px; font-weight: 500; color: var(--ink);
  transition: background 150ms;
}
.cee-pagination .page-numbers:hover { background: var(--bg); }
.cee-pagination .page-numbers.current { background: var(--accent); border-color: var(--accent); color: #fff; }
.cee-pagination .page-numbers.dots { border: none; background: transparent; }

/* ── Empty states ────────────────────────────────────────────── */
.cee-empty-state { text-align: center; padding: 60px 0; color: var(--muted); }
.cee-empty-state p { font-size: 16px; margin-bottom: 20px; }

/* ── Section labels ──────────────────────────────────────────── */
.cee-section__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cee-section__heading {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 16px;
}
.cee-section__sub {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 32px;
}

/* ── Buttons (sitewide) ──────────────────────────────────────── */
.cee-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 20px; font-size: 14px; font-weight: 600;
  border-radius: 999px; border: 1px solid transparent;
  letter-spacing: -0.005em;
  transition: transform 120ms ease, opacity 120ms ease;
  white-space: nowrap; line-height: 1; cursor: pointer;
  font-family: var(--body);
}
.cee-btn:hover { opacity: 0.88; }
.cee-btn:active { transform: translateY(1px); }
.cee-btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.cee-btn--dark    { background: var(--ink);    color: #fff; border-color: var(--ink); }
.cee-btn--ghost   { background: transparent;   color: var(--ink); border-color: var(--ink); }
.cee-btn--light   { background: #fff;          color: var(--ink); border-color: var(--line); }
.cee-btn--sm { padding: 8px 14px; font-size: 13px; }
.cee-btn--lg { padding: 17px 26px; font-size: 15px; }

/* ── Promo bar ───────────────────────────────────────────────── */
/* The --cee-* fallbacks below are the designed defaults. Customizer colours
   (Ceeprinto Theme → Header / Footer) are printed as :root custom properties
   by cee_header_footer_inline_css() and win when set. */
.cee-promo-bar {
  background: var(--cee-promo-bg, var(--ink));
  color: var(--cee-promo-color, #B8B4AC);
  text-align: center;
  font-size: 13px;
  padding: 10px 16px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.cee-promo-bar a { color: var(--cee-promo-color, #fff); text-decoration: underline; }
/* Promo bar links come from the "Promo Bar" menu; they sit inline after the
   text and wrap onto their own line on narrow screens. */
.cee-promo-bar__links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 16px;
  list-style: none;
  margin: 0 0 0 16px;
  padding: 0;
}
.cee-promo-bar__links li { display: inline; }
@media (max-width: 600px) {
  .cee-promo-bar__links { margin: 6px 0 0; display: flex; }
}

/* ── Navigation ──────────────────────────────────────────────── */
.cee-nav {
  background: var(--cee-header-bg, rgba(250,247,242,0.88));
  color: var(--cee-header-color, var(--ink));
  backdrop-filter: saturate(180%) blur(6px);
  -webkit-backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}
/* Header sticking is a Customizer toggle (body class set in PHP). */
.cee-header-static .cee-nav { position: relative; }
.cee-nav a { color: inherit; text-decoration: none; }
.cee-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.cee-nav__brand {
  display: flex;
  align-items: center;
  gap: 38px;
}
.cee-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cee-header-color, var(--ink));
}
/* Scoped one level deeper so `.cee-hp img { height: auto }` in homepage.css —
   which loads after this file — cannot blow the logo up on the front page. */
.cee-nav .cee-nav__logo img { height: 38px; width: auto; max-width: 220px; object-fit: contain; }
.cee-nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cee-nav__links a {
  font-size: 14px;
  color: var(--cee-header-link, var(--ink-2));
  font-weight: 500;
  transition: color 120ms;
}
.cee-nav__links a:hover { color: var(--cee-header-color, var(--ink)); opacity: 1; }
.cee-nav__links .current-menu-item > a,
.cee-nav__links .current-menu-ancestor > a,
.cee-nav__links .current-menu-parent > a { color: var(--cee-header-color, var(--ink)); }

/* Dropdowns. Nesting comes from Appearance → Menus; the theme renders two
   levels, so a parent item opens a single panel on hover or keyboard focus. */
.cee-nav__links > li { position: relative; }
.cee-nav__links > .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 6px;
  vertical-align: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.6;
}
/* The toggle button exists for the mobile drawer only. */
.cee-nav__links .cee-submenu-toggle { display: none; }

.cee-nav__links .cee-submenu {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 200px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  /* Opaque, unlike the nav bar itself: this panel floats over page content, so
     any translucency shows the text underneath through the labels. */
  background: var(--cee-header-bg, var(--bg, #FAF7F2));
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(24,23,21,0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 140ms, transform 140ms, visibility 140ms;
  z-index: 40;
}
.cee-nav__links > li:hover > .cee-submenu,
.cee-nav__links > li:focus-within > .cee-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cee-nav__links .cee-submenu a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  white-space: nowrap;
}
.cee-nav__links .cee-submenu a:hover { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .cee-nav__links .cee-submenu { transition: none; }
}
.cee-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cee-nav__signin {
  font-size: 14px;
  color: var(--cee-header-link, var(--ink-2));
  font-weight: 500;
}

/* ── Nav: header search ──────────────────────────────────────── */
.cee-nav__search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--cee-header-color, var(--ink));
  font-size: 15px;
  cursor: pointer;
  transition: background 120ms;
}
.cee-nav__search-toggle:hover { background: rgba(14,14,12,0.06); }
.cee-nav__search { border-top: 1px solid var(--line); }
.cee-nav__search[hidden] { display: none; }
.cee-nav__search-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 32px;
}

/* ── Mobile nav: toggle + drawer ─────────────────────────────── */
.cee-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.cee-nav__toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.cee-nav__toggle[aria-expanded="true"] .cee-nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cee-nav__toggle[aria-expanded="true"] .cee-nav__toggle-bar:nth-child(2) { opacity: 0; }
.cee-nav__toggle[aria-expanded="true"] .cee-nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.cee-drawer { position: fixed; inset: 0; z-index: 1000; }
.cee-drawer[hidden] { display: none; }
.cee-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 12, 0.5);
  opacity: 0;
  transition: opacity .25s ease;
}
.cee-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(340px, 88vw);
  background: var(--bg);
  border-left: 1px solid var(--line);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  padding: 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cee-drawer.is-open .cee-drawer__backdrop { opacity: 1; }
.cee-drawer.is-open .cee-drawer__panel { transform: translateX(0); }

/* The admin bar is position:fixed and would cover the drawer's close button. */
.admin-bar .cee-drawer__panel { top: 32px; height: calc(100% - 32px); }
@media screen and (max-width: 782px) {
  .admin-bar .cee-drawer__panel { top: 46px; height: calc(100% - 46px); }
}

.cee-drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cee-drawer__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cee-drawer__close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: var(--ink-2);
  cursor: pointer;
  padding: 0 4px;
}
.cee-drawer__close:hover { color: var(--ink); }

.cee-drawer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.cee-drawer__links li { border-bottom: 1px solid var(--line); }
.cee-drawer__links a {
  display: block;
  padding: 14px 2px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.cee-drawer__links a:hover { color: var(--accent); }

/* Nested menu items become an accordion: the toggle button (added by
   Cee_Walker_Nav_Menu) sits beside the parent link so the parent stays
   tappable as a link. */
.cee-drawer__links .menu-item-has-children {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.cee-drawer__links .menu-item-has-children > .cee-submenu { grid-column: 1 / -1; }
.cee-drawer__links .cee-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--ink-2);
}
.cee-drawer__links .cee-submenu-toggle__icon {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 160ms;
}
.cee-drawer__links .cee-submenu-toggle[aria-expanded="true"] .cee-submenu-toggle__icon {
  transform: rotate(-135deg) translate(-2px, -2px);
}
.cee-drawer__links .cee-submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 8px 16px;
}
.cee-drawer__links .cee-submenu.is-open { display: block; }
.cee-drawer__links .cee-submenu li { border-bottom: 0; }
.cee-drawer__links .cee-submenu a { font-size: 15px; padding: 10px 2px; color: var(--ink-2); }

@media (prefers-reduced-motion: reduce) {
  .cee-drawer__links .cee-submenu-toggle__icon { transition: none; }
}

.cee-drawer__actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.cee-drawer__actions .cee-btn { width: 100%; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  .cee-drawer__panel,
  .cee-drawer__backdrop,
  .cee-nav__toggle-bar { transition: none; }
}

/* ── Widget area ─────────────────────────────────────────────── */
.cee-widget-area { background: var(--bg); border-top: 1px solid var(--line); padding: 40px 0; }
.cee-widget-area__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.cee-widget__title { font-family: var(--display); font-size: 16px; font-weight: 600; margin: 0 0 12px; }
.cee-widget ul { list-style: none; margin: 0; padding: 0; }
.cee-widget li { padding: 5px 0; font-size: 14px; }

/* ── Search form ─────────────────────────────────────────────── */
.cee-search-form { display: flex; gap: 8px; align-items: stretch; }
.cee-search-form__input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
}
.cee-search-form__input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(255, 16, 12, 0.1); }

/* ── Comments ────────────────────────────────────────────────── */
.cee-comments { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.cee-comments__title { font-family: var(--display); font-size: 24px; font-weight: 600; margin: 0 0 24px; }
.cee-comments__list { list-style: none; margin: 0 0 32px; padding: 0; }
.cee-comments__list .children { list-style: none; margin: 0; padding-left: 28px; }
.cee-comments__list .comment-body { padding: 18px 0; border-bottom: 1px solid var(--line); }
.cee-comments__list .comment-author { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.cee-comments__list .comment-author img { border-radius: 50%; }
.cee-comments__list .comment-metadata { font-size: 12.5px; color: var(--muted); margin: 4px 0 10px; }
.cee-comments__closed { color: var(--muted); font-size: 14px; }
.cee-comments .comment-form input[type="text"],
.cee-comments .comment-form input[type="email"],
.cee-comments .comment-form input[type="url"],
.cee-comments .comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-family: var(--body);
  font-size: 15px;
}
.cee-comments .comment-form label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }

/* ── Footer ──────────────────────────────────────────────────── */
.cee-footer { background: var(--cee-footer-bg, var(--ink)); color: var(--cee-footer-color, #B8B4AC); padding: 56px 0 32px; }
.cee-footer a { color: inherit; text-decoration: none; }
/* Brand block plus however many link columns actually have a menu assigned —
   the count is printed as --cee-footer-cols by footer-columns.php. */
.cee-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(var(--cee-footer-cols, 3), minmax(0, 1fr)); gap: 48px; margin-bottom: 48px; }
/* No footer menus assigned: the brand block gets the row to itself rather than
   sitting in a 1.5fr track beside empty space. */
.cee-footer__grid--brand-only { grid-template-columns: 1fr; }
/* Widget layout: column count comes from the Customizer, via an inline
   --cee-footer-cols on the grid. */
.cee-footer__grid--widgets { grid-template-columns: repeat(var(--cee-footer-cols, 4), minmax(0, 1fr)); }
.cee-footer__brand-name { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cee-footer-heading, #fff); margin-bottom: 12px; display: block; }
.cee-footer .cee-footer__brand-img { height: 36px; width: auto; max-width: 220px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 12px; }
.cee-footer__tagline { font-size: 13.5px; line-height: 1.55; max-width: 260px; margin: 0; }
.cee-footer__col-title { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cee-footer-heading, #8A867E); margin-bottom: 16px; font-weight: 400; }
.cee-footer .cee-widget { margin-bottom: 28px; }
.cee-footer .cee-widget:last-child { margin-bottom: 0; }
.cee-footer .cee-widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.cee-footer .cee-widget li { font-size: 14px; padding: 0; }
.cee-footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.cee-footer__links a,
.cee-footer .cee-widget a { font-size: 14px; color: inherit; transition: color 120ms; }
.cee-footer__links a:hover,
.cee-footer .cee-widget a:hover { color: var(--cee-footer-link, #fff); opacity: 1; }

/* Social icons */
.cee-footer__social { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.cee-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #2A2926;
  font-size: 14px;
  transition: border-color 120ms, color 120ms;
}
.cee-footer__social a:hover { color: var(--cee-footer-link, #fff); border-color: var(--cee-footer-link, #fff); }
.cee-drawer__social { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; padding-top: 6px; }
.cee-drawer__social a { font-size: 17px; color: var(--ink-2); }
.cee-drawer__social a:hover { color: var(--accent); }
.cee-footer__bottom {
  border-top: 1px solid #2A2926;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #5A5852;
  font-family: var(--mono);
  gap: 16px;
  flex-wrap: wrap;
}
/* Bottom-bar links come from the "Footer Bottom Bar" menu. */
.cee-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cee-footer__legal a:hover { color: var(--cee-footer-link, #fff); }

/* ── Nav: cart badge ─────────────────────────────────────────── */
.cee-nav__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 18px;
  padding: 4px;
}
.cee-nav__cart-count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
}

/* ── Search form ─────────────────────────────────────────────── */
.search-form { display: flex; gap: 8px; }
.search-form label { flex: 1; }
.search-field {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.search-field:focus { border-color: var(--accent); }
.search-submit {
  padding: 12px 20px;
  background: var(--accent); color: #fff;
  border: none; border-radius: 999px;
  font: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════
   WooCommerce Overrides
   Applies the Ceeprinto design system to WooCommerce output.
   ═══════════════════════════════════════════════════════════════ */

/* ── WooCommerce page wrapper ────────────────────────────────── */
.cee-woocommerce-page { padding: 0; }
.cee-woocommerce-inner { padding: 40px 32px 80px; }
.cee-shop-header { margin-bottom: 28px; }
.cee-nav__cart-count[hidden] { display: none !important; }

/* Ensure WC grid columns respect theme tokens */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; content: none; }
.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
}
.woocommerce .woocommerce-ordering select,
.woocommerce .woocommerce-result-count {
  font-size: 14px;
  color: var(--ink-2);
}
.woocommerce .woocommerce-ordering {
  margin-bottom: 20px;
}
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  justify-content: center;
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  overflow: visible;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── WooCommerce notices ─────────────────────────────────────── */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-radius: 10px;
  border-left-width: 4px;
  padding: 14px 18px;
  margin: 0 0 20px;
  font-size: 14px;
}
.woocommerce-error   { background: #fff5f5; border-left-color: var(--accent); color: #b00; }
.woocommerce-info    { background: #f0f8ff; border-left-color: #3b82f6; color: #1d4ed8; }
.woocommerce-message { background: #f0fdf4; border-left-color: var(--good); color: #166534; }
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before { display: none; }
.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a { color: inherit; text-decoration: underline; }

/* ── WooCommerce buttons ─────────────────────────────────────── */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: opacity 120ms;
  font-family: var(--body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  line-height: 1;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--ink); color: #fff; opacity: 0.85; }

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #place_order {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
  color: #fff;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover { background: var(--accent-ink); opacity: 0.85; }

.woocommerce a.button.disabled,
.woocommerce button.button:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Product cards (shop archive) ────────────────────────────── */
.woocommerce ul.products li.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 200ms, transform 200ms;
}
.woocommerce ul.products li.product:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.woocommerce ul.products li.product a img {
  border-radius: 0;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 12px 14px 4px;
}
.woocommerce ul.products li.product .price {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-ink);
  padding: 0 14px;
}
/* The strikethrough already de-emphasises the old price, so it doesn't need to
   be dimmed to an unreadable grey as well. */
.woocommerce ul.products li.product .price del,
.woocommerce div.product div.summary .price del { color: var(--ink-2); font-weight: 400; }
.woocommerce ul.products li.product .button {
  margin: 12px 14px 14px;
  display: block;
  text-align: center;
}

/* ── Star ratings ────────────────────────────────────────────── */
.woocommerce .star-rating span::before,
.woocommerce p.stars a:hover::before,
.woocommerce p.stars a.active::before { color: var(--accent); }

/* ── Product page ────────────────────────────────────────────── */
.cee-woocommerce-page .woocommerce-breadcrumb { margin-bottom: 24px; }

.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}
.woocommerce div.product::before,
.woocommerce div.product::after { display: none; }

/* WooCommerce core lays the two columns out with `width:48%` + float. Inside this
   grid that yields 290px children in 604px columns and a large dead gap, so the
   float layout has to be undone for the grid to take effect. */
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: 100%;
  float: none;
  margin: 0;
}

.woocommerce div.product div.summary .price {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.woocommerce div.product div.images img { border-radius: 16px; }
.woocommerce div.product div.images .flex-viewport { border-radius: 16px; overflow: hidden; }
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce div.product div.images .woocommerce-product-gallery__image { max-width: 100%; }
/* The zoom overlay is intentionally larger than the frame; clip it to the image
   box so it magnifies inside the frame instead of spilling past it. */
.woocommerce div.product div.images .woocommerce-product-gallery__image {
  overflow: hidden;
  border-radius: 16px;
}
.woocommerce div.product div.images img.zoomImg { max-width: none; }

.woocommerce div.product .product_title {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* ── Sale badge ──────────────────────────────────────────────── */
.woocommerce span.onsale {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  min-height: 0;
  min-width: 0;
  line-height: 1;
  padding: 7px 13px;
  margin: 0;
  border-radius: 999px;
  background: var(--accent-ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.woocommerce ul.products li.product .onsale { top: 12px; left: 12px; right: auto; }

/* ── Gallery thumbnails ──────────────────────────────────────── */
.woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.woocommerce div.product div.images .flex-control-thumbs li { width: 100%; float: none; margin: 0; }
.woocommerce div.product div.images .flex-control-thumbs img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  opacity: 0.65;
  cursor: pointer;
  transition: opacity 150ms, border-color 150ms;
}
.woocommerce div.product div.images .flex-control-thumbs img:hover,
.woocommerce div.product div.images .flex-control-thumbs img.flex-active {
  opacity: 1;
  border-color: var(--accent);
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ── Add-to-cart row ─────────────────────────────────────────────
   WooCommerce core floats .quantity and the add-to-cart button, and Lumise
   floats its Customize button. Uncleared, the guideline paragraph wrapped
   around them. Laying the row out with flex and killing the floats fixes it. */
.woocommerce div.product form.cart {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.woocommerce div.product form.cart::before,
.woocommerce div.product form.cart::after { display: none; }
.woocommerce div.product form.cart .quantity,
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product form.cart .lumise-customize-button,
.woocommerce div.product form.cart .button {
  float: none;
  margin: 0;
}
/* Full-width rows inside the flex form */
.woocommerce div.product form.cart .variations,
.woocommerce div.product form.cart .single_variation_wrap,
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart,
.woocommerce div.product form.cart .cee-design-note,
.woocommerce div.product form.cart > p:not(.price) { flex: 1 0 100%; margin: 0; }

.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.cee-design-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-2);
  background: #FBFAF6;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}
.cee-design-note a { font-weight: 600; color: var(--accent-ink); }

/* ── Product meta (SKU / categories / tags) ──────────────────── */
.woocommerce div.product .product_meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-2);
}
.woocommerce div.product .product_meta > span {
  display: block;
  margin-bottom: 6px;
}
.woocommerce div.product .product_meta > span:last-child { margin-bottom: 0; }
.woocommerce div.product .product_meta .sku,
.woocommerce div.product .product_meta a { color: var(--ink); font-weight: 600; }

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  background: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.woocommerce div.product .woocommerce-tabs .panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.woocommerce div.product .variations {
  width: 100%;
  margin-bottom: 16px;
}
.woocommerce div.product .variations td,
.woocommerce div.product .variations th {
  border: none;
  padding: 8px 0;
  vertical-align: middle;
}
/* The label sat flush against the dropdown ("ColorChoose an option"). */
.woocommerce div.product .variations th.label {
  padding-right: 16px;
  width: 1%;
  white-space: nowrap;
  text-align: left;
}
.woocommerce div.product .variations .label label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin: 0;
}
.woocommerce div.product .variations td.value select {
  min-width: 200px;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}
.woocommerce div.product .variations td.value select:focus { border-color: var(--accent); outline: none; }
.woocommerce div.product .reset_variations {
  display: inline-block;
  margin-left: 10px;
  font-size: 12.5px;
  color: var(--ink-2);
}
.woocommerce div.product .woocommerce-variation-price { margin-bottom: 12px; }

/* ── Product Customizer plugin block ─────────────────────────────
   The plugin injects this as a direct child of the product grid, where it
   landed unstyled in the left column. Span both columns instead of re-hooking
   it, so a plugin update can't break the layout. */
#pcp_woocommerce_after_single_product_summary_variations_container {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-top: 8px;
}
#pcp_woocommerce_after_single_product_summary_variations_container > p:first-child {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
}
#pcp_woocommerce_after_single_product_summary_variations_container label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
#pcp_woocommerce_after_single_product_summary_variations_container select,
#pcp_woocommerce_after_single_product_summary_variations_container input[type="text"] {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  max-width: 100%;
}

.woocommerce div.product .quantity .qty {
  width: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}

.woocommerce div.product .related.products {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 24px;
}
.woocommerce div.product .upsells.products { grid-column: 1 / -1; margin-top: 40px; }

/* Equal-height cards with the button pinned to the bottom, so a long product
   name doesn't misalign the row. */
.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products li.product .button { margin-top: auto; }

/* ── Reviews ─────────────────────────────────────────────────── */
.woocommerce #reviews #comments { margin-bottom: 28px; }
.woocommerce #reviews h2 { font-size: 22px; margin-bottom: 18px; }
.woocommerce #reviews ol.commentlist { list-style: none; margin: 0; padding: 0; }
.woocommerce #reviews ol.commentlist li { margin-bottom: 18px; }
.woocommerce #reviews ol.commentlist li .comment_container {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  background: #FBFAF6;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.woocommerce #reviews ol.commentlist li img.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: static;
  padding: 0;
  border: none;
  margin: 0;
}
.woocommerce #reviews ol.commentlist li .comment-text { margin: 0; border: none; padding: 0; }
.woocommerce #reviews ol.commentlist li .meta { font-size: 13px; color: var(--ink-2); margin-bottom: 6px; }
.woocommerce #reviews ol.commentlist li .meta strong { color: var(--ink); }
.woocommerce #reviews .woocommerce-noreviews { color: var(--ink-2); font-size: 14.5px; }
.woocommerce #review_form_wrapper { padding-top: 8px; }
.woocommerce #review_form .comment-form input[type="text"],
.woocommerce #review_form .comment-form input[type="email"],
.woocommerce #review_form .comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
}
.woocommerce #review_form .comment-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.woocommerce #review_form .comment-form-rating { margin-bottom: 14px; }

/* ── Product page additions (stock / delivery / trust) ───────── */
.cee-product-aside { margin-top: 18px; display: grid; gap: 12px; }
.cee-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
}
.cee-stock::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.cee-stock--in { color: var(--good); }
.cee-stock--out { color: var(--accent); }
.woocommerce div.product .cee-stock .stock { margin: 0; font-weight: inherit; color: inherit; }

.cee-delivery {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-2);
}
.cee-delivery__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.cee-delivery__value { color: var(--ink); font-weight: 600; }

.cee-product-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.cee-product-trust li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink-2);
  background: #FBFAF6;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}
.cee-product-trust li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.cee-product-trust strong { display: block; color: var(--ink); font-weight: 600; }

/* ── Printing price tab ──────────────────────────────────────── */
.cee-price-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.cee-price-table th {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 0 12px 10px;
  font-weight: 600;
}
.cee-price-table td {
  padding: 11px 12px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.cee-price-table td:last-child,
.cee-price-table th:last-child { text-align: right; }
.cee-price-table .cee-price-table__price { font-weight: 700; color: var(--ink); white-space: nowrap; }
.cee-price-table .cee-price-table__price .woocommerce-Price-amount { font-weight: 700; }
.cee-price-note { font-size: 13px; color: var(--ink-2); margin: 16px 0 0; line-height: 1.6; }

/* ── Cart ────────────────────────────────────────────────────── */
.woocommerce table.cart th,
.woocommerce-page table.cart th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.woocommerce table.cart td,
.woocommerce-page table.cart td { border-bottom: 1px solid var(--line); padding: 16px 12px; vertical-align: middle; }
.woocommerce table.cart td.product-name a { font-weight: 600; color: var(--ink); }
.woocommerce .cart-collaterals .cart_totals { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.woocommerce .cart-collaterals .cart_totals h2 { font-size: 20px; margin-bottom: 16px; }
.woocommerce .cart-collaterals .cart_totals table { border: none; }
.woocommerce .cart-collaterals .cart_totals table th,
.woocommerce .cart-collaterals .cart_totals table td { border: none; padding: 8px 0; }

/* ── Checkout ────────────────────────────────────────────────── */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper label,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper label {
  font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 4px;
}
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit; font-size: 14px;
  transition: border-color 150ms;
}
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus { border-color: var(--accent); outline: none; }
#order_review { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
#order_review h3 { font-size: 18px; margin-bottom: 16px; }

/* ── My Account ──────────────────────────────────────────────── */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 0;
  overflow: hidden;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background 150ms, color 150ms;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover { background: var(--bg); color: var(--ink); }
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a { color: var(--accent); font-weight: 600; }
.woocommerce-account .woocommerce-MyAccount-content { padding: 0 0 0 32px; }

/* ── Forms (generic WooCommerce) ─────────────────────────────── */
.woocommerce form .form-row label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  font: inherit; font-size: 14px;
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(255,16,12,0.1); }

/* ── Breadcrumbs ─────────────────────────────────────────────── */
.woocommerce .woocommerce-breadcrumb {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 20px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.woocommerce .woocommerce-breadcrumb a { color: var(--ink-2); }
.woocommerce .woocommerce-breadcrumb a:hover { color: var(--ink); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cee-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
  .woocommerce-account .woocommerce-MyAccount-content { padding: 0; }
  .cee-footer__grid { grid-template-columns: 1fr 1fr; }
  .woocommerce div.product { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .cee-container, .cee-container--wide { padding: 0 20px; }
  .cee-woocommerce-inner { padding: 28px 20px 56px; }
  .cee-section { padding: 56px 0; }
  .cee-posts-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .cee-nav__links { display: none; }
  .cee-nav__actions .cee-btn--ghost { display: none; }
  .cee-nav__signin { display: none; }
  .cee-nav__signup { display: none; }
  .cee-nav__toggle { display: flex; }
  .cee-footer__grid { grid-template-columns: 1fr; }
  .cee-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .woocommerce-account .woocommerce-MyAccount-navigation { margin-bottom: 24px; }
}
