/*
 * QUICK EDIT GUIDE - THEME CSS
 * Ctrl+F labels in this file:
 * EDIT CSS GLOBAL COLORS
 * EDIT CSS HEADER/NAV
 * EDIT CSS HERO SECTIONS
 * EDIT CSS PAGE HERO SECTIONS
 * EDIT CSS PRODUCT PREVIEW CARDS
 * EDIT CSS FORMS/CTA
 * Keep class names the same unless you also update the matching PHP templates.
 */
/* EDIT CSS GLOBAL COLORS - Main color variables and spacing used site-wide. */
:root {
  --ccw-navy: #051626;
  --ccw-ink: #051626;
  --ccw-charcoal: #051626;
  --ccw-copper: #d9964e;
  --ccw-copper-dark: #c48846;
  --ccw-ember: #c48846;
  --ccw-sand: #dec8b2;
  --ccw-bone: #f4efe9;
  --ccw-cream: #f4efe9;
  --ccw-stone: #a49f9b;
  --ccw-slate: #7b8287;
  --ccw-green: #244237;
  --ccw-oxblood: #244237;
  --ccw-muted: #605f5c;
  --ccw-line: rgba(5,22,38,.14);
  --ccw-shadow: 0 24px 64px rgba(5, 22, 38, .16);
  --ccw-radius: 24px;
  --ccw-radius-sm: 14px;
  --ccw-max: 1180px;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ccw-charcoal);
  background:
    radial-gradient(circle at 18% 4%, rgba(217,150,78,.08), transparent 28rem),
    linear-gradient(180deg, #f4efe9 0%, #f7f1e8 100%);
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
::selection { background: var(--ccw-copper); color: white; }

.ccw-container { width: min(var(--ccw-max), calc(100% - 40px)); margin: 0 auto; }
.ccw-skip-link { position: absolute; left: -999px; top: auto; }
.ccw-skip-link:focus { left: 20px; top: 20px; z-index: 999; background: #fff; padding: 12px; }

/* EDIT CSS HEADER/NAV - Main header, compact logo, quote button, and dynamic menu panel. */
.ccw-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 233, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(5,22,38,.1);
  box-shadow: 0 10px 30px rgba(5,22,38,.06);
}
.ccw-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.ccw-brand { display: inline-flex; align-items: center; text-decoration: none; min-width: 0; }
/* * HEADER LOGO SIZE - Change width/max-height here to adjust the top-left logo. */
.ccw-header-logo {
  display: block;
  width: clamp(148px, 16vw, 218px);
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}
.custom-logo { max-width: 218px; max-height: 46px; width: auto; height: auto; }
.ccw-header-actions { display: inline-flex; align-items: center; gap: 12px; }
.ccw-menu, .ccw-footer-menu { list-style: none; margin: 0; padding: 0; }
.ccw-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(5,22,38,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  color: var(--ccw-charcoal);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.ccw-menu-toggle:hover,
.ccw-menu-toggle[aria-expanded="true"] { transform: translateY(-1px); border-color: rgba(217,150,78,.46); background: #fff; }
.ccw-menu-toggle__icon { position: relative; width: 18px; height: 12px; display: inline-block; }
.ccw-menu-toggle__icon span {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease;
}
.ccw-menu-toggle__icon span:first-child { top: 2px; }
.ccw-menu-toggle__icon span:last-child { top: 9px; }
.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon span:first-child { top: 6px; transform: rotate(45deg); }
.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon span:last-child { top: 6px; transform: rotate(-45deg); }
.ccw-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.ccw-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.ccw-nav-panel {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.8fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(217,150,78,.24);
  border-radius: 24px;
  background: rgba(5,22,38,.98);
  color: var(--ccw-bone);
  box-shadow: var(--ccw-shadow);
}
.ccw-nav-panel__intro strong { display: block; color: var(--ccw-bone); font-size: clamp(18px, 2vw, 28px); line-height: 1.12; letter-spacing: -.03em; max-width: 520px; }
.ccw-nav-panel__intro .ccw-eyebrow { margin-bottom: 8px; }
.ccw-menu { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.ccw-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(244,239,233,.86);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
  border: 1px solid rgba(244,239,233,.08);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.ccw-menu a:hover { color: var(--ccw-copper); border-color: rgba(217,150,78,.36); background: rgba(244,239,233,.06); transform: translateY(-1px); }
.ccw-nav-cta, .ccw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--ccw-copper), var(--ccw-ember));
  color: var(--ccw-charcoal);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(5,22,38,.1);
  box-shadow: 0 10px 26px rgba(217,150,78,.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ccw-nav-cta:hover, .ccw-button:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(217,150,78,.32); }
.ccw-button--ghost { background: transparent; color: var(--ccw-bone); border-color: rgba(244,239,233,.38); box-shadow: none; }
.ccw-button--ghost:hover { background: rgba(244,239,233,.08); }
.ccw-button--light { background: var(--ccw-bone); color: var(--ccw-charcoal); box-shadow: none; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }

/* EDIT CSS HERO SECTIONS - Homepage hero layout and visual treatment. */
.ccw-hero { position: relative; overflow: hidden; background: #051626; color: var(--ccw-bone); }
.ccw-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,22,38,.93), rgba(5,22,38,.72)),
    radial-gradient(circle at 80% 18%, rgba(217,150,78,.32), transparent 28rem),
    linear-gradient(135deg, rgba(36,66,55,.28), transparent 44rem);
}
.ccw-hero-bg:after, /* EDIT CSS PAGE HERO SECTIONS - Interior page hero layout and background photo treatments. */
.ccw-page-hero:after {
  content: '';
  position: absolute; inset: 0;
  opacity: .08;
  pointer-events: none;
  background-image: linear-gradient(30deg, rgba(255,255,255,.07) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.07) 87.5%, rgba(255,255,255,.07)), linear-gradient(150deg, rgba(255,255,255,.07) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.07) 87.5%, rgba(255,255,255,.07));
  background-size: 56px 98px;
}
.ccw-hero-grid { position: relative; z-index: 1; min-height: 730px; padding: 98px 0; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; }
/* * SUBTITLE / EYEBROW STYLE - Small bold labels above page and section headings. */
.ccw-eyebrow { margin: 0 0 14px; color: var(--ccw-copper); font-size: 12px; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.04; color: var(--ccw-ink); }
.ccw-hero h1 { color: var(--ccw-bone); font-size: clamp(46px, 6vw, 86px); letter-spacing: -.045em; max-width: 850px; }
.ccw-lede, .ccw-page-hero p, .ccw-section-heading p, .ccw-copy-stack p, .ccw-product-content p, .ccw-note-card p, .ccw-contact-card p, .ccw-form-placeholder p { line-height: 1.72; color: var(--ccw-muted); }
.ccw-hero .ccw-lede { color: rgba(244,239,233,.84); font-size: 19px; max-width: 650px; font-weight: 650; }
.ccw-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 28px; }
.ccw-hero-points { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; color: rgba(244,239,233,.75); }
.ccw-hero-points li { display: flex; gap: 12px; align-items: center; }
.ccw-hero-points li:before { content: '✓'; color: var(--ccw-copper); font-weight: 900; }
.ccw-hero-card {
  background: rgba(244,239,233,.94);
  border: 1px solid rgba(217,150,78,.28);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 46px);
  box-shadow: var(--ccw-shadow);
  position: relative;
  overflow: hidden;
}
.ccw-hero-card:before { content: ''; position: absolute; inset: 18px; border: 1px solid rgba(217,150,78,.18); border-radius: 24px; pointer-events: none; }
.ccw-hero-logo { display: block; margin: 0 auto; width: min(520px, 100%); position: relative; z-index: 1; }
.ccw-hero-card-strip { position: relative; z-index: 1; margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(5,22,38,.12); border-radius: 14px; overflow: hidden; }
.ccw-hero-card-strip span { background: var(--ccw-charcoal); color: var(--ccw-bone); padding: 14px 10px; text-align: center; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.ccw-section { padding: 88px 0; }
.ccw-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 58px; align-items: start; }
.ccw-split h2, .ccw-section-heading h2, .ccw-cta-inner h2, .ccw-note-card h2, .ccw-contact-card h2, .ccw-form-placeholder h2 { font-size: clamp(34px, 4.2vw, 58px); letter-spacing: -.045em; }
.ccw-copy-stack { display: grid; gap: 18px; font-size: 17px; }
/* * SECTION HEADER ALIGNMENT - Default section headings stay left aligned for a cleaner professional layout. */
.ccw-section-heading { max-width: 780px; margin: 0 0 44px; text-align: left; }
.ccw-section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.ccw-section-heading p { font-size: 17px; }

.ccw-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ccw-category-card, /* EDIT CSS PRODUCT PREVIEW CARDS - Built-in theme product preview cards. */
.ccw-product-card, .ccw-note-card, .ccw-contact-card, .ccw-form-placeholder {
  border: 1px solid rgba(5,22,38,.12);
  background: rgba(244,239,233,.74);
  border-radius: var(--ccw-radius);
  box-shadow: 0 16px 46px rgba(5,22,38,.075);
}
.ccw-category-card { padding: 32px; text-decoration: none; min-height: 330px; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ccw-category-card:hover { transform: translateY(-3px); border-color: rgba(217,150,78,.45); box-shadow: var(--ccw-shadow); }
.ccw-category-icon { width: 70px; height: 70px; border-radius: 22px; display: grid; place-items: center; margin-bottom: 34px; background: var(--ccw-charcoal); color: var(--ccw-copper); font-weight: 900; font-size: 20px; }
.ccw-category-card h3 { font-size: 28px; letter-spacing: -.035em; margin-bottom: 14px; }
.ccw-category-card p:last-child { color: var(--ccw-muted); line-height: 1.65; margin-bottom: 0; }

.ccw-process-section { background: rgba(5,22,38,.04); border-block: 1px solid rgba(5,22,38,.08); }
.ccw-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ccw-process-grid > div { padding: 26px; border-left: 2px solid rgba(217,150,78,.42); background: rgba(255,255,255,.34); border-radius: 18px; }
.ccw-process-grid span { color: var(--ccw-copper); font-weight: 900; letter-spacing: .16em; }
.ccw-process-grid h3 { margin: 14px 0 10px; font-size: 21px; }
.ccw-process-grid p { color: var(--ccw-muted); line-height: 1.6; margin: 0; }

.ccw-page-hero { position: relative; overflow: hidden; padding: 92px 0 74px; color: var(--ccw-bone); background: #051626; }
.ccw-page-hero--artwork { background: radial-gradient(circle at 76% 14%, rgba(36,66,55,.58), transparent 34rem), #051626; }
.ccw-page-hero--business { background: radial-gradient(circle at 76% 14%, rgba(217,150,78,.42), transparent 34rem), #051626; }
.ccw-page-hero--weddings { background: radial-gradient(circle at 76% 14%, rgba(216,199,175,.25), transparent 34rem), #051626; }
.ccw-page-hero--contact { background: radial-gradient(circle at 76% 14%, rgba(196,136,70,.36), transparent 34rem), #051626; }
/* * PAGE HEADER LAYOUT - Left aligned page headers. Right image cards were removed for a simpler hero. */
.ccw-page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 920px); gap: 28px; align-items: center; justify-content: start; text-align: left; }
.ccw-page-hero h1 { color: var(--ccw-bone); font-size: clamp(42px, 5vw, 74px); letter-spacing: -.04em; }
.ccw-page-hero p { color: rgba(244,239,233,.82); max-width: 720px; font-size: 18px; font-weight: 650; }
.ccw-page-mark { display: none; }
.ccw-page-mark-img { max-height: 270px; object-fit: contain; }

.ccw-product-section:nth-of-type(even) { background: rgba(255,255,255,.28); }
.ccw-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ccw-product-card { overflow: hidden; display: flex; flex-direction: column; }
.ccw-product-art { height: 210px; position: relative; display: grid; place-items: center; overflow: hidden; background: var(--ccw-charcoal); }
.ccw-product-art:before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 70%, rgba(196,136,70,.32), transparent 32%), radial-gradient(circle at 30% 20%, rgba(217,150,78,.22), transparent 26%), linear-gradient(135deg, rgba(216,199,175,.09), transparent); }
.ccw-product-art:after { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(216,199,175,.18); border-radius: 18px; }
.ccw-product-spark { position: absolute; width: 2px; height: 132px; background: linear-gradient(180deg, transparent, var(--ccw-copper), transparent); transform: rotate(35deg); opacity: .8; }
.ccw-product-icon { position: relative; z-index: 1; width: 86px; height: 86px; display: grid; place-items: center; border: 1px solid rgba(217,150,78,.55); border-radius: 24px; color: var(--ccw-copper); background: rgba(5,22,38,.42); font-weight: 900; font-size: 24px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }
.ccw-product-art--dice .ccw-product-icon, .ccw-product-art--map .ccw-product-icon { border-radius: 999px; }
.ccw-product-art--ornament .ccw-product-icon, .ccw-product-art--acrylic .ccw-product-icon { background: rgba(244,239,233,.14); }
.ccw-product-content { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.ccw-product-content h3 { font-size: 24px; letter-spacing: -.035em; }
.ccw-product-content p { margin: 0; font-size: 14.5px; }
.ccw-mini-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.ccw-mini-list li { border: 1px solid rgba(217,150,78,.25); color: var(--ccw-muted); border-radius: 999px; padding: 7px 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.ccw-card-actions { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; border-top: 1px solid rgba(5,22,38,.1); }
.ccw-price-note { color: var(--ccw-oxblood); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.ccw-text-link { color: var(--ccw-copper); font-weight: 900; text-decoration: none; border-bottom: 1px solid rgba(217,150,78,.38); }
.ccw-text-link:hover { color: var(--ccw-ember); }

.ccw-note-section { padding-top: 0; }
.ccw-note-card { padding: 42px; text-align: center; max-width: 890px; margin: 0 auto; }
.ccw-cta-band { background: #051626; color: var(--ccw-bone); position: relative; overflow: hidden; }
.ccw-cta-band:before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(217,150,78,.35), transparent 30rem); opacity: .9; }
.ccw-cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 34px; }
.ccw-cta-inner h2 { color: var(--ccw-bone); }
.ccw-cta-inner p { color: rgba(244,239,233,.78); max-width: 700px; line-height: 1.7; }

.ccw-contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: start; }
.ccw-contact-card, .ccw-form-placeholder { padding: 38px; }
.ccw-fake-form { display: grid; gap: 12px; margin-top: 22px; }
.ccw-fake-form span { display: block; border: 1px dashed rgba(5,22,38,.18); border-radius: 12px; padding: 16px; color: var(--ccw-muted); background: rgba(255,255,255,.34); }
code { background: rgba(5,22,38,.08); border-radius: 6px; padding: 2px 6px; }

.ccw-content-page { padding: 40px 0; max-width: 850px; }
.ccw-entry-content { line-height: 1.75; }

.ccw-footer { background: #051626; color: rgba(244,239,233,.78); padding: 70px 0 26px; border-top: 1px solid rgba(217,150,78,.28); }
.ccw-footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .9fr; gap: 54px; }
.ccw-footer h2, .ccw-footer h3 { color: var(--ccw-bone); }
.ccw-footer p { line-height: 1.7; }
.ccw-footer-mark { width: 70px; height: 70px; object-fit: contain; margin-bottom: 18px; }
.ccw-footer-small { color: rgba(244,239,233,.55); font-size: 13px; }
.ccw-footer-menu { display: grid; gap: 10px; }
.ccw-footer-menu a { color: rgba(244,239,233,.76); text-decoration: none; }
.ccw-footer-menu a:hover { color: var(--ccw-copper); }
.ccw-footer-bottom { margin-top: 42px; padding-top: 24px; border-top: 1px solid rgba(244,239,233,.1); display: flex; justify-content: space-between; gap: 20px; color: rgba(244,239,233,.52); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }

@media (max-width: 1050px) {
  .ccw-product-grid { grid-template-columns: repeat(2, 1fr); }
  .ccw-process-grid { grid-template-columns: repeat(2, 1fr); }
  .ccw-hero-grid, .ccw-page-hero-grid, .ccw-split, .ccw-contact-grid { grid-template-columns: 1fr; }
  .ccw-nav-panel { grid-template-columns: 1fr; }
  .ccw-menu { justify-content: flex-start; }
}
@media (max-width: 820px) {
  .ccw-header-inner { min-height: 72px; }
  .ccw-header-logo { width: clamp(132px, 46vw, 184px); max-height: 40px; }
  .ccw-header-actions { gap: 8px; }
  .ccw-nav-cta { min-height: 42px; padding: 11px 14px; font-size: 11px; }
  .ccw-menu-toggle { min-height: 42px; padding: 0 14px; }
  .ccw-menu-toggle__label { display: none; }
  .ccw-nav { position: fixed; left: 14px; right: 14px; top: 84px; }
  .ccw-nav-panel { width: 100%; margin-top: 0; padding: 18px; border-radius: 22px; }
  .ccw-menu { flex-direction: column; align-items: stretch; gap: 8px; }
  .ccw-menu a { justify-content: space-between; width: 100%; }
  .ccw-hero-grid { min-height: auto; padding: 72px 0; }
  .ccw-category-grid { grid-template-columns: 1fr; }
  .ccw-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .ccw-footer-bottom { flex-direction: column; }
  .ccw-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .ccw-container { width: min(100% - 28px, var(--ccw-max)); }
  .ccw-section { padding: 64px 0; }
  .ccw-product-grid, .ccw-process-grid { grid-template-columns: 1fr; }
  .ccw-hero-card-strip { grid-template-columns: 1fr; }
  .ccw-page-mark { width: 230px; padding: 22px; }
  .ccw-contact-card, .ccw-form-placeholder, .ccw-note-card { padding: 28px; }
}

/* --- 2026-05 visual/product update --- */
.ccw-hero-showcase { display: grid; gap: 18px; }
.ccw-mini-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.ccw-visual-panel {
  min-height: 280px;
  border-radius: var(--ccw-radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background-color: var(--ccw-charcoal);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(217,150,78,.28);
  box-shadow: 0 18px 55px rgba(5,22,38,.12);
}
.ccw-visual-panel:before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244,239,233,.18);
  border-radius: 18px;
  pointer-events: none;
  z-index: 1;
}
.ccw-visual-panel:after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 16%, rgba(217,150,78,.22), transparent 28rem);
  pointer-events: none;
}
.ccw-visual-panel > div { position: relative; z-index: 2; max-width: 560px; }
.ccw-visual-panel p { margin: 0; color: rgba(244,239,233,.84); line-height: 1.55; font-weight: 600; text-shadow: 0 1px 12px rgba(0,0,0,.38); }
.ccw-visual-panel .ccw-eyebrow { color: var(--ccw-copper); margin-bottom: 8px; text-shadow: none; }
.ccw-mini-showcase-card { min-height: 190px; border-radius: 20px; padding: 18px; }
.ccw-feature-grid { display: grid; grid-template-columns: 1.05fr .95fr .95fr; gap: 22px; align-items: stretch; }
.ccw-feature-grid--two { grid-template-columns: repeat(2, 1fr); }
.ccw-feature-panel { min-height: 390px; }
.ccw-feature-panel--tall { min-height: 520px; }

/* * PAGE HEADER BACKGROUND IMAGE - Page templates set the actual photo URL inline for each hero. */
.ccw-page-hero--with-photo { background: #051626; }
.ccw-page-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .82;
  transform: scale(1.02);
}
.ccw-page-hero--with-photo:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 12%, rgba(217,150,78,.22), transparent 30rem), linear-gradient(180deg, rgba(5,22,38,.26), rgba(5,22,38,.72));
  z-index: 1;
}
.ccw-page-hero--with-photo .ccw-container { position: relative; z-index: 2; }
.ccw-page-hero--with-photo:after { z-index: 1; }

.ccw-product-grid { align-items: stretch; }
.ccw-product-photo {
  height: 250px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
}
.ccw-product-photo:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,22,38,.02), rgba(5,22,38,.66));
  z-index: 1;
}
.ccw-product-photo:after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244,239,233,.2);
  border-radius: 16px;
  z-index: 2;
  pointer-events: none;
}
.ccw-product-photo-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 3;
  color: var(--ccw-bone);
  background: rgba(5,22,38,.72);
  border: 1px solid rgba(217,150,78,.42);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ccw-product-photo--dice { background-position: center; }
.ccw-product-photo--hero { background-position: center top; }
.ccw-product-photo--opener { background-position: center; }

.ccw-form-section { background: rgba(5,22,38,.045); border-top: 1px solid rgba(5,22,38,.08); border-bottom: 1px solid rgba(5,22,38,.08); }
.ccw-form-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: start;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
  background: rgba(244,239,233,.9);
  border: 1px solid rgba(217,150,78,.2);
  box-shadow: 0 18px 55px rgba(5,22,38,.08);
}
.ccw-form-card h2 { font-size: clamp(32px, 4vw, 56px); letter-spacing: -.045em; }
.ccw-form-card-copy p:not(.ccw-eyebrow) { line-height: 1.72; color: var(--ccw-muted); }
/* EDIT CSS FORMS/CTA - Project form wrapper styling. */
.ccw-leadforge-form {
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(5,22,38,.1);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 32px);
}
.ccw-leadforge-form input,
.ccw-leadforge-form select,
.ccw-leadforge-form textarea {
  max-width: 100%;
}
.ccw-contact-form-card .ccw-leadforge-form { margin-top: 20px; }

.ccw-wedding-intro { padding-bottom: 24px; }

@media (max-width: 1050px) {
  .ccw-feature-grid,
  .ccw-feature-grid--two,
  .ccw-mini-showcase,
  .ccw-form-card { grid-template-columns: 1fr; }
  .ccw-feature-panel,
  .ccw-feature-panel--tall { min-height: 360px; }
}
@media (max-width: 620px) {
  .ccw-visual-panel { min-height: 300px; padding: 20px; }
  .ccw-mini-showcase-card { min-height: 170px; }
  .ccw-product-photo { height: 230px; }
  .ccw-form-card { padding: 24px; border-radius: 24px; }
  .ccw-leadforge-form { padding: 18px; border-radius: 18px; }
}


/* --- Professional polish update: keeps the original layout while reducing the more playful visual cues. --- */
.ccw-theme .ccw-category-icon,
.ccw-theme .ccw-product-icon {
  border-radius: 18px;
  letter-spacing: .03em;
}

.ccw-theme .ccw-category-card,
.ccw-theme .ccw-product-card,
.ccw-theme .ccw-note-card,
.ccw-theme .ccw-contact-card,
.ccw-theme .ccw-form-card {
  backdrop-filter: blur(8px);
}

.ccw-theme .ccw-card-actions {
  align-items: flex-start;
}

.ccw-theme .ccw-price-note {
  color: var(--ccw-charcoal);
}

.ccw-theme .ccw-visual-panel p:not(.ccw-eyebrow) {
  font-weight: 500;
}

.ccw-theme .ccw-page-mark,
.ccw-theme .ccw-hero-card {
  background: rgba(244,239,233,.94);
}

.ccw-theme .ccw-menu a,
.ccw-theme .ccw-nav-cta,
.ccw-theme .ccw-button,
.ccw-theme .ccw-eyebrow {
  letter-spacing: .11em;
}

/* --- Store integration update --- */
.ccw-page-hero--store { background: radial-gradient(circle at 76% 14%, rgba(217,150,78,.48), transparent 34rem), radial-gradient(circle at 24% 80%, rgba(36,66,55,.34), transparent 30rem), #051626; }
.ccw-category-card--store { background: #051626; color: var(--ccw-bone); border-color: rgba(217,150,78,.42); }
.ccw-category-card--store p:last-child { color: rgba(244,239,233,.72); }
.ccw-category-card--store .ccw-category-icon { background: var(--ccw-copper); color: #fff; }
@media (min-width: 1051px) {
  .ccw-category-grid { grid-template-columns: repeat(4, 1fr); }
  .ccw-category-card h3 { font-size: 24px; }
}


/* --- Store toast notification update ---
   EDIT TOAST NOTIFICATIONS - Styling for add-to-cart, remove-from-cart, and checkout feedback.
   These styles are theme-level so they work with WooCommerce or the active store tools without changing the store data. */
.ccw-toast-stack {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 99999;
  display: grid;
  gap: 12px;
  width: min(420px, calc(100vw - 32px));
  pointer-events: none;
}

.ccw-toast {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px 16px 16px 14px;
  border: 1px solid rgba(217,150,78,.26);
  border-radius: 20px;
  background: rgba(244,239,233,.98);
  color: var(--ccw-charcoal);
  box-shadow: 0 22px 62px rgba(16,12,9,.24);
  transform: translateY(18px) scale(.98);
  opacity: 0;
  pointer-events: auto;
  transition: opacity .24s ease, transform .24s ease;
  backdrop-filter: blur(14px);
}

.ccw-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.ccw-toast.is-leaving {
  opacity: 0;
  transform: translateY(12px) scale(.98);
}

.ccw-toast__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ccw-copper), var(--ccw-ember));
  color: #fff;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(217,150,78,.28);
}

.ccw-toast--info .ccw-toast__icon {
  background: var(--ccw-charcoal);
}

.ccw-toast__body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.ccw-toast__title {
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ccw-ink);
}

.ccw-toast__message {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ccw-muted);
}

.ccw-toast__link {
  width: fit-content;
  margin-top: 7px;
  color: var(--ccw-oxblood);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
}

.ccw-toast__link:hover {
  color: var(--ccw-copper);
}

.ccw-toast__close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(5,22,38,.07);
  color: var(--ccw-charcoal);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.ccw-toast__close:hover,
.ccw-toast__close:focus-visible {
  background: rgba(217,150,78,.18);
  outline: none;
}

.ccw-notice-converted-to-toast {
  display: none !important;
}

@media (max-width: 620px) {
  .ccw-toast-stack {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
  }

  .ccw-toast {
    grid-template-columns: 38px 1fr auto;
    padding: 14px;
    border-radius: 18px;
  }

  .ccw-toast__icon {
    width: 38px;
    height: 38px;
  }
}

/* --- Storefront integration update ---
   This block narrows the visual direction around business sales, quote requests,
   product browsing, and WooCommerce output. */
.ccw-theme {
  --ccw-focus: rgba(217,150,78,.38);
  --ccw-panel: rgba(244,239,233,.86);
  --ccw-panel-strong: rgba(244,239,233,.96);
}

.ccw-main { overflow: clip; }
.ccw-button--soft {
  background: rgba(5,22,38,.06);
  color: var(--ccw-charcoal);
  border-color: rgba(5,22,38,.12);
  box-shadow: none;
}
.ccw-button--soft:hover { background: rgba(217,150,78,.12); }
.ccw-inline-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 22px; }
.ccw-inline-actions--center { justify-content: center; }
.ccw-section-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.ccw-section-heading--left { margin-inline: 0; text-align: left; max-width: 820px; }

.ccw-check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.ccw-check-list li { position: relative; padding-left: 28px; line-height: 1.55; }
.ccw-check-list li:before { content: ''; position: absolute; left: 0; top: .35em; width: 16px; height: 16px; border-radius: 999px; background: linear-gradient(135deg, var(--ccw-copper), var(--ccw-ember)); box-shadow: inset 0 0 0 4px rgba(244,239,233,.82); }
.ccw-hero-points.ccw-check-list li:before { content: ''; }

.ccw-hero--business-first .ccw-hero-grid { min-height: 680px; }
.ccw-hero--business-first .ccw-lede { max-width: 720px; }
.ccw-hero-storefront-card { background: transparent; border: 0; box-shadow: none; }
.ccw-hero-card--dashboard { isolation: isolate; }
.ccw-hero-card--dashboard:after {
  content: 'Business Storefront';
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 2;
  border: 1px solid rgba(217,150,78,.32);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(244,239,233,.92);
  color: var(--ccw-oxblood);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.ccw-page-hero-actions { margin-top: 28px; margin-bottom: 0; }

.ccw-trust-bar { background: #051626; color: rgba(244,239,233,.78); border-block: 1px solid rgba(217,150,78,.24); }
.ccw-trust-bar__grid { min-height: 70px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; align-items: stretch; }
.ccw-trust-bar__grid span { display: grid; place-items: center; padding: 18px 14px; text-align: center; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; border-inline-start: 1px solid rgba(244,239,233,.08); }
.ccw-trust-bar__grid span:last-child { border-inline-end: 1px solid rgba(244,239,233,.08); }

.ccw-intro-section--focused { background: linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,.04)); }
.ccw-business-solutions-section { background: rgba(5,22,38,.035); border-block: 1px solid rgba(5,22,38,.08); }
.business-solutions-grid,
.ccw-business-solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ccw-solution-card { padding: 28px; display: grid; gap: 13px; min-height: 310px; }
.ccw-solution-card__number { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: #051626; color: var(--ccw-copper); font-weight: 900; letter-spacing: .08em; }
.ccw-solution-card h3 { font-size: 23px; letter-spacing: -.035em; }
.ccw-solution-card p:not(.ccw-eyebrow) { color: var(--ccw-muted); line-height: 1.62; margin: 0; }
.ccw-solution-card .ccw-text-link { margin-top: auto; width: fit-content; }

.storefront-grid { display: grid; gap: 22px; }
.storefront-card,
.product-card,
.category-card,
.ccw-storefront-empty-state,
.ccw-payment-ready-card,
.ccw-product-detail-layout {
  border: 1px solid rgba(5,22,38,.12);
  background: var(--ccw-panel);
  border-radius: var(--ccw-radius);
  box-shadow: 0 16px 46px rgba(5,22,38,.075);
}
.product-card { overflow: hidden; min-width: 0; }
.product-card__image { background-color: var(--ccw-charcoal); }
.product-card__title { margin-top: -2px; }
.product-card__description { color: var(--ccw-muted); }
.product-card__footer { gap: 16px; }
.product-card__price { display: inline-flex; align-items: center; min-height: 32px; padding: 6px 10px; border-radius: 999px; background: rgba(5,22,38,.055); color: var(--ccw-ink); }
.product-card__cta { white-space: nowrap; }
.ccw-product-grid--preview { grid-template-columns: repeat(4, 1fr); }
.ccw-product-section--embedded { padding: 0; background: transparent !important; }
.ccw-product-section--embedded > .ccw-container { width: 100%; }
.ccw-product-section--embedded .ccw-section-heading { display: none; }

.ccw-storefront-preview-section { background: rgba(255,255,255,.22); }
.ccw-storefront-plugin-area { min-width: 0; }
.ccw-storefront-plugin-area--store .ccw-product-section { padding: 0; }
.ccw-storefront-plugin-area--store .ccw-product-section .ccw-container { width: 100%; }
.ccw-storefront-empty-state,
.storefront-empty-state { padding: clamp(28px, 5vw, 54px); text-align: center; }
.storefront-empty-state__content { max-width: 760px; margin: 0 auto; }
.storefront-empty-state h2 { font-size: clamp(30px, 4vw, 52px); letter-spacing: -.045em; }
.storefront-empty-state p:not(.ccw-eyebrow) { color: var(--ccw-muted); line-height: 1.7; }
.storefront-empty-state .ccw-inline-actions { justify-content: center; }

.ccw-secondary-collections-section { background: linear-gradient(180deg, rgba(5,22,38,.035), rgba(255,255,255,.16)); }
.ccw-secondary-collections-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.ccw-collection-card { overflow: hidden; text-decoration: none; display: grid; grid-template-columns: .95fr 1.05fr; min-height: 270px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ccw-collection-card:hover { transform: translateY(-3px); border-color: rgba(217,150,78,.42); box-shadow: var(--ccw-shadow); }
.ccw-collection-card__media { background-size: cover; background-position: center; min-height: 270px; }
.ccw-collection-card__content { display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 32px; }
.ccw-collection-card strong { color: var(--ccw-ink); font-size: 26px; line-height: 1.08; letter-spacing: -.035em; }
.ccw-collection-card span:not(.ccw-eyebrow):not(.ccw-collection-card__media):not(.ccw-collection-card__content) { color: var(--ccw-muted); line-height: 1.6; }

.quote-cta .ccw-form-card { grid-template-columns: .9fr 1.1fr; }
.storefront-form-card { position: relative; overflow: hidden; }
.storefront-form-card:before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 12% 0, rgba(217,150,78,.08), transparent 26rem); pointer-events: none; }
.storefront-form-card > * { position: relative; z-index: 1; }
.ccw-form-card .ccw-check-list { margin-top: 22px; color: var(--ccw-muted); }
.storefront-form input,
.storefront-form select,
.storefront-form textarea,
.ccw-leadforge-form input,
.ccw-leadforge-form select,
.ccw-leadforge-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(5,22,38,.16);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,.74);
  color: var(--ccw-charcoal);
  font: inherit;
}
.storefront-form textarea,
.ccw-leadforge-form textarea { min-height: 130px; resize: vertical; }
.storefront-form input:focus,
.storefront-form select:focus,
.storefront-form textarea:focus,
.ccw-leadforge-form input:focus,
.ccw-leadforge-form select:focus,
.ccw-leadforge-form textarea:focus {
  outline: 3px solid rgba(217,150,78,.18);
  border-color: var(--ccw-copper);
}
.ccw-form-fallback { display: grid; gap: 12px; }
.ccw-form-fallback h3 { font-size: 24px; }
.ccw-form-fallback p { color: var(--ccw-muted); line-height: 1.6; }
.ccw-contact-checks { margin: 22px 0; color: var(--ccw-muted); }

.ccw-payment-ready-card { padding: clamp(28px, 4vw, 44px); display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.ccw-payment-ready-card h2 { font-size: clamp(30px, 4vw, 50px); letter-spacing: -.045em; }
.ccw-payment-ready-card p:not(.ccw-eyebrow) { color: var(--ccw-muted); line-height: 1.68; max-width: 760px; }

.ccw-single-product-content { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(24px, 4vw, 46px); align-items: start; padding: clamp(24px, 4vw, 44px); }
.ccw-single-product-media img { border-radius: 22px; box-shadow: 0 16px 44px rgba(5,22,38,.1); }
.ccw-single-product-copy h2 { font-size: clamp(34px, 4vw, 56px); letter-spacing: -.045em; }
.ccw-single-product-copy .ccw-entry-content { color: var(--ccw-muted); }

.ccw-footer-actions { display: grid; gap: 10px; justify-items: start; }

/* WooCommerce public markup hooks and product grid helpers. */
.scc-storefront,
.scc-products,
.scc-featured-products,
.scc-categories { width: 100%; }
.scc-storefront .storefront-grid,
.scc-products .storefront-grid,
.scc-featured-products .storefront-grid,
.scc-categories .storefront-grid { grid-template-columns: repeat(4, 1fr); }
.scc-storefront .storefront-card,
.scc-products .storefront-card,
.scc-featured-products .storefront-card,
.scc-categories .storefront-card { overflow: hidden; }
.scc-quote-form,
.scc-product-inquiry-form { width: 100%; }
.scc-notice,
.ccw-storefront-message { border-radius: 16px; padding: 14px 16px; border: 1px solid rgba(217,150,78,.22); background: rgba(244,239,233,.9); color: var(--ccw-charcoal); }
.scc-empty,
.scc-empty-state { padding: 36px; text-align: center; border: 1px dashed rgba(217,150,78,.32); border-radius: 22px; background: rgba(255,255,255,.34); color: var(--ccw-muted); }
.paypal-button-area,
.scc-paypal-button,
.scc-payment-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.scc-payment-note,
.ccw-payment-note { color: var(--ccw-muted); font-size: 13px; line-height: 1.55; }

@media (max-width: 1180px) {
  .business-solutions-grid,
  .ccw-business-solutions-grid,
  .ccw-product-grid--preview,
  .scc-storefront .storefront-grid,
  .scc-products .storefront-grid,
  .scc-featured-products .storefront-grid,
  .scc-categories .storefront-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1050px) {
  .ccw-trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .quote-cta .ccw-form-card,
  .ccw-single-product-content { grid-template-columns: 1fr; }
  .ccw-payment-ready-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .business-solutions-grid,
  .ccw-business-solutions-grid,
  .ccw-product-grid--preview,
  .ccw-secondary-collections-grid,
  .scc-storefront .storefront-grid,
  .scc-products .storefront-grid,
  .scc-featured-products .storefront-grid,
  .scc-categories .storefront-grid { grid-template-columns: 1fr; }
  .ccw-collection-card { grid-template-columns: 1fr; }
  .ccw-collection-card__media { min-height: 220px; }
  .ccw-trust-bar__grid { grid-template-columns: 1fr; }
  .ccw-hero-card--dashboard:after { position: static; display: inline-flex; margin: 18px 0 0; }
  .product-card__footer { align-items: flex-start; flex-direction: column; }
  .product-card__cta { white-space: normal; }
}


/* --- Live storefront polish and WooCommerce compatibility pass --- */
.ccw-section { padding: clamp(64px, 7vw, 96px) 0; }
.ccw-container,
.scc-container { width: min(var(--ccw-max), calc(100% - 40px)); margin-inline: auto; }

.ccw-main .scc-storefront { padding: 0; }
.ccw-main .scc-storefront__header,
.ccw-main .scc-storefront__header h2,
.ccw-main .scc-storefront__header p { color: inherit; }
.ccw-main .scc-storefront__header { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.ccw-main .scc-storefront__header h2 { font-size: clamp(34px, 4.4vw, 58px); letter-spacing: -.045em; color: var(--ccw-ink); }
.ccw-main .scc-storefront__header p { color: var(--ccw-muted); line-height: 1.72; }
.ccw-main .eyebrow { color: var(--ccw-copper); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.ccw-product-grid,
.scc-products.storefront-grid,
.scc-categories.storefront-grid,
.storefront-grid.product-grid,
.storefront-grid.category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); }

.ccw-main .product-card,
.ccw-main .category-card,
.ccw-main .storefront-card { background: rgba(244,239,233,.92); border: 1px solid rgba(5,22,38,.12); border-radius: 24px; box-shadow: 0 18px 52px rgba(5,22,38,.08); }
.ccw-main .product-card,
.ccw-main .category-card { overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ccw-main .product-card:hover,
.ccw-main .category-card:hover { transform: translateY(-3px); border-color: rgba(217,150,78,.38); box-shadow: 0 24px 66px rgba(5,22,38,.12); }

.ccw-main .product-card__media,
.ccw-main a.product-card__media { display: block; min-height: 245px; aspect-ratio: 4 / 3; overflow: hidden; background: radial-gradient(circle at 30% 18%, rgba(217,150,78,.22), transparent 18rem), linear-gradient(135deg, #051626, #051626); text-decoration: none; }
.ccw-main .product-card__media img,
.ccw-main .product-card__image,
.ccw-main .category-card__image { width: 100%; height: 100%; object-fit: cover; display: block; }
.ccw-main .product-card__body,
.ccw-main .category-card__body { padding: clamp(20px, 2.6vw, 28px); display: grid; gap: 12px; }
.ccw-main .product-card__category { color: var(--ccw-copper); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.ccw-main .product-card__title { font-size: clamp(22px, 2vw, 28px); line-height: 1.1; letter-spacing: -.035em; margin: 0; }
.ccw-main .product-card__title a { text-decoration: none; }
.ccw-main .product-card__body p { color: var(--ccw-muted); line-height: 1.65; margin: 0; }
.ccw-main .product-card__price,
.ccw-main .product-detail__price { width: fit-content; display: inline-flex; align-items: center; min-height: 34px; padding: 7px 12px; border-radius: 999px; background: rgba(217,150,78,.12); color: var(--ccw-ink); font-weight: 900; font-size: 13px; letter-spacing: .03em; }
.ccw-main .product-card__cta,
.ccw-main .category-card__cta,
.ccw-main .scc-button,
.ccw-main a.paypal-button-area,
.ccw-main button.scc-button,
.ccw-main .scc-quote-form button[type="submit"] { width: fit-content; display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: linear-gradient(135deg, var(--ccw-copper), var(--ccw-ember)); color: #fff; text-decoration: none; font-weight: 900; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 10px 24px rgba(217,150,78,.22); cursor: pointer; }
.ccw-main .product-card__cta:hover,
.ccw-main .category-card__cta:hover,
.ccw-main a.paypal-button-area:hover,
.ccw-main .scc-quote-form button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 15px 34px rgba(217,150,78,.3); }

.ccw-main .category-card a { color: inherit; text-decoration: none; display: grid; height: 100%; }
.ccw-main .category-card__image { aspect-ratio: 16 / 10; min-height: 190px; background: radial-gradient(circle at 30% 18%, rgba(217,150,78,.22), transparent 18rem), linear-gradient(135deg, #051626, #051626); }
.ccw-main .category-card__body h3 { font-size: clamp(22px, 2vw, 28px); letter-spacing: -.035em; }
.ccw-main .category-card__body p { color: var(--ccw-muted); line-height: 1.65; }

.ccw-main .scc-empty,
.ccw-main .storefront-empty-state { border: 1px dashed rgba(217,150,78,.34); background: rgba(244,239,233,.72); color: var(--ccw-muted); border-radius: 24px; padding: clamp(28px, 5vw, 54px); }
.ccw-main .scc-empty p { margin: 0; line-height: 1.65; }

.ccw-scc-product-shell { background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(5,22,38,.035)); }
.ccw-breadcrumb-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 28px; color: var(--ccw-muted); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ccw-breadcrumb-row a { color: var(--ccw-oxblood); text-decoration: none; }
.ccw-main .product-detail-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: clamp(28px, 5vw, 58px); align-items: start; padding: clamp(24px, 4vw, 48px); background: rgba(244,239,233,.94); border: 1px solid rgba(5,22,38,.12); border-radius: 28px; box-shadow: 0 18px 54px rgba(5,22,38,.08); }
.ccw-main .product-detail-layout__media > img { width: 100%; border-radius: 22px; box-shadow: 0 18px 44px rgba(5,22,38,.12); background: #fff; }
.ccw-main .product-gallery { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.ccw-main .product-gallery img { width: 82px; height: 82px; object-fit: cover; border-radius: 14px; border: 1px solid rgba(5,22,38,.12); }
.ccw-main .product-detail-layout__content h1 { font-size: clamp(36px, 5vw, 64px); letter-spacing: -.05em; }
.ccw-main .product-detail__copy { color: var(--ccw-muted); line-height: 1.75; }
.ccw-main .product-detail__actions { display: grid; gap: 18px; margin-top: 26px; }
.ccw-main .payment-note { color: var(--ccw-muted); line-height: 1.6; margin: 10px 0 0; }

.ccw-main .scc-quote-form { background: rgba(244,239,233,.9); border: 1px solid rgba(5,22,38,.12); border-radius: 24px; padding: clamp(22px, 3vw, 34px); margin-top: 0; }
.ccw-main .scc-form-header h3 { font-size: clamp(24px, 3vw, 34px); margin: 4px 0 8px; }
.ccw-main .scc-form-header p { color: var(--ccw-muted); line-height: 1.62; }
.ccw-main .scc-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.ccw-main .scc-quote-form label { display: grid; gap: 7px; color: var(--ccw-ink); font-weight: 800; margin: 0 0 14px; }
.ccw-main .scc-form-consent label { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--ccw-muted); }
.ccw-main .scc-form-consent input { width: auto; min-height: 0; margin-top: 3px; }
.ccw-main .scc-form-message { border-radius: 16px; padding: 14px 16px; margin-bottom: 18px; }
.ccw-main .scc-form-success { background: rgba(6,95,70,.1); color: #065f46; }
.ccw-main .scc-form-error { background: rgba(153,27,27,.09); color: #991b1b; }

.ccw-contact-grid { display: grid; grid-template-columns: minmax(280px,.78fr) minmax(0,1.22fr); gap: clamp(22px, 4vw, 38px); align-items: start; }
.ccw-contact-card { padding: clamp(24px, 3vw, 34px); }
.ccw-note-card { padding: clamp(28px, 4vw, 48px); text-align: center; }
.ccw-note-card h2 { max-width: 900px; margin: 0 auto 16px; }
.ccw-note-card p:not(.ccw-eyebrow) { max-width: 820px; margin-left: auto; margin-right: auto; }

.ccw-page-hero-description { color: rgba(244,239,233,.78); line-height: 1.7; max-width: 680px; }
.ccw-page-hero-description p { color: inherit; }

@media (max-width: 1180px) {
  .ccw-product-grid,
  .scc-products.storefront-grid,
  .scc-categories.storefront-grid,
  .storefront-grid.product-grid,
  .storefront-grid.category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .ccw-main .product-detail-layout,
  .ccw-contact-grid,
  .ccw-main .scc-form-grid { grid-template-columns: 1fr; }
  .ccw-page-hero { padding: 76px 0 62px; }
}

@media (max-width: 680px) {
  .ccw-container,
  .scc-container { width: min(100% - 28px, var(--ccw-max)); }
  .ccw-product-grid,
  .scc-products.storefront-grid,
  .scc-categories.storefront-grid,
  .storefront-grid.product-grid,
  .storefront-grid.category-grid { grid-template-columns: 1fr; }
  .ccw-main .product-card__media,
  .ccw-main a.product-card__media { min-height: 220px; }
  .ccw-main .product-detail-layout { padding: 18px; border-radius: 22px; }
  .ccw-main .scc-quote-form { padding: 18px; border-radius: 18px; }
}

.ccw-live-storefront-output { display: grid; gap: clamp(28px, 4vw, 48px); }
.ccw-storefront-collection-band { padding-bottom: clamp(18px, 3vw, 28px); border-bottom: 1px solid rgba(5,22,38,.1); }
.ccw-storefront-collection-band + .scc-products { margin-top: 0; }

/* --- 2026 Campaign Cutworks brand refresh: supplied logos, Inter type, navy/copper palette, and storefront polish --- */
.ccw-theme {
  --ccw-focus: rgba(217,150,78,.34);
  --ccw-panel: rgba(244,239,233,.88);
  --ccw-panel-strong: rgba(244,239,233,.97);
}

body.ccw-theme {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ccw-navy);
  background:
    radial-gradient(circle at 14% -4%, rgba(217,150,78,.16), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(36,66,55,.1), transparent 28rem),
    linear-gradient(180deg, #f4efe9 0%, #efe7dc 100%);
}

.ccw-site-header {
  background: rgba(244,239,233,.96);
  border-bottom: 1px solid rgba(5,22,38,.12);
  box-shadow: 0 12px 30px rgba(5,22,38,.06);
}
.ccw-header-inner { min-height: 84px; }
.ccw-brand { min-width: clamp(180px, 25vw, 292px); }
.ccw-header-logo,
.custom-logo {
  width: clamp(190px, 25vw, 285px);
  height: 58px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 54%;
  filter: none;
}
.ccw-menu a { color: rgba(5,22,38,.82); }
.ccw-menu a:hover { color: var(--ccw-copper); }
.ccw-menu-toggle { border-color: rgba(5,22,38,.18); }
.ccw-menu-toggle span:not(.screen-reader-text) { background: var(--ccw-navy); }
.ccw-nav-cta,
.ccw-button,
.ccw-main .product-card__cta,
.ccw-main .category-card__cta,
.ccw-main .scc-button,
.ccw-main a.paypal-button-area,
.ccw-main button.scc-button,
.ccw-main .scc-quote-form button[type="submit"] {
  background: linear-gradient(135deg, #d9964e, #c48846);
  color: #051626;
  border-color: rgba(5,22,38,.12);
  box-shadow: 0 12px 28px rgba(217,150,78,.24);
}
.ccw-button--ghost {
  background: transparent;
  color: var(--ccw-bone);
  border-color: rgba(244,239,233,.42);
  box-shadow: none;
}
.ccw-button--light {
  background: var(--ccw-bone);
  color: var(--ccw-navy);
}
.ccw-button--soft {
  background: rgba(5,22,38,.06);
  color: var(--ccw-navy);
  border-color: rgba(5,22,38,.12);
}
.ccw-eyebrow,
.ccw-main .eyebrow,
.ccw-main .product-card__category { color: var(--ccw-copper); }

.ccw-hero,
.ccw-page-hero,
.ccw-cta-band,
.ccw-footer,
.ccw-trust-bar { background-color: var(--ccw-navy); }
.ccw-hero-bg {
  background:
    linear-gradient(90deg, rgba(5,22,38,.95), rgba(5,22,38,.76)),
    radial-gradient(circle at 82% 18%, rgba(217,150,78,.38), transparent 28rem),
    radial-gradient(circle at 12% 88%, rgba(36,66,55,.38), transparent 34rem);
}
.ccw-hero h1,
.ccw-page-hero h1,
.ccw-cta-band h2,
.ccw-footer h2,
.ccw-footer h3 { color: var(--ccw-bone); }
.ccw-hero .ccw-lede,
.ccw-page-hero p,
.ccw-cta-inner p { color: rgba(244,239,233,.82); }
.ccw-hero-card {
  background: rgba(244,239,233,.96);
  border: 1px solid rgba(217,150,78,.34);
  box-shadow: 0 30px 70px rgba(0,0,0,.2);
}
.ccw-hero-card:before { border-color: rgba(217,150,78,.22); }
.ccw-hero-logo {
  width: min(600px, 100%);
  max-height: 290px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 14px 30px rgba(5,22,38,.08));
}
.ccw-hero-card-strip { background: rgba(5,22,38,.14); }
.ccw-hero-card-strip span { background: var(--ccw-navy); color: var(--ccw-bone); }

.ccw-page-mark {
  background: rgba(244,239,233,.96);
  border-color: rgba(217,150,78,.32);
  border-radius: 30px;
}
.ccw-page-mark-img {
  width: 100%;
  max-height: 290px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(5,22,38,.1));
}
.ccw-footer-mark {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 999px;
}

.ccw-category-card,
.ccw-product-card,
.ccw-note-card,
.ccw-contact-card,
.ccw-form-placeholder,
.ccw-main .product-card,
.ccw-main .category-card,
.ccw-main .storefront-card,
.ccw-main .product-detail-layout,
.ccw-main .scc-quote-form {
  background: rgba(244,239,233,.94);
  border-color: rgba(5,22,38,.12);
  box-shadow: 0 20px 52px rgba(5,22,38,.08);
}
.ccw-category-card:hover,
.ccw-main .product-card:hover,
.ccw-main .category-card:hover {
  border-color: rgba(217,150,78,.42);
  box-shadow: 0 28px 72px rgba(5,22,38,.13);
}
.ccw-category-icon,
.ccw-solution-card__number,
.ccw-product-art {
  background: var(--ccw-navy);
  color: var(--ccw-copper);
}
.ccw-process-section,
.ccw-business-solutions-section,
.ccw-secondary-collections-section {
  background: linear-gradient(180deg, rgba(5,22,38,.035), rgba(244,239,233,.24));
  border-block-color: rgba(5,22,38,.08);
}
.ccw-process-grid > div { background: rgba(255,255,255,.36); border-left-color: rgba(217,150,78,.58); }
.ccw-trust-bar { border-block-color: rgba(217,150,78,.32); }
.ccw-trust-bar__grid span { border-color: rgba(244,239,233,.1); }

.ccw-visual-panel {
  border: 1px solid rgba(5,22,38,.12);
  box-shadow: 0 22px 56px rgba(5,22,38,.12);
}
.ccw-visual-panel:after { background: linear-gradient(180deg, transparent, rgba(5,22,38,.88)); }

.storefront-form input,
.storefront-form select,
.storefront-form textarea,
.ccw-leadforge-form input,
.ccw-leadforge-form select,
.ccw-leadforge-form textarea,
.ccw-main .scc-quote-form input,
.ccw-main .scc-quote-form textarea {
  background: rgba(255,255,255,.78);
  border-color: rgba(5,22,38,.18);
  color: var(--ccw-navy);
}
.storefront-form input:focus,
.storefront-form select:focus,
.storefront-form textarea:focus,
.ccw-leadforge-form input:focus,
.ccw-leadforge-form select:focus,
.ccw-leadforge-form textarea:focus,
.ccw-main .scc-quote-form input:focus,
.ccw-main .scc-quote-form textarea:focus {
  outline: 3px solid rgba(217,150,78,.22);
  border-color: var(--ccw-copper);
}

.ccw-main .product-card__media,
.ccw-main a.product-card__media,
.ccw-main .category-card__image,
.ccw-product-art {
  background: radial-gradient(circle at 30% 18%, rgba(217,150,78,.28), transparent 18rem), linear-gradient(135deg, #051626, #0a2034);
}
.ccw-main .product-card__price,
.ccw-main .product-detail__price {
  background: rgba(217,150,78,.16);
  color: var(--ccw-navy);
}
.ccw-breadcrumb-row a,
.ccw-toast__link,
.ccw-text-link { color: var(--ccw-green); }
.ccw-text-link:hover { color: var(--ccw-copper); }

@media (max-width: 820px) {
  .ccw-nav {
    background: rgba(244,239,233,.98);
    border-color: rgba(5,22,38,.12);
  }
  .ccw-menu a { color: var(--ccw-navy); }
  .ccw-header-logo,
  .custom-logo { width: clamp(174px, 54vw, 240px); height: 52px; }
}

/* Header wordmark composition for the 2026 circular mark. */
.ccw-brand {
  gap: 12px;
  min-width: 0;
}
.ccw-header-mark {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: contain;
  display: block;
}
.ccw-brand-text {
  display: grid;
  gap: 2px;
  color: var(--ccw-navy);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.ccw-brand-text span {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .18em;
}
.ccw-brand-text strong {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .32em;
}
@media (max-width: 540px) {
  .ccw-header-mark { width: 48px; height: 48px; flex-basis: 48px; }
  .ccw-brand-text span { font-size: 13px; letter-spacing: .14em; }
  .ccw-brand-text strong { font-size: 10px; letter-spacing: .24em; }
}


/* --- v2.3 storefront-cooperative refinements: main header logo, cleaner hero, bolder subtitles, and WooCommerce product areas --- */
.ccw-brand {
  min-width: clamp(220px, 24vw, 340px);
  gap: 0;
}
.ccw-header-logo,
.custom-logo {
  width: clamp(220px, 24vw, 330px);
  height: 62px;
  object-fit: cover;
  object-position: center 56%;
  display: block;
  filter: none;
}
.ccw-brand-text,
.ccw-header-mark {
  display: none;
}
.ccw-hero--home .ccw-hero-grid,
.ccw-hero--business-first .ccw-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(590px, 72vh, 720px);
  padding: clamp(88px, 9vw, 126px) 0 clamp(76px, 8vw, 112px);
}
.ccw-hero--home .ccw-hero-copy {
  max-width: 980px;
}
.ccw-hero--home .ccw-lede {
  max-width: 760px;
}
.ccw-hero-showcase,
.ccw-hero-storefront-card {
  display: none !important;
}
.ccw-eyebrow,
.ccw-main .eyebrow,
.ccw-main .product-card__category {
  font-weight: 900;
  letter-spacing: .14em;
}
.ccw-hero .ccw-lede,
.ccw-page-hero p,
.ccw-section-heading p,
.ccw-copy-stack p,
.ccw-cta-inner p,
.ccw-note-card p,
.ccw-contact-card p,
.ccw-form-placeholder p {
  font-weight: 600;
}
.ccw-hero-points,
.ccw-check-list li {
  font-weight: 650;
}
.ccw-storefront-plugin-area:empty,
.ccw-live-storefront-output:empty,
.ccw-storefront-collection-band:empty {
  display: none;
}
@media (max-width: 960px) {
  .ccw-brand {
    min-width: auto;
  }
  .ccw-header-logo,
  .custom-logo {
    width: clamp(190px, 42vw, 280px);
    height: 58px;
  }
}
@media (max-width: 540px) {
  .ccw-header-logo,
  .custom-logo {
    width: clamp(172px, 58vw, 236px);
    height: 52px;
  }
  .ccw-hero--home .ccw-hero-grid,
  .ccw-hero--business-first .ccw-hero-grid {
    min-height: auto;
    padding: 72px 0;
  }
}

/* --- 2026-06 refined builder pass: compact logo, left-aligned headers, dynamic menu, and clean WooCommerce areas. --- */
/* * HEADER LOGO FINAL OVERRIDE - Keeps the main logo compact in the top-left header. */
.ccw-brand { min-width: 0; }
.ccw-header-logo,
.custom-logo {
  display: block;
  width: auto;
  height: clamp(42px, 4.6vw, 54px);
  max-height: 54px;
  max-width: 210px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}
.ccw-brand-text,
.ccw-header-mark { display: none !important; }

/* * HOME PAGE HEADER LAYOUT - Keeps the hero copy strong without a right-side image card. */
.ccw-hero--home .ccw-hero-grid,
.ccw-hero--business-first .ccw-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  min-height: clamp(620px, 72vh, 760px);
  align-items: center;
}
.ccw-hero--home .ccw-hero-copy,
.ccw-hero--business-first .ccw-hero-copy { max-width: 970px; }
.ccw-hero-showcase,
.ccw-hero-storefront-card { display: none !important; }

/* * PAGE HEADER ALIGNMENT - All page headers stay left aligned and simple. */
.ccw-page-hero-grid {
  grid-template-columns: minmax(0, 980px);
  max-width: none;
  margin-inline: 0;
  justify-content: start;
  text-align: left;
}
.ccw-page-hero .ccw-page-mark { display: none !important; }
.ccw-page-hero h1,
.ccw-hero h1 { max-width: 980px; }
.ccw-page-hero p,
.ccw-hero .ccw-lede {
  font-weight: 650;
  color: rgba(244,239,233,.9);
}

/* * 1 PAGE SUBTITLE / SECTION SUBTITLE - Bold small-label style used across pages. */
.ccw-eyebrow,
.ccw-main .eyebrow,
.ccw-main .product-card__category {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .19em;
}
.ccw-section-heading p,
.ccw-copy-stack p,
.ccw-form-card-copy p:not(.ccw-eyebrow),
.ccw-note-card p:not(.ccw-eyebrow),
.ccw-main .scc-form-header p,
.ccw-main .product-card__body p,
.ccw-main .category-card__body p { font-weight: 560; }

/* * WOOCOMMERCE STOREFRONT AREAS - Empty product/category areas collapse cleanly. */
.ccw-storefront-plugin-area:empty,
.ccw-live-storefront-output:empty,
.ccw-storefront-collection-band:empty { display: none; }

@media (max-width: 820px) {
  .ccw-header-logo,
  .custom-logo {
    width: auto;
    height: clamp(38px, 10vw, 48px);
    max-height: 48px;
  }
}
@media (max-width: 520px) {
  .ccw-nav-cta { display: none; }
}

/* --- 2026-06 final polish pass: page padding and simple circular hamburger menu. --- */
/* * PAGE HEADER LEFT PADDING - Controls how far hero/header copy sits from the browser edge. */
.ccw-page-hero .ccw-container,
.ccw-hero .ccw-container {
  width: min(var(--ccw-max), calc(100% - clamp(48px, 8vw, 152px)));
  margin-left: auto;
  margin-right: auto;
}

/* * PAGE HEADER COPY WIDTH - Keep headings bold but prevent them from feeling oversized or clipped. */
.ccw-page-hero-grid,
.ccw-hero-grid {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.ccw-page-hero h1 {
  max-width: 920px;
  font-size: clamp(42px, 4.7vw, 72px);
}
.ccw-page-hero p,
.ccw-page-hero-description {
  max-width: 760px;
}

/* * SIMPLE HAMBURGER MENU BUTTON - Circle with three visible lines. */
.ccw-menu-toggle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  padding: 0;
  border: 2px solid rgba(5,22,38,.92);
  border-radius: 999px;
  background: rgba(244,239,233,.94);
  color: var(--ccw-navy);
  box-shadow: 0 12px 28px rgba(5,22,38,.08);
}
.ccw-menu-toggle:hover,
.ccw-menu-toggle[aria-expanded="true"] {
  transform: translateY(-1px);
  border-color: var(--ccw-copper);
  background: #fffaf3;
}
.ccw-menu-toggle__label { display: none; }
.ccw-menu-toggle__icon {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}
.ccw-menu-toggle__icon span,
.ccw-menu-toggle span:not(.screen-reader-text) {
  position: absolute;
  left: 0;
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--ccw-navy);
  transition: top .18s ease, opacity .18s ease, transform .18s ease;
}
.ccw-menu-toggle__icon span:nth-child(1) { top: 0; }
.ccw-menu-toggle__icon span:nth-child(2) { top: 7.5px; }
.ccw-menu-toggle__icon span:nth-child(3) { top: 15px; }
.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon span:nth-child(1) { top: 7.5px; transform: rotate(45deg); }
.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon span:nth-child(2) { opacity: 0; }
.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon span:nth-child(3) { top: 7.5px; transform: rotate(-45deg); }

/* * MENU OPEN PANEL - Simple, readable drop-down navigation that opens from the hamburger. */
.ccw-nav-panel {
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  align-items: start;
  border: 1px solid rgba(5,22,38,.14);
  background: rgba(244,239,233,.98);
  color: var(--ccw-navy);
  box-shadow: 0 28px 70px rgba(5,22,38,.18);
}
.ccw-nav-panel__intro strong,
.ccw-nav-panel__intro .ccw-eyebrow {
  color: var(--ccw-navy);
}
.ccw-nav-panel__intro strong {
  font-size: clamp(20px, 2.2vw, 32px);
}
.ccw-nav-panel .ccw-menu {
  justify-content: flex-end;
  gap: 10px;
}
.ccw-nav-panel .ccw-menu a {
  color: var(--ccw-navy);
  background: #fffaf3;
  border: 1px solid rgba(5,22,38,.12);
  border-radius: 999px;
  padding: 12px 16px;
  min-height: 44px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
}
.ccw-nav-panel .ccw-menu a:hover,
.ccw-nav-panel .ccw-menu a:focus-visible {
  color: var(--ccw-navy);
  border-color: rgba(217,150,78,.55);
  background: rgba(217,150,78,.18);
}
.ccw-site-header.is-menu-open {
  box-shadow: 0 18px 44px rgba(5,22,38,.14);
}

/* * HEADER LOGO SIZE - Small top-left logo. Increase max-width if you want it larger later. */
.ccw-header-logo,
.custom-logo {
  height: clamp(34px, 3.8vw, 44px);
  max-height: 44px;
  max-width: 168px;
}
.ccw-header-inner { min-height: 76px; }

@media (max-width: 760px) {
  .ccw-page-hero .ccw-container,
  .ccw-hero .ccw-container {
    width: min(var(--ccw-max), calc(100% - 40px));
  }
  .ccw-page-hero h1 { font-size: clamp(36px, 12vw, 54px); }
  .ccw-nav-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .ccw-nav-panel .ccw-menu {
    justify-content: flex-start;
  }
  .ccw-nav-panel .ccw-menu a {
    width: 100%;
    justify-content: center;
  }
  .ccw-menu-toggle {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }
}


/* --- v2.6 final visibility polish: navy hamburger button, white footer actions, and no storefront footer note. --- */
/* * SIMPLE HAMBURGER MENU BUTTON - Navy circle with three white lines for clear visibility. */
.ccw-menu-toggle,
.ccw-menu-toggle:hover,
.ccw-menu-toggle[aria-expanded="true"] {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  padding: 0;
  border: 2px solid var(--ccw-copper);
  border-radius: 999px;
  background: var(--ccw-navy);
  color: #fff;
  box-shadow: 0 14px 32px rgba(5,22,38,.22);
}
.ccw-menu-toggle:hover,
.ccw-menu-toggle[aria-expanded="true"] {
  background: #0a2034;
  border-color: var(--ccw-copper);
  transform: translateY(-1px);
}
.ccw-menu-toggle__icon span,
.ccw-menu-toggle span:not(.screen-reader-text) {
  background: #fff !important;
}
.ccw-menu-toggle:focus-visible {
  outline: 3px solid rgba(217,150,78,.42);
  outline-offset: 4px;
}

/* * FOOTER ACTION LINKS - Keep footer quote/email actions white for better contrast. */
.ccw-footer .ccw-text-link,
.ccw-footer .ccw-text-link:visited {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.44);
}
.ccw-footer .ccw-text-link:hover,
.ccw-footer .ccw-text-link:focus-visible {
  color: var(--ccw-copper);
  border-bottom-color: rgba(217,150,78,.72);
}

/* * FOOTER BOTTOM - Single copyright line after removing storefront status note. */
.ccw-footer-bottom {
  justify-content: flex-start;
}

/* --- v2.7 header hamburger alignment fix. --- */
/* * CENTERED HAMBURGER BUTTON - Keeps the navy circle and three white lines perfectly centered. */
.ccw-header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 16px);
  flex: 0 0 auto;
}
.ccw-menu-toggle,
.ccw-menu-toggle:hover,
.ccw-menu-toggle[aria-expanded="true"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  padding: 0;
  line-height: 1;
  overflow: visible;
  border: 2px solid var(--ccw-copper);
  border-radius: 50%;
  background: var(--ccw-navy);
  color: #fff;
}
.ccw-menu-toggle:hover,
.ccw-menu-toggle[aria-expanded="true"] {
  background: #0a2034;
}
.ccw-menu-toggle__label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.ccw-menu-toggle__icon {
  position: relative !important;
  display: block !important;
  flex: 0 0 26px;
  width: 26px !important;
  height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  transform: none !important;
}
.ccw-menu-toggle__icon span {
  position: absolute !important;
  left: 50% !important;
  display: block !important;
  width: 26px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: #fff !important;
  transform: translateX(-50%) !important;
  opacity: 1;
}
.ccw-menu-toggle__icon span:nth-child(1) { top: 1px !important; }
.ccw-menu-toggle__icon span:nth-child(2) { top: 8.5px !important; }
.ccw-menu-toggle__icon span:nth-child(3) { top: 16px !important; }
.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon span:nth-child(1) {
  top: 8.5px !important;
  transform: translateX(-50%) rotate(45deg) !important;
}
.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon span:nth-child(2) {
  opacity: 0 !important;
}
.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon span:nth-child(3) {
  top: 8.5px !important;
  transform: translateX(-50%) rotate(-45deg) !important;
}
@media (max-width: 760px) {
  .ccw-header-inner {
    gap: 12px;
  }
  .ccw-nav-cta {
    padding: 13px 16px;
    font-size: 11px;
  }
  .ccw-menu-toggle,
  .ccw-menu-toggle:hover,
  .ccw-menu-toggle[aria-expanded="true"] {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }
}

/* --- v2.8 hamburger icon cleanup: keep only three clean white lines inside the navy circle. --- */
/* * HAMBURGER ICON WRAPPER - Must stay transparent so it never renders as a white block. */
button.ccw-menu-toggle > span.ccw-menu-toggle__icon,
.ccw-menu-toggle > .ccw-menu-toggle__icon,
.ccw-menu-toggle[aria-expanded="true"] > .ccw-menu-toggle__icon,
.ccw-menu-toggle:hover > .ccw-menu-toggle__icon {
  position: relative !important;
  display: block !important;
  width: 25px !important;
  height: 18px !important;
  flex: 0 0 25px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* * HAMBURGER LINES - Always show three simple white lines, even when the menu is open. */
button.ccw-menu-toggle > span.ccw-menu-toggle__icon > span,
.ccw-menu-toggle > .ccw-menu-toggle__icon > span,
.ccw-menu-toggle[aria-expanded="true"] > .ccw-menu-toggle__icon > span,
.ccw-menu-toggle:hover > .ccw-menu-toggle__icon > span {
  position: absolute !important;
  left: 50% !important;
  display: block !important;
  width: 25px !important;
  height: 3px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #fff !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: translateX(-50%) !important;
}
button.ccw-menu-toggle > span.ccw-menu-toggle__icon > span:nth-child(1),
.ccw-menu-toggle > .ccw-menu-toggle__icon > span:nth-child(1),
.ccw-menu-toggle[aria-expanded="true"] > .ccw-menu-toggle__icon > span:nth-child(1) {
  top: 0 !important;
}
button.ccw-menu-toggle > span.ccw-menu-toggle__icon > span:nth-child(2),
.ccw-menu-toggle > .ccw-menu-toggle__icon > span:nth-child(2),
.ccw-menu-toggle[aria-expanded="true"] > .ccw-menu-toggle__icon > span:nth-child(2) {
  top: 7.5px !important;
}
button.ccw-menu-toggle > span.ccw-menu-toggle__icon > span:nth-child(3),
.ccw-menu-toggle > .ccw-menu-toggle__icon > span:nth-child(3),
.ccw-menu-toggle[aria-expanded="true"] > .ccw-menu-toggle__icon > span:nth-child(3) {
  top: 15px !important;
}


/* ==========================================================
   WOOCOMMERCE STOREFRONT SYSTEM
   * WOOCOMMERCE SHOP GRID
   * WOOCOMMERCE PRODUCT CARDS
   * WOOCOMMERCE SINGLE PRODUCT
   * WOOCOMMERCE CART / CHECKOUT
   These styles make WooCommerce feel native to Campaign Cutworks.
   ========================================================== */
.woocommerce .ccw-woocommerce-shell,
.ccw-woocommerce-area { width: 100%; }
.woocommerce ul.products,
.ccw-woocommerce-area ul.products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 28px); margin: 0; padding: 0; }
.woocommerce ul.products::before,
.woocommerce ul.products::after { content: none; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.ccw-woocommerce-area ul.products li.product { float: none; width: auto !important; margin: 0 !important; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(5,22,38,.12); border-radius: 24px; background: rgba(244,239,233,.94); box-shadow: 0 18px 52px rgba(5,22,38,.08); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover { transform: translateY(-3px); border-color: rgba(217,150,78,.38); box-shadow: 0 24px 66px rgba(5,22,38,.12); }
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link { color: inherit; text-decoration: none; }
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; margin: 0; background: radial-gradient(circle at 30% 18%, rgba(217,150,78,.22), transparent 18rem), #051626; }
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title { padding: 22px 22px 6px; margin: 0; color: var(--ccw-ink); font-size: clamp(20px, 1.8vw, 26px); font-weight: 900; line-height: 1.12; letter-spacing: -.035em; }
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price { display: inline-flex; width: fit-content; margin: 10px 22px 0; padding: 7px 12px; border-radius: 999px; background: rgba(217,150,78,.12); color: var(--ccw-ink); font-size: 14px; font-weight: 900; }
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button { display: inline-flex; align-items: center; justify-content: center; width: fit-content; min-height: 44px; margin: 18px 22px 22px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: linear-gradient(135deg, var(--ccw-copper), var(--ccw-ember)); color: #fff; font-size: 12px; font-weight: 900; letter-spacing: .08em; line-height: 1; text-transform: uppercase; text-decoration: none; box-shadow: 0 10px 24px rgba(217,150,78,.22); }
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover { background: var(--ccw-navy); color: #fff; transform: translateY(-2px); }
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { margin-bottom: 24px; color: var(--ccw-muted); font-weight: 700; }
.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce select,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce textarea { width: 100%; min-height: 46px; border: 1px solid rgba(5,22,38,.16); border-radius: 14px; background: rgba(255,255,255,.82); color: var(--ccw-ink); padding: 11px 13px; font: inherit; }
.woocommerce .woocommerce-breadcrumb { margin: 0 0 24px; color: var(--ccw-muted); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.woocommerce .woocommerce-breadcrumb a { color: var(--ccw-copper); text-decoration: none; }
.woocommerce div.product { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: clamp(28px, 5vw, 58px); align-items: start; padding: clamp(24px, 4vw, 48px); border: 1px solid rgba(5,22,38,.12); border-radius: 28px; background: rgba(244,239,233,.94); box-shadow: 0 18px 54px rgba(5,22,38,.08); }
.woocommerce div.product div.images,
.woocommerce div.product div.summary { float: none; width: auto; margin: 0; }
.woocommerce div.product .product_title { color: var(--ccw-ink); font-size: clamp(36px, 5vw, 64px); font-weight: 900; line-height: .98; letter-spacing: -.05em; margin: 0 0 16px; }
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-Tabs-panel,
.woocommerce div.product .product_meta { color: var(--ccw-muted); line-height: 1.72; }
.woocommerce div.product form.cart { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 24px; }
.woocommerce div.product form.cart div.quantity { margin: 0; }
.woocommerce .quantity .qty { width: 82px; min-height: 44px; border-radius: 999px; border: 1px solid rgba(5,22,38,.16); text-align: center; font-weight: 900; }
.woocommerce-tabs.wc-tabs-wrapper,
.woocommerce div.product .related,
.woocommerce div.product .upsells { grid-column: 1 / -1; margin-top: clamp(28px, 5vw, 52px); }
.woocommerce table.shop_table,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce form.checkout,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation { border: 1px solid rgba(5,22,38,.12); border-radius: 22px; background: rgba(244,239,233,.92); padding: clamp(18px, 3vw, 28px); box-shadow: 0 18px 52px rgba(5,22,38,.06); }
.woocommerce table.shop_table { border-collapse: separate; border-spacing: 0; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error { border: 1px solid rgba(217,150,78,.26); border-radius: 18px; background: rgba(244,239,233,.98); color: var(--ccw-ink); box-shadow: 0 16px 42px rgba(5,22,38,.08); }
.woocommerce-message::before,
.woocommerce-info::before { color: var(--ccw-copper); }
.woocommerce-error::before { color: #991b1b; }
.woocommerce form .form-row label,
.woocommerce-page form .form-row label { color: var(--ccw-ink); font-weight: 800; }
.woocommerce .col2-set,
.woocommerce-page .col2-set { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(22px, 4vw, 38px); }
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 { float: none; width: auto; }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; justify-content: center; gap: 8px; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span { border-radius: 999px; min-width: 42px; min-height: 42px; display: grid; place-items: center; background: rgba(244,239,233,.92); color: var(--ccw-ink); font-weight: 900; }
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover { background: var(--ccw-navy); color: #fff; }
@media (max-width: 1180px) { .woocommerce ul.products, .ccw-woocommerce-area ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) { .woocommerce div.product, .woocommerce .col2-set, .woocommerce-page .col2-set { grid-template-columns: 1fr; } }
@media (max-width: 680px) { .woocommerce ul.products, .ccw-woocommerce-area ul.products { grid-template-columns: 1fr; } .woocommerce div.product { padding: 18px; border-radius: 22px; } }

/* ==========================================================
 * CAMPAIGN CUTWORKS CONTROL CENTER PLUGIN INTEGRATION
 * These styles make plugin-managed marketing cards match the theme.
 * Plugin controls content; theme controls the professional layout.
 * ========================================================== */
.ccw-control-center-section {
  background: linear-gradient(180deg, rgba(5,22,38,.025), rgba(244,239,233,.16));
}
.ccw-control-center-section--business-solutions {
  background: rgba(5,22,38,.035);
  border-block: 1px solid rgba(5,22,38,.08);
}
.ccw-control-center-section--secondary-collections {
  background: linear-gradient(180deg, rgba(5,22,38,.035), rgba(255,255,255,.16));
}
.ccw-control-center-area .ccwcc-section { margin: 0; }
.ccw-control-center-area .ccwcc-section__head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}
.ccw-control-center-section--business-solutions .ccwcc-section__head { margin-inline: 0; text-align: left; }
.ccw-control-center-area .ccwcc-section__head h2 {
  margin: 0;
  color: var(--ccw-ink);
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: .98;
  letter-spacing: -.055em;
}
.ccw-control-center-area .ccwcc-section__head p {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--ccw-muted);
  font-weight: 750;
  line-height: 1.65;
}
.ccw-control-center-section--business-solutions .ccwcc-section__head p { margin-inline: 0; }
.ccw-control-center-area .ccwcc-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.ccw-control-center-section--secondary-collections .ccwcc-card-grid,
.ccw-control-center-section--storefront-featured .ccwcc-card-grid,
.ccw-control-center-section--store-page-featured .ccwcc-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.ccw-control-center-area .ccwcc-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(5,22,38,.12);
  background: var(--ccw-panel);
  border-radius: var(--ccw-radius);
  box-shadow: 0 16px 46px rgba(5,22,38,.075);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ccw-control-center-area .ccwcc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217,150,78,.42);
  box-shadow: var(--ccw-shadow);
}
.ccw-control-center-area .ccwcc-card__media {
  display: block;
  min-height: 215px;
  background: radial-gradient(circle at 30% 18%, rgba(217,150,78,.28), transparent 18rem), linear-gradient(135deg, #051626, #0a2034);
}
.ccw-control-center-area .ccwcc-card__media img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.ccw-control-center-area .ccwcc-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
}
.ccw-control-center-area .ccwcc-card__eyebrow {
  margin: 0;
  color: var(--ccw-copper);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ccw-control-center-area .ccwcc-card h3 {
  margin: 0;
  color: var(--ccw-ink);
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.ccw-control-center-area .ccwcc-card p:not(.ccwcc-card__eyebrow) {
  margin: 0;
  color: var(--ccw-muted);
  line-height: 1.62;
}
.ccw-control-center-area .ccwcc-card__button {
  width: fit-content;
  margin-top: auto;
  color: var(--ccw-green);
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
}
.ccw-control-center-area .ccwcc-card__button:hover { color: var(--ccw-copper); }

@media (max-width: 980px) {
  .ccw-control-center-area .ccwcc-card-grid,
  .ccw-control-center-section--secondary-collections .ccwcc-card-grid,
  .ccw-control-center-section--storefront-featured .ccwcc-card-grid,
  .ccw-control-center-section--store-page-featured .ccwcc-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .ccw-control-center-area .ccwcc-card-grid,
  .ccw-control-center-section--secondary-collections .ccwcc-card-grid,
  .ccw-control-center-section--storefront-featured .ccwcc-card-grid,
  .ccw-control-center-section--store-page-featured .ccwcc-card-grid {
    grid-template-columns: 1fr;
  }
  .ccw-control-center-area .ccwcc-card__media img { height: 210px; }
}


/* --- Targeted restore-safe update: professional menu polish and upload form styling. --- */
.ccw-menu-toggle,
.ccw-menu-toggle:hover,
.ccw-menu-toggle[aria-expanded="true"] {
  width: auto !important;
  min-width: 0 !important;
  height: 46px !important;
  min-height: 46px !important;
  gap: 10px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(5,22,38,.16) !important;
  background: var(--ccw-navy) !important;
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(5,22,38,.16) !important;
}
.ccw-menu-toggle:hover,
.ccw-menu-toggle[aria-expanded="true"] {
  border-color: rgba(217,150,78,.72) !important;
  transform: translateY(-1px) !important;
}
.ccw-menu-toggle__label {
  position: static !important;
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: nowrap !important;
  color: #fff !important;
  background: transparent !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .13em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}
.ccw-menu-toggle__icon {
  flex: 0 0 20px !important;
  width: 20px !important;
  height: 15px !important;
}
.ccw-menu-toggle__icon span,
.ccw-menu-toggle span:not(.screen-reader-text) {
  width: 20px !important;
  height: 2px !important;
  background: #fff !important;
}
.ccw-menu-toggle__icon span:nth-child(1) { top: 0 !important; }
.ccw-menu-toggle__icon span:nth-child(2) { top: 6.5px !important; opacity: 1 !important; }
.ccw-menu-toggle__icon span:nth-child(3) { top: 13px !important; }
.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon span:nth-child(1) { top: 6.5px !important; transform: rotate(45deg) !important; }
.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon span:nth-child(2) { opacity: 0 !important; }
.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon span:nth-child(3) { top: 6.5px !important; transform: rotate(-45deg) !important; }
.ccw-nav-panel {
  grid-template-columns: minmax(230px,.62fr) minmax(0,1.38fr) !important;
  gap: clamp(18px,3vw,34px) !important;
  align-items: stretch !important;
  padding: clamp(18px,2.8vw,28px) !important;
  border-radius: 26px !important;
  box-shadow: 0 30px 78px rgba(5,22,38,.2) !important;
}
.ccw-nav-panel__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(244,239,233,.08), rgba(244,239,233,.03));
}
.ccw-nav-panel .ccw-menu {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px !important;
  align-content: center;
}
.ccw-nav-panel .ccw-menu li { margin: 0; }
.ccw-nav-panel .ccw-menu a {
  position: relative;
  width: 100% !important;
  min-height: 52px !important;
  justify-content: flex-start !important;
  padding: 14px 42px 14px 16px !important;
  border-radius: 16px !important;
  text-align: left;
}
.ccw-nav-panel .ccw-menu a:after {
  content: '→';
  position: absolute;
  right: 16px;
  color: var(--ccw-copper);
  font-size: 15px;
  line-height: 1;
  transition: transform .2s ease;
}
.ccw-nav-panel .ccw-menu a:hover:after,
.ccw-nav-panel .ccw-menu a:focus-visible:after { transform: translateX(3px); }
.ccw-project-request-form,
.ccw-form-grid,
.ccw-field { display: grid; }
.ccw-project-request-form { gap: 18px; }
.ccw-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.ccw-field { gap: 8px; }
.ccw-field label {
  color: var(--ccw-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ccw-field--hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ccw-file-field { padding: 16px; border: 1px dashed rgba(5,22,38,.24); border-radius: 18px; background: rgba(255,255,255,.52); }
.storefront-form input[type="file"],
.ccw-leadforge-form input[type="file"] { padding: 13px; min-height: 54px; cursor: pointer; background: #fffaf3; }
.ccw-field-help { margin: 0; color: var(--ccw-muted); font-size: 13px; line-height: 1.55; }
.ccw-form-alert { display: grid; gap: 6px; margin-bottom: 18px; padding: 15px 16px; border-radius: 16px; line-height: 1.55; }
.ccw-form-alert strong { color: var(--ccw-navy); }
.ccw-form-alert span { color: var(--ccw-muted); }
.ccw-form-alert--success { border: 1px solid rgba(46,125,92,.24); background: rgba(46,125,92,.1); }
.ccw-form-alert--error { border: 1px solid rgba(168,72,54,.24); background: rgba(168,72,54,.1); }
@media (max-width: 760px) {
  .ccw-menu-toggle,
  .ccw-menu-toggle:hover,
  .ccw-menu-toggle[aria-expanded="true"] { height: 44px !important; min-height: 44px !important; padding: 0 14px !important; }
  .ccw-menu-toggle__label { display: none !important; }
  .ccw-nav-panel { grid-template-columns: 1fr !important; width: 100% !important; padding: 16px !important; }
  .ccw-nav-panel__intro { padding: 18px; }
  .ccw-nav-panel .ccw-menu,
  .ccw-form-grid { grid-template-columns: 1fr; }
  .ccw-nav-panel .ccw-menu a { min-height: 50px !important; }
}

/* --- v2.9.2 targeted menu cleanup: professional pill button and stable dropdown. --- */
/* This final override keeps the existing header/layout intact while fixing the menu button alignment. */
.ccw-site-header .ccw-header-actions {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: clamp(12px, 1.4vw, 18px) !important;
}

.ccw-site-header button.ccw-menu-toggle,
.ccw-site-header button.ccw-menu-toggle:hover,
.ccw-site-header button.ccw-menu-toggle[aria-expanded="true"] {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: auto !important;
  min-width: 116px !important;
  height: 54px !important;
  min-height: 54px !important;
  padding: 0 20px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--ccw-navy) !important;
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(5,22,38,.20) !important;
  transform: none !important;
}

.ccw-site-header button.ccw-menu-toggle:hover,
.ccw-site-header button.ccw-menu-toggle:focus-visible,
.ccw-site-header button.ccw-menu-toggle[aria-expanded="true"] {
  background: #0a2034 !important;
  box-shadow: 0 16px 36px rgba(5,22,38,.24) !important;
}

.ccw-site-header button.ccw-menu-toggle:focus-visible {
  outline: 3px solid rgba(217,150,78,.44) !important;
  outline-offset: 4px !important;
}

.ccw-site-header button.ccw-menu-toggle .ccw-menu-toggle__label {
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: nowrap !important;
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: .10em !important;
  text-transform: uppercase !important;
}

.ccw-site-header button.ccw-menu-toggle .ccw-menu-toggle__icon,
.ccw-site-header button.ccw-menu-toggle:hover .ccw-menu-toggle__icon,
.ccw-site-header button.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon {
  position: relative !important;
  display: block !important;
  flex: 0 0 24px !important;
  width: 24px !important;
  height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform: none !important;
}

.ccw-site-header button.ccw-menu-toggle .ccw-menu-toggle__icon > span,
.ccw-site-header button.ccw-menu-toggle:hover .ccw-menu-toggle__icon > span,
.ccw-site-header button.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon > span {
  position: absolute !important;
  left: 0 !important;
  display: block !important;
  width: 24px !important;
  height: 3px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #fff !important;
  opacity: 1 !important;
  box-shadow: none !important;
  transform: none !important;
  transition: top .18s ease, opacity .18s ease, transform .18s ease !important;
}

.ccw-site-header button.ccw-menu-toggle .ccw-menu-toggle__icon > span:nth-child(1) { top: 0 !important; }
.ccw-site-header button.ccw-menu-toggle .ccw-menu-toggle__icon > span:nth-child(2) { top: 7.5px !important; }
.ccw-site-header button.ccw-menu-toggle .ccw-menu-toggle__icon > span:nth-child(3) { top: 15px !important; }
.ccw-site-header button.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon > span:nth-child(1) { top: 7.5px !important; transform: rotate(45deg) !important; }
.ccw-site-header button.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon > span:nth-child(2) { opacity: 0 !important; }
.ccw-site-header button.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon > span:nth-child(3) { top: 7.5px !important; transform: rotate(-45deg) !important; }

.ccw-site-header .ccw-nav {
  left: 0 !important;
  right: 0 !important;
  top: 100% !important;
}

.ccw-site-header .ccw-nav-panel {
  margin-top: 12px !important;
  border-radius: 26px !important;
  border: 1px solid rgba(5,22,38,.12) !important;
  background: rgba(244,239,233,.985) !important;
  box-shadow: 0 28px 70px rgba(5,22,38,.20) !important;
}

@media (max-width: 560px) {
  .ccw-site-header .ccw-header-actions { gap: 10px !important; }
  .ccw-site-header button.ccw-menu-toggle,
  .ccw-site-header button.ccw-menu-toggle:hover,
  .ccw-site-header button.ccw-menu-toggle[aria-expanded="true"] {
    min-width: 54px !important;
    width: 54px !important;
    height: 54px !important;
    padding: 0 !important;
  }
  .ccw-site-header button.ccw-menu-toggle .ccw-menu-toggle__label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
  }
  .ccw-site-header button.ccw-menu-toggle .ccw-menu-toggle__icon,
  .ccw-site-header button.ccw-menu-toggle:hover .ccw-menu-toggle__icon,
  .ccw-site-header button.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon {
    flex-basis: 25px !important;
    width: 25px !important;
  }
  .ccw-site-header button.ccw-menu-toggle .ccw-menu-toggle__icon > span,
  .ccw-site-header button.ccw-menu-toggle:hover .ccw-menu-toggle__icon > span,
  .ccw-site-header button.ccw-menu-toggle[aria-expanded="true"] .ccw-menu-toggle__icon > span {
    width: 25px !important;
  }
}

/* --- Homepage custom photo gallery - added for v2.9.4 --- */
.ccw-home-photo-section {
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(5,22,38,.035));
  border-block: 1px solid rgba(5,22,38,.08);
}
.ccw-home-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.ccw-home-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(5,22,38,.12);
  border-radius: var(--ccw-radius);
  background: var(--ccw-panel);
  box-shadow: 0 16px 46px rgba(5,22,38,.075);
  display: flex;
  flex-direction: column;
}
.ccw-home-photo-card--featured {
  grid-column: span 2;
}
.ccw-home-photo-card__image {
  display: block;
  min-height: 250px;
  flex: 1 1 auto;
  background-size: cover;
  background-position: center;
  position: relative;
}
.ccw-home-photo-card__image:after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(244,239,233,.2);
  border-radius: 16px;
  pointer-events: none;
}
.ccw-home-photo-card__body {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: rgba(244,239,233,.96);
}
.ccw-home-photo-card__body strong {
  color: var(--ccw-ink);
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.ccw-home-photo-card__body span:not(.ccw-eyebrow) {
  color: var(--ccw-muted);
  line-height: 1.55;
}
@media (max-width: 980px) {
  .ccw-home-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .ccw-home-photo-grid { grid-template-columns: 1fr; }
  .ccw-home-photo-card,
  .ccw-home-photo-card--featured { grid-column: auto; min-height: auto; }
  .ccw-home-photo-card__image { min-height: 240px; }
}

