/* Self-hosted premium type (latin) — avoids LiteSpeed Google-Fonts stripping */
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/cormorant-garamond-500.woff2') format('woff2');}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/cormorant-garamond-600.woff2') format('woff2');}
@font-face{font-family:'Cormorant Garamond';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/cormorant-garamond-700.woff2') format('woff2');}
@font-face{font-family:'Jost';font-style:normal;font-weight:300;font-display:swap;src:url('../fonts/jost-300.woff2') format('woff2');}
@font-face{font-family:'Jost';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/jost-400.woff2') format('woff2');}
@font-face{font-family:'Jost';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/jost-500.woff2') format('woff2');}
@font-face{font-family:'Jost';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/jost-600.woff2') format('woff2');}
/* ============================================================
   Signature Watches — premium polish layer (loads after style.css)
   ============================================================ */
:root{
  --sgw-ink:#17151a; --sgw-ink-2:#3f3a44; --sgw-muted:#76707a;
  --sgw-bg:#ffffff; --sgw-bg-warm:#f6f3ee; --sgw-dark:#16141a;
  --sgw-line:#ece7df; --sgw-line-2:#ddd6cb;
  --sgw-gold:#a9823f; --sgw-gold-2:#c6a05c;
  --sgw-serif:"Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sgw-sans:"Jost", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --sgw-radius:8px; --sgw-radius-lg:14px;
  --sgw-shadow:0 10px 34px rgba(22,18,26,.09); --sgw-shadow-sm:0 2px 12px rgba(22,18,26,.06);
  --sgw-container:1180px;
}


/* ===== surface: foundation-content (11875 chars) ===== */
/* ============================================================
   FOUNDATION + CONTENT / POLICY PAGES  (surface: foundation-content)
   Loads after the theme stylesheet; uses shared :root tokens.
   ============================================================ */

/* ---- Foundation: base typography ---- */
body {
  font-family: var(--sgw-sans);
  color: var(--sgw-ink);
  background: var(--sgw-bg);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--sgw-serif);
  color: var(--sgw-ink);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: .005em;
}

a {
  color: var(--sgw-ink);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}
a:hover { color: var(--sgw-gold); }

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--sgw-gold);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---- Generic section wrapper ---- */
.sgw-section {
  padding: clamp(40px, 6vw, 84px) 0;
}

.sgw-container {
  width: 100%;
  max-width: var(--sgw-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(18px, 5vw, 40px);
  padding-right: clamp(18px, 5vw, 40px);
  box-sizing: border-box;
}

/* ============================================================
   PAGE / POLICY ARTICLE
   page.php: .sgw-section > .sgw-container > article.post.page
   ============================================================ */
.sgw-section article.page,
.sgw-section article.post,
.sgw-section .sgw-policy-page {
  color: var(--sgw-ink);
}

/* Page H1 — elegant serif with short gold underline */
.sgw-section article.page > h1,
.sgw-section article.post > h1,
.sgw-section .sgw-policy-page > h1 {
  font-family: var(--sgw-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: .005em;
  color: var(--sgw-ink);
  margin: 0 0 .55em;
  padding-bottom: .42em;
  position: relative;
}
.sgw-section article.page > h1::after,
.sgw-section article.post > h1::after,
.sgw-section .sgw-policy-page > h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 2px;
  background: var(--sgw-gold);
}

/* Constrain reading measure for prose (~70ch) */
.sgw-section article.page > p,
.sgw-section article.page > ul,
.sgw-section article.page > ol,
.sgw-section article.page > h2,
.sgw-section article.page > h3,
.sgw-section article.page > h4,
.sgw-section article.post > p,
.sgw-section article.post > ul,
.sgw-section article.post > ol,
.sgw-section article.post > h2,
.sgw-section article.post > h3,
.sgw-section article.post > h4,
.sgw-section .sgw-policy-page > p,
.sgw-section .sgw-policy-page > ul,
.sgw-section .sgw-policy-page > ol,
.sgw-section .sgw-policy-page > h2,
.sgw-section .sgw-policy-page > h3,
.sgw-section .sgw-policy-page > h4 {
  max-width: 70ch;
}

/* Section headings inside content */
.sgw-section article.page h2,
.sgw-section article.post h2,
.sgw-section .sgw-policy-page h2 {
  font-family: var(--sgw-serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.22;
  color: var(--sgw-ink);
  margin: 2.1em 0 .5em;
  padding-top: .15em;
}
.sgw-section article.page h3,
.sgw-section article.post h3,
.sgw-section .sgw-policy-page h3 {
  font-family: var(--sgw-serif);
  font-weight: 600;
  font-size: clamp(1.18rem, 1.8vw, 1.35rem);
  color: var(--sgw-ink-2);
  margin: 1.7em 0 .45em;
}
.sgw-section article.page h4,
.sgw-section article.post h4,
.sgw-section .sgw-policy-page h4 {
  font-family: var(--sgw-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sgw-ink-2);
  margin: 1.6em 0 .4em;
}

/* Body prose */
.sgw-section article.page p,
.sgw-section article.post p,
.sgw-section .sgw-policy-page p {
  color: var(--sgw-ink);
  line-height: 1.75;
  margin: 0 0 1.05em;
}

.sgw-section article.page strong,
.sgw-section article.post strong,
.sgw-section .sgw-policy-page strong {
  font-weight: 600;
  color: var(--sgw-ink);
}

/* In-content links: subtle gold underline */
.sgw-section article.page a,
.sgw-section article.post a,
.sgw-section .sgw-policy-page a {
  color: var(--sgw-ink);
  border-bottom: 1px solid var(--sgw-line-2);
  transition: color 160ms ease, border-color 160ms ease;
}
.sgw-section article.page a:hover,
.sgw-section article.post a:hover,
.sgw-section .sgw-policy-page a:hover {
  color: var(--sgw-gold);
  border-bottom-color: var(--sgw-gold);
}

/* Lists */
.sgw-section article.page ul,
.sgw-section article.page ol,
.sgw-section article.post ul,
.sgw-section article.post ol,
.sgw-section .sgw-policy-page ul,
.sgw-section .sgw-policy-page ol {
  margin: 0 0 1.05em;
  padding-left: 1.35em;
}
.sgw-section article.page li,
.sgw-section article.post li,
.sgw-section .sgw-policy-page li {
  color: var(--sgw-ink);
  line-height: 1.7;
  margin: 0 0 .4em;
  padding-left: .25em;
}
.sgw-section article.page ul > li::marker,
.sgw-section article.post ul > li::marker,
.sgw-section .sgw-policy-page ul > li::marker {
  color: var(--sgw-gold);
}
.sgw-section article.page ol > li::marker,
.sgw-section article.post ol > li::marker,
.sgw-section .sgw-policy-page ol > li::marker {
  color: var(--sgw-muted);
  font-variant-numeric: tabular-nums;
}

/* Policy meta line under the H1 */
.sgw-policy-meta {
  font-family: var(--sgw-sans);
  font-size: .85rem;
  letter-spacing: .03em;
  color: var(--sgw-muted);
  margin: -.2em 0 2em !important;
  padding-bottom: 1.4em;
  border-bottom: 1px solid var(--sgw-line);
  max-width: none !important;
}

/* ============================================================
   BUSINESS INFORMATION CARD  (.sgw-policy-legal-entity)
   Override inline styles from the markup.
   ============================================================ */
.sgw-policy-legal-entity {
  max-width: 70ch;
  margin: 0 0 2.4rem !important;
  padding: 26px 30px !important;
  background: var(--sgw-bg-warm) !important;
  border: 1px solid var(--sgw-line) !important;
  border-left: 3px solid var(--sgw-gold) !important;
  border-radius: var(--sgw-radius-lg) !important;
  box-shadow: var(--sgw-shadow-sm);
  box-sizing: border-box;
}

.sgw-policy-legal-entity h2 {
  font-family: var(--sgw-sans) !important;
  font-size: .72rem !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase;
  color: var(--sgw-gold) !important;
  margin: 0 0 .95rem !important;
  padding: 0 0 .7rem !important;
  border-bottom: 1px solid var(--sgw-line-2);
}

.sgw-policy-legal-entity p {
  font-family: var(--sgw-sans);
  font-size: .94rem;
  line-height: 1.55;
  color: var(--sgw-ink-2);
  margin: 0 0 .5rem !important;
  max-width: none !important;
}
.sgw-policy-legal-entity p:last-child {
  margin: .85rem 0 0 !important;
  padding-top: .85rem;
  border-top: 1px solid var(--sgw-line);
  font-size: .86rem;
  color: var(--sgw-muted);
}

.sgw-policy-legal-entity strong {
  display: inline-block;
  min-width: 9.5rem;
  font-weight: 600;
  color: var(--sgw-ink);
}

/* ============================================================
   PRIMARY CTA  (.sgw-button)
   ============================================================ */
.sgw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--sgw-sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  background: var(--sgw-ink);
  border: 1px solid var(--sgw-ink);
  border-radius: var(--sgw-radius);
  padding: 14px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.sgw-button:hover {
  color: #fff;
  background: var(--sgw-ink-2);
  transform: translateY(-1px);
  box-shadow: var(--sgw-shadow-sm);
  border-bottom: 1px solid var(--sgw-ink-2);
}
.sgw-button:active { transform: translateY(0); }

/* ============================================================
   CONTACT FORM 7  (.wpcf7)
   ============================================================ */
.wpcf7 {
  max-width: 70ch;
  margin-top: 1.5rem;
}
.wpcf7 label {
  display: block;
  font-family: var(--sgw-sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--sgw-ink-2);
  margin-bottom: 1.1rem;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--sgw-sans);
  font-size: .95rem;
  line-height: 1.5;
  color: var(--sgw-ink);
  background: var(--sgw-bg);
  border: 1px solid var(--sgw-line-2);
  border-radius: var(--sgw-radius);
  padding: 12px 14px;
  margin-top: .4rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.wpcf7 textarea { min-height: 150px; resize: vertical; }

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: var(--sgw-muted); }

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--sgw-gold);
  box-shadow: 0 0 0 3px rgba(169, 130, 63, .15);
}

/* CF7 submit button -> styled like .sgw-button */
.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"],
.wpcf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sgw-sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  background: var(--sgw-ink);
  border: 1px solid var(--sgw-ink);
  border-radius: var(--sgw-radius);
  padding: 14px 30px;
  margin-top: .5rem;
  cursor: pointer;
  width: auto;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
  background: var(--sgw-ink-2);
  transform: translateY(-1px);
  box-shadow: var(--sgw-shadow-sm);
}

/* CF7 validation / response messaging */
.wpcf7 .wpcf7-not-valid-tip {
  color: #b03a2e;
  font-size: .78rem;
  letter-spacing: .02em;
  margin-top: .35rem;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #d9a59e !important;
  box-shadow: 0 0 0 3px rgba(176, 58, 46, .12);
}
.wpcf7 .wpcf7-response-output {
  font-family: var(--sgw-sans);
  font-size: .88rem;
  line-height: 1.5;
  border-radius: var(--sgw-radius);
  padding: 12px 16px;
  margin: 1.4rem 0 0 !important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output { border-color: #d9a59e; }
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--sgw-gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  body { font-size: 15.5px; }
  .sgw-section { padding: clamp(34px, 7vw, 60px) 0; }
  .sgw-section article.page h2,
  .sgw-section article.post h2,
  .sgw-section .sgw-policy-page h2 { margin-top: 1.8em; }
}

@media (max-width: 640px) {
  body { font-size: 15px; line-height: 1.68; }
  .sgw-section article.page > h1,
  .sgw-section article.post > h1,
  .sgw-section .sgw-policy-page > h1 { font-size: clamp(1.85rem, 8vw, 2.3rem); }
  .sgw-policy-legal-entity {
    padding: 20px 18px !important;
    border-radius: var(--sgw-radius);
  }
  .sgw-policy-legal-entity strong { min-width: 0; display: block; margin-bottom: 1px; }
  .wpcf7 input[type="submit"],
  .wpcf7 button[type="submit"],
  .wpcf7 .wpcf7-submit { width: 100%; }
}

/* ===== surface: chrome (17655 chars) ===== */
/* =====================================================================
   CHROME SURFACE — Header + Footer (SGW Boutique)
   Premium minimal luxury-watch aesthetic. Loads AFTER theme stylesheet.
   ===================================================================== */

/* ---------- Top promo bar ---------- */
.sgw-topbar{
  background:var(--sgw-dark)!important;
  color:#efe9df!important;
  text-align:center!important;
  font-family:var(--sgw-sans)!important;
  font-size:11.5px!important;
  font-weight:500!important;
  letter-spacing:.18em!important;
  text-transform:uppercase!important;
  line-height:1!important;
  padding:10px 16px!important;
  margin:0!important;
  border-bottom:1px solid rgba(201,162,92,.22)!important;
}

/* ---------- Header shell ---------- */
.sgw-header{
  background:var(--sgw-bg)!important;
  border-bottom:1px solid var(--sgw-line)!important;
  position:relative;
  z-index:60;
}
.sgw-header__inner{
  display:flex!important;
  align-items:center!important;
  gap:24px!important;
  min-height:74px!important;
  padding-top:8px!important;
  padding-bottom:8px!important;
}

/* ---------- Logo ---------- */
.sgw-logo{
  order:2;
  margin:0 auto!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  font-family:var(--sgw-serif)!important;
  font-size:26px!important;
  font-weight:600!important;
  letter-spacing:.04em!important;
  line-height:1!important;
  color:var(--sgw-ink)!important;
  text-decoration:none!important;
  white-space:nowrap;
  transition:opacity 160ms ease;
}
.sgw-logo:hover{opacity:.78!important;}
.sgw-logo img{
  display:block!important;
  max-height:46px!important;
  width:auto!important;
}

/* ---------- Primary nav ---------- */
.sgw-nav{
  order:1;
  flex:1 1 auto;
  display:flex!important;
  align-items:center!important;
  min-width:0;
}
.sgw-nav ul{
  display:flex!important;
  flex-wrap:wrap;
  align-items:center!important;
  gap:6px 22px!important;
  list-style:none!important;
  margin:0!important;
  padding:0!important;
}
.sgw-nav li{margin:0!important;padding:0!important;list-style:none!important;}
.sgw-nav a{
  position:relative;
  display:inline-block!important;
  font-family:var(--sgw-sans)!important;
  font-size:12px!important;
  font-weight:500!important;
  letter-spacing:.12em!important;
  text-transform:uppercase!important;
  color:var(--sgw-ink-2)!important;
  text-decoration:none!important;
  padding:6px 0!important;
  line-height:1.3!important;
  transition:color 160ms ease;
}
.sgw-nav a::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:1.5px;
  background:var(--sgw-gold);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform 180ms ease;
}
.sgw-nav a:hover,
.sgw-nav a:focus-visible,
.sgw-nav .current-menu-item>a,
.sgw-nav .current_page_item>a{color:var(--sgw-ink)!important;}
.sgw-nav a:hover::after,
.sgw-nav a:focus-visible::after,
.sgw-nav .current-menu-item>a::after,
.sgw-nav .current_page_item>a::after{transform:scaleX(1);}

/* ---------- Header actions ---------- */
.sgw-actions{
  order:3;
  display:flex!important;
  align-items:center!important;
  gap:18px!important;
  flex:0 0 auto;
}
.sgw-actions>a{
  font-family:var(--sgw-sans)!important;
  font-size:12px!important;
  font-weight:500!important;
  letter-spacing:.1em!important;
  text-transform:uppercase!important;
  color:var(--sgw-ink-2)!important;
  text-decoration:none!important;
  white-space:nowrap;
  transition:color 150ms ease;
}
.sgw-actions>a:hover,
.sgw-actions>a:focus-visible{color:var(--sgw-gold)!important;}
.sgw-cart-link{
  font-weight:600!important;
  color:var(--sgw-ink)!important;
}

/* ---------- Header search ---------- */
.sgw-header-search{
  display:flex!important;
  align-items:center!important;
  background:var(--sgw-bg-warm)!important;
  border:1px solid var(--sgw-line)!important;
  border-radius:var(--sgw-radius)!important;
  overflow:hidden;
  height:38px;
  transition:border-color 150ms ease,box-shadow 150ms ease;
}
.sgw-header-search:focus-within{
  border-color:var(--sgw-line-2)!important;
  box-shadow:var(--sgw-shadow-sm)!important;
}
.sgw-header-search input[type="search"]{
  border:0!important;
  outline:0!important;
  background:transparent!important;
  font-family:var(--sgw-sans)!important;
  font-size:13.5px!important;
  color:var(--sgw-ink)!important;
  padding:0 8px 0 14px!important;
  width:130px;
  height:36px!important;
  box-shadow:none!important;
}
.sgw-header-search input[type="search"]::placeholder{color:var(--sgw-muted)!important;}
.sgw-header-search button{
  border:0!important;
  background:transparent!important;
  font-family:var(--sgw-sans)!important;
  font-size:11px!important;
  font-weight:600!important;
  letter-spacing:.1em!important;
  text-transform:uppercase!important;
  color:var(--sgw-ink-2)!important;
  padding:0 14px!important;
  height:36px!important;
  cursor:pointer;
  transition:color 150ms ease;
}
.sgw-header-search button:hover{color:var(--sgw-gold)!important;}

/* ---------- Menu toggle (mobile) ---------- */
.sgw-menu-toggle{
  order:0;
  display:none;
  position:relative;
  width:42px;height:42px;
  border:1px solid var(--sgw-line)!important;
  border-radius:var(--sgw-radius)!important;
  background:var(--sgw-bg)!important;
  cursor:pointer;
  padding:0!important;
  flex:0 0 auto;
  transition:border-color 150ms ease,background 150ms ease;
}
.sgw-menu-toggle:hover{border-color:var(--sgw-line-2)!important;}
.sgw-menu-toggle span,
.sgw-menu-toggle span::before,
.sgw-menu-toggle span::after{
  content:"";
  position:absolute;
  left:50%;
  width:18px;height:1.6px;
  background:var(--sgw-ink)!important;
  transform:translateX(-50%);
  transition:transform 180ms ease,opacity 140ms ease;
}
.sgw-menu-toggle span{top:50%;margin-top:-.8px;}
.sgw-menu-toggle span::before{top:-6px;}
.sgw-menu-toggle span::after{top:6px;}
.sgw-mobile-menu-open .sgw-menu-toggle span{background:transparent!important;}
.sgw-mobile-menu-open .sgw-menu-toggle span::before{top:0;transform:translateX(-50%) rotate(45deg);}
.sgw-mobile-menu-open .sgw-menu-toggle span::after{top:0;transform:translateX(-50%) rotate(-45deg);}

/* ---------- Mobile panel ---------- */
.sgw-mobile-panel{
  background:var(--sgw-bg)!important;
  border-top:1px solid var(--sgw-line)!important;
  border-bottom:1px solid var(--sgw-line)!important;
  padding:18px 20px 22px!important;
}
.sgw-mobile-search{
  display:flex!important;
  align-items:center!important;
  background:var(--sgw-bg-warm)!important;
  border:1px solid var(--sgw-line)!important;
  border-radius:var(--sgw-radius)!important;
  overflow:hidden;
  margin-bottom:16px!important;
}
.sgw-mobile-search input[type="search"]{
  flex:1 1 auto;
  border:0!important;background:transparent!important;outline:0!important;
  font-family:var(--sgw-sans)!important;font-size:15px!important;
  color:var(--sgw-ink)!important;padding:11px 14px!important;box-shadow:none!important;
}
.sgw-mobile-search input[type="search"]::placeholder{color:var(--sgw-muted)!important;}
.sgw-mobile-search button{
  border:0!important;background:transparent!important;cursor:pointer;
  font-family:var(--sgw-sans)!important;font-size:11px!important;font-weight:600!important;
  letter-spacing:.1em!important;text-transform:uppercase!important;
  color:var(--sgw-ink-2)!important;padding:0 16px!important;align-self:stretch;
}
.sgw-mobile-search button:hover{color:var(--sgw-gold)!important;}
.sgw-mobile-panel a{
  display:block!important;
  font-family:var(--sgw-sans)!important;
  font-size:14px!important;
  font-weight:500!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
  color:var(--sgw-ink)!important;
  text-decoration:none!important;
  padding:13px 4px!important;
  border-bottom:1px solid var(--sgw-line)!important;
  transition:color 150ms ease,padding-left 150ms ease;
}
.sgw-mobile-panel a:last-child{border-bottom:0!important;}
.sgw-mobile-panel a:hover,
.sgw-mobile-panel a:focus-visible{
  color:var(--sgw-gold)!important;
  padding-left:10px!important;
}

/* ---------- Secondary category bar (mega) ---------- */
.sgw-mega{
  background:var(--sgw-bg-warm)!important;
  border-bottom:1px solid var(--sgw-line)!important;
}
.sgw-mega__inner{
  display:flex!important;
  flex-wrap:wrap;
  align-items:center!important;
  justify-content:center!important;
  gap:4px 30px!important;
  max-width:var(--sgw-container);
  margin:0 auto!important;
  padding:11px 20px!important;
  list-style:none!important;
}
.sgw-mega__inner ul{
  display:flex!important;flex-wrap:wrap;align-items:center!important;justify-content:center!important;
  gap:4px 30px!important;list-style:none!important;margin:0!important;padding:0!important;width:100%;
}
.sgw-mega__inner li{margin:0!important;padding:0!important;list-style:none!important;}
.sgw-mega__inner a{
  font-family:var(--sgw-sans)!important;
  font-size:11.5px!important;
  font-weight:500!important;
  letter-spacing:.14em!important;
  text-transform:uppercase!important;
  color:var(--sgw-muted)!important;
  text-decoration:none!important;
  padding:4px 0!important;
  transition:color 150ms ease;
}
.sgw-mega__inner a:hover,
.sgw-mega__inner a:focus-visible{color:var(--sgw-gold)!important;}

/* =====================================================================
   FOOTER
   ===================================================================== */
.sgw-footer{
  background:var(--sgw-dark)!important;
  color:#cdc7bf!important;
  font-family:var(--sgw-sans)!important;
  border-top:3px solid var(--sgw-gold)!important;
  padding:64px 0 0!important;
  margin-top:0!important;
}
.sgw-footer .sgw-container{max-width:var(--sgw-container);margin:0 auto;padding-left:20px;padding-right:20px;}

.sgw-footer__grid{
  display:grid!important;
  grid-template-columns:1.5fr 1fr 1fr 1fr 1.4fr;
  gap:44px 40px!important;
  padding-bottom:54px!important;
}

/* Footer headings */
.sgw-footer h2,
.sgw-footer h3{
  font-family:var(--sgw-sans)!important;
  font-size:12px!important;
  font-weight:600!important;
  letter-spacing:.16em!important;
  text-transform:uppercase!important;
  color:var(--sgw-gold-2)!important;
  margin:0 0 18px!important;
  line-height:1.3!important;
}
.sgw-footer h2{
  font-family:var(--sgw-serif)!important;
  font-size:24px!important;
  letter-spacing:.03em!important;
  text-transform:none!important;
  color:#fff!important;
  margin-bottom:14px!important;
}

/* Footer links */
.sgw-footer ul{list-style:none!important;margin:0!important;padding:0!important;}
.sgw-footer li{margin:0 0 11px!important;padding:0!important;list-style:none!important;}
.sgw-footer a{
  color:#b7b1a8!important;
  text-decoration:none!important;
  font-size:14px!important;
  line-height:1.5!important;
  transition:color 150ms ease;
}
.sgw-footer ul a:hover,
.sgw-footer ul a:focus-visible{color:#fff!important;}

/* Company column */
.sgw-footer__logo{display:block!important;max-height:42px!important;width:auto!important;margin-bottom:16px!important;}
.sgw-footer-company__name{
  font-size:13px!important;font-weight:600!important;letter-spacing:.04em!important;
  color:#e8e2d8!important;margin:0 0 10px!important;
}
.sgw-footer-company__description{
  font-size:14px!important;line-height:1.7!important;color:#9c958c!important;
  margin:0 0 16px!important;max-width:34ch;
}
.sgw-footer-company__contact{
  display:block!important;font-size:14px!important;color:#cdc7bf!important;
  margin:0 0 6px!important;transition:color 150ms ease;
}
.sgw-footer-company__contact:hover{color:var(--sgw-gold-2)!important;}
.sgw-footer-company__address{
  font-size:13px!important;line-height:1.7!important;color:#8d877e!important;margin:14px 0 0!important;max-width:34ch;
}
.sgw-footer-mobile-links{display:none;}

/* Newsletter */
.sgw-newsletter{margin-top:22px!important;}
.sgw-newsletter label{
  display:block!important;
  font-size:12px!important;font-weight:600!important;letter-spacing:.16em!important;
  text-transform:uppercase!important;color:var(--sgw-gold-2)!important;margin-bottom:12px!important;
}
.sgw-newsletter>div{
  display:flex!important;align-items:stretch!important;
  background:rgba(255,255,255,.05)!important;
  border:1px solid rgba(255,255,255,.16)!important;
  border-radius:var(--sgw-radius)!important;
  overflow:hidden;
  transition:border-color 150ms ease;
}
.sgw-newsletter>div:focus-within{border-color:var(--sgw-gold)!important;}
.sgw-newsletter input[type="email"]{
  flex:1 1 auto;min-width:0;
  border:0!important;background:transparent!important;outline:0!important;box-shadow:none!important;
  font-family:var(--sgw-sans)!important;font-size:14px!important;color:#fff!important;
  padding:11px 14px!important;
}
.sgw-newsletter input[type="email"]::placeholder{color:#8d877e!important;}
.sgw-newsletter button{
  flex:0 0 auto;
  border:0!important;cursor:pointer;
  background:var(--sgw-gold)!important;color:#1a140a!important;
  font-family:var(--sgw-sans)!important;font-size:11.5px!important;font-weight:600!important;
  letter-spacing:.12em!important;text-transform:uppercase!important;
  padding:0 20px!important;
  transition:background 160ms ease;
}
.sgw-newsletter button:hover{background:var(--sgw-gold-2)!important;}
.sgw-newsletter__message{font-size:13px!important;color:#cdc7bf!important;margin:12px 0 0!important;}

/* ---------- Payment chips ---------- */
.sgw-payment-badges{
  display:flex!important;flex-wrap:wrap;gap:9px!important;margin-bottom:22px!important;
}
.sgw-pay{
  display:inline-flex!important;align-items:center!important;justify-content:center!important;
  min-width:58px;height:34px;padding:0 12px!important;
  background:#fff!important;
  border:1px solid rgba(255,255,255,.14)!important;
  border-radius:6px!important;
  font-family:var(--sgw-sans)!important;
  font-size:11.5px!important;font-weight:700!important;letter-spacing:.04em!important;
  line-height:1!important;
  box-shadow:var(--sgw-shadow-sm)!important;
  user-select:none;
}
.sgw-pay--visa{color:#1a1f71!important;font-style:italic!important;letter-spacing:.08em!important;}
.sgw-pay--mastercard{color:#cf4500!important;}
.sgw-pay--paypal{color:#003087!important;font-style:italic!important;}

/* ---------- U.S. business / trust block ---------- */
.sgw-us-notices{
  display:flex!important;flex-direction:column!important;gap:14px!important;
  background:rgba(255,255,255,.035)!important;
  border:1px solid rgba(201,162,92,.22)!important;
  border-left:2px solid var(--sgw-gold)!important;
  border-radius:var(--sgw-radius)!important;
  padding:16px 18px!important;
}
.sgw-us-notices>div{display:block!important;}
.sgw-us-notices strong{
  display:block!important;
  font-size:11px!important;font-weight:600!important;letter-spacing:.12em!important;
  text-transform:uppercase!important;color:var(--sgw-gold-2)!important;margin-bottom:5px!important;
}
.sgw-us-notices span{
  display:block!important;font-size:12.5px!important;line-height:1.65!important;color:#a8a299!important;
}

/* ---------- Footer bottom ---------- */
.sgw-footer__bottom{
  border-top:1px solid rgba(255,255,255,.1)!important;
  padding:24px 0!important;
  text-align:center!important;
  font-size:12px!important;letter-spacing:.06em!important;
  color:#8d877e!important;
}

/* ---------- Focus-visible accessibility ---------- */
.sgw-header a:focus-visible,
.sgw-header button:focus-visible,
.sgw-mega__inner a:focus-visible,
.sgw-footer a:focus-visible,
.sgw-footer button:focus-visible,
.sgw-menu-toggle:focus-visible{
  outline:2px solid var(--sgw-gold)!important;
  outline-offset:3px!important;
  border-radius:3px;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width:1100px){
  .sgw-footer__grid{grid-template-columns:1.4fr 1fr 1fr;gap:40px 36px!important;}
  .sgw-footer-trust{grid-column:1 / -1;}
  .sgw-us-notices{max-width:560px;}
}

/* Tablet — collapse primary nav into the mobile toggle */
@media (max-width:900px){
  .sgw-menu-toggle{display:inline-flex!important;}
  .sgw-nav{display:none!important;}
  .sgw-header__inner{gap:14px!important;min-height:64px!important;}
  .sgw-logo{order:1;margin:0 auto 0 4px!important;font-size:22px!important;}
  .sgw-menu-toggle{order:0;}
  .sgw-actions{order:2;gap:14px!important;}
  .sgw-header-search{display:none!important;}
  .sgw-mega{display:none!important;}
}

@media (min-width:901px){
  .sgw-mobile-panel{display:none!important;}
}

@media (max-width:640px){
  .sgw-topbar{font-size:10px!important;letter-spacing:.14em!important;padding:9px 12px!important;}
  .sgw-header__inner{min-height:58px!important;}
  .sgw-logo{font-size:19px!important;}
  .sgw-logo img{max-height:38px!important;}
  .sgw-actions{gap:12px!important;}
  .sgw-actions>a{font-size:11px!important;letter-spacing:.06em!important;}

  .sgw-footer{padding-top:48px!important;}
  .sgw-footer__grid{
    grid-template-columns:1fr!important;
    gap:34px!important;
    padding-bottom:40px!important;
  }
  .sgw-footer-company__description,
  .sgw-footer-company__address{max-width:none!important;}
  /* Use the dedicated compact mobile link row inside the company block */
  .sgw-footer-mobile-links{
    display:flex!important;flex-wrap:wrap;gap:8px 18px!important;margin-top:20px!important;
    padding-top:18px!important;border-top:1px solid rgba(255,255,255,.1)!important;
  }
  .sgw-footer-mobile-links a{
    font-size:12px!important;letter-spacing:.06em!important;text-transform:uppercase!important;
    color:#b7b1a8!important;
  }
  .sgw-us-notices{padding:14px 15px!important;}
}

/* ===== surface: home (12571 chars) ===== */
/* ============================================================
   HOME / FRONT PAGE — premium refinement layer
   Loads after the theme stylesheet. Scoped to body.sgw-theme
   for specificity. Does NOT touch the marquee animation or
   the hero <video> element behaviour.
   ============================================================ */

/* ---------- HERO ---------- */
body.sgw-theme .sgw-home-hero--video{
  position:relative;
  isolation:isolate;
  min-height:clamp(560px,82vh,860px);
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
body.sgw-theme .sgw-home-hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

/* Layered overlay: bottom-weighted scrim for headline legibility
   plus a soft top vignette. Keeps the video clearly visible. */
body.sgw-theme .sgw-home-hero__overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg,
      rgba(13,11,16,.46) 0%,
      rgba(13,11,16,.12) 30%,
      rgba(13,11,16,.20) 58%,
      rgba(13,11,16,.66) 100%),
    radial-gradient(120% 90% at 18% 100%,
      rgba(13,11,16,.42) 0%,
      rgba(13,11,16,0) 60%);
  pointer-events:none;
}

body.sgw-theme .sgw-home-hero__copy{
  position:relative;
  z-index:2;
  width:100%;
  max-width:var(--sgw-container);
  margin:0 auto;
  padding:0 24px clamp(48px,7vw,96px);
  box-sizing:border-box;
}
body.sgw-theme .sgw-home-hero__copy > div{
  max-width:660px;
}

/* Eyebrow — was tiny; give it presence with gold + tracking + rule */
body.sgw-theme .sgw-home-hero__discount{
  display:inline-flex;
  align-items:center;
  gap:.7em;
  margin:0 0 18px;
  padding:0;
  font-family:var(--sgw-sans);
  font-size:13px;
  font-weight:500;
  line-height:1.2;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:var(--sgw-gold-2);
}
body.sgw-theme .sgw-home-hero__discount::before{
  content:"";
  width:34px;
  height:1px;
  background:var(--sgw-gold);
  opacity:.9;
}

body.sgw-theme .sgw-home-hero__copy h1{
  margin:0 0 26px;
  font-family:var(--sgw-serif);
  font-weight:500;
  font-size:clamp(2.6rem,5.6vw,4.6rem);
  line-height:1.04;
  letter-spacing:-.005em;
  color:#fff;
  text-wrap:balance;
  text-shadow:0 2px 30px rgba(10,8,12,.35);
}

/* Primary button (also the global .sgw-button primary style) */
body.sgw-theme .sgw-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55em;
  padding:13px 26px;
  border:1px solid var(--sgw-ink);
  border-radius:var(--sgw-radius);
  background:var(--sgw-ink);
  color:#fff;
  font-family:var(--sgw-sans);
  font-size:14px;
  font-weight:500;
  line-height:1;
  letter-spacing:.05em;
  text-transform:uppercase;
  text-decoration:none;
  cursor:pointer;
  transition:transform .16s ease, background-color .16s ease,
             box-shadow .16s ease, border-color .16s ease;
  box-shadow:0 6px 18px rgba(10,8,12,.18);
}
body.sgw-theme .sgw-button:hover{
  background:var(--sgw-ink-2);
  border-color:var(--sgw-ink-2);
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(10,8,12,.26);
  color:#fff;
}
body.sgw-theme .sgw-button:active{
  transform:translateY(0);
  box-shadow:0 4px 12px rgba(10,8,12,.2);
}
body.sgw-theme .sgw-button:focus-visible{
  outline:2px solid var(--sgw-gold);
  outline-offset:3px;
}
/* On the dark hero, give the CTA a luminous gold edge on hover */
body.sgw-theme .sgw-home-hero__copy .sgw-button:hover{
  background:var(--sgw-gold);
  border-color:var(--sgw-gold);
  color:#15110a;
}

/* ---------- BRAND MARQUEE (gentle refinement only) ----------
   The strip carries heavy inline !important styling and an
   animation we must not disturb. We only soften the surrounding
   rhythm and add a hairline of breathing room. */
body.sgw-theme .sgw-press-strip.sgw-brand-marquee{
  margin:0;
}

/* ---------- FEATURE COLLECTIONS RAIL ---------- */
body.sgw-theme .sgw-feature-collections{
  background:var(--sgw-bg);
  padding:clamp(54px,6vw,86px) 0;
}
body.sgw-theme .sgw-feature-collections__rail{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  width:100%;
  max-width:var(--sgw-container);
  margin:0 auto;
  padding:0 24px;
  box-sizing:border-box;
}

body.sgw-theme .sgw-feature-tile{
  position:relative;
  display:block;
  overflow:hidden;
  aspect-ratio:3/4;
  border-radius:var(--sgw-radius-lg);
  border:1px solid var(--sgw-line);
  background:var(--sgw-bg-warm);
  text-decoration:none;
  box-shadow:var(--sgw-shadow-sm);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
body.sgw-theme .sgw-feature-tile:hover{
  transform:translateY(-4px);
  border-color:var(--sgw-line-2);
  box-shadow:var(--sgw-shadow);
}
body.sgw-theme .sgw-feature-tile:focus-visible{
  outline:2px solid var(--sgw-gold);
  outline-offset:3px;
}
body.sgw-theme .sgw-feature-tile img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s cubic-bezier(.2,.6,.2,1);
}
body.sgw-theme .sgw-feature-tile:hover img{
  transform:scale(1.05);
}
/* readability scrim behind the label */
body.sgw-theme .sgw-feature-tile::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,
    rgba(16,14,18,0) 38%,
    rgba(16,14,18,.18) 62%,
    rgba(16,14,18,.74) 100%);
  transition:opacity .2s ease;
  pointer-events:none;
}
body.sgw-theme .sgw-feature-tile > span{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:1;
  padding:18px 16px 16px;
  font-family:var(--sgw-serif);
  font-weight:500;
  font-size:1.42rem;
  line-height:1.1;
  letter-spacing:.01em;
  color:#fff;
  text-align:center;
}
/* gold underline accent that grows on hover */
body.sgw-theme .sgw-feature-tile > span::after{
  content:"";
  display:block;
  width:18px;
  height:2px;
  margin:8px auto 0;
  background:var(--sgw-gold-2);
  transition:width .25s ease;
}
body.sgw-theme .sgw-feature-tile:hover > span::after{
  width:42px;
}

/* ---------- HOME PRODUCT SECTIONS ---------- */
body.sgw-theme .sgw-section.sgw-home-products{
  padding:clamp(56px,7vw,104px) 0;
  background:var(--sgw-bg);
}
body.sgw-theme .sgw-home-product-group{
  margin:0 auto;
}
body.sgw-theme .sgw-home-product-group + .sgw-home-product-group{
  margin-top:clamp(56px,7vw,96px);
}
/* alternate group gets warm paper feel via a hairline divider above */
body.sgw-theme .sgw-home-product-group + .sgw-home-product-group::before{
  content:"";
  display:block;
  width:100%;
  max-width:var(--sgw-container);
  height:1px;
  margin:0 auto clamp(46px,6vw,80px);
  background:var(--sgw-line);
}

/* Centered, elegant section header */
body.sgw-theme .sgw-home-product-group__head{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:0;
  max-width:680px;
  margin:0 auto clamp(34px,4vw,52px);
  padding:0 24px;
}
body.sgw-theme .sgw-home-product-group__head > div{
  display:flex;
  flex-direction:column;
  align-items:center;
}
body.sgw-theme .sgw-home-products__eyebrow{
  order:1;
  margin:0 0 14px;
  font-family:var(--sgw-sans);
  font-size:12px;
  font-weight:600;
  line-height:1.2;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--sgw-gold);
}
body.sgw-theme .sgw-home-product-group__head h2{
  order:2;
  margin:0;
  font-family:var(--sgw-serif);
  font-weight:500;
  font-size:clamp(2rem,3.6vw,3rem);
  line-height:1.08;
  letter-spacing:-.005em;
  color:var(--sgw-ink);
}
/* thin gold rule under the title */
body.sgw-theme .sgw-home-product-group__head h2::after{
  content:"";
  display:block;
  width:46px;
  height:2px;
  margin:18px auto 0;
  background:var(--sgw-gold);
  opacity:.85;
}
body.sgw-theme .sgw-home-product-group__head > div > p{
  order:3;
  margin:20px 0 0;
  max-width:560px;
  font-family:var(--sgw-sans);
  font-size:15.5px;
  line-height:1.7;
  color:var(--sgw-muted);
}
/* "View all" link — muted underline that warms to gold */
body.sgw-theme .sgw-home-product-group__head > a{
  order:4;
  margin-top:24px;
  font-family:var(--sgw-sans);
  font-size:13px;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
  text-decoration:none;
  color:var(--sgw-ink-2);
  border-bottom:1px solid var(--sgw-line-2);
  padding-bottom:4px;
  transition:color .16s ease, border-color .16s ease;
}
body.sgw-theme .sgw-home-product-group__head > a:hover{
  color:var(--sgw-gold);
  border-color:var(--sgw-gold);
}
body.sgw-theme .sgw-home-product-group__head > a:focus-visible{
  outline:2px solid var(--sgw-gold);
  outline-offset:3px;
}

/* ---------- TRUST BAR ---------- */
body.sgw-theme .sgw-trust{
  background:var(--sgw-bg-warm);
  border-top:1px solid var(--sgw-line);
  border-bottom:1px solid var(--sgw-line);
  padding:clamp(34px,4.5vw,58px) 0;
}
body.sgw-theme .sgw-trust__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  width:100%;
  max-width:var(--sgw-container);
  margin:0 auto;
  padding:0 24px;
  box-sizing:border-box;
}
body.sgw-theme .sgw-trust__item{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.6em;
  min-height:48px;
  padding:8px 22px;
  text-align:center;
  font-family:var(--sgw-sans);
  font-size:14px;
  font-weight:500;
  line-height:1.45;
  letter-spacing:.02em;
  color:var(--sgw-ink-2);
}
/* gold-dot 'icon feel' before each item */
body.sgw-theme .sgw-trust__item::before{
  content:"";
  flex:0 0 auto;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--sgw-gold);
  box-shadow:0 0 0 3px rgba(169,130,63,.14);
}
/* subtle vertical dividers between items */
body.sgw-theme .sgw-trust__item + .sgw-trust__item::after{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:28px;
  background:var(--sgw-line-2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:900px){
  body.sgw-theme .sgw-feature-collections__rail{
    grid-template-columns:repeat(3,1fr);
    gap:14px;
  }
  body.sgw-theme .sgw-feature-tile > span{
    font-size:1.24rem;
  }
  body.sgw-theme .sgw-trust__grid{
    grid-template-columns:repeat(2,1fr);
    gap:4px 0;
  }
  /* reset desktop dividers, draw a clean 2x2 grid border feel */
  body.sgw-theme .sgw-trust__item + .sgw-trust__item::after{
    display:none;
  }
  body.sgw-theme .sgw-trust__item{
    padding:14px 18px;
  }
  body.sgw-theme .sgw-trust__item:nth-child(odd)::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:26px;
    background:var(--sgw-line-2);
  }
}

@media (max-width:640px){
  body.sgw-theme .sgw-home-hero--video{
    min-height:clamp(480px,76vh,640px);
  }
  body.sgw-theme .sgw-home-hero__copy{
    padding-bottom:clamp(40px,12vw,64px);
  }
  body.sgw-theme .sgw-home-hero__discount{
    font-size:11px;
    letter-spacing:.2em;
    margin-bottom:14px;
  }
  body.sgw-theme .sgw-home-hero__discount::before{
    width:24px;
  }
  body.sgw-theme .sgw-home-hero__copy h1{
    font-size:clamp(2.1rem,9vw,3rem);
    margin-bottom:22px;
  }
  body.sgw-theme .sgw-button{
    padding:12px 22px;
    font-size:13px;
  }

  body.sgw-theme .sgw-feature-collections{
    padding:40px 0;
  }
  body.sgw-theme .sgw-feature-collections__rail{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    padding:0 16px;
  }
  body.sgw-theme .sgw-feature-tile > span{
    font-size:1.12rem;
    padding:14px 10px 12px;
  }

  body.sgw-theme .sgw-home-product-group__head{
    padding:0 16px;
  }
  body.sgw-theme .sgw-home-products__eyebrow{
    font-size:11px;
    letter-spacing:.2em;
  }
  body.sgw-theme .sgw-home-product-group__head > div > p{
    font-size:14.5px;
  }

  body.sgw-theme .sgw-trust__grid{
    grid-template-columns:1fr;
    padding:0 16px;
  }
  body.sgw-theme .sgw-trust__item{
    justify-content:flex-start;
    text-align:left;
    min-height:0;
    padding:11px 4px;
  }
  body.sgw-theme .sgw-trust__item + .sgw-trust__item{
    border-top:1px solid var(--sgw-line);
  }
  body.sgw-theme .sgw-trust__item:nth-child(odd)::after,
  body.sgw-theme .sgw-trust__item::after{
    display:none;
  }
}

/* Respect reduced-motion: calm the hover transforms */
@media (prefers-reduced-motion:reduce){
  body.sgw-theme .sgw-feature-tile,
  body.sgw-theme .sgw-feature-tile img,
  body.sgw-theme .sgw-button{
    transition:none;
  }
  body.sgw-theme .sgw-feature-tile:hover{
    transform:none;
  }
  body.sgw-theme .sgw-feature-tile:hover img{
    transform:none;
  }
}

/* ===== surface: cards-shop (17966 chars) ===== */
/* ==========================================================================
   SURFACE: cards-shop  (product cards, shop/archive, single product)
   Refined minimal luxury-watch aesthetic. Loads after the theme stylesheet,
   so targeted !important is used only where the base layer forces values.
   ========================================================================== */

/* --------------------------------------------------------------------------
   SHOP HERO  — replace cheap pink/peach with calm warm-paper, centered serif
   -------------------------------------------------------------------------- */
.sgw-shop-hero {
  background: var(--sgw-bg-warm) !important;
  background-image: none !important;
  border-bottom: 1px solid var(--sgw-line) !important;
  padding: clamp(34px, 6vw, 72px) 0 clamp(30px, 5vw, 60px) !important;
  text-align: center;
  color: var(--sgw-ink);
}
.sgw-shop-hero > .sgw-container {
  max-width: var(--sgw-container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}

.sgw-shop-hero__eyebrow {
  font-family: var(--sgw-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sgw-gold) !important;
  margin: 0 0 14px !important;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.sgw-shop-hero__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 34px;
  height: 1px;
  background: var(--sgw-gold);
  opacity: .65;
}

.sgw-shop-hero h1 {
  font-family: var(--sgw-serif) !important;
  font-weight: 500 !important;
  color: var(--sgw-ink) !important;
  font-size: clamp(2rem, 4.4vw, 3.1rem) !important;
  line-height: 1.08 !important;
  letter-spacing: .005em;
  margin: 0 auto 16px !important;
  max-width: 18ch;
}

.sgw-shop-hero__desc,
.sgw-shop-hero > .sgw-container > p {
  font-family: var(--sgw-sans);
  color: var(--sgw-muted) !important;
  font-size: clamp(.95rem, 1.4vw, 1.06rem);
  line-height: 1.7;
  max-width: 64ch;
  margin: 0 auto !important;
}
.sgw-shop-hero__desc p { margin: .4em auto; }

/* Breadcrumb inside the hero */
.sgw-shop-hero .sgw-breadcrumb {
  justify-content: center;
  margin: 0 0 18px !important;
}
.sgw-breadcrumb {
  font-family: var(--sgw-sans);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sgw-muted);
  opacity: 1;
}
.sgw-breadcrumb a {
  color: var(--sgw-muted);
  text-decoration: none;
  transition: color 160ms ease;
}
.sgw-breadcrumb a:hover { color: var(--sgw-gold); text-decoration: none; }

/* --------------------------------------------------------------------------
   SHOP TOOLBAR  — count / sort / view-icons row
   -------------------------------------------------------------------------- */
.sgw-shop-toolbar {
  background: var(--sgw-bg);
  border-bottom: 1px solid var(--sgw-line);
}
.sgw-shop-toolbar__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 16px;
  max-width: var(--sgw-container);
  margin: 0 auto;
}
.sgw-shop-count {
  font-family: var(--sgw-sans);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sgw-muted);
  margin-right: auto;
}
.sgw-shop-sort { display: flex; align-items: center; }
.sgw-shop-sort select,
.sgw-shop-sort .orderby {
  font-family: var(--sgw-sans) !important;
  font-size: 13px !important;
  color: var(--sgw-ink) !important;
  background: var(--sgw-bg) !important;
  border: 1px solid var(--sgw-line-2) !important;
  border-radius: var(--sgw-radius) !important;
  padding: 9px 34px 9px 14px !important;
  line-height: 1.2 !important;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--sgw-ink-2) 50%),
    linear-gradient(135deg, var(--sgw-ink-2) 50%, transparent 50%) !important;
  background-position:
    calc(100% - 16px) calc(50% - 2px),
    calc(100% - 11px) calc(50% - 2px) !important;
  background-size: 5px 5px, 5px 5px !important;
  background-repeat: no-repeat !important;
}
.sgw-shop-sort select:hover,
.sgw-shop-sort .orderby:hover { border-color: var(--sgw-ink-2) !important; }
.sgw-shop-sort select:focus-visible,
.sgw-shop-sort .orderby:focus-visible {
  outline: 2px solid var(--sgw-gold) !important;
  outline-offset: 2px;
}

.sgw-view-icons { display: flex; gap: 4px; }
.sgw-view-icons span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--sgw-line-2);
  background: transparent;
  border-radius: 1px;
  transition: background-color 160ms ease, border-color 160ms ease;
}
.sgw-view-icons span:first-child {
  background: var(--sgw-ink);
  border-color: var(--sgw-ink);
}

/* --------------------------------------------------------------------------
   SHOP LAYOUT  — sidebar + results spacing
   -------------------------------------------------------------------------- */
.sgw-shop-layout {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(40px, 6vw, 72px);
}

/* --------------------------------------------------------------------------
   SIDEBAR FILTERS  — tidy, calm filter UI
   -------------------------------------------------------------------------- */
.sgw-shop-sidebar details {
  border-bottom: 1px solid var(--sgw-line);
  padding: 4px 0 10px;
  margin: 0;
}
.sgw-shop-sidebar details:first-child { padding-top: 0; }
.sgw-shop-sidebar summary {
  font-family: var(--sgw-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sgw-ink);
  cursor: pointer;
  list-style: none;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 160ms ease;
}
.sgw-shop-sidebar summary::-webkit-details-marker { display: none; }
.sgw-shop-sidebar summary::after {
  content: "+";
  font-size: 15px;
  font-weight: 400;
  color: var(--sgw-muted);
  line-height: 1;
  transition: transform 180ms ease, color 160ms ease;
}
.sgw-shop-sidebar details[open] > summary::after { content: "\2013"; }
.sgw-shop-sidebar summary:hover { color: var(--sgw-gold); }
.sgw-shop-sidebar summary:hover::after { color: var(--sgw-gold); }

.sgw-filter-list {
  list-style: none;
  margin: 2px 0 6px;
  padding: 0;
}
.sgw-filter-list li { margin: 0; }

.sgw-filter-link,
.sgw-filter-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--sgw-sans);
  font-size: 14px;
  line-height: 1.4;
  color: var(--sgw-ink-2);
  text-decoration: none;
  padding: 7px 0;
  border-radius: var(--sgw-radius);
  transition: color 150ms ease, padding-left 150ms ease;
}
.sgw-filter-link span,
.sgw-filter-list a span { transition: inherit; }
.sgw-filter-link:hover,
.sgw-filter-list a:hover {
  color: var(--sgw-gold);
  padding-left: 6px;
}
.sgw-filter-link em,
.sgw-filter-list a em {
  font-style: normal;
  font-size: 11px;
  color: var(--sgw-muted);
  letter-spacing: .04em;
  flex: none;
}

.sgw-price-list {
  display: flex;
  flex-direction: column;
  margin-top: 2px;
}

.sgw-filter-list .current-cat > a,
li.current-cat > a {
  color: var(--sgw-ink) !important;
  font-weight: 600;
}
.sgw-filter-list .current-cat > a span,
li.current-cat > a span {
  position: relative;
}
.sgw-filter-list .current-cat > a span::after,
li.current-cat > a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--sgw-gold);
}

.sgw-filter-empty {
  font-family: var(--sgw-sans);
  font-size: 13px;
  color: var(--sgw-muted);
  margin: 6px 0 4px;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   PRODUCT GRID  — keep 4/3/2 columns working, refine gap
   -------------------------------------------------------------------------- */
.sgw-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px) clamp(16px, 1.8vw, 26px);
  align-items: stretch;
}

/* --------------------------------------------------------------------------
   PRODUCT CARD  — white surface, hairline border, calm hover
   -------------------------------------------------------------------------- */
.sgw-archive-card {
  display: flex;
  flex-direction: column;
  background: var(--sgw-bg);
  border: 1px solid var(--sgw-line);
  border-radius: var(--sgw-radius-lg);
  padding: 14px 14px 18px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}
.sgw-archive-card:hover {
  transform: translateY(-4px);
  border-color: var(--sgw-line-2);
  box-shadow: var(--sgw-shadow-sm);
}

/* Image area — consistent aspect, contained, subtle zoom on hover */
.sgw-archive-card__image {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--sgw-radius);
  overflow: hidden;
  background: var(--sgw-bg-warm);
  margin-bottom: 14px;
}
.sgw-archive-card__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: clamp(10px, 1.6vw, 20px);
  mix-blend-mode: multiply;
  transition: transform 380ms cubic-bezier(.2, .7, .2, 1) !important;
}
.sgw-archive-card:hover .sgw-archive-card__image img { transform: scale(1.045); }

/* Title — clamp to 2 lines, refined sans */
.sgw-archive-card__title {
  font-family: var(--sgw-sans) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  letter-spacing: .005em;
  margin: 0 0 8px !important;
  min-height: 2.9em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sgw-archive-card__title a {
  color: var(--sgw-ink) !important;
  text-decoration: none !important;
  transition: color 150ms ease;
}
.sgw-archive-card__title a:hover { color: var(--sgw-gold) !important; }

/* Price — clear, medium weight */
.sgw-archive-card__price {
  font-family: var(--sgw-sans) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--sgw-ink) !important;
  letter-spacing: .01em;
  margin: 0 0 6px !important;
}
.sgw-archive-card__price del {
  color: var(--sgw-muted) !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  margin-right: 6px;
  opacity: .8;
}
.sgw-archive-card__price ins {
  text-decoration: none !important;
  color: var(--sgw-gold) !important;
}
.sgw-archive-card__price .woocommerce-Price-amount { color: inherit; }

/* Stock chip — small, subtle */
.sgw-archive-card__stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sgw-sans);
  font-size: 11px !important;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 14px !important;
}
.sgw-archive-card__stock::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: none;
}
.sgw-archive-card__stock.is-instock { color: #1a7f4b !important; }
.sgw-archive-card__stock.is-instock::before { background: #1a9c59; }
.sgw-archive-card__stock.is-oos { color: var(--sgw-muted) !important; }
.sgw-archive-card__stock.is-oos::before { background: #b9b3aa; }

/* --------------------------------------------------------------------------
   CARD ACTIONS  — primary solid ink / secondary outline (lighter)
   -------------------------------------------------------------------------- */
.sgw-archive-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.sgw-archive-card__button {
  flex: 1 1 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px !important;
  font-family: var(--sgw-sans) !important;
  font-size: 11.5px !important;
  font-weight: 500 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none !important;
  border-radius: var(--sgw-radius) !important;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease,
              border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease !important;
}
.sgw-archive-card__button:focus-visible {
  outline: 2px solid var(--sgw-gold) !important;
  outline-offset: 2px;
}

/* Primary — solid ink */
.sgw-archive-card__button--buy {
  background: var(--sgw-ink) !important;
  color: #fff !important;
  border: 1px solid var(--sgw-ink) !important;
}
.sgw-archive-card__button--buy:hover {
  background: var(--sgw-ink-2) !important;
  border-color: var(--sgw-ink-2) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--sgw-shadow-sm) !important;
}

/* Secondary — outline, lighter (NOT a heavy black slab) */
.sgw-archive-card__button--cart {
  background: transparent !important;
  color: var(--sgw-ink) !important;
  border: 1px solid var(--sgw-line-2) !important;
}
.sgw-archive-card__button--cart:hover {
  background: var(--sgw-ink) !important;
  border-color: var(--sgw-ink) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.sgw-archive-card__button--cart.loading,
.sgw-archive-card__button--cart.added { opacity: .85; }
.sgw-archive-card__button--cart.added::after {
  border-color: currentColor !important;
}

/* View details — full-width outline */
.sgw-archive-card__button--view {
  flex: 1 1 100%;
  background: transparent !important;
  color: var(--sgw-ink) !important;
  border: 1px solid var(--sgw-line-2) !important;
}
.sgw-archive-card__button--view:hover {
  background: var(--sgw-ink) !important;
  border-color: var(--sgw-ink) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   PAGINATION
   -------------------------------------------------------------------------- */
.sgw-shop-results .woocommerce-pagination {
  margin-top: clamp(28px, 4vw, 44px);
  text-align: center;
}
.sgw-shop-results .woocommerce-pagination ul {
  display: inline-flex;
  gap: 6px;
  border: 0 !important;
}
.sgw-shop-results .woocommerce-pagination ul li { border: 0 !important; }
.sgw-shop-results .woocommerce-pagination a.page-numbers,
.sgw-shop-results .woocommerce-pagination span.page-numbers {
  font-family: var(--sgw-sans) !important;
  font-size: 13px !important;
  min-width: 40px;
  min-height: 40px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 8px !important;
  border: 1px solid var(--sgw-line) !important;
  border-radius: var(--sgw-radius) !important;
  background: var(--sgw-bg) !important;
  color: var(--sgw-ink-2) !important;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}
.sgw-shop-results .woocommerce-pagination a.page-numbers:hover {
  border-color: var(--sgw-ink-2) !important;
  color: var(--sgw-ink) !important;
}
.sgw-shop-results .woocommerce-pagination span.page-numbers.current {
  background: var(--sgw-ink) !important;
  border-color: var(--sgw-ink) !important;
  color: #fff !important;
}

/* --------------------------------------------------------------------------
   SINGLE PRODUCT  — refined spacing / breadcrumb typography
   -------------------------------------------------------------------------- */
.sgw-product-page {
  background: var(--sgw-bg) !important;
  padding-top: clamp(18px, 3vw, 40px) !important;
}
.sgw-product-shell {
  max-width: var(--sgw-container);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}
.sgw-product-breadcrumb {
  margin-bottom: clamp(16px, 2.4vw, 28px);
}
.sgw-product-breadcrumb .woocommerce-breadcrumb,
.woocommerce-breadcrumb {
  font-family: var(--sgw-sans) !important;
  font-size: 11px !important;
  letter-spacing: .1em !important;
  text-transform: uppercase;
  color: var(--sgw-muted) !important;
  margin: 0 !important;
  padding: 0 !important;
}
.sgw-product-breadcrumb .woocommerce-breadcrumb a,
.woocommerce-breadcrumb a {
  color: var(--sgw-muted) !important;
  text-decoration: none !important;
  transition: color 150ms ease;
}
.sgw-product-breadcrumb .woocommerce-breadcrumb a:hover,
.woocommerce-breadcrumb a:hover { color: var(--sgw-gold) !important; }
.sgw-product-breadcrumb .woocommerce-breadcrumb span[aria-hidden="true"],
.woocommerce-breadcrumb .delimiter {
  margin: 0 8px;
  color: var(--sgw-line-2) !important;
}

/* --------------------------------------------------------------------------
   RESPONSIVE  — tablet (<=900) and mobile (<=640)
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .sgw-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sgw-shop-toolbar__inner { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .sgw-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }
  .sgw-archive-card {
    padding: 10px 10px 14px;
    border-radius: var(--sgw-radius);
  }
  .sgw-archive-card__title {
    font-size: 13px !important;
    min-height: 2.7em;
  }
  .sgw-archive-card__price { font-size: 14.5px !important; }
  .sgw-archive-card__actions { flex-direction: column; }
  .sgw-archive-card__button {
    flex: 1 1 100%;
    min-height: 42px;
    font-size: 11px !important;
  }
  .sgw-shop-hero { padding-top: 30px !important; padding-bottom: 26px !important; }
  .sgw-shop-toolbar__inner { gap: 12px; }
  .sgw-shop-count { width: 100%; margin-right: 0; }
}

/* Honor reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .sgw-archive-card,
  .sgw-archive-card__image img,
  .sgw-archive-card__button { transition: none !important; }
  .sgw-archive-card:hover { transform: none; }
  .sgw-archive-card:hover .sgw-archive-card__image img { transform: none; }
}
/* ============================================================
   SPECIFICITY BOOSTERS — beat the theme's `body.sgw-theme … !important`
   patch rules that out-specify single-class polish selectors.
   ============================================================ */
body.sgw-theme .sgw-shop-hero{
  background:var(--sgw-bg-warm)!important;
  background-image:none!important;
  border-bottom:1px solid var(--sgw-line)!important;
}
body.sgw-theme .sgw-shop-hero__eyebrow{ color:var(--sgw-gold)!important; }
body.sgw-theme .sgw-shop-hero h1{ color:var(--sgw-ink)!important; }
body.sgw-theme .sgw-shop-hero p:last-child{ color:var(--sgw-muted)!important; }

/* Neutralize the theme's pinkish "warm" palette -> premium neutral cream */
body.sgw-theme{ background:#faf8f4 !important; color:var(--sgw-ink) !important; }
body.sgw-theme .sgw-feature-collections{ background:#faf8f4 !important; }
body.sgw-theme .sgw-home-products{ background:var(--sgw-bg) !important; }
body.sgw-theme .sgw-home-product-group{ border-top-color:var(--sgw-line) !important; }
body.sgw-theme .sgw-product-card__image,
body.sgw-theme .sgw-archive-card__image{ background:#f4f1ea !important; border:1px solid var(--sgw-line) !important; }
body.sgw-theme .sgw-shop-toolbar{ background:transparent !important; border-color:var(--sgw-line) !important; }
body.sgw-theme .sgw-shop-toolbar__inner{ border:1px solid var(--sgw-line) !important; background:var(--sgw-bg) !important; }
body.sgw-theme .sgw-shop-layout{ background:var(--sgw-bg) !important; }
body.sgw-theme .sgw-shop-sidebar{ border:1px solid var(--sgw-line) !important; background:var(--sgw-bg-warm) !important; }
body.sgw-theme .sgw-shop-sidebar details{ border-color:var(--sgw-line) !important; background:var(--sgw-bg) !important; }
body.sgw-theme .sgw-shop-sidebar .sgw-filter-list li a em,
body.sgw-theme .sgw-shop-sidebar .sgw-filter-link em{ background:var(--sgw-bg-warm) !important; color:var(--sgw-muted) !important; }
body.sgw-theme .sgw-trust{ background:var(--sgw-bg-warm) !important; border-color:var(--sgw-line) !important; }
body.sgw-theme .sgw-trust__item{ color:var(--sgw-ink) !important; border-color:var(--sgw-line) !important; }
body.sgw-theme .sgw-feature-tile{ border:1px solid var(--sgw-line-2) !important; }

/* ============================================================
   CART + CHECKOUT  (default WooCommerce templates; WC default
   CSS is disabled by the theme, so style from scratch here)
   ============================================================ */

/* ---- shared notices ---- */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
.cart-empty {
  font-family: var(--sgw-sans) !important;
  font-size: .92rem !important;
  color: var(--sgw-ink) !important;
  background: var(--sgw-bg-warm) !important;
  border: 1px solid var(--sgw-line) !important;
  border-left: 3px solid var(--sgw-gold) !important;
  border-radius: var(--sgw-radius) !important;
  padding: 14px 18px !important;
  margin: 0 0 26px !important;
  list-style: none !important;
}
.woocommerce-message a, .woocommerce-info a { color: var(--sgw-gold) !important; }
.woocommerce-error { border-left-color:#b4452f !important; }

/* ---- buttons: brand ink, never navy ---- */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce .button.alt, .woocommerce #place_order,
.wc-proceed-to-checkout a.checkout-button {
  font-family: var(--sgw-sans) !important;
  background: var(--sgw-ink) !important;
  color: #fff !important;
  border: 1px solid var(--sgw-ink) !important;
  border-radius: var(--sgw-radius) !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  font-size: .8rem !important;
  font-weight: 500 !important;
  padding: 14px 26px !important;
  transition: background 160ms ease, transform 160ms ease !important;
  box-shadow: none !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce .button.alt:hover, .woocommerce #place_order:hover,
.wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--sgw-ink-2) !important;
  transform: translateY(-1px) !important;
}
/* secondary (update cart / apply coupon) = outline */
.woocommerce td.actions button[name="update_cart"],
.woocommerce td.actions .coupon button {
  background: transparent !important;
  color: var(--sgw-ink) !important;
  border: 1px solid var(--sgw-line-2) !important;
}
.woocommerce td.actions button[name="update_cart"]:hover,
.woocommerce td.actions .coupon button:hover {
  background: var(--sgw-ink) !important; color:#fff !important; border-color:var(--sgw-ink) !important;
}

/* ---- cart table ---- */
.woocommerce-cart table.cart,
.woocommerce table.shop_table {
  border: 1px solid var(--sgw-line) !important;
  border-radius: var(--sgw-radius-lg) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden !important;
  background: var(--sgw-bg) !important;
}
.woocommerce table.shop_table thead th,
.woocommerce-cart table.cart thead th {
  font-family: var(--sgw-sans) !important;
  font-size: .68rem !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--sgw-muted) !important;
  font-weight: 600 !important;
  padding: 16px 18px !important;
  background: var(--sgw-bg-warm) !important;
  border-bottom: 1px solid var(--sgw-line) !important;
}
.woocommerce table.shop_table td,
.woocommerce-cart table.cart td {
  padding: 18px !important;
  border-top: 1px solid var(--sgw-line) !important;
  vertical-align: middle !important;
  color: var(--sgw-ink) !important;
}
.woocommerce-cart table.cart td.product-thumbnail img {
  width: 76px !important; height: auto !important;
  border: 1px solid var(--sgw-line) !important;
  border-radius: var(--sgw-radius) !important;
  background: #f4f1ea !important;
}
.woocommerce-cart td.product-name a {
  font-family: var(--sgw-sans) !important;
  color: var(--sgw-ink) !important; font-weight: 500 !important;
  border-bottom: none !important;
}
.woocommerce-cart td.product-name a:hover { color: var(--sgw-gold) !important; }
.woocommerce a.remove {
  color: var(--sgw-muted) !important; font-weight: 400 !important;
  border-radius: 50% !important;
}
.woocommerce a.remove:hover { background: var(--sgw-ink) !important; color:#fff !important; }
.woocommerce .quantity .qty {
  border: 1px solid var(--sgw-line-2) !important;
  border-radius: var(--sgw-radius) !important;
  padding: 9px 8px !important; background:#fff !important; color:var(--sgw-ink) !important;
}
.woocommerce td.actions .coupon #coupon_code {
  border: 1px solid var(--sgw-line-2) !important;
  border-radius: var(--sgw-radius) !important;
  padding: 12px 14px !important;
}

/* ---- cart totals card ---- */
.cart-collaterals .cart_totals,
.woocommerce .cart_totals {
  background: var(--sgw-bg-warm) !important;
  border: 1px solid var(--sgw-line) !important;
  border-radius: var(--sgw-radius-lg) !important;
  padding: 24px 26px !important;
}
.cart_totals h2, #order_review_heading {
  font-family: var(--sgw-serif) !important;
  font-weight: 500 !important;
  font-size: 1.5rem !important;
  color: var(--sgw-ink) !important;
  margin: 0 0 16px !important;
}
.cart_totals table.shop_table { border:none !important; background:transparent !important; }
.cart_totals table.shop_table th { background:transparent !important; border:none !important; text-transform:none !important; letter-spacing:0 !important; font-size:.9rem !important; color:var(--sgw-ink) !important; }
.cart_totals table.shop_table td { border:none !important; border-top:1px solid var(--sgw-line) !important; }
.cart_totals .order-total .amount { color: var(--sgw-ink) !important; font-weight:600 !important; }
.wc-proceed-to-checkout a.checkout-button { display:block !important; width:100% !important; text-align:center !important; margin-top: 8px !important; }

/* ---- checkout layout & form ---- */
.woocommerce-checkout #customer_details h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout #order_review_heading {
  font-family: var(--sgw-serif) !important;
  font-weight: 500 !important;
  font-size: 1.5rem !important;
  color: var(--sgw-ink) !important;
  margin: 0 0 18px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--sgw-line) !important;
}
.woocommerce-checkout .form-row label,
.woocommerce form .form-row label {
  font-family: var(--sgw-sans) !important;
  font-size: .78rem !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  color: var(--sgw-ink-2) !important;
  font-weight: 500 !important;
  margin-bottom: 6px !important;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-checkout select,
.woocommerce .select2-container .select2-selection {
  font-family: var(--sgw-sans) !important;
  border: 1px solid var(--sgw-line-2) !important;
  border-radius: var(--sgw-radius) !important;
  padding: 12px 14px !important;
  min-height: 46px !important;
  background: #fff !important;
  color: var(--sgw-ink) !important;
  box-shadow: none !important;
  transition: border-color 150ms ease, box-shadow 150ms ease !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce-checkout select:focus {
  border-color: var(--sgw-gold) !important;
  box-shadow: 0 0 0 3px rgba(169,130,63,.16) !important;
  outline: none !important;
}

/* order review card */
.woocommerce-checkout #order_review {
  background: var(--sgw-bg-warm) !important;
  border: 1px solid var(--sgw-line) !important;
  border-radius: var(--sgw-radius-lg) !important;
  padding: 26px !important;
}
.woocommerce-checkout-review-order-table { border:none !important; background:transparent !important; }
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td { background:transparent !important; border:none !important; border-top:1px solid var(--sgw-line) !important; padding:12px 0 !important; }
.woocommerce-checkout-review-order-table thead th { text-transform:uppercase !important; font-size:.68rem !important; letter-spacing:.1em !important; color:var(--sgw-muted) !important; }
.woocommerce-checkout-review-order-table .order-total .amount { font-weight:600 !important; color:var(--sgw-ink) !important; }

/* payment block */
.woocommerce-checkout #payment,
.woocommerce-checkout .woocommerce-checkout-payment {
  background: #fff !important;
  border: 1px solid var(--sgw-line) !important;
  border-radius: var(--sgw-radius) !important;
  margin-top: 16px !important;
}
.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid var(--sgw-line) !important;
}
.woocommerce-checkout #place_order { width:100% !important; text-align:center !important; padding:16px !important; }
.woocommerce-terms-and-conditions-wrapper { font-size:.85rem !important; color:var(--sgw-muted) !important; }

/* responsive */
@media (max-width: 900px){
  .woocommerce-cart table.cart td.actions .coupon { display:flex !important; gap:8px !important; flex-wrap:wrap !important; }
}

/* removed redundant secondary category bar */
.sgw-mega{display:none !important;}
