/*
Theme Name: Signature Watches Boutique
Theme URI: https://signature-watches.com/
Author: Signature Watches
Author URI: https://signature-watches.com/
Description: WooCommerce theme for the Signature Watches watch storefront.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: sgw-boutique
Woo: 8.0
*/

:root {
  --sgw-black: #141414;
  --sgw-ink: #292323;
  --sgw-muted: #707070;
  --sgw-line: #e4d9d6;
  --sgw-bg: #fbf8f7;
  --sgw-soft: #f3eeec;
  --sgw-white: #ffffff;
  --sgw-accent: #b07b72;
  --sgw-max: 1440px;
  --sgw-serif: "Times New Roman", Times, serif;
  --sgw-sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sgw-bg);
  color: var(--sgw-ink);
  font-family: var(--sgw-sans);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.sgw-container {
  width: min(100%, var(--sgw-max));
  margin: 0 auto;
  padding: 0 32px;
}

.sgw-topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  background: var(--sgw-black);
  color: var(--sgw-white);
  font-size: 12px;
  text-transform: uppercase;
}

.sgw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, 0.96);
  border-bottom: 1px solid var(--sgw-line);
  backdrop-filter: blur(10px);
}

.sgw-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  gap: 24px;
}

.sgw-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  text-transform: uppercase;
  font-size: 12px;
}

.sgw-nav ul,
.sgw-mega ul {
  display: contents;
  margin: 0;
  padding: 0;
}

.sgw-nav li,
.sgw-mega li {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sgw-nav a {
  padding: 30px 0;
  color: #2c2b29;
  font-size: 11px;
  letter-spacing: 0.4px;
  transition: color .2s ease;
}

.sgw-nav a:hover,
.sgw-actions a:hover,
.sgw-mega__inner a:hover {
  color: var(--sgw-accent);
}

.sgw-logo {
  font-family: var(--sgw-serif);
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.sgw-logo img {
  width: min(64px, 16vw);
  max-height: 54px;
  object-fit: contain;
}

.sgw-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  font-size: 12px;
}

.sgw-actions a {
  font-size: 11px;
  letter-spacing: 0.4px;
}

.sgw-header-search {
  display: flex;
  align-items: center;
  min-width: 220px;
  max-width: 280px;
  border: 1px solid var(--sgw-line);
  border-radius: 999px;
  background: var(--sgw-white);
  overflow: hidden;
}

.sgw-header-search input[type="search"] {
  min-width: 0;
  flex: 1;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 0 12px;
  font-size: 12px;
  outline: 0;
}

.sgw-header-search button {
  min-width: 68px;
  height: 36px;
  border: 0;
  background: var(--sgw-black);
  color: var(--sgw-white);
  padding: 0 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.sgw-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--sgw-line);
  background: transparent;
  color: var(--sgw-ink);
}

.sgw-menu-toggle span,
.sgw-menu-toggle::before,
.sgw-menu-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.sgw-mobile-panel {
  display: none;
  border-top: 1px solid var(--sgw-line);
  background: var(--sgw-bg);
}

.sgw-mobile-panel.is-open {
  display: block;
}

.sgw-mobile-panel a {
  display: block;
  border-bottom: 1px solid var(--sgw-line);
  padding: 14px 24px;
  text-transform: uppercase;
  font-size: 12px;
}

.sgw-mobile-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  border-bottom: 1px solid var(--sgw-line);
  padding: 14px;
}

.sgw-mobile-search input[type="search"] {
  min-width: 0;
  height: 44px;
  border: 1px solid var(--sgw-line);
  border-radius: 8px;
  background: var(--sgw-white);
  padding: 0 12px;
  font-size: 16px;
}

.sgw-mobile-search button {
  min-width: 78px;
  height: 44px;
  border: 1px solid var(--sgw-black);
  border-radius: 8px;
  background: var(--sgw-black);
  color: var(--sgw-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sgw-mega {
  border-bottom: 1px solid var(--sgw-line);
  background: var(--sgw-white);
}

.sgw-mega__inner {
  display: flex;
  justify-content: center;
  gap: 28px;
  overflow-x: auto;
  padding: 14px 32px;
  text-transform: uppercase;
  font-size: 12px;
  white-space: nowrap;
}

.sgw-mega__inner a {
  color: #2c2b29;
  font-size: 11px;
  letter-spacing: 0.35px;
}

.sgw-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ddd5ca;
}

.sgw-hero__media {
  position: absolute;
  inset: 0;
}

.sgw-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sgw-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--sgw-white);
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

.sgw-home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: #8b8781;
}

.sgw-home-hero--video {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(560px, 72vh, 760px);
  place-items: center;
  overflow: hidden;
  background: #d9d0c5;
}

.sgw-home-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sgw-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 38, 33, 0.24);
}

.sgw-home-hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 90px 10vw;
  color: var(--sgw-white);
}

.sgw-home-hero--video .sgw-home-hero__copy {
  justify-content: center;
  width: 100%;
  min-height: inherit;
  padding: 120px 24px;
  text-align: center;
}

.sgw-home-hero__discount {
  margin: 0 0 6px;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.25);
}

.sgw-home-hero h1 {
  margin: 0 0 28px;
  font-family: var(--sgw-serif);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.25);
}

.sgw-home-hero .sgw-button {
  min-height: 46px;
  padding: 0 38px;
  border-color: var(--sgw-white);
  background: var(--sgw-white);
  color: var(--sgw-black);
  font-size: 12px;
}

.sgw-home-hero__image {
  min-width: 0;
  overflow: hidden;
  background: #ddd7cd;
}

.sgw-home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sgw-press-strip {
  background: var(--sgw-white);
  border-bottom: 1px solid var(--sgw-line);
}

.sgw-press-strip__track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 4vw, 54px);
  min-height: 64px;
  overflow-x: auto;
  padding: 0 28px;
  color: #3d3c3a;
  white-space: nowrap;
}

.sgw-press-strip__track span {
  font-family: var(--sgw-serif);
  font-size: clamp(13px, 1.6vw, 22px);
  font-weight: 700;
}

.sgw-feature-collections {
  background: var(--sgw-white);
  padding: 22px 0 0;
  overflow: hidden;
}

.sgw-feature-collections__rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(270px, 1fr));
  gap: 6px;
  width: 100%;
}

.sgw-feature-tile {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  background: #222;
}

.sgw-feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sgw-feature-tile:hover img {
  transform: scale(1.035);
}

.sgw-feature-tile::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
  content: "";
}

.sgw-feature-tile span {
  position: absolute;
  left: 14px;
  bottom: 16px;
  z-index: 1;
  color: var(--sgw-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sgw-home-products {
  background: var(--sgw-white);
  padding-top: 42px;
}

.sgw-home-products__eyebrow {
  margin: 0 0 8px;
  color: var(--sgw-muted);
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
}

.sgw-home-tabs {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin: 0 0 28px;
  text-transform: uppercase;
  font-size: 12px;
}

.sgw-home-tabs a {
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
}

.sgw-home-tabs a:first-child {
  border-color: currentColor;
}

.sgw-home-products .sgw-products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px 80px;
}

.sgw-home-products .sgw-product-card__image {
  aspect-ratio: 1 / 1.28;
  background: #f5f4f2;
}

.sgw-home-products .sgw-product-card__title {
  font-size: 11px;
  line-height: 1.45;
}

.sgw-home-product-group {
  border-top: 1px solid var(--sgw-line);
  padding: 42px 0 52px;
}

.sgw-home-product-group:first-child {
  padding-top: 0;
}

.sgw-home-product-group__head {
  display: grid;
  grid-template-columns: minmax(0, 560px) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.sgw-home-product-group__head h2 {
  margin: 0;
  font-family: var(--sgw-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
}

.sgw-home-product-group__head p:last-child {
  margin: 12px 0 0;
  color: var(--sgw-muted);
  font-size: 15px;
  line-height: 1.55;
}

.sgw-home-product-group__head > a {
  justify-self: end;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: var(--sgw-muted);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.sgw-product-card__actions {
  gap: 8px;
}

.sgw-hero__eyebrow {
  margin: 0 0 8px;
  font-size: clamp(22px, 4vw, 54px);
  line-height: 1;
}

.sgw-hero__title {
  margin: 0 0 26px;
  font-family: var(--sgw-serif);
  font-size: clamp(24px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
}

.sgw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 34px;
  border: 1px solid var(--sgw-black);
  background: var(--sgw-black);
  color: var(--sgw-white);
  text-transform: uppercase;
  font-size: 12px;
}

.sgw-button--light {
  border-color: var(--sgw-white);
  background: var(--sgw-white);
  color: var(--sgw-black);
  text-shadow: none;
}

.sgw-section {
  padding: 54px 0;
}

.sgw-section--tight {
  padding: 34px 0;
}

.sgw-section__heading {
  margin: 0 0 28px;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--sgw-serif);
  font-size: 22px;
  font-weight: 400;
}

.sgw-press {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.sgw-press__item {
  display: grid;
  place-items: center;
  min-height: 58px;
  color: #8a857d;
  font-family: var(--sgw-serif);
  font-size: 20px;
  text-transform: uppercase;
}

.sgw-collections {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.sgw-collections a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  text-transform: uppercase;
  font-size: 12px;
}

.sgw-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 22px;
}

.sgw-product-card {
  min-width: 0;
}

.sgw-product-card__image {
  aspect-ratio: 1 / 1.22;
  background: var(--sgw-soft);
  overflow: hidden;
}

.sgw-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.sgw-product-card:hover img {
  transform: scale(1.035);
}

.sgw-product-card__title {
  margin: 14px 0 4px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
}

.sgw-product-card__price {
  color: var(--sgw-muted);
  font-size: 13px;
}

.sgw-product-card--placeholder {
  min-height: 0;
}

.sgw-product-card__image--placeholder {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(135deg, rgba(214, 205, 193, 0.42), rgba(246, 244, 240, 0.86)),
    #f5f4f2;
}

.sgw-product-card__placeholder-line {
  height: 11px;
  background: rgba(17, 17, 17, 0.10);
}

.sgw-product-card__placeholder-line--title {
  width: 68%;
  margin-top: 16px;
}

.sgw-product-card__placeholder-line--price {
  width: 34%;
  margin-top: 9px;
  opacity: 0.72;
}

.sgw-product-card__placeholder-actions {
  margin-top: 16px;
}

.sgw-trust {
  border-top: 1px solid var(--sgw-line);
  border-bottom: 1px solid var(--sgw-line);
  background: var(--sgw-white);
}

.sgw-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sgw-trust__item {
  display: grid;
  place-items: center;
  min-height: 112px;
  border-right: 1px solid var(--sgw-line);
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
}

.sgw-trust__item:last-child {
  border-right: 0;
}

.sgw-footer {
  background: var(--sgw-black);
  color: var(--sgw-white);
  padding: 54px 0 28px;
}

.sgw-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 0.9fr 1.25fr;
  gap: 34px;
}

.sgw-footer h2,
.sgw-footer h3 {
  margin: 0 0 16px;
  text-transform: uppercase;
  font-family: var(--sgw-serif);
  font-size: 16px;
  font-weight: 400;
}

.sgw-footer__logo {
  width: min(320px, 100%);
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 14px;
}

.sgw-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.sgw-footer ul,
.sgw-footer .menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sgw-footer li,
.sgw-footer .menu-item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sgw-footer li a,
.sgw-footer .menu-item a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.76);
}

.sgw-footer__bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.sgw-footer-trust {
  min-width: 0;
}

.sgw-payment-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.sgw-pay {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.sgw-pay--paypal {
  color: #9fd2ff;
}

.sgw-pay--visa {
  color: #d8e5ff;
  letter-spacing: 0.08em;
}

.sgw-pay--mastercard {
  position: relative;
  color: #ffe0b3;
}

.sgw-us-notices {
  display: grid;
  gap: 10px;
}

.sgw-us-notices div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px;
}

.sgw-us-notices strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.sgw-us-notices span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.sgw-footer-brand-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.sgw-footer-brand {
  display: grid !important;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 116px;
  margin: 0 !important;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035));
  color: #fff !important;
  text-decoration: none;
}

.sgw-footer-brand:hover {
  border-color: rgba(245, 199, 102, 0.58);
  background:
    linear-gradient(135deg, rgba(245, 199, 102, 0.14), rgba(255, 255, 255, 0.05));
}

.sgw-footer-brand img {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.sgw-footer-brand strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-family: var(--sgw-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.sgw-footer-brand em {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.sgw-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.sgw-social-links a {
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sgw-footer-mobile-links {
  display: none;
}

.sgw-newsletter {
  margin-top: 20px;
}

.sgw-newsletter label {
  display: block;
  margin-bottom: 10px;
  color: var(--sgw-white);
  text-transform: uppercase;
  font-family: var(--sgw-serif);
  font-size: 14px;
}

.sgw-newsletter div {
  display: flex;
  gap: 8px;
}

.sgw-newsletter input {
  min-width: 0;
  flex: 1;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--sgw-white);
  padding: 0 12px;
}

.sgw-newsletter button {
  height: 40px;
  border: 1px solid var(--sgw-white);
  background: var(--sgw-white);
  color: var(--sgw-black);
  padding: 0 16px;
  text-transform: uppercase;
  font-size: 11px;
}

.sgw-newsletter__message {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.45;
}

.sgw-cookie {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2147483647;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  max-width: min(520px, calc(100vw - 36px));
  border: 1px solid var(--sgw-line);
  background: var(--sgw-white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  padding: 16px;
  pointer-events: auto;
}

.sgw-cookie[hidden] {
  display: none;
}

.sgw-cookie p {
  margin: 0;
  color: var(--sgw-muted);
  font-size: 13px;
  line-height: 1.5;
}

.sgw-cookie button {
  height: 38px;
  border: 0;
  background: var(--sgw-black);
  color: var(--sgw-white);
  padding: 0 18px;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.sgw-cookie button:hover {
  background: #2d2d2d;
}

.sgw-error-page {
  min-height: 58vh;
  text-align: center;
}

.sgw-error-page h1 {
  margin: 0 0 14px;
  font-family: var(--sgw-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  text-transform: uppercase;
}

.sgw-error-page p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: var(--sgw-muted);
}

.sgw-error-page form {
  display: flex;
  max-width: 520px;
  margin: 28px auto;
}

.sgw-error-page input[type="search"] {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 1px solid var(--sgw-line);
  padding: 0 14px;
}

.sgw-error-page input[type="submit"] {
  height: 46px;
  border: 0;
  background: var(--sgw-black);
  color: var(--sgw-white);
  padding: 0 20px;
  text-transform: uppercase;
}

.sgw-error-page__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.woocommerce div.product {
  max-width: var(--sgw-max);
  margin: 0 auto;
  padding: 48px 32px;
}

body.single-product .sgw-product-page {
  background: var(--sgw-white);
}

body.single-product .woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
  padding-top: clamp(44px, 6vw, 84px);
  padding-bottom: 30px;
}

body.single-product .woocommerce div.product div.images,
body.single-product .woocommerce div.product div.summary {
  float: none;
  width: auto;
  margin: 0;
}

body.single-product .woocommerce div.product div.images {
  background: #f5f4f2;
}

body.single-product .woocommerce div.product div.images img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

body.single-product .woocommerce div.product div.summary {
  max-width: 560px;
  padding-top: 10px;
}

.woocommerce div.product .product_title {
  text-transform: uppercase;
  font-family: var(--sgw-serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--sgw-ink);
  font-size: 18px;
}

body.single-product .woocommerce-product-details__short-description {
  color: var(--sgw-muted);
  line-height: 1.7;
}

body.single-product .woocommerce div.product form.cart {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin: 28px 0 24px;
}

body.single-product .woocommerce div.product form.cart div.quantity {
  float: none;
  margin: 0;
}

body.single-product .woocommerce div.product form.cart .qty {
  width: 76px;
  height: 48px;
  border: 1px solid var(--sgw-line);
  text-align: center;
}

.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 0;
  background: var(--sgw-black);
  color: var(--sgw-white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
}

body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
  min-width: 230px;
  min-height: 48px;
  padding: 0 34px;
}

.sgw-single-badges {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  color: var(--sgw-muted);
  text-transform: uppercase;
  font-size: 12px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  border-bottom: 1px solid var(--sgw-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  border-radius: 0;
  background: transparent;
  text-transform: uppercase;
  font-size: 12px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: transparent;
  border-bottom: 1px solid var(--sgw-black);
}

body.single-product .woocommerce div.product .woocommerce-tabs,
body.single-product .woocommerce div.product .related,
body.single-product .woocommerce div.product .upsells {
  grid-column: 1 / -1;
}

body.single-product .woocommerce div.product .woocommerce-tabs {
  margin-top: 34px;
}

body.single-product .woocommerce div.product .related,
body.single-product .woocommerce div.product .upsells {
  margin-top: 54px;
}

body.single-product .woocommerce div.product .related > h2,
body.single-product .woocommerce div.product .upsells > h2 {
  margin: 0 0 28px;
  font-family: var(--sgw-serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.woocommerce ul.products {
  max-width: var(--sgw-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
}

.woocommerce ul.products li.product .price {
  color: var(--sgw-muted);
}

body.single-product .woocommerce div.product .related ul.products,
body.single-product .woocommerce div.product .upsells ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 28px;
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.single-product .woocommerce div.product .related ul.products::before,
body.single-product .woocommerce div.product .related ul.products::after,
body.single-product .woocommerce div.product .upsells ul.products::before,
body.single-product .woocommerce div.product .upsells ul.products::after {
  display: none;
}

body.single-product .woocommerce div.product .related ul.products li.product,
body.single-product .woocommerce div.product .upsells ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.single-product .woocommerce div.product .related ul.products li.product::before,
body.single-product .woocommerce div.product .upsells ul.products li.product::before {
  display: none;
  content: none;
}

body.single-product .woocommerce div.product .related ul.products li.product a img,
body.single-product .woocommerce div.product .upsells ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1.28;
  object-fit: cover;
  background: #f5f4f2;
}

body.single-product .woocommerce div.product .related ul.products li.product .button,
body.single-product .woocommerce div.product .upsells ul.products li.product .button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 14px;
  font-size: 10px;
}

.sgw-shop-hero {
  background: var(--sgw-white);
  border-bottom: 1px solid var(--sgw-line);
  padding: 70px 0 62px;
  text-align: center;
}

.sgw-shop-hero__eyebrow {
  margin: 0 0 12px;
  color: var(--sgw-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sgw-shop-hero h1 {
  margin: 0;
  font-family: var(--sgw-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  text-transform: uppercase;
}

.sgw-shop-hero p:last-child {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--sgw-muted);
  font-size: 14px;
}

.sgw-shop-toolbar {
  background: var(--sgw-bg);
  border-bottom: 1px solid var(--sgw-line);
}

.sgw-shop-toolbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 58px;
  gap: 18px;
}

.sgw-view-icons {
  display: grid;
  grid-template-columns: repeat(4, 7px);
  gap: 4px;
  width: max-content;
}

.sgw-view-icons span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--sgw-muted);
}

.sgw-shop-count {
  color: var(--sgw-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.sgw-shop-sort {
  justify-self: end;
}

.sgw-shop-sort .woocommerce-ordering {
  margin: 0;
}

.sgw-shop-sort select {
  min-height: 38px;
  border: 1px solid var(--sgw-line);
  background: var(--sgw-white);
  color: var(--sgw-ink);
  padding: 0 34px 0 12px;
  text-transform: uppercase;
  font-size: 11px;
}

.sgw-shop-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 44px;
  padding-top: 42px;
  padding-bottom: 68px;
}

.sgw-shop-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 4px 0;
}

.sgw-shop-sidebar details {
  border-bottom: 1px solid var(--sgw-line);
  padding: 0;
}

.sgw-shop-sidebar summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  cursor: pointer;
  list-style: none;
  color: var(--sgw-ink);
  text-transform: uppercase;
  color: #292826;
  font-size: 11px;
  letter-spacing: .6px;
}

.sgw-shop-sidebar summary::-webkit-details-marker {
  display: none;
}

.sgw-shop-sidebar summary::after {
  content: "+";
  color: var(--sgw-muted);
  font-size: 16px;
}

.sgw-shop-sidebar details[open] summary::after {
  content: "-";
}

.sgw-shop-sidebar a,
.sgw-shop-sidebar li {
  display: block;
  margin: 0;
  color: var(--sgw-muted);
  font-size: 13px;
  line-height: 1.25;
}

.sgw-shop-sidebar ul {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.sgw-shop-sidebar li a,
.sgw-shop-sidebar details > a {
  display: block;
  padding: 7px 0;
  color: #74716d;
  transition: color .2s ease, transform .2s ease;
}

.sgw-shop-sidebar li a:hover,
.sgw-shop-sidebar details > a:hover {
  color: var(--sgw-black);
  transform: translateX(2px);
}

.sgw-shop-results .woocommerce ul.products,
.woocommerce .sgw-shop-results ul.products,
.sgw-shop-results ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 46px 28px;
  max-width: none;
  margin: 0;
  padding: 0;
}

.woocommerce .sgw-shop-results ul.products::before,
.woocommerce .sgw-shop-results ul.products::after {
  display: none;
}

.woocommerce .sgw-shop-results ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  text-align: left;
}

.woocommerce .sgw-shop-results ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1.28;
  margin: 0 0 16px;
  background: #f4f3f1;
  object-fit: cover;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.woocommerce .sgw-shop-results ul.products li.product:hover a img {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.woocommerce .sgw-shop-results ul.products li.product .woocommerce-loop-product__title {
  min-height: 36px;
  padding: 0;
  color: var(--sgw-ink);
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.4px;
}

.woocommerce .sgw-shop-results ul.products li.product .price {
  color: var(--sgw-muted);
  font-size: 12px;
}

.woocommerce .sgw-shop-results ul.products li.product .button {
  display: none;
}

.woocommerce nav.woocommerce-pagination {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  display: block;
  border: 0;
  float: none;
  margin: 0;
  list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--sgw-line);
  background: var(--sgw-white);
  color: var(--sgw-ink);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--sgw-black);
  color: var(--sgw-white);
  border-color: var(--sgw-black);
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--sgw-black);
  color: var(--sgw-white);
  border-color: var(--sgw-black);
}

.lifteno-policy-page {
  max-width: 880px;
  margin: 0 auto;
  color: var(--sgw-ink);
  font-size: 15px;
  line-height: 1.75;
}

.lifteno-policy-page h2 {
  margin: 28px 0 10px;
  font-family: var(--sgw-serif);
  font-size: 22px;
  font-weight: 400;
  text-transform: uppercase;
}

.lifteno-policy-page p {
  margin: 0 0 14px;
}

.lifteno-policy-page ul {
  margin: 0 0 18px 22px;
  padding: 0;
}

.lifteno-policy-page li {
  margin: 5px 0;
}

@media (max-width: 1024px) {
  .sgw-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sgw-press {
    grid-template-columns: repeat(3, 1fr);
  }

  .sgw-shop-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 28px;
  }

  .sgw-shop-results ul.products,
  .woocommerce .sgw-shop-results ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sgw-feature-collections__rail {
    overflow-x: auto;
  }

  .sgw-home-products .sgw-products {
    gap: 38px 24px;
  }

  body.single-product .woocommerce div.product {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 36px;
  }

  body.single-product .woocommerce div.product .related ul.products,
  body.single-product .woocommerce div.product .upsells ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* BEGIN Signature Watches animated brand trust marquee */
body.sgw-theme .sgw-brand-marquee {
  display: block !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #11100f !important;
}

body.sgw-theme .sgw-press-strip__viewport {
  width: 100% !important;
  overflow: hidden !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%) !important;
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%) !important;
}

body.sgw-theme .sgw-brand-marquee .sgw-press-strip__track {
  display: flex !important;
  width: max-content !important;
  min-width: max-content !important;
  min-height: 76px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  overflow: visible !important;
  padding: 12px 0 !important;
  white-space: nowrap !important;
  animation: sgw-brand-marquee 34s linear infinite !important;
  will-change: transform !important;
}

body.sgw-theme .sgw-brand-marquee:hover .sgw-press-strip__track {
  animation-play-state: paused !important;
}

body.sgw-theme .sgw-brand-marquee .sgw-press-chip {
  display: inline-flex !important;
  min-height: 44px !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  color: #f8f4ee !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  padding: 0 18px !important;
}

body.sgw-theme .sgw-brand-marquee .sgw-press-chip::before {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  flex: 0 0 auto !important;
  border-radius: 50% !important;
  background: #d6a236 !important;
  box-shadow: 0 0 0 4px rgba(214, 162, 54, 0.12) !important;
}

body.sgw-theme .sgw-brand-marquee .sgw-press-chip strong {
  color: #fff !important;
  font-family: "Times New Roman", Times, serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

body.sgw-theme .sgw-brand-marquee .sgw-press-chip em {
  color: rgba(248, 244, 238, 0.74) !important;
  font-size: 12px !important;
  font-style: normal !important;
  line-height: 1 !important;
}

@keyframes sgw-brand-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.sgw-theme .sgw-brand-marquee .sgw-press-strip__track {
    animation: none !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

@media (max-width: 640px) {
  body.sgw-theme .sgw-brand-marquee .sgw-press-strip__track {
    min-height: 64px !important;
    gap: 8px !important;
    padding: 10px 0 !important;
    animation-duration: 26s !important;
  }

  body.sgw-theme .sgw-brand-marquee .sgw-press-chip {
    min-height: 40px !important;
    gap: 8px !important;
    padding: 0 13px !important;
  }

  body.sgw-theme .sgw-brand-marquee .sgw-press-chip strong {
    font-size: 15px !important;
  }

  body.sgw-theme .sgw-brand-marquee .sgw-press-chip em {
    max-width: 190px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 11px !important;
  }
}
/* END Signature Watches animated brand trust marquee */

@media (max-width: 820px) {
  .sgw-container {
    padding: 0 18px;
  }

  .sgw-header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
  }

  .sgw-nav,
  .sgw-actions a:not(.sgw-cart-link) {
    display: none;
  }

  .sgw-menu-toggle {
    display: block;
  }

  .sgw-logo {
    justify-self: center;
    font-size: 20px;
    letter-spacing: 3px;
  }

  .sgw-logo img {
    width: min(58px, 18vw);
    max-height: 48px;
  }

  .sgw-mega {
    display: none;
  }

  .sgw-hero {
    min-height: 520px;
  }

  .sgw-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }

  .sgw-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sgw-trust__item:nth-child(2n) {
    border-right: 0;
  }

  .sgw-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sgw-footer-brand-strip {
    grid-template-columns: 1fr;
  }

  .sgw-home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sgw-home-hero__copy {
    min-height: 260px;
    padding: 54px 28px;
  }

  .sgw-home-hero__image {
    min-height: 340px;
  }

  .sgw-feature-tile {
    min-height: 430px;
  }

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

  .sgw-shop-toolbar__inner {
    grid-template-columns: auto 1fr;
  }

  .sgw-shop-count {
    display: none;
  }

  .sgw-shop-layout {
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .sgw-shop-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .sgw-shop-sidebar details {
    border: 1px solid var(--sgw-line);
    background: var(--sgw-white);
    padding: 0 12px;
  }

  body.single-product .woocommerce div.product {
    display: block;
    padding: 28px 18px;
  }

  body.single-product .woocommerce div.product div.summary {
    max-width: none;
    padding-top: 26px;
  }

  body.single-product .woocommerce div.product form.cart {
    flex-wrap: wrap;
  }

  body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
    flex: 1 1 210px;
  }

  body.single-product .woocommerce div.product .related ul.products,
  body.single-product .woocommerce div.product .upsells ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 14px;
  }
}

@media (max-width: 560px) {
  .sgw-hero {
    min-height: 460px;
  }

  .sgw-products {
    grid-template-columns: 1fr 1fr;
  }

  .sgw-press {
    grid-template-columns: repeat(2, 1fr);
  }

  .sgw-footer__grid {
    grid-template-columns: 1fr;
  }

  .sgw-footer-brand {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sgw-footer-brand img {
    justify-self: start;
    width: min(210px, 100%);
    height: 70px;
  }

  .sgw-shop-hero {
    padding: 44px 0 38px;
  }

  .sgw-shop-sidebar {
    grid-template-columns: 1fr;
  }

  .sgw-shop-results ul.products,
  .woocommerce .sgw-shop-results ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 14px;
  }

  body.single-product .woocommerce div.product form.cart .qty,
  body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
    width: 100%;
  }
}

/* BEGIN Signature Watches extracted home critical */
body.sgw-theme .sgw-home-hero.sgw-home-hero--video {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    place-items: center !important;
    width: 100% !important;
    min-height: clamp(560px, 74vh, 780px) !important;
    overflow: hidden !important;
    background: #d9d0c5 !important;
  }
  body.sgw-theme .sgw-home-hero__video {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
  }
  body.sgw-theme .sgw-home-hero__overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    background: rgba(32, 28, 24, 0.32) !important;
  }
  body.sgw-theme .sgw-home-hero__copy {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: inherit !important;
    padding: 120px 24px !important;
    color: #fff !important;
    text-align: center !important;
  }
  body.sgw-theme .sgw-home-hero__discount {
    margin: 0 0 10px !important;
    color: #fff !important;
    font-size: clamp(32px, 4vw, 58px) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 22px rgba(0,0,0,.32) !important;
  }
  body.sgw-theme .sgw-home-hero h1 {
    margin: 0 0 30px !important;
    color: #fff !important;
    font-family: "Times New Roman", Times, serif !important;
    font-size: clamp(38px, 5vw, 76px) !important;
    font-weight: 400 !important;
    line-height: 1.04 !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 22px rgba(0,0,0,.32) !important;
  }
  body.sgw-theme .sgw-home-hero .sgw-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    padding: 0 38px !important;
    border: 1px solid #fff !important;
    background: #fff !important;
    color: #111 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
  }
  body.sgw-theme .sgw-press-strip {
    display: block !important;
    background: #fff !important;
    border-bottom: 1px solid #e8e4df !important;
  }
  body.sgw-theme .sgw-press-strip__track {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: clamp(22px, 4vw, 54px) !important;
    min-height: 64px !important;
    overflow-x: auto !important;
    padding: 0 28px !important;
    white-space: nowrap !important;
  }
  body.sgw-theme .sgw-press-strip__track span {
    color: #3d3c3a !important;
    font-family: "Times New Roman", Times, serif !important;
    font-size: clamp(13px, 1.6vw, 22px) !important;
    font-weight: 700 !important;
  }
  body.sgw-theme .sgw-feature-collections {
    display: block !important;
    background: #fff !important;
    padding: 22px 0 0 !important;
    overflow: hidden !important;
  }
  body.sgw-theme .sgw-feature-collections__rail {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(260px, 1fr)) !important;
    gap: 6px !important;
    width: 100% !important;
  }
  body.sgw-theme .sgw-feature-tile {
    position: relative !important;
    display: block !important;
    min-height: 520px !important;
    overflow: hidden !important;
    background: #222 !important;
  }
  body.sgw-theme .sgw-feature-tile img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
  }
  body.sgw-theme .sgw-feature-tile span {
    position: absolute !important;
    left: 14px !important;
    bottom: 16px !important;
    z-index: 2 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
  }
  body.sgw-theme .sgw-home-products {
    display: block !important;
    background: #fff !important;
    padding-top: 42px !important;
  }
  body.sgw-theme .sgw-home-products .sgw-products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 56px 80px !important;
    width: 100% !important;
  }
  body.sgw-theme .sgw-home-products .sgw-product-card {
    min-width: 0 !important;
  }
  body.sgw-theme .sgw-home-products .sgw-product-card__image {
    display: block !important;
    aspect-ratio: 1 / 1.28 !important;
    background: #f5f4f2 !important;
    overflow: hidden !important;
  }
  body.sgw-theme .sgw-home-products .sgw-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
  }
  @media (max-width: 1024px) {
    body.sgw-theme .sgw-feature-collections__rail { overflow-x: auto !important; }
    body.sgw-theme .sgw-home-products .sgw-products { gap: 38px 24px !important; }
  }
  @media (max-width: 820px) {
    body.sgw-theme .sgw-home-hero.sgw-home-hero--video { min-height: 520px !important; }
    body.sgw-theme .sgw-feature-tile { min-height: 430px !important; }
    body.sgw-theme .sgw-home-products .sgw-products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 30px 14px !important; }
  }
/* END Signature Watches extracted home critical */


/* BEGIN Signature Watches extracted shop critical */
.sgw-shop-hero{background:#fff;border-bottom:1px solid #e8e4df;padding:72px 0 60px;text-align:center}
  .sgw-shop-hero__eyebrow{margin:0 0 12px;color:#9d6b4e;font-size:11px;letter-spacing:2px;text-transform:uppercase}
  .sgw-shop-hero h1{margin:0;font-family:"Times New Roman",serif;font-size:44px;font-weight:400;text-transform:uppercase}
  .sgw-shop-hero p:last-child{max-width:620px;margin:14px auto 0;color:#707070;font-size:14px}
  .sgw-shop-toolbar{background:#fbfaf8;border-bottom:1px solid #e8e4df}
  .sgw-shop-toolbar__inner{display:grid!important;grid-template-columns:1fr auto 1fr!important;align-items:center!important;min-height:58px;gap:18px}
  .sgw-view-icons{display:grid;grid-template-columns:repeat(4,7px);gap:4px;width:max-content}
  .sgw-view-icons span{width:7px;height:7px;border:1px solid #707070}
  .sgw-shop-count{color:#707070;font-size:12px;text-transform:uppercase}
  .sgw-shop-sort{justify-self:end}.sgw-shop-sort .woocommerce-ordering{margin:0}
  .sgw-shop-sort select{min-height:38px;border:1px solid #e8e4df;background:#fff;padding:0 34px 0 12px;text-transform:uppercase;font-size:11px}
  .sgw-shop-layout{display:grid!important;grid-template-columns:240px minmax(0,1fr)!important;gap:44px!important;width:min(100%,1440px)!important;margin:0 auto!important;padding:42px 32px 70px!important}
  .sgw-shop-sidebar{position:sticky;top:120px;align-self:start}
  .sgw-shop-sidebar details{border-bottom:1px solid #e8e4df;padding:0}.sgw-shop-sidebar summary{display:flex;justify-content:space-between;align-items:center;min-height:52px;cursor:pointer;list-style:none;text-transform:uppercase;font-size:12px}.sgw-shop-sidebar summary::-webkit-details-marker{display:none}.sgw-shop-sidebar summary:after{content:"+";color:#707070;font-size:16px}.sgw-shop-sidebar details[open] summary:after{content:"-"}
  .sgw-shop-sidebar ul{margin:0 0 14px;padding:0;list-style:none}.sgw-shop-sidebar li{display:block;margin:0;list-style:none}.sgw-shop-sidebar li a,.sgw-shop-sidebar details>a{display:block;margin:0;padding:7px 0;color:#74716d;font-size:13px;line-height:1.25;text-decoration:none;transition:color .2s ease,transform .2s ease}.sgw-shop-sidebar li a:hover,.sgw-shop-sidebar details>a:hover{color:#111;transform:translateX(2px)}
  .sgw-archive-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:50px 28px!important}
  .sgw-archive-card{min-width:0}.sgw-archive-card__image{display:block;aspect-ratio:1/1.28;background:#f5f4f2;overflow:hidden}.sgw-archive-card__image img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease,box-shadow .35s ease}.sgw-archive-card:hover img{transform:translateY(-3px);box-shadow:0 18px 38px rgba(0,0,0,.08)}
  .sgw-archive-card__title{margin:14px 0 4px;text-transform:uppercase;font-size:12px;font-weight:400;line-height:1.45}.sgw-archive-card__price{color:#707070;font-size:12px}
  body.sgw-theme .woocommerce nav.woocommerce-pagination{display:flex!important;justify-content:center!important;margin-top:58px!important}
  body.sgw-theme .woocommerce nav.woocommerce-pagination ul{display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;border:0!important;margin:0!important;padding:0!important;list-style:none!important}
  body.sgw-theme .woocommerce nav.woocommerce-pagination ul li{display:block!important;float:none!important;border:0!important;margin:0!important;padding:0!important;list-style:none!important}
  body.sgw-theme .woocommerce nav.woocommerce-pagination ul li:before{display:none!important;content:none!important}
  body.sgw-theme .woocommerce nav.woocommerce-pagination ul li a,body.sgw-theme .woocommerce nav.woocommerce-pagination ul li span{display:grid!important;place-items:center!important;min-width:38px!important;height:38px!important;padding:0 12px!important;border:1px solid #e8e4df!important;background:#fff!important;color:#252525!important;font-size:12px!important;line-height:1!important;text-decoration:none!important}
  body.sgw-theme .woocommerce nav.woocommerce-pagination ul li span.current,body.sgw-theme .woocommerce nav.woocommerce-pagination ul li a:hover{background:#111!important;color:#fff!important;border-color:#111!important}
  @media(max-width:1024px){.sgw-shop-layout{grid-template-columns:190px minmax(0,1fr)!important;gap:28px!important}.sgw-archive-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}}
  @media(max-width:820px){.sgw-shop-toolbar__inner{grid-template-columns:auto 1fr!important}.sgw-shop-count{display:none}.sgw-shop-layout{grid-template-columns:1fr!important;padding:24px 18px 60px!important}.sgw-shop-sidebar{position:static;display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.sgw-shop-sidebar details{border:1px solid #e8e4df;background:#fff;padding:0 12px}.sgw-archive-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:30px 14px!important}}
  @media(max-width:560px){.sgw-shop-hero{padding:44px 0 38px}.sgw-shop-hero h1{font-size:32px}.sgw-shop-sidebar{grid-template-columns:1fr}}
/* END Signature Watches extracted shop critical */

/* BEGIN Signature Watches framed shop layout */
body.sgw-theme .sgw-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #e7e2db;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(31, 27, 22, 0.04);
}

body.sgw-theme .sgw-header__inner {
  min-height: 78px;
}

body.sgw-theme .sgw-nav,
body.sgw-theme .sgw-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.sgw-theme .sgw-nav a,
body.sgw-theme .sgw-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 13px;
  color: #2b2926;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.sgw-theme .sgw-nav a:hover,
body.sgw-theme .sgw-actions a:hover,
body.sgw-theme .sgw-cart-link {
  border-color: #e7e2db;
  background: #f7f4ef;
}

body.sgw-theme .sgw-logo {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid #e7e2db;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 27, 22, 0.08);
}

body.sgw-theme .sgw-logo img {
  max-width: 42px;
  max-height: 42px;
}

body.sgw-theme .sgw-mega {
  border-bottom: 1px solid #e7e2db;
  background: #faf8f5;
}

body.sgw-theme .sgw-mega__inner {
  width: min(100%, 1240px);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0 24px;
}

body.sgw-theme .sgw-mega a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 13px;
  color: #252525;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

body.sgw-theme .sgw-mega a:hover {
  border-color: #e3ddd4;
  background: #fff;
}

body.sgw-theme .sgw-shop-hero {
  background: #fbfaf8 !important;
  padding: 74px 0 68px !important;
}

body.sgw-theme .sgw-shop-toolbar {
  border: 0 !important;
  background: #f6f2ec !important;
  padding: 18px 0 !important;
}

body.sgw-theme .sgw-shop-toolbar__inner {
  min-height: 64px !important;
  border: 1px solid #e4ded5 !important;
  border-radius: 8px !important;
  background: #fff !important;
  padding: 0 18px !important;
  box-shadow: 0 14px 34px rgba(31, 27, 22, 0.05) !important;
}

body.sgw-theme .sgw-view-icons {
  display: inline-flex !important;
  width: auto !important;
  align-items: center !important;
  gap: 6px !important;
  border: 1px solid #e4ded5 !important;
  border-radius: 999px !important;
  background: #fbfaf8 !important;
  padding: 9px 12px !important;
}

body.sgw-theme .sgw-view-icons span {
  width: 6px !important;
  height: 6px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #8a847c !important;
}

body.sgw-theme .sgw-shop-count {
  color: #5f5a53 !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
}

body.sgw-theme .sgw-shop-sort select {
  min-height: 42px !important;
  border: 1px solid #e4ded5 !important;
  border-radius: 999px !important;
  background-color: #fbfaf8 !important;
  padding: 0 40px 0 18px !important;
}

body.sgw-theme .sgw-shop-layout {
  grid-template-columns: 300px minmax(0, 1fr) !important;
  gap: 48px !important;
  width: min(100%, 1400px) !important;
  padding: 34px 32px 86px !important;
  background: #fff !important;
}

body.sgw-theme .sgw-shop-sidebar {
  top: 118px !important;
  border: 1px solid #e4ded5 !important;
  border-radius: 8px !important;
  background: #fbfaf8 !important;
  padding: 20px !important;
  box-shadow: 0 18px 44px rgba(31, 27, 22, 0.06) !important;
}

body.sgw-theme .sgw-shop-sidebar details {
  border: 1px solid #ebe5dd !important;
  border-radius: 8px !important;
  background: #fff !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.sgw-theme .sgw-shop-sidebar details + details {
  margin-top: 12px !important;
}

body.sgw-theme .sgw-shop-sidebar summary {
  min-height: 48px !important;
  padding: 0 14px !important;
  border-bottom: 1px solid #eee8df !important;
  color: #252525 !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
}

body.sgw-theme .sgw-shop-sidebar details:not([open]) summary {
  border-bottom: 0 !important;
}

body.sgw-theme .sgw-shop-sidebar summary::after {
  width: 22px !important;
  height: 22px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: #f4f0ea !important;
  color: #6e675f !important;
  font-size: 14px !important;
}

body.sgw-theme .sgw-shop-sidebar ul {
  display: grid !important;
  gap: 3px !important;
  margin: 10px 0 !important;
  padding: 0 10px !important;
}

body.sgw-theme .sgw-shop-sidebar li a,
body.sgw-theme .sgw-shop-sidebar details > a {
  border-radius: 6px !important;
  padding: 9px 10px !important;
  color: #69645d !important;
  line-height: 1.25 !important;
}

body.sgw-theme .sgw-shop-sidebar li a:hover,
body.sgw-theme .sgw-shop-sidebar details > a:hover,
body.sgw-theme .sgw-shop-sidebar .current-cat > a {
  background: #f4f0ea !important;
  color: #111 !important;
  transform: none !important;
}

body.sgw-theme .sgw-shop-sidebar .sgw-filter-list {
  gap: 4px !important;
  margin: 10px 0 12px !important;
  padding: 0 10px !important;
}

body.sgw-theme .sgw-shop-sidebar .sgw-filter-list li a {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 10px !important;
}

body.sgw-theme .sgw-shop-sidebar .sgw-filter-list li a span {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.sgw-theme .sgw-shop-sidebar .sgw-filter-list li a em {
  min-width: 28px !important;
  border-radius: 999px !important;
  background: #f0ebe4 !important;
  color: #6c655d !important;
  font-size: 10px !important;
  font-style: normal !important;
  line-height: 1 !important;
  padding: 5px 7px !important;
  text-align: center !important;
}

body.sgw-theme .sgw-shop-sidebar .current-cat > a em,
body.sgw-theme .sgw-shop-sidebar .sgw-filter-list li a:hover em {
  background: #111 !important;
  color: #fff !important;
}

body.sgw-theme .sgw-price-list {
  display: grid !important;
  gap: 7px !important;
  padding: 10px !important;
}

body.sgw-theme .sgw-shop-sidebar .sgw-filter-link {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid transparent !important;
  border-radius: 6px !important;
  padding: 9px 10px !important;
  color: #69645d !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
}

body.sgw-theme .sgw-shop-sidebar .sgw-filter-link span {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.sgw-theme .sgw-shop-sidebar .sgw-filter-link em {
  min-width: 28px !important;
  border-radius: 999px !important;
  background: #f0ebe4 !important;
  color: #6c655d !important;
  font-size: 10px !important;
  font-style: normal !important;
  line-height: 1 !important;
  padding: 5px 7px !important;
  text-align: center !important;
}

body.sgw-theme .sgw-shop-sidebar .sgw-filter-link:hover {
  border-color: #e4ded5 !important;
  background: #f4f0ea !important;
  color: #111 !important;
}

body.sgw-theme .sgw-shop-sidebar .sgw-filter-link:hover em {
  background: #111 !important;
  color: #fff !important;
}

body.sgw-theme .sgw-filter-empty {
  margin: 0 !important;
  padding: 12px 20px 16px !important;
  color: #7d756c !important;
  font-size: 13px !important;
}

body.sgw-theme .sgw-shop-results {
  min-width: 0 !important;
}

body.sgw-theme .sgw-archive-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 46px 34px !important;
}

body.sgw-theme .sgw-archive-card {
  min-width: 0 !important;
}

body.sgw-theme .sgw-archive-card__image {
  border: 1px solid #f0ebe4 !important;
  border-radius: 8px !important;
  background: #f7f5f1 !important;
}

body.sgw-theme .sgw-archive-card__image img {
  border-radius: 8px !important;
}

body.sgw-theme .sgw-archive-card__title {
  margin-top: 16px !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
}

@media (max-width: 1180px) {
  body.sgw-theme .sgw-shop-layout {
    grid-template-columns: 270px minmax(0, 1fr) !important;
    gap: 34px !important;
  }

  body.sgw-theme .sgw-archive-grid {
    gap: 38px 22px !important;
  }
}

@media (max-width: 900px) {
  body.sgw-theme .sgw-nav,
  body.sgw-theme .sgw-actions a:not(.sgw-cart-link) {
    display: none !important;
  }

  body.sgw-theme .sgw-header-search {
    display: none !important;
  }

  body.sgw-theme .sgw-shop-toolbar__inner {
    grid-template-columns: 1fr !important;
    justify-items: stretch !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  body.sgw-theme .sgw-shop-sort {
    justify-self: stretch !important;
  }

  body.sgw-theme .sgw-shop-sort select {
    width: 100% !important;
  }

  body.sgw-theme .sgw-shop-layout {
    grid-template-columns: 1fr !important;
    padding: 24px 18px 70px !important;
  }

  body.sgw-theme .sgw-shop-sidebar {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    padding: 14px !important;
  }

  body.sgw-theme .sgw-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* BEGIN Signature Watches audit shop mobile overflow fix */
@media (max-width: 900px) {
  html,
  body.sgw-theme {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body.sgw-theme .sgw-shop-layout.sgw-container {
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    overflow: hidden !important;
  }

  body.sgw-theme .sgw-shop-results {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body.sgw-theme .sgw-archive-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 37vw)) !important;
    gap: 28px 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  body.sgw-theme .sgw-archive-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body.sgw-theme .sgw-archive-card__image {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1.22 !important;
  }

  body.sgw-theme .sgw-archive-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 8px !important;
  }

  body.sgw-theme .sgw-archive-card__title,
  body.sgw-theme .sgw-archive-card__price {
    width: 100% !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  body.sgw-theme .sgw-archive-card__title {
    min-height: 3.1em !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 430px) {
  body.sgw-theme .sgw-shop-results {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  body.sgw-theme .sgw-archive-grid {
    grid-template-columns: repeat(2, minmax(0, calc(50vw - 19px))) !important;
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }
}
/* END Signature Watches audit shop mobile overflow fix */

@media (max-width: 560px) {
  body.sgw-theme .sgw-shop-sidebar,
  body.sgw-theme .sgw-archive-grid {
    grid-template-columns: 1fr !important;
  }

  body.sgw-theme .sgw-shop-layout {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}
/* END Signature Watches framed shop layout */

/* BEGIN Signature Watches V6 related products horizontal hardening */
body.single-product section.related.products,
body.single-product .related.products,
body.single-product .woocommerce div.product .related.products {
  clear: both !important;
  display: block !important;
  width: 100% !important;
  max-width: var(--sgw-max) !important;
  margin: clamp(54px, 6vw, 86px) auto 0 !important;
  padding: 0 32px !important;
  box-sizing: border-box !important;
}

body.single-product section.related.products > h2,
body.single-product .related.products > h2,
body.single-product .woocommerce div.product .related.products > h2 {
  margin: 0 0 32px !important;
  font-family: var(--sgw-serif) !important;
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
}

body.single-product section.related.products ul.products,
body.single-product .related.products ul.products,
body.single-product .woocommerce div.product .related ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 34px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.single-product section.related.products ul.products::before,
body.single-product section.related.products ul.products::after,
body.single-product .related.products ul.products::before,
body.single-product .related.products ul.products::after,
body.single-product .woocommerce div.product .related ul.products::before,
body.single-product .woocommerce div.product .related ul.products::after {
  content: none !important;
  display: none !important;
}

body.single-product section.related.products ul.products li.product,
body.single-product .related.products ul.products li.product,
body.single-product .woocommerce div.product .related ul.products li.product,
body.single-product .woocommerce ul.products li.product.product {
  clear: none !important;
  float: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.single-product .related.products ul.products li.product a.woocommerce-LoopProduct-link {
  display: block !important;
  color: inherit !important;
  text-decoration: none !important;
}

body.single-product .related.products ul.products li.product a img,
body.single-product .woocommerce div.product .related ul.products li.product a img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1.28 !important;
  object-fit: cover !important;
  margin: 0 0 16px !important;
  background: #f7f5f1 !important;
  border-radius: 8px !important;
}

body.single-product .related.products ul.products li.product .woocommerce-loop-product__title,
body.single-product .woocommerce div.product .related ul.products li.product .woocommerce-loop-product__title {
  min-height: 2.7em !important;
  margin: 0 0 7px !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body.single-product .related.products ul.products li.product .price,
body.single-product .woocommerce div.product .related ul.products li.product .price {
  display: block !important;
  margin: 0 0 12px !important;
  color: var(--sgw-text) !important;
  font-size: 13px !important;
}

body.single-product .related.products ul.products li.product .button,
body.single-product .woocommerce div.product .related ul.products li.product .button {
  display: inline-flex !important;
  min-height: 36px !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 0 !important;
  padding: 0 16px !important;
  border: 1px solid var(--sgw-charcoal) !important;
  background: var(--sgw-charcoal) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

@media (max-width: 1024px) {
  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products,
  body.single-product .woocommerce div.product .related ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px !important;
  }
}

@media (max-width: 760px) {
  body.single-product section.related.products,
  body.single-product .related.products,
  body.single-product .woocommerce div.product .related.products {
    padding: 0 18px !important;
  }

  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products,
  body.single-product .woocommerce div.product .related ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 14px !important;
  }
}

@media (max-width: 460px) {
  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products,
  body.single-product .woocommerce div.product .related ul.products {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
/* END Signature Watches V6 related products horizontal hardening */

/* BEGIN Signature Watches mobile-first production hardening */
body.sgw-mobile-menu-open {
  overflow: hidden !important;
}

@media (max-width: 900px) {
  html,
  body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100%;
  }

  body.sgw-theme .sgw-topbar {
    min-height: 30px !important;
    padding: 0 12px !important;
    font-size: 10px !important;
    letter-spacing: 0.06em !important;
    text-align: center !important;
  }

  body.sgw-theme .sgw-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 2000 !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  body.sgw-theme .sgw-header__inner {
    grid-template-columns: 48px minmax(0, 1fr) auto !important;
    min-height: 62px !important;
    gap: 10px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  body.sgw-theme .sgw-menu-toggle {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid #e4ded5 !important;
    border-radius: 999px !important;
    background: #fff !important;
    padding: 0 !important;
    box-shadow: 0 8px 22px rgba(31, 27, 22, 0.06) !important;
  }

  body.sgw-theme .sgw-menu-toggle span,
  body.sgw-theme .sgw-menu-toggle::before,
  body.sgw-theme .sgw-menu-toggle::after {
    width: 17px !important;
    height: 1px !important;
    margin: 3px auto !important;
    background: #252525 !important;
    transition: transform 0.2s ease, opacity 0.2s ease !important;
  }

  body.sgw-theme .sgw-menu-toggle[aria-expanded="true"] span {
    opacity: 0 !important;
  }

  body.sgw-theme .sgw-menu-toggle[aria-expanded="true"]::before {
    transform: translateY(4px) rotate(45deg) !important;
  }

  body.sgw-theme .sgw-menu-toggle[aria-expanded="true"]::after {
    transform: translateY(-4px) rotate(-45deg) !important;
  }

  body.sgw-theme .sgw-logo {
    justify-self: center !important;
    width: 48px !important;
    height: 48px !important;
  }

  body.sgw-theme .sgw-logo img {
    width: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
  }

  body.sgw-theme .sgw-actions {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 0 !important;
  }

  body.sgw-theme .sgw-actions a:not(.sgw-cart-link) {
    display: none !important;
  }

  body.sgw-theme .sgw-cart-link {
    min-height: 38px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    font-size: 10px !important;
    white-space: nowrap !important;
  }

  body.sgw-theme .sgw-mobile-panel {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: calc(30px + 62px + env(safe-area-inset-top, 0px)) !important;
    z-index: 1999 !important;
    display: block !important;
    max-height: min(72vh, 540px) !important;
    overflow-y: auto !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) !important;
    border: 1px solid #e4ded5 !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: 0 24px 70px rgba(31, 27, 22, 0.18) !important;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease !important;
  }

  body.sgw-theme .sgw-mobile-panel.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  body.sgw-theme .sgw-mobile-panel ul,
  body.sgw-theme .sgw-mobile-panel li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  body.sgw-theme .sgw-mobile-panel a {
    display: flex !important;
    min-height: 48px !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid #eee8df !important;
    padding: 0 18px !important;
    color: #252525 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
  }

  body.sgw-theme .sgw-mobile-panel a::after {
    content: ">";
    color: #9d6b4e;
    font-size: 13px;
  }

  body.sgw-theme .sgw-mega {
    display: none !important;
  }

  body.sgw-theme .sgw-home-hero.sgw-home-hero--video {
    min-height: clamp(470px, 74vh, 620px) !important;
  }

  body.sgw-theme .sgw-home-hero__copy {
    min-height: inherit !important;
    padding: 82px 18px !important;
  }

  body.sgw-theme .sgw-home-hero__discount {
    max-width: calc(100vw - 36px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(20px, 6.2vw, 28px) !important;
    line-height: 1.12 !important;
    overflow-wrap: break-word !important;
  }

  body.sgw-theme .sgw-home-hero h1 {
    max-width: min(340px, calc(100vw - 36px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(30px, 8.2vw, 38px) !important;
    line-height: 1.08 !important;
    overflow-wrap: break-word !important;
  }

  body.sgw-theme .sgw-home-hero .sgw-button {
    min-height: 46px !important;
    padding: 0 28px !important;
  }

  body.sgw-theme .sgw-press-strip__track {
    min-height: 54px !important;
    padding: 0 16px !important;
    gap: 26px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.sgw-theme .sgw-feature-collections {
    padding-top: 10px !important;
  }

  body.sgw-theme .sgw-feature-collections__rail {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(72vw, 1fr) !important;
    grid-template-columns: none !important;
    gap: 8px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.sgw-theme .sgw-feature-tile {
    min-height: 390px !important;
    scroll-snap-align: start !important;
  }

  body.sgw-theme .sgw-section,
  body.sgw-theme .sgw-home-products {
    padding-top: 34px !important;
    padding-bottom: 42px !important;
  }

  body.sgw-theme .sgw-home-tabs {
    display: flex !important;
    gap: 10px !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
    white-space: nowrap !important;
  }

  body.sgw-theme .sgw-home-products .sgw-products,
  body.sgw-theme .sgw-products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 14px !important;
  }

  body.sgw-theme .sgw-product-card__title,
  body.sgw-theme .sgw-archive-card__title {
    min-height: 2.8em !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  body.sgw-theme .sgw-shop-hero {
    padding: 44px 0 34px !important;
  }

  body.sgw-theme .sgw-shop-hero h1 {
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  body.sgw-theme .sgw-shop-hero p:last-child {
    max-width: 32ch !important;
    font-size: 13px !important;
  }

  body.sgw-theme .sgw-shop-toolbar {
    padding: 12px 0 !important;
  }

  body.sgw-theme .sgw-shop-toolbar__inner {
    grid-template-columns: auto minmax(0, 1fr) !important;
    min-height: 0 !important;
    gap: 10px !important;
    padding: 10px !important;
  }

  body.sgw-theme .sgw-view-icons {
    padding: 8px 10px !important;
  }

  body.sgw-theme .sgw-shop-sort select {
    width: 100% !important;
    min-height: 40px !important;
    font-size: 11px !important;
  }

  body.sgw-theme .sgw-shop-layout {
    display: block !important;
    padding: 18px 14px 58px !important;
  }

  body.sgw-theme .sgw-shop-sidebar {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
    padding: 12px !important;
    border-radius: 10px !important;
  }

  body.sgw-theme .sgw-shop-sidebar details + details {
    margin-top: 0 !important;
  }

  body.sgw-theme .sgw-shop-sidebar summary {
    min-height: 44px !important;
  }

  body.sgw-theme .sgw-shop-sidebar ul {
    max-height: 260px !important;
    overflow-y: auto !important;
  }

  body.sgw-theme .sgw-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 14px !important;
  }

  body.sgw-theme .woocommerce nav.woocommerce-pagination {
    margin-top: 38px !important;
  }

  body.sgw-theme .woocommerce nav.woocommerce-pagination ul {
    flex-wrap: wrap !important;
    gap: 7px !important;
  }

  body.sgw-theme .woocommerce nav.woocommerce-pagination ul li a,
  body.sgw-theme .woocommerce nav.woocommerce-pagination ul li span {
    min-width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
  }

  body.single-product .woocommerce div.product {
    display: block !important;
    padding: 22px 14px 48px !important;
  }

  body.single-product .woocommerce div.product div.images {
    border-radius: 10px !important;
    overflow: hidden !important;
  }

  body.single-product .woocommerce div.product div.summary {
    max-width: none !important;
    padding-top: 24px !important;
  }

  body.single-product .woocommerce div.product .product_title {
    font-size: clamp(30px, 9vw, 42px) !important;
    line-height: 1.08 !important;
  }

  body.single-product .woocommerce div.product p.price,
  body.single-product .woocommerce div.product span.price {
    font-size: 18px !important;
  }

  body.single-product .woocommerce-product-details__short-description {
    font-size: 13px !important;
  }

  body.single-product .woocommerce div.product form.cart {
    display: grid !important;
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 10px !important;
    margin: 22px 0 !important;
  }

  body.single-product .woocommerce div.product form.cart .qty {
    width: 100% !important;
    height: 48px !important;
  }

  body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 0 14px !important;
  }

  body.single-product .woocommerce div.product .woocommerce-tabs {
    margin-top: 28px !important;
  }

  body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs {
    display: grid !important;
    gap: 8px !important;
    padding: 0 !important;
  }

  body.single-product .woocommerce div.product .woocommerce-tabs ul.tabs li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 8px !important;
  }

  body.single-product section.related.products,
  body.single-product .related.products,
  body.single-product .woocommerce div.product .related.products {
    margin-top: 44px !important;
    padding: 0 !important;
  }

  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products,
  body.single-product .woocommerce div.product .related ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px 14px !important;
  }

  body.single-product .related.products ul.products li.product .button,
  body.single-product .woocommerce div.product .related ul.products li.product .button {
    width: 100% !important;
    min-height: 38px !important;
    padding: 0 10px !important;
  }

  body.sgw-theme .woocommerce-cart-form,
  body.sgw-theme .woocommerce-cart .cart-collaterals,
  body.sgw-theme .woocommerce-checkout form.checkout,
  body.sgw-theme .woocommerce-account .woocommerce,
  body.sgw-theme .woocommerce .woocommerce-order {
    width: min(100%, 100vw) !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body.sgw-theme .woocommerce table.shop_table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    border-radius: 8px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.sgw-theme .woocommerce table.shop_table th,
  body.sgw-theme .woocommerce table.shop_table td {
    min-width: 110px !important;
    padding: 12px 10px !important;
    font-size: 12px !important;
  }

  body.sgw-theme .woocommerce form .form-row,
  body.sgw-theme .woocommerce-checkout #customer_details,
  body.sgw-theme .woocommerce-checkout #order_review,
  body.sgw-theme .woocommerce-checkout #order_review_heading {
    width: 100% !important;
    float: none !important;
  }

  body.sgw-theme .woocommerce form .form-row input.input-text,
  body.sgw-theme .woocommerce form .form-row textarea,
  body.sgw-theme .woocommerce form .form-row select,
  body.sgw-theme .select2-container .select2-selection--single {
    min-height: 46px !important;
    font-size: 16px !important;
  }

  body.sgw-theme .woocommerce a.button,
  body.sgw-theme .woocommerce button.button,
  body.sgw-theme .woocommerce input.button,
  body.sgw-theme .woocommerce #payment #place_order {
    min-height: 46px !important;
    width: 100% !important;
    text-align: center !important;
  }

  body.sgw-theme .sgw-footer {
    padding: 38px 0 24px !important;
  }

  body.sgw-theme .sgw-footer__grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  body.sgw-theme .sgw-footer h2,
  body.sgw-theme .sgw-footer h3 {
    margin-bottom: 12px !important;
  }

  body.sgw-theme .sgw-footer a,
  body.sgw-theme .sgw-footer li a,
  body.sgw-theme .sgw-footer .menu-item a {
    min-height: 34px !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
  }

  body.sgw-theme .sgw-footer a.sgw-footer-brand {
    display: grid !important;
    min-height: 106px !important;
    align-items: center !important;
  }

  body.sgw-theme .sgw-footer-brand-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body.sgw-theme .sgw-payment-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  body.sgw-theme .sgw-cookie {
    left: 12px !important;
    right: 12px !important;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: none !important;
    padding: 14px !important;
    border-radius: 10px !important;
    z-index: 3000 !important;
  }

  body.sgw-theme .sgw-cookie p {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  body.sgw-theme .sgw-cookie button {
    width: 100% !important;
    min-height: 42px !important;
  }
}

@media (max-width: 430px) {
  body.sgw-theme .sgw-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body.sgw-theme .sgw-home-products .sgw-products,
  body.sgw-theme .sgw-products,
  body.sgw-theme .sgw-archive-grid,
  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products,
  body.single-product .woocommerce div.product .related ul.products {
    gap: 24px 10px !important;
  }

  body.sgw-theme .sgw-product-card__title,
  body.sgw-theme .sgw-archive-card__title,
  body.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
    font-size: 11px !important;
  }
}

@media (max-width: 360px) {
  body.sgw-theme .sgw-cart-link {
    padding: 0 9px !important;
    font-size: 9px !important;
  }

  body.sgw-theme .sgw-home-products .sgw-products,
  body.sgw-theme .sgw-products,
  body.sgw-theme .sgw-archive-grid,
  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products,
  body.single-product .woocommerce div.product .related ul.products {
    grid-template-columns: 1fr !important;
  }

  body.single-product .woocommerce div.product form.cart {
    grid-template-columns: 1fr !important;
  }
}
/* END Signature Watches mobile-first production hardening */

/* BEGIN Signature Watches mobile menu tap reliability */
.sgw-cookie[hidden],
body.sgw-theme .sgw-cookie[hidden] {
  display: none !important;
}

@media (max-width: 900px) {
  body.sgw-theme .sgw-menu-toggle {
    position: relative !important;
    z-index: 2105 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  body.sgw-theme .sgw-menu-toggle span,
  body.sgw-theme .sgw-menu-toggle::before,
  body.sgw-theme .sgw-menu-toggle::after {
    pointer-events: none !important;
  }

  body.sgw-theme .sgw-header__inner,
  body.sgw-theme .sgw-header {
    overflow: visible !important;
  }

  body.sgw-theme .sgw-mobile-panel {
    pointer-events: auto !important;
  }
}
/* END Signature Watches mobile menu tap reliability */

/* BEGIN Signature Watches 1.2.8 Voncher-style single product layout */
body.single-product .sgw-product-page {
  background: var(--sgw-white) !important;
  padding: clamp(18px, 3vw, 42px) 0 0 !important;
}

body.single-product .sgw-product-shell {
  width: min(100%, var(--sgw-max)) !important;
  margin: 0 auto !important;
  padding: 0 32px !important;
}

body.single-product .sgw-product-breadcrumb {
  margin: 0 0 clamp(18px, 3vw, 34px) !important;
  color: #777 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
  text-transform: uppercase !important;
}

body.single-product .sgw-product-breadcrumb .woocommerce-breadcrumb {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  color: inherit !important;
}

body.single-product .sgw-product-breadcrumb a {
  color: #363636 !important;
  text-decoration: none !important;
}

body.single-product .sgw-product-page div.product.type-product,
body.single-product .sgw-product-shell > div.product.type-product {
  clear: both !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: start !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.single-product .sgw-product-page div.product.type-product::before,
body.single-product .sgw-product-page div.product.type-product::after {
  content: none !important;
  display: none !important;
}

body.single-product .sgw-product-page div.product.type-product > .woocommerce-product-gallery,
body.single-product .sgw-product-page div.product.type-product > div.images {
  float: none !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  opacity: 1 !important;
  position: relative !important;
}

body.single-product .sgw-product-page div.product.type-product > .summary,
body.single-product .sgw-product-page div.product.type-product > div.summary {
  float: none !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: 560px !important;
  margin: 0 !important;
  padding: 2px 0 0 !important;
}

body.single-product .woocommerce-product-gallery__wrapper,
body.single-product .woocommerce-product-gallery .flex-viewport {
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid #f0ebe4 !important;
  border-radius: 8px !important;
  background: #f7f5f1 !important;
}

body.single-product .woocommerce-product-gallery__image,
body.single-product .woocommerce-product-gallery__image a {
  display: block !important;
  width: 100% !important;
  background: #f7f5f1 !important;
}

body.single-product .woocommerce-product-gallery__image img,
body.single-product div.product div.images img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  padding: clamp(18px, 3vw, 42px) !important;
  background: #f7f5f1 !important;
}

body.single-product .woocommerce-product-gallery__trigger {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 5 !important;
  display: flex !important;
  width: 42px !important;
  height: 42px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #e8e4df !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: var(--sgw-black) !important;
  text-indent: 0 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
}

body.single-product div.product.type-product ol.flex-control-thumbs,
body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 16px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  counter-reset: none !important;
}

body.single-product div.product.type-product ol.flex-control-thumbs li,
body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs li {
  float: none !important;
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.single-product div.product.type-product ol.flex-control-thumbs li::marker,
body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs li::marker {
  content: "" !important;
  font-size: 0 !important;
}

body.single-product div.product.type-product ol.flex-control-thumbs img,
body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs img {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  padding: 8px !important;
  object-fit: contain !important;
  border: 1px solid #eee8df !important;
  border-radius: 6px !important;
  background: #f7f5f1 !important;
  opacity: 0.72 !important;
  cursor: pointer !important;
}

body.single-product div.product.type-product ol.flex-control-thumbs img.flex-active,
body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs img.flex-active,
body.single-product div.product.type-product ol.flex-control-thumbs img:hover {
  border-color: var(--sgw-black) !important;
  opacity: 1 !important;
}

body.single-product div.product.type-product .product_title {
  margin: 0 0 16px !important;
  color: var(--sgw-ink) !important;
  font-family: var(--sgw-serif) !important;
  font-size: clamp(36px, 4.3vw, 62px) !important;
  font-weight: 400 !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body.single-product div.product.type-product p.price,
body.single-product div.product.type-product span.price {
  display: block !important;
  margin: 0 0 22px !important;
  color: var(--sgw-black) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

body.single-product .woocommerce-product-details__short-description {
  margin: 0 0 22px !important;
  padding: 18px 0 !important;
  border-top: 1px solid var(--sgw-line) !important;
  border-bottom: 1px solid var(--sgw-line) !important;
  color: #4f4f4f !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

body.single-product .woocommerce-product-details__short-description p {
  margin: 0 !important;
}

body.single-product .sgw-single-badges {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  margin: 0 0 24px !important;
}

body.single-product .sgw-single-badges span {
  display: flex !important;
  min-height: 36px !important;
  align-items: center !important;
  padding: 0 12px !important;
  border: 1px solid #eee8df !important;
  border-radius: 6px !important;
  background: #fbfaf8 !important;
  color: #555 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

body.single-product div.product.type-product form.cart {
  display: grid !important;
  grid-template-columns: 84px minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: stretch !important;
  margin: 26px 0 !important;
}

body.single-product div.product.type-product form.cart .quantity {
  float: none !important;
  margin: 0 !important;
}

body.single-product div.product.type-product form.cart .qty {
  width: 100% !important;
  min-width: 0 !important;
  height: 52px !important;
  min-height: 52px !important;
  border: 1px solid #d8d1c8 !important;
  border-radius: 0 !important;
  background: var(--sgw-white) !important;
  color: var(--sgw-black) !important;
  text-align: center !important;
  font-size: 16px !important;
}

body.single-product div.product.type-product form.cart .single_add_to_cart_button {
  display: inline-flex !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 24px !important;
  border: 1px solid var(--sgw-black) !important;
  border-radius: 0 !important;
  background: var(--sgw-black) !important;
  color: var(--sgw-white) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

body.single-product div.product.type-product form.cart .sgw-add-cart-secondary {
  display: inline-flex !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 24px !important;
  border: 1px solid var(--sgw-black) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--sgw-black) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.sgw-archive-card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.sgw-archive-card__button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--sgw-black);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sgw-archive-card__button--buy {
  background: var(--sgw-black);
  color: var(--sgw-white);
}

.sgw-archive-card__button--cart {
  background: transparent;
  color: var(--sgw-black);
}

.sgw-archive-card__button:hover {
  opacity: 0.92;
}

body.single-product .sgw-product-info-blocks {
  display: grid !important;
  gap: 14px !important;
  margin: 0 0 24px !important;
}

body.single-product .sgw-product-info-card {
  padding: 18px !important;
  border: 1px solid var(--sgw-line) !important;
  border-radius: 8px !important;
  background: #fbfaf8 !important;
}

body.single-product .sgw-product-info-card h2 {
  margin: 0 0 12px !important;
  color: var(--sgw-ink) !important;
  font-family: var(--sgw-sans) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

body.single-product .sgw-product-info-card ul {
  display: grid !important;
  gap: 8px !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  list-style: none !important;
  color: #555 !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

body.single-product .sgw-product-info-card li {
  margin: 0 !important;
  padding-left: 16px !important;
  position: relative !important;
}

body.single-product .sgw-product-info-card li::before {
  content: "" !important;
  position: absolute !important;
  top: 0.74em !important;
  left: 0 !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: var(--sgw-accent) !important;
}

body.single-product .sgw-product-info-card p {
  margin: 0 !important;
  color: #555 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

body.single-product .sgw-product-info-card a {
  color: var(--sgw-black) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

body.single-product .sgw-product-specs-card dl {
  display: grid !important;
  gap: 0 !important;
  margin: 0 !important;
}

body.single-product .sgw-product-specs-card dl div {
  display: grid !important;
  grid-template-columns: 110px minmax(0, 1fr) !important;
  gap: 12px !important;
  padding: 9px 0 !important;
  border-bottom: 1px solid #ece7df !important;
}

body.single-product .sgw-product-specs-card dl div:last-child {
  border-bottom: 0 !important;
}

body.single-product .sgw-product-specs-card dt,
body.single-product .sgw-product-specs-card dd {
  margin: 0 !important;
  color: #555 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

body.single-product .sgw-product-specs-card dt {
  color: var(--sgw-ink) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

body.single-product div.product.type-product .product_meta {
  display: grid !important;
  gap: 9px !important;
  margin: 22px 0 0 !important;
  padding-top: 18px !important;
  border-top: 1px solid var(--sgw-line) !important;
  color: #666 !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

body.single-product div.product.type-product .product_meta > span {
  display: block !important;
}

body.single-product div.product.type-product .product_meta a {
  color: var(--sgw-black) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

body.single-product .sgw-product-page div.product.type-product > .woocommerce-tabs,
body.single-product .sgw-product-page div.product.type-product > section.related.products,
body.single-product .sgw-product-page div.product.type-product > .related.products,
body.single-product .sgw-product-page div.product.type-product > .upsells {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none !important;
}

body.single-product div.product.type-product .woocommerce-tabs {
  margin-top: clamp(44px, 6vw, 76px) !important;
  padding-top: 0 !important;
  border-top: 1px solid var(--sgw-line) !important;
}

body.single-product div.product.type-product .woocommerce-tabs ul.tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  border-bottom: 1px solid var(--sgw-line) !important;
  list-style: none !important;
}

body.single-product div.product.type-product .woocommerce-tabs ul.tabs li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  list-style: none !important;
}

body.single-product div.product.type-product .woocommerce-tabs ul.tabs li::before,
body.single-product div.product.type-product .woocommerce-tabs ul.tabs li::after,
body.single-product div.product.type-product .woocommerce-tabs ul.tabs li::marker {
  content: none !important;
  display: none !important;
}

body.single-product div.product.type-product .woocommerce-tabs ul.tabs a {
  display: flex !important;
  min-height: 52px !important;
  align-items: center !important;
  padding: 0 24px !important;
  color: #777 !important;
  border-bottom: 2px solid transparent !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

body.single-product div.product.type-product .woocommerce-tabs ul.tabs li.active a {
  color: var(--sgw-black) !important;
  border-bottom-color: var(--sgw-black) !important;
}

body.single-product div.product.type-product .woocommerce-Tabs-panel {
  max-width: 980px !important;
  margin: 0 auto !important;
  color: #333 !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}

body.single-product div.product.type-product .woocommerce-Tabs-panel h2,
body.single-product div.product.type-product .woocommerce-Tabs-panel h3 {
  margin: 0 0 16px !important;
  color: var(--sgw-ink) !important;
  font-family: var(--sgw-serif) !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
}

body.single-product section.related.products,
body.single-product .related.products {
  margin: clamp(48px, 7vw, 88px) auto 0 !important;
  padding: 0 0 clamp(54px, 7vw, 86px) !important;
}

body.single-product section.related.products > h2,
body.single-product .related.products > h2 {
  margin: 0 0 28px !important;
  color: var(--sgw-ink) !important;
  font-family: var(--sgw-serif) !important;
  font-size: clamp(26px, 3vw, 42px) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

body.single-product section.related.products ul.products,
body.single-product .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 34px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.single-product section.related.products ul.products li,
body.single-product section.related.products ul.products li.product,
body.single-product .related.products ul.products li,
body.single-product .related.products ul.products li.product {
  float: none !important;
  clear: none !important;
  display: block !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.single-product section.related.products ul.products li::marker,
body.single-product .related.products ul.products li::marker {
  content: "" !important;
  font-size: 0 !important;
}

@media (max-width: 1100px) {
  body.single-product .sgw-product-page div.product.type-product,
  body.single-product .sgw-product-shell > div.product.type-product {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr) !important;
    gap: 32px !important;
  }

  body.single-product div.product.type-product ol.flex-control-thumbs,
  body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  body.single-product .sgw-product-shell {
    padding: 0 16px !important;
    overflow-x: hidden !important;
  }

  body.single-product .sgw-product-page div.product.type-product,
  body.single-product .sgw-product-shell > div.product.type-product {
    display: block !important;
  }

  body.single-product .sgw-product-page div.product.type-product > .summary,
  body.single-product .sgw-product-page div.product.type-product > div.summary {
    max-width: none !important;
    margin-top: 28px !important;
  }

  body.single-product .woocommerce-product-gallery__wrapper {
    display: block !important;
    grid-template-columns: 1fr !important;
  }

  body.single-product .woocommerce-product-gallery__image:not(:first-child) {
    display: none !important;
  }

  body.single-product div.product.type-product ol.flex-control-thumbs,
  body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs {
    display: flex !important;
    gap: 10px !important;
    margin: 12px 0 0 !important;
    padding: 0 0 4px !important;
    overflow-x: auto !important;
    list-style: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  body.single-product div.product.type-product ol.flex-control-thumbs li,
  body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs li {
    flex: 0 0 72px !important;
    width: 72px !important;
    min-width: 72px !important;
  }

  body.single-product div.product.type-product ol.flex-control-thumbs img,
  body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs img {
    padding: 6px !important;
  }

  body.single-product div.product.type-product .product_title {
    overflow-wrap: break-word !important;
    font-size: clamp(30px, 8.2vw, 42px) !important;
  }

  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 14px !important;
  }
}

@media (max-width: 520px) {
  body.single-product .sgw-product-page {
    padding-top: 14px !important;
  }

  body.single-product .sgw-product-shell {
    padding: 0 14px !important;
  }

  body.single-product .woocommerce-product-gallery__image img,
  body.single-product div.product div.images img {
    padding: 14px !important;
  }

  body.single-product div.product.type-product ol.flex-control-thumbs,
  body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  body.single-product div.product.type-product form.cart {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  body.single-product .sgw-product-specs-card dl div {
    grid-template-columns: 92px minmax(0, 1fr) !important;
  }

  body.single-product div.product.type-product .woocommerce-tabs ul.tabs {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body.single-product div.product.type-product .woocommerce-tabs ul.tabs a {
    min-height: 44px !important;
    padding: 0 !important;
  }

  body.single-product section.related.products ul.products,
  body.single-product .related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
/* END Signature Watches 1.2.8 Voncher-style single product layout */

/* BEGIN Signature Watches 1.2.8 product gallery grid stability */
body.single-product .woocommerce-product-gallery .flex-viewport {
  height: auto !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.single-product .woocommerce-product-gallery__wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  width: 100% !important;
  margin: 0 !important;
  transform: none !important;
  transition: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.single-product .woocommerce-product-gallery__image {
  float: none !important;
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid #f0ebe4 !important;
  border-radius: 8px !important;
  background: #f7f5f1 !important;
  opacity: 1 !important;
}

body.single-product .woocommerce-product-gallery__image:first-child {
  grid-column: 1 / -1 !important;
}

body.single-product .woocommerce-product-gallery__image a {
  display: block !important;
  width: 100% !important;
  background: #f7f5f1 !important;
}

body.single-product .woocommerce-product-gallery__image img,
body.single-product div.product div.images .woocommerce-product-gallery__image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 !important;
  padding: clamp(16px, 2.6vw, 34px) !important;
  object-fit: contain !important;
  background: #f7f5f1 !important;
}

body.single-product div.product.type-product ol.flex-control-thumbs,
body.single-product div.product.type-product .flex-control-nav.flex-control-thumbs {
  display: none !important;
}

@media (max-width: 520px) {
  body.single-product .woocommerce-product-gallery__wrapper {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.single-product .woocommerce-product-gallery__image img,
  body.single-product div.product div.images .woocommerce-product-gallery__image img {
    padding: 12px !important;
  }

  body.single-product div.product.type-product .product_title {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    font-size: clamp(24px, 6.6vw, 29px) !important;
    line-height: 1.08 !important;
    word-break: normal !important;
  }

  body.single-product .woocommerce-product-details__short-description,
  body.single-product .woocommerce-product-details__short-description p,
  body.single-product .summary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
}
/* END Signature Watches 1.2.8 product gallery grid stability */

/* BEGIN Signature Watches 1.2.38 homepage showcase */
body.sgw-theme .sgw-home-product-group {
  border-top: 1px solid var(--sgw-line) !important;
  padding: 42px 0 52px !important;
}

body.sgw-theme .sgw-home-product-group:first-child {
  padding-top: 0 !important;
}

body.sgw-theme .sgw-home-product-group__head {
  display: grid !important;
  grid-template-columns: minmax(0, 560px) auto !important;
  gap: 24px !important;
  align-items: end !important;
  margin-bottom: 26px !important;
}

body.sgw-theme .sgw-home-product-group__head h2 {
  margin: 0 !important;
  font-family: var(--sgw-serif) !important;
  font-size: clamp(32px, 4vw, 56px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

body.sgw-theme .sgw-home-product-group__head p:last-child {
  margin: 12px 0 0 !important;
  color: var(--sgw-muted) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

body.sgw-theme .sgw-home-product-group__head > a {
  justify-self: end !important;
  border-bottom: 1px solid currentColor !important;
  padding-bottom: 4px !important;
  color: var(--sgw-muted) !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

body.sgw-theme .sgw-home-products .sgw-product-card__actions {
  gap: 8px !important;
}

@media (max-width: 820px) {
  body.sgw-theme .sgw-home-product-group {
    padding: 32px 0 40px !important;
  }

  body.sgw-theme .sgw-home-product-group__head {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
  }

  body.sgw-theme .sgw-home-product-group__head > a {
    justify-self: start !important;
  }

  body.sgw-theme .sgw-home-product-group__head h2 {
    font-size: 34px !important;
  }
}

@media (max-width: 430px) {
  body.sgw-theme .sgw-home-products .sgw-products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px 10px !important;
  }

  body.sgw-theme .sgw-home-products .sgw-archive-card__button {
    min-height: 38px !important;
    padding: 0 8px !important;
    font-size: 9px !important;
  }
}

@media (max-width: 360px) {
  body.sgw-theme .sgw-home-products .sgw-products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
/* END Signature Watches 1.2.38 homepage showcase */

@media (max-width: 900px) {
  body.single-product .sgw-product-page div.product.type-product > .summary,
  body.single-product .sgw-product-page div.product.type-product > div.summary {
    width: 100% !important;
    max-width: 340px !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  body.single-product div.product.type-product .product_title {
    width: 100% !important;
    max-width: 340px !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    font-size: 26px !important;
    line-height: 1.08 !important;
    text-transform: none !important;
  }

  body.single-product .woocommerce-product-details__short-description,
  body.single-product .woocommerce-product-details__short-description p {
    display: block !important;
    width: 100% !important;
    max-width: 300px !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    font-size: 13px !important;
  }

  body.single-product .sgw-product-info-card,
  body.single-product .sgw-product-info-card li,
  body.single-product .sgw-product-info-card p,
  body.single-product .sgw-product-info-card a,
  body.single-product .sgw-product-info-card dd {
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
}

/* BEGIN Signature Watches final marquee override */
body.sgw-theme .sgw-press-strip.sgw-brand-marquee {
  display: block !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #11100f !important;
}

body.sgw-theme .sgw-press-strip.sgw-brand-marquee .sgw-press-strip__viewport {
  width: 100% !important;
  overflow: hidden !important;
  background: #11100f !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%) !important;
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%) !important;
}

body.sgw-theme .sgw-press-strip.sgw-brand-marquee .sgw-press-strip__track {
  display: flex !important;
  width: max-content !important;
  min-width: max-content !important;
  min-height: 76px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  overflow: visible !important;
  padding: 12px 0 !important;
  white-space: nowrap !important;
  animation: sgw-brand-marquee 34s linear infinite !important;
  will-change: transform !important;
}

body.sgw-theme .sgw-press-strip.sgw-brand-marquee:hover .sgw-press-strip__track {
  animation-play-state: paused !important;
}

body.sgw-theme .sgw-press-strip.sgw-brand-marquee .sgw-press-chip {
  display: inline-flex !important;
  min-height: 44px !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  color: #f8f4ee !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  padding: 0 18px !important;
}

body.sgw-theme .sgw-press-strip.sgw-brand-marquee .sgw-press-chip::before {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  flex: 0 0 auto !important;
  border-radius: 50% !important;
  background: #d6a236 !important;
  box-shadow: 0 0 0 4px rgba(214, 162, 54, 0.12) !important;
}

body.sgw-theme .sgw-press-strip.sgw-brand-marquee .sgw-press-chip strong {
  color: #fff !important;
  font-family: "Times New Roman", Times, serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

body.sgw-theme .sgw-press-strip.sgw-brand-marquee .sgw-press-chip em {
  color: rgba(248, 244, 238, 0.74) !important;
  font-size: 12px !important;
  font-style: normal !important;
  line-height: 1 !important;
}

@media (max-width: 640px) {
  body.sgw-theme .sgw-press-strip.sgw-brand-marquee .sgw-press-strip__track {
    min-height: 64px !important;
    gap: 8px !important;
    padding: 10px 0 !important;
    animation-duration: 26s !important;
  }

  body.sgw-theme .sgw-press-strip.sgw-brand-marquee .sgw-press-chip {
    min-height: 40px !important;
    gap: 8px !important;
    padding: 0 13px !important;
  }

  body.sgw-theme .sgw-press-strip.sgw-brand-marquee .sgw-press-chip strong {
    font-size: 15px !important;
  }

  body.sgw-theme .sgw-press-strip.sgw-brand-marquee .sgw-press-chip em {
    max-width: 190px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 11px !important;
  }
}
/* END Signature Watches final marquee override */

/* BEGIN Signature Watches support chat and email widget */
body.sgw-theme .sgw-support-widget {
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 9998 !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

body.sgw-theme .sgw-support-widget.has-cookie-banner {
  bottom: 134px !important;
}

body.sgw-theme .sgw-support-toggle {
  display: grid !important;
  gap: 2px !important;
  min-width: 118px !important;
  min-height: 54px !important;
  align-items: center !important;
  justify-items: center !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 999px !important;
  background: #111 !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24) !important;
  color: #fff !important;
  cursor: pointer !important;
  padding: 9px 18px !important;
  text-transform: uppercase !important;
}

body.sgw-theme .sgw-support-toggle span {
  color: #d6a236 !important;
  font-size: 10px !important;
  letter-spacing: 0.16em !important;
}

body.sgw-theme .sgw-support-toggle strong {
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
}

body.sgw-theme .sgw-support-panel {
  position: absolute !important;
  right: 0 !important;
  bottom: 68px !important;
  width: min(380px, calc(100vw - 28px)) !important;
  overflow: hidden !important;
  border: 1px solid #e2ddd5 !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25) !important;
  color: #111 !important;
}

body.sgw-theme .sgw-support-panel[hidden] {
  display: none !important;
}

body.sgw-theme .sgw-support-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  background: #111 !important;
  color: #fff !important;
  padding: 16px !important;
}

body.sgw-theme .sgw-support-head strong {
  display: block !important;
  font-family: "Times New Roman", Times, serif !important;
  font-size: 20px !important;
  line-height: 1 !important;
}

body.sgw-theme .sgw-support-head span {
  display: block !important;
  margin-top: 5px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

body.sgw-theme .sgw-support-head button {
  width: 34px !important;
  height: 34px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  cursor: pointer !important;
  font-size: 24px !important;
  line-height: 1 !important;
}

body.sgw-theme .sgw-support-policy-links {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  border-bottom: 1px solid #eee8df !important;
  background: #fbfaf8 !important;
  padding: 14px !important;
}

body.sgw-theme .sgw-support-policy-links a {
  display: flex !important;
  min-height: 42px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid #e3ddd4 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #312f2b !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  padding: 0 10px !important;
  text-align: center !important;
  text-decoration: none !important;
}

body.sgw-theme .sgw-support-policy-links a:hover {
  border-color: #111 !important;
  background: #111 !important;
  color: #fff !important;
}

body.sgw-theme .sgw-support-status {
  margin: 10px 14px 0 !important;
  border-radius: 8px !important;
  background: #f4f0ea !important;
  color: #312f2b !important;
  padding: 9px 10px !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

body.sgw-theme .sgw-support-form {
  display: grid !important;
  gap: 8px !important;
  padding: 14px !important;
}

body.sgw-theme .sgw-support-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
}

body.sgw-theme .sgw-support-form input,
body.sgw-theme .sgw-support-form textarea {
  width: 100% !important;
  border: 1px solid #e2ddd5 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #111 !important;
  font-size: 13px !important;
  padding: 11px 12px !important;
}

body.sgw-theme .sgw-support-form textarea {
  resize: vertical !important;
}

body.sgw-theme .sgw-support-form button {
  min-height: 42px !important;
  border: 1px solid #111 !important;
  border-radius: 8px !important;
  background: #111 !important;
  color: #fff !important;
  cursor: pointer !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body.sgw-theme .sgw-support-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

body.sgw-theme .sgw-support-direct {
  display: block !important;
  border-top: 1px solid #eee8df !important;
  color: #6f655b !important;
  padding: 0 14px 14px !important;
  font-size: 12px !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

@media (max-width: 560px) {
  body.sgw-theme .sgw-support-widget {
    right: 12px !important;
    bottom: 12px !important;
  }

  body.sgw-theme .sgw-support-widget.has-cookie-banner {
    bottom: 190px !important;
  }

  body.sgw-theme .sgw-support-toggle {
    min-width: 56px !important;
    min-height: 28px !important;
    padding: 4px 8px !important;
  }

  body.sgw-theme .sgw-support-toggle span {
    font-size: 7px !important;
    letter-spacing: 0.1em !important;
  }

  body.sgw-theme .sgw-support-toggle strong {
    font-size: 8px !important;
    letter-spacing: 0.05em !important;
  }

  body.sgw-theme .sgw-support-panel {
    bottom: 60px !important;
    width: calc(100vw - 24px) !important;
  }

  body.sgw-theme .sgw-support-policy-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.sgw-theme .sgw-support-row {
    grid-template-columns: 1fr !important;
  }
}
/* END Signature Watches support chat and email widget */

/* START Signature Watches account experience */
.woocommerce-account .entry-content > .woocommerce,
.woocommerce-account .woocommerce {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.woocommerce-account .woocommerce-notices-wrapper {
  margin-bottom: 24px;
}

.woocommerce-account .woocommerce-form-login-toggle,
.woocommerce-account .woocommerce-form-coupon-toggle,
.woocommerce-account .woocommerce-info {
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid var(--sgw-line);
  border-radius: 10px;
  background: #fbfaf8;
}

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

.woocommerce-account .u-column1,
.woocommerce-account .u-column2,
.woocommerce-account .col-1,
.woocommerce-account .col-2 {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.woocommerce-account form.woocommerce-form-login,
.woocommerce-account form.woocommerce-form-register,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  border: 1px solid var(--sgw-line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdf9 0%, #f8f4ed 100%);
  box-shadow: 0 18px 42px rgba(34, 26, 16, 0.06);
}

.woocommerce-account form.woocommerce-form-login,
.woocommerce-account form.woocommerce-form-register,
.woocommerce-account .woocommerce-MyAccount-content {
  padding: 28px;
}

.woocommerce-account form.login,
.woocommerce-account form.register {
  margin: 0;
}

.woocommerce-account h1,
.woocommerce-account h2,
.woocommerce-account h3 {
  color: var(--sgw-ink);
}

.woocommerce-account h1 {
  margin-bottom: 26px;
  font-family: var(--sgw-serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.woocommerce-account h2 {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.15;
}

.woocommerce-account form .form-row {
  margin-bottom: 16px;
}

.woocommerce-account form .form-row label {
  margin-bottom: 8px;
  color: #4f4f4f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woocommerce-account form .form-row input.input-text,
.woocommerce-account form .form-row textarea,
.woocommerce-account form .form-row select {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #d7d0c6;
  border-radius: 10px;
  background: #fff;
  color: var(--sgw-black);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce-account form .form-row input.input-text:focus,
.woocommerce-account form .form-row textarea:focus,
.woocommerce-account form .form-row select:focus {
  border-color: #b88a4a;
  box-shadow: 0 0 0 3px rgba(184, 138, 74, 0.14);
  outline: none;
}

.woocommerce-account .show-password-input {
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.woocommerce-account .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 0;
  color: #5a5a5a;
  font-size: 13px;
}

.woocommerce-account .woocommerce-button,
.woocommerce-account button.button,
.woocommerce-account input.button,
.woocommerce-account a.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--sgw-black);
  border-radius: 999px;
  background: var(--sgw-black);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce-button:hover,
.woocommerce-account button.button:hover,
.woocommerce-account input.button:hover,
.woocommerce-account a.button:hover {
  background: #222;
  color: #fff;
}

.woocommerce-account .lost_password,
.woocommerce-account .woocommerce-LostPassword,
.woocommerce-account .lost_password a {
  color: #7a5b2d;
}

.woocommerce-account .sgw-account-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid #eadfcd;
  border-radius: 10px;
  background: rgba(191, 153, 91, 0.08);
  color: #5e4c2f;
  font-size: 13px;
  line-height: 1.55;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  padding: 18px;
}

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

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #e6dfd5;
  border-radius: 10px;
  background: #fff;
  color: var(--sgw-black);
  text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  border-color: #c9a870;
  background: #f7f1e7;
}

.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions .button {
  min-height: 38px;
  padding: 0 14px;
}

.woocommerce-account .woocommerce-Address,
.woocommerce-account .woocommerce-EditAccountForm fieldset {
  border: 1px solid #e8e0d5;
  border-radius: 12px;
  padding: 18px;
  background: #fff;
}

.woocommerce-account .woocommerce-EditAccountForm fieldset legend {
  padding: 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .woocommerce-account .u-columns,
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account .woocommerce-MyAccount-navigation {
    display: block;
  }

  .woocommerce-account .u-columns {
    grid-template-columns: 1fr;
  }

  .woocommerce-account form.woocommerce-form-login,
  .woocommerce-account form.woocommerce-form-register,
  .woocommerce-account .woocommerce-MyAccount-content,
  .woocommerce-account .woocommerce-MyAccount-navigation {
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .woocommerce-account h1 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .woocommerce-account h2 {
    font-size: 20px;
  }

  .woocommerce-account .woocommerce-button,
  .woocommerce-account button.button,
  .woocommerce-account input.button,
  .woocommerce-account a.button {
    width: 100%;
  }
}
/* END Signature Watches account experience */

/* START Signature Watches account premium refresh */
.woocommerce-account .sgw-account-auth-hero,
.woocommerce-account .sgw-account-dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
  margin: 0 0 28px;
  padding: 24px 26px;
  border: 1px solid #eadfcd;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(212, 173, 109, 0.18), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f6efe4 100%);
  box-shadow: 0 20px 44px rgba(36, 26, 15, 0.06);
}

.woocommerce-account .sgw-account-auth-hero__eyebrow,
.woocommerce-account .sgw-account-dashboard-hero__eyebrow {
  margin: 0 0 10px;
  color: #9f7640;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.woocommerce-account .sgw-account-auth-hero h2,
.woocommerce-account .sgw-account-dashboard-hero h2 {
  margin: 0 0 12px;
  font-family: var(--sgw-serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
}

.woocommerce-account .sgw-account-auth-hero p,
.woocommerce-account .sgw-account-dashboard-hero p {
  margin: 0;
  color: #5f574d;
  font-size: 14px;
  line-height: 1.7;
}

.woocommerce-account .sgw-account-auth-hero__points,
.woocommerce-account .sgw-account-dashboard-hero__actions {
  display: grid;
  gap: 12px;
  align-content: center;
}

.woocommerce-account .sgw-account-auth-hero__points span,
.woocommerce-account .sgw-account-dashboard-hero__actions a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #e7dbc7;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--sgw-black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.woocommerce-account .sgw-account-dashboard-hero__actions a:hover {
  border-color: #c7a066;
  background: #fff;
}

.woocommerce-account .u-column1 h2,
.woocommerce-account .u-column2 h2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce-account .u-column1 h2::before,
.woocommerce-account .u-column2 h2::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    no-repeat center / 16px 16px,
    linear-gradient(180deg, #fff 0%, #f2e5cf 100%);
  border: 1px solid #e5d5bb;
}

.woocommerce-account .u-column1 h2::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #fff 0%, #f2e5cf 100%);
}

.woocommerce-account .u-column2 h2::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #fff 0%, #f2e5cf 100%);
}

.woocommerce-account form.woocommerce-form-login,
.woocommerce-account form.woocommerce-form-register {
  position: relative;
  overflow: hidden;
}

.woocommerce-account form.woocommerce-form-login::after,
.woocommerce-account form.woocommerce-form-register::after {
  content: "";
  position: absolute;
  inset: auto -40px -42px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 153, 91, 0.18) 0%, rgba(191, 153, 91, 0) 72%);
  pointer-events: none;
}

.woocommerce-account input[name="username"],
.woocommerce-account input[name="email"],
.woocommerce-account input[name="billing_email"],
.woocommerce-account input#username,
.woocommerce-account input#reg_email {
  padding-left: 46px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2373685d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px 50%;
  background-size: 18px 18px;
}

.woocommerce-account input[name="password"],
.woocommerce-account input[name="password_1"],
.woocommerce-account input[name="password_2"],
.woocommerce-account input#password,
.woocommerce-account input#reg_password {
  padding-left: 46px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2373685d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='10' rx='2'/%3E%3Cpath d='M7 11V8a5 5 0 0 1 10 0v3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px 50%;
  background-size: 18px 18px;
}

.woocommerce-account .woocommerce-form-login .form-row-last,
.woocommerce-account .woocommerce-form-register .woocommerce-privacy-policy-text,
.woocommerce-account .woocommerce-form-register .form-row {
  position: relative;
  z-index: 1;
}

.woocommerce-account .woocommerce-form-login .form-row-last {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.woocommerce-account .woocommerce-form-login .woocommerce-form-login__submit {
  min-width: 158px;
}

.woocommerce-account .woocommerce-form-login .clear,
.woocommerce-account .woocommerce-form-register .clear {
  display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky;
  top: 112px;
}

.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
  margin-top: 0;
  color: #5f574d;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-order-details,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-customer-details,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
  margin-top: 24px;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info {
  border-radius: 10px;
}

@media (max-width: 900px) {
  .woocommerce-account .sgw-account-auth-hero,
  .woocommerce-account .sgw-account-dashboard-hero {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
    top: auto;
  }
}

@media (max-width: 560px) {
  .woocommerce-account .woocommerce-form-login .form-row-last {
    display: grid;
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-form-login .woocommerce-form-login__submit {
    width: 100%;
    min-width: 0;
  }
}
/* END Signature Watches account premium refresh */

/* START Signature Watches frontend customer directory */
.sgw-customer-web {
  display: grid;
  gap: 24px;
}

.sgw-customer-web__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 20px;
  padding: 24px 26px;
  border: 1px solid #eadfcd;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(212, 173, 109, 0.18), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f6efe4 100%);
  box-shadow: 0 20px 44px rgba(36, 26, 15, 0.06);
}

.sgw-customer-web__eyebrow {
  margin: 0 0 10px;
  color: #9f7640;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sgw-customer-web h1 {
  margin: 0 0 12px;
  font-family: var(--sgw-serif);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.sgw-customer-web__hero p,
.sgw-customer-web__notice p {
  margin: 0;
  color: #5f574d;
  font-size: 14px;
  line-height: 1.7;
}

.sgw-customer-web__hero-links {
  display: grid;
  gap: 12px;
  align-content: center;
}

.sgw-customer-web__button,
.sgw-customer-web__hero-links a,
.sgw-customer-web__search button,
.sgw-customer-web__search a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--sgw-black);
  border-radius: 999px;
  background: var(--sgw-black);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.sgw-customer-web__button--ghost,
.sgw-customer-web__search a {
  background: transparent;
  color: var(--sgw-black);
}

.sgw-customer-web__notice {
  padding: 28px;
  border: 1px solid #eadfcd;
  border-radius: 18px;
  background: #fbfaf8;
}

.sgw-customer-web__search {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.sgw-customer-web__search input[type="search"] {
  flex: 1 1 320px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #d7d0c6;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
}

.sgw-customer-web__search select {
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #d7d0c6;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
}

.sgw-customer-web__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sgw-customer-web__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid #eadfcd;
  border-radius: 999px;
  background: #fffaf3;
  color: #5f574d;
  font-size: 12px;
}

.sgw-customer-web__table-wrap {
  overflow-x: auto;
  border: 1px solid #eadfcd;
  border-radius: 16px;
  background: #fffdf9;
}

.sgw-customer-web__table {
  width: 100%;
  border-collapse: collapse;
}

.sgw-customer-web__table th,
.sgw-customer-web__table td {
  padding: 16px 18px;
  border-bottom: 1px solid #eee5d8;
  text-align: left;
  vertical-align: middle;
}

.sgw-customer-web__table th {
  color: #7a6850;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sgw-customer-web__table td {
  color: var(--sgw-black);
  font-size: 14px;
}

.sgw-customer-web__back a {
  color: #7a5b2d;
  text-decoration: none;
}

.sgw-customer-web__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.sgw-customer-web__stats article {
  padding: 20px;
  border: 1px solid #eadfcd;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #faf4ea 100%);
}

.sgw-customer-web__stats span {
  display: block;
  margin: 0 0 10px;
  color: #8d7858;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sgw-customer-web__stats strong {
  display: block;
  color: var(--sgw-black);
  font-size: 24px;
  line-height: 1.15;
}

.sgw-customer-web__stats small {
  display: block;
  margin-top: 8px;
  color: #5f574d;
  font-size: 13px;
}

.sgw-customer-web__management {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sgw-customer-web__management form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid #eadfcd;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #faf4ea 100%);
}

.sgw-customer-web__management h3 {
  margin: 0;
  font-size: 18px;
}

.sgw-customer-web__management select {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d7d0c6;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
}

.sgw-customer-web__management button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--sgw-black);
  border-radius: 999px;
  background: var(--sgw-black);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sgw-customer-web__button--danger,
.sgw-customer-web__management .sgw-customer-web__button--danger {
  border-color: #8a2929;
  background: #8a2929;
  color: #fff;
}

@media (max-width: 900px) {
  .sgw-customer-web__hero,
  .sgw-customer-web__stats,
  .sgw-customer-web__management {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .sgw-customer-web__search {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sgw-customer-web__button,
  .sgw-customer-web__hero-links a,
  .sgw-customer-web__search button,
  .sgw-customer-web__search a {
    width: 100%;
  }

  .sgw-customer-web__table th,
  .sgw-customer-web__table td {
    padding: 12px 14px;
    font-size: 13px;
  }
}
/* END Signature Watches frontend customer directory */

/* BEGIN Signature Watches 1.2.39 compact mobile footer */
@media (max-width: 820px) {
  body.sgw-theme .sgw-footer {
    padding: 24px 0 18px !important;
  }

  body.sgw-theme .sgw-footer__grid {
    display: block !important;
  }

  body.sgw-theme .sgw-footer__grid > section:not(.sgw-footer-company):not(.sgw-footer-trust) {
    display: none !important;
  }

  body.sgw-theme .sgw-footer-company {
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    text-align: center !important;
  }

  body.sgw-theme .sgw-footer__logo {
    width: min(210px, 72vw) !important;
    max-height: 58px !important;
    margin: 0 auto 4px !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  body.sgw-theme .sgw-footer-company__name {
    margin: 0 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
  }

  body.sgw-theme .sgw-footer-company__description,
  body.sgw-theme .sgw-social-links {
    display: none !important;
  }

  body.sgw-theme .sgw-footer-company__contact,
  body.sgw-theme .sgw-footer-company .sgw-footer-company__contact {
    display: inline-flex !important;
    min-height: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  body.sgw-theme .sgw-footer-company__address {
    max-width: 300px !important;
    margin: 2px auto 0 !important;
    color: rgba(255, 255, 255, 0.66) !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  body.sgw-theme .sgw-footer-mobile-links {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: min(100%, 330px) !important;
    margin-top: 12px !important;
  }

  body.sgw-theme .sgw-footer-mobile-links a {
    display: grid !important;
    min-height: 36px !important;
    place-items: center !important;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 999px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  body.sgw-theme .sgw-footer-trust {
    margin-top: 16px !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  body.sgw-theme .sgw-footer-trust h3,
  body.sgw-theme .sgw-us-notices {
    display: none !important;
  }

  body.sgw-theme .sgw-payment-badges {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
    width: min(100%, 330px) !important;
    margin: 0 auto !important;
  }

  body.sgw-theme .sgw-pay {
    min-height: 34px !important;
    border-radius: 999px !important;
    font-size: 10px !important;
  }

  body.sgw-theme .sgw-footer__bottom {
    margin-top: 16px !important;
    padding-top: 12px !important;
    text-align: center !important;
    font-size: 11px !important;
  }
}

@media (max-width: 360px) {
  body.sgw-theme .sgw-footer-mobile-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
/* END Signature Watches 1.2.39 compact mobile footer */

/* BEGIN Signature Watches 1.2.40 empty product frames */
body.sgw-theme .sgw-products--placeholders {
  pointer-events: auto !important;
}

body.sgw-theme .sgw-product-card--placeholder {
  min-height: 0 !important;
}

body.sgw-theme .sgw-home-products .sgw-product-card__image--placeholder,
body.sgw-theme .sgw-product-card__image--placeholder {
  display: block !important;
  aspect-ratio: 1 / 1.28 !important;
  border: 1px solid rgba(17, 17, 17, 0.08) !important;
  background:
    linear-gradient(135deg, rgba(214, 205, 193, 0.42), rgba(246, 244, 240, 0.86)),
    #f5f4f2 !important;
}

body.sgw-theme .sgw-product-card__placeholder-line {
  display: block !important;
  height: 11px !important;
  background: rgba(17, 17, 17, 0.10) !important;
}

body.sgw-theme .sgw-product-card__placeholder-line--title {
  width: 68% !important;
  margin-top: 16px !important;
}

body.sgw-theme .sgw-product-card__placeholder-line--price {
  width: 34% !important;
  margin-top: 9px !important;
  opacity: 0.72 !important;
}

body.sgw-theme .sgw-product-card__placeholder-actions {
  margin-top: 16px !important;
}

@media (max-width: 820px) {
  body.sgw-theme .sgw-footer__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  body.sgw-theme .sgw-footer__grid > section,
  body.sgw-theme .sgw-footer__grid > section:not(.sgw-footer-company):not(.sgw-footer-trust),
  body.sgw-theme .sgw-footer-company__description,
  body.sgw-theme .sgw-social-links,
  body.sgw-theme .sgw-footer-trust h3,
  body.sgw-theme .sgw-us-notices {
    display: block !important;
  }

  body.sgw-theme .sgw-footer-company {
    display: grid !important;
  }

  body.sgw-theme .sgw-payment-badges {
    display: grid !important;
  }
}
/* END Signature Watches 1.2.40 empty product frames */
/* BEGIN Sgw_Boutique Distinct Brand Skin 1.3.0 */
:root {
  --sgw-black: #151112;
  --sgw-ink: #2a2021;
  --sgw-muted: #796867;
  --sgw-line: #e4d4d1;
  --sgw-bg: #fbf7f6;
  --sgw-soft: #f2e9e7;
  --sgw-accent: #b07b72;
  --sgw-skin-accent-2: #52433f;
}
body.sgw-theme { background: #fbf7f6 !important; color: #2a2021 !important; }
body.sgw-theme .sgw-home-hero.sgw-home-hero--video { min-height: clamp(460px, 58vh, 660px) !important; background: #151112 !important; }
body.sgw-theme .sgw-home-hero__video { filter: saturate(.75) contrast(1.02) brightness(.76) !important; object-position: center center !important; }
body.sgw-theme .sgw-home-hero__overlay { background: linear-gradient(90deg,rgba(33,23,22,.18),rgba(33,23,22,.45),rgba(33,23,22,.18)) !important; }
body.sgw-theme .sgw-home-hero__copy { justify-content:center!important;text-align:center!important;padding:92px 24px!important; color:#fff!important; }
body.sgw-theme .sgw-home-hero__copy > div { max-width: 760px !important; }
body.sgw-theme .sgw-home-hero__discount { color: #b07b72 !important; font-family: Arial, Helvetica, sans-serif !important; font-size: clamp(13px, 1.5vw, 18px) !important; font-weight: 800 !important; letter-spacing: .16em !important; text-transform: uppercase !important; }
body.sgw-theme .sgw-home-hero h1 { color: #fff !important; font-size: clamp(38px, 5vw, 78px) !important; line-height: .98 !important; text-transform: uppercase !important; }
body.sgw-theme .sgw-home-hero .sgw-button, body.sgw-theme .sgw-button { border-color: #151112 !important; background: #151112 !important; color: #fff !important; }
body.sgw-theme .sgw-home-hero .sgw-button { border-color: #fff !important; background: #fff !important; color: #151112 !important; }
body.sgw-theme .sgw-press-strip.sgw-brand-marquee, body.sgw-theme .sgw-brand-marquee { background: #151112 !important; border-color: color-mix(in srgb, #b07b72 32%, #000) !important; }
body.sgw-theme .sgw-brand-marquee .sgw-press-chip::before, body.sgw-theme .sgw-press-strip.sgw-brand-marquee .sgw-press-chip:before { background: #b07b72 !important; box-shadow: 0 0 0 3px color-mix(in srgb, #b07b72 24%, transparent) !important; }
body.sgw-theme .sgw-feature-collections { background: #f2e9e7 !important; padding-top: 14px !important; }
body.sgw-theme .sgw-feature-collections__rail { grid-template-columns: repeat(5, minmax(210px, 1fr)) !important; gap: 8px !important; }
body.sgw-theme .sgw-feature-tile { min-height: 430px !important; background: #151112 !important; border: 1px solid color-mix(in srgb, #e4d4d1 70%, #fff) !important; }
body.sgw-theme .sgw-feature-tile::after { height: 48% !important; background: linear-gradient(to top, color-mix(in srgb, #151112 72%, transparent), transparent) !important; }
body.sgw-theme .sgw-feature-tile span { left: 24px !important; bottom: 24px !important; color: #fff !important; font-family: var(--sgw-serif) !important; font-size: clamp(24px, 2.2vw, 38px) !important; font-weight: 700 !important; text-transform: none !important; text-shadow: 0 12px 28px rgba(0,0,0,.34) !important; }
body.sgw-theme .sgw-home-products { background: #fbf7f6 !important; }
body.sgw-theme .sgw-home-products__eyebrow { color: #b07b72 !important; text-align: left !important; font-weight: 800 !important; letter-spacing: .14em !important; }
body.sgw-theme .sgw-home-product-group { border-top-color: #e4d4d1 !important; }
body.sgw-theme .sgw-home-product-group__head h2, body.sgw-theme .sgw-shop-hero h1 { color: #2a2021 !important; }
body.sgw-theme .sgw-home-product-group__head p:last-child, body.sgw-theme .sgw-shop-hero p:last-child { color: #796867 !important; }
body.sgw-theme .sgw-home-product-group__head > a { color: #2a2021 !important; border-color: #b07b72 !important; }
body.sgw-theme .sgw-home-product-group__head{display:block!important;text-align:center!important;max-width:820px!important;margin-left:auto!important;margin-right:auto!important} body.sgw-theme .sgw-home-product-group__head>a{margin-top:14px!important} body.sgw-theme .sgw-home-products .sgw-products{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:52px 34px!important} body.sgw-theme .sgw-product-card__image,body.sgw-theme .sgw-archive-card__image{background:#f7efed!important;border-radius:8px!important}
body.sgw-theme .sgw-shop-hero{background:linear-gradient(135deg,#f2e9e7,#fbf7f6)!important;border-bottom:1px solid #e4d4d1!important} body.sgw-theme .sgw-shop-toolbar{background:#f2e9e7!important;border-color:#e4d4d1!important} body.sgw-theme .sgw-shop-toolbar__inner{border:1px solid #e4d4d1!important;background:#fbf7f6!important} body.sgw-theme .sgw-shop-layout{grid-template-columns:minmax(0,1fr) 286px!important;gap:42px!important;background:#fbf7f6!important} body.sgw-theme .sgw-shop-sidebar{order:2!important} body.sgw-theme .sgw-shop-results{order:1!important} body.sgw-theme .sgw-shop-sidebar{border:1px solid #e4d4d1!important;background:#f2e9e7!important;padding:18px!important} body.sgw-theme .sgw-shop-sidebar details{border-color:#e4d4d1!important;background:#fbf7f6!important} body.sgw-theme .sgw-shop-sidebar summary{color:#2a2021!important} body.sgw-theme .sgw-shop-sidebar .current-cat>a,body.sgw-theme .sgw-shop-sidebar li a:hover,body.sgw-theme .sgw-shop-sidebar details>a:hover{background:#b07b72!important;color:#fff!important} body.sgw-theme .sgw-shop-sidebar .sgw-filter-list li a em,body.sgw-theme .sgw-shop-sidebar .sgw-filter-link em{background:#fbf7f6!important;color:#796867!important} body.sgw-theme .sgw-archive-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:44px 30px!important}
body.sgw-theme .sgw-archive-card__button--buy, body.sgw-theme .sgw-product-card__actions .sgw-archive-card__button--buy { background: #151112 !important; border-color: #151112 !important; color:#fff!important; }
body.sgw-theme .sgw-archive-card__button--cart, body.sgw-theme .sgw-product-card__actions .sgw-archive-card__button--cart { background: transparent !important; border-color: #151112 !important; color:#151112!important; }
body.sgw-theme .sgw-trust { background: #f2e9e7 !important; border-color: #e4d4d1 !important; }
body.sgw-theme .sgw-trust__item { color: #2a2021 !important; border-color: #e4d4d1 !important; }
body.sgw-theme .sgw-footer { background: #151112 !important; color: rgba(255,255,255,.84) !important; }
body.sgw-theme .sgw-footer h2, body.sgw-theme .sgw-footer h3 { color: #fff !important; }
body.sgw-theme .sgw-footer a { color: rgba(255,255,255,.86) !important; }
body.sgw-theme .sgw-footer__grid { border-top: 1px solid color-mix(in srgb, #b07b72 36%, transparent) !important; }
body.sgw-theme .sgw-pay, body.sgw-theme .sgw-us-notice { border-color: color-mix(in srgb, #b07b72 34%, rgba(255,255,255,.12)) !important; background: rgba(255,255,255,.045) !important; }
@media (min-width: 1180px) {
  body.sgw-theme .sgw-feature-tile:nth-child(2), body.sgw-theme .sgw-feature-tile:nth-child(4) { min-height: 470px !important; }
  body.sgw-theme .sgw-feature-tile:nth-child(3) { min-height: 500px !important; }
}
@media (max-width: 1024px) {
  body.sgw-theme .sgw-shop-layout { grid-template-columns: 1fr !important; }
  body.sgw-theme .sgw-shop-sidebar, body.sgw-theme .sgw-shop-results { order: initial !important; }
}
@media (max-width: 760px) {
  body.sgw-theme .sgw-home-hero.sgw-home-hero--video { min-height: 390px !important; }
  body.sgw-theme .sgw-home-hero__copy { justify-content: center !important; text-align: center !important; padding: 70px 18px !important; }
  body.sgw-theme .sgw-home-hero h1 { font-size: clamp(32px, 10vw, 48px) !important; }
  body.sgw-theme .sgw-feature-collections__rail { display: flex !important; overflow-x: auto !important; scroll-snap-type: x mandatory !important; }
  body.sgw-theme .sgw-feature-tile { flex: 0 0 62vw !important; min-height: 330px !important; scroll-snap-align: start !important; }
  body.sgw-theme .sgw-home-products .sgw-products, body.sgw-theme .sgw-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 28px 12px !important; }
}
/* END Sgw_Boutique Distinct Brand Skin 1.3.0 */
/* BEGIN Sgw_Boutique Product UI Repair 1.3.1 */
body.single-product .sgw-product-page {
  padding-top: clamp(38px, 4vw, 64px) !important;
  overflow-x: hidden !important;
}

body.single-product .sgw-product-shell {
  padding-top: 0 !important;
}

body.single-product .sgw-product-page div.product.type-product,
body.single-product .sgw-product-shell > div.product.type-product {
  padding-top: clamp(18px, 2.4vw, 34px) !important;
}

body.single-product div.product.type-product .product_title {
  max-width: 100% !important;
  margin-top: 0 !important;
  line-height: 1.02 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

body.single-product div.product.type-product form.cart {
  grid-template-columns: minmax(84px, 112px) minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: stretch !important;
}

body.single-product div.product.type-product form.cart .sgw-movement-options {
  display: block !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin: 0 0 2px !important;
  padding: 16px !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
}

body.single-product div.product.type-product form.cart .quantity {
  grid-column: 1 !important;
}

body.single-product div.product.type-product form.cart .single_add_to_cart_button {
  grid-column: 2 !important;
}

body.single-product div.product.type-product form.cart .sgw-add-cart-secondary {
  grid-column: 3 !important;
}

body.single-product .sgw-movement-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

body.single-product .sgw-movement-card,
body.single-product .sgw-movement-card span {
  min-width: 0 !important;
}

body.single-product .sgw-product-policy-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px 10px !important;
  align-items: center !important;
  margin-top: 14px !important;
  line-height: 1.45 !important;
}

body.single-product .sgw-product-policy-links span {
  color: var(--sgw-muted) !important;
  opacity: 0.72 !important;
}

body.single-product .sgw-product-policy-links a {
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

@media (max-width: 1100px) {
  body.single-product div.product.type-product form.cart {
    grid-template-columns: minmax(76px, 92px) minmax(0, 1fr) minmax(0, 1fr) !important;
  }
}

@media (max-width: 820px) {
  body.single-product .sgw-product-page {
    padding-top: 24px !important;
  }

  body.single-product div.product.type-product .product_title {
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  body.single-product div.product.type-product form.cart {
    grid-template-columns: 76px minmax(0, 1fr) !important;
  }

  body.single-product div.product.type-product form.cart .sgw-movement-options {
    grid-column: 1 / -1 !important;
    padding: 14px !important;
  }

  body.single-product .sgw-movement-grid {
    grid-template-columns: 1fr !important;
  }

  body.single-product div.product.type-product form.cart .quantity {
    grid-column: 1 !important;
  }

  body.single-product div.product.type-product form.cart .single_add_to_cart_button {
    grid-column: 2 !important;
  }

  body.single-product div.product.type-product form.cart .sgw-add-cart-secondary {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 520px) {
  body.single-product .sgw-product-info-card {
    padding: 14px !important;
  }

  body.single-product .sgw-product-policy-links {
    gap: 4px 8px !important;
  }
}
/* END Sgw_Boutique Product UI Repair 1.3.1 */
/* BEGIN Sgw_Boutique Mobile Overflow Guard 1.3.3 */
@media (max-width: 760px) {
  html,
  body.single-product {
    overflow-x: hidden !important;
  }

  body.single-product .sgw-product-page,
  body.single-product .sgw-product-shell,
  body.single-product div.product.type-product,
  body.single-product div.product.type-product .summary,
  body.single-product .woocommerce-product-details__short-description,
  body.single-product .woocommerce-product-details__short-description p,
  body.single-product .sgw-single-badges,
  body.single-product div.product.type-product form.cart {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  body.single-product .woocommerce-product-details__short-description {
    overflow: visible !important;
  }
}
/* END Sgw_Boutique Mobile Overflow Guard 1.3.3 */
/* BEGIN Sgw_Boutique Compact Cart Buttons 1.3.4 */
body.single-product div.product.type-product form.cart,
body.single-product div.product form.cart,
body.single-product .woocommerce div.product form.cart {
  display: grid !important;
  grid-template-columns: 84px minmax(150px, 180px) minmax(150px, 180px) minmax(0, 1fr) !important;
  gap: 12px !important;
  align-items: start !important;
  justify-content: start !important;
  width: 100% !important;
}

body.single-product div.product.type-product form.cart .sgw-movement-options,
body.single-product div.product form.cart .sgw-movement-options,
body.single-product .woocommerce div.product form.cart .sgw-movement-options {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin-bottom: 2px !important;
}

body.single-product div.product.type-product form.cart .quantity,
body.single-product div.product form.cart .quantity,
body.single-product .woocommerce div.product form.cart .quantity {
  grid-column: 1 !important;
  width: 84px !important;
  align-self: start !important;
}

body.single-product div.product.type-product form.cart .qty,
body.single-product div.product form.cart .qty,
body.single-product .woocommerce div.product form.cart .qty {
  width: 100% !important;
  min-width: 0 !important;
  height: 48px !important;
  min-height: 48px !important;
}

body.single-product div.product.type-product form.cart .single_add_to_cart_button,
body.single-product div.product form.cart .single_add_to_cart_button,
body.single-product .woocommerce div.product form.cart .single_add_to_cart_button,
body.single-product div.product.type-product form.cart .sgw-add-cart-secondary,
body.single-product div.product form.cart .sgw-add-cart-secondary,
body.single-product .woocommerce div.product form.cart .sgw-add-cart-secondary {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 48px !important;
  align-self: start !important;
  padding: 0 18px !important;
}

body.single-product div.product.type-product form.cart .single_add_to_cart_button,
body.single-product div.product form.cart .single_add_to_cart_button,
body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
  grid-column: 2 !important;
}

body.single-product div.product.type-product form.cart .sgw-add-cart-secondary,
body.single-product div.product form.cart .sgw-add-cart-secondary,
body.single-product .woocommerce div.product form.cart .sgw-add-cart-secondary {
  grid-column: 3 !important;
}

@media (max-width: 820px) {
  body.single-product div.product.type-product form.cart,
  body.single-product div.product form.cart,
  body.single-product .woocommerce div.product form.cart {
    grid-template-columns: 76px minmax(0, 1fr) !important;
  }

  body.single-product div.product.type-product form.cart .quantity,
  body.single-product div.product form.cart .quantity,
  body.single-product .woocommerce div.product form.cart .quantity {
    width: 76px !important;
  }

  body.single-product div.product.type-product form.cart .single_add_to_cart_button,
  body.single-product div.product form.cart .single_add_to_cart_button,
  body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
    grid-column: 2 !important;
  }

  body.single-product div.product.type-product form.cart .sgw-add-cart-secondary,
  body.single-product div.product form.cart .sgw-add-cart-secondary,
  body.single-product .woocommerce div.product form.cart .sgw-add-cart-secondary {
    grid-column: 1 / -1 !important;
  }
}
/* END Sgw_Boutique Compact Cart Buttons 1.3.4 */
/* BEGIN Sgw_Boutique Unique Layout 1.4.0 - signature-boutique */
body.sgw-theme .sgw-home-hero__discount,
body.sgw-theme .sgw-home-products__eyebrow,
body.sgw-theme .sgw-feature-tile span,
body.sgw-theme .sgw-shop-sidebar summary,
body.sgw-theme .sgw-shop-toolbar,
body.sgw-theme .sgw-trust__item {
  letter-spacing: 0 !important;
}

body.sgw-theme .sgw-home-hero__copy > div,
body.sgw-theme .sgw-home-product-group__head,
body.sgw-theme .sgw-feature-collections__rail,
body.sgw-theme .sgw-shop-layout,
body.sgw-theme .sgw-shop-toolbar__inner {
  min-width: 0 !important;
}

body.sgw-theme .sgw-home-hero .sgw-button,
body.sgw-theme .sgw-home-product-group__head > a {
  border-radius: 0 !important;
}

body.sgw-theme .sgw-feature-tile img,
body.sgw-theme .sgw-product-card__image img,
body.sgw-theme .sgw-archive-card__image img {
  object-fit: cover !important;
}

body.sgw-theme .sgw-home-products .sgw-products,
body.sgw-theme .sgw-archive-grid {
  align-items: start !important;
}

body.sgw-theme .sgw-product-card__title,
body.sgw-theme .sgw-archive-card__title,
body.sgw-theme .woocommerce-loop-product__title {
  min-height: 32px !important;
}

@media (max-width: 760px) {
  body.sgw-theme .sgw-home-products .sgw-products,
  body.sgw-theme .sgw-archive-grid,
  body.sgw-theme .sgw-shop-results .woocommerce ul.products,
  body.sgw-theme .woocommerce .sgw-shop-results ul.products,
  body.sgw-theme .sgw-shop-results ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px 12px !important;
  }

  body.sgw-theme .sgw-home-product-group__head {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.sgw-theme .sgw-home-product-group__head > a {
    justify-self: start !important;
  }

  body.sgw-theme .sgw-feature-tile span {
    font-size: 20px !important;
    line-height: 1.05 !important;
  }
}

body.sgw-theme {
  --ux-bg: #f6f6f2;
  --ux-panel: #ffffff;
  --ux-ink: #121212;
  --ux-muted: #66635e;
  --ux-line: #dedbd4;
  --ux-accent: #3d3a34;
}

body.sgw-theme .sgw-home-hero.sgw-home-hero--video { min-height: clamp(470px, 58vh, 660px) !important; background: #121212 !important; }
body.sgw-theme .sgw-home-hero__video { object-position: center center !important; filter: grayscale(.25) contrast(1.05) brightness(.72) !important; }
body.sgw-theme .sgw-home-hero__overlay { background: linear-gradient(90deg, rgba(18,18,18,.88), rgba(18,18,18,.38) 52%, rgba(18,18,18,.14)) !important; }
body.sgw-theme .sgw-home-hero__copy { justify-content: flex-start !important; align-items: start !important; text-align: left !important; padding: 86px 8vw !important; }
body.sgw-theme .sgw-home-hero__copy > div { max-width: 540px !important; }
body.sgw-theme .sgw-home-hero__discount { color: #e9e3d8 !important; font-family: Arial, Helvetica, sans-serif !important; font-size: clamp(14px,1.6vw,22px) !important; font-weight: 700 !important; }
body.sgw-theme .sgw-home-hero h1 { color: #fff !important; font-size: clamp(38px,5vw,76px) !important; line-height: 1 !important; }
body.sgw-theme .sgw-home-hero .sgw-button { background: #fff !important; border-color: #fff !important; color: #121212 !important; }

body.sgw-theme .sgw-feature-collections { background: #fff !important; padding: 44px clamp(18px,5vw,80px) !important; }
body.sgw-theme .sgw-feature-collections__rail { display: grid !important; grid-template-columns: repeat(4,minmax(0,1fr)) !important; gap: 18px !important; max-width: 1280px !important; margin: 0 auto !important; }
body.sgw-theme .sgw-feature-tile { min-height: 300px !important; background: #f6f6f2 !important; border: 1px solid var(--ux-line) !important; }
body.sgw-theme .sgw-feature-tile:nth-child(1), body.sgw-theme .sgw-feature-tile:nth-child(4) { grid-column: span 2 !important; }
body.sgw-theme .sgw-feature-tile:nth-child(5) { grid-column: 2 / span 2 !important; }
body.sgw-theme .sgw-feature-tile span { left: 22px !important; bottom: 22px !important; font-family: Arial, Helvetica, sans-serif !important; font-size: clamp(18px,2vw,30px) !important; text-transform: uppercase !important; }

body.sgw-theme .sgw-home-products { background: var(--ux-panel) !important; padding-top: 34px !important; }
body.sgw-theme .sgw-home-product-group { border-top: 1px solid var(--ux-line) !important; padding: 44px 0 58px !important; }
body.sgw-theme .sgw-home-product-group__head { grid-template-columns: minmax(0, 360px) auto !important; margin-bottom: 28px !important; }
body.sgw-theme .sgw-home-product-group__head h2 { color: var(--ux-ink) !important; font-size: clamp(34px,4vw,58px) !important; }
body.sgw-theme .sgw-home-product-group__head p:last-child { color: var(--ux-muted) !important; }
body.sgw-theme .sgw-home-product-group__head > a { color: var(--ux-ink) !important; border-color: var(--ux-ink) !important; }
body.sgw-theme .sgw-home-products .sgw-products { grid-template-columns: repeat(4,minmax(0,1fr)) !important; gap: 38px 22px !important; }
body.sgw-theme .sgw-home-products .sgw-product-card__image, body.sgw-theme .sgw-archive-card__image { aspect-ratio: 1 / 1.18 !important; background: #f6f6f2 !important; border: 1px solid var(--ux-line) !important; }

body.sgw-theme .sgw-shop-layout { grid-template-columns: 1fr 280px !important; gap: 42px !important; }
body.sgw-theme .sgw-shop-sidebar { order: 2 !important; border: 1px solid var(--ux-line) !important; padding: 12px 16px !important; background: #fff !important; }
body.sgw-theme .sgw-shop-results { order: 1 !important; }
body.sgw-theme .sgw-archive-grid { grid-template-columns: repeat(4,minmax(0,1fr)) !important; gap: 40px 22px !important; }
body.sgw-theme .sgw-trust { background: #f6f6f2 !important; color: #121212 !important; border-top: 1px solid var(--ux-line) !important; border-bottom: 1px solid var(--ux-line) !important; }

@media (max-width: 900px) {
  body.sgw-theme .sgw-feature-collections__rail { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
  body.sgw-theme .sgw-feature-tile, body.sgw-theme .sgw-feature-tile:nth-child(1), body.sgw-theme .sgw-feature-tile:nth-child(4), body.sgw-theme .sgw-feature-tile:nth-child(5) { grid-column: auto !important; min-height: 260px !important; }
  body.sgw-theme .sgw-shop-layout { grid-template-columns: 1fr !important; }
  body.sgw-theme .sgw-shop-sidebar { order: 1 !important; }
  body.sgw-theme .sgw-shop-results { order: 2 !important; }
}
/* END Sgw_Boutique Unique Layout 1.4.0 */
/* BEGIN Sgw_Boutique Mobile Hero Guard 1.4.1 */
@media (max-width: 760px) {
  body.sgw-theme .sgw-home-hero.sgw-home-hero--video {
    min-height: 420px !important;
  }

  body.sgw-theme .sgw-home-hero__copy {
    justify-content: center !important;
    text-align: center !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    overflow: hidden !important;
  }

  body.sgw-theme .sgw-home-hero__copy > div {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  body.sgw-theme .sgw-home-hero__discount {
    font-size: clamp(13px, 4.2vw, 18px) !important;
    line-height: 1.15 !important;
    margin-bottom: 8px !important;
  }

  body.sgw-theme .sgw-home-hero h1 {
    max-width: 100% !important;
    font-size: clamp(30px, 9.5vw, 42px) !important;
    line-height: 1.02 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  body.sgw-theme .sgw-home-hero .sgw-button {
    min-width: 124px !important;
    min-height: 46px !important;
    padding: 0 22px !important;
  }
}
/* END Sgw_Boutique Mobile Hero Guard 1.4.1 */

/* BEGIN Signature Watches Balanced Collections 1.4.2 */
body.sgw-theme .sgw-feature-collections {
  background: #fff !important;
  padding: 42px clamp(18px, 5vw, 80px) 50px !important;
  overflow: hidden !important;
}

body.sgw-theme .sgw-feature-collections__rail {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: min(100%, 1420px) !important;
  max-width: 1420px !important;
  margin: 0 auto !important;
  align-items: stretch !important;
  overflow: visible !important;
}

body.sgw-theme .sgw-feature-tile,
body.sgw-theme .sgw-feature-tile:nth-child(1),
body.sgw-theme .sgw-feature-tile:nth-child(2),
body.sgw-theme .sgw-feature-tile:nth-child(3),
body.sgw-theme .sgw-feature-tile:nth-child(4),
body.sgw-theme .sgw-feature-tile:nth-child(5) {
  grid-column: auto !important;
  grid-row: auto !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: clamp(300px, 25vw, 420px) !important;
  height: auto !important;
  aspect-ratio: 4 / 5 !important;
  margin: 0 !important;
  transform: none !important;
  overflow: hidden !important;
  border: 1px solid var(--ux-line) !important;
  background: #f6f6f2 !important;
}

body.sgw-theme .sgw-feature-tile img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

body.sgw-theme .sgw-feature-tile span {
  z-index: 2 !important;
  left: 20px !important;
  right: 18px !important;
  bottom: 20px !important;
  max-width: calc(100% - 38px) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: clamp(18px, 1.7vw, 28px) !important;
  line-height: 1.05 !important;
  text-transform: uppercase !important;
}

@media (max-width: 1180px) {
  body.sgw-theme .sgw-feature-collections__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  body.sgw-theme .sgw-feature-collections {
    padding: 28px 14px !important;
  }

  body.sgw-theme .sgw-feature-collections__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body.sgw-theme .sgw-feature-tile,
  body.sgw-theme .sgw-feature-tile:nth-child(1),
  body.sgw-theme .sgw-feature-tile:nth-child(2),
  body.sgw-theme .sgw-feature-tile:nth-child(3),
  body.sgw-theme .sgw-feature-tile:nth-child(4),
  body.sgw-theme .sgw-feature-tile:nth-child(5) {
    min-height: 230px !important;
    aspect-ratio: 3 / 4 !important;
  }
}
/* END Signature Watches Balanced Collections 1.4.2 */

/* BEGIN Sgw_Boutique compact mobile footer 1.4.5 */
@media (max-width: 820px) {
  body.sgw-theme .sgw-footer {
    padding: 16px 0 12px !important;
  }

  body.sgw-theme .sgw-footer .sgw-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body.sgw-theme .sgw-footer__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    border-top-width: 0 !important;
    padding-top: 0 !important;
  }

  body.sgw-theme .sgw-footer__grid > section:not(.sgw-footer-company):not(.sgw-footer-trust) {
    display: none !important;
  }

  body.sgw-theme .sgw-footer-company {
    display: grid !important;
    justify-items: center !important;
    gap: 5px !important;
    text-align: center !important;
  }

  body.sgw-theme .sgw-footer__logo {
    width: min(150px, 48vw) !important;
    max-height: 42px !important;
    margin: 0 auto 2px !important;
    object-fit: contain !important;
  }

  body.sgw-theme .sgw-footer-company__name {
    margin: 0 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
  }

  body.sgw-theme .sgw-footer-company__description,
  body.sgw-theme .sgw-footer-company__address {
    display: none !important;
  }

  body.sgw-theme .sgw-footer-company__contact,
  body.sgw-theme .sgw-footer-company .sgw-footer-company__contact {
    display: inline-flex !important;
    min-height: 0 !important;
    margin: 0 4px !important;
    color: rgba(255, 255, 255, .78) !important;
    font-size: 11px !important;
    line-height: 1.15 !important;
  }

  body.sgw-theme .sgw-social-links {
    display: flex !important;
    justify-content: center !important;
    gap: 14px !important;
    margin: 2px 0 0 !important;
  }

  body.sgw-theme .sgw-social-links a {
    font-size: 11px !important;
    line-height: 1.1 !important;
  }

  body.sgw-theme .sgw-footer-mobile-links {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    width: min(100%, 330px) !important;
    margin: 8px auto 0 !important;
  }

  body.sgw-theme .sgw-footer-mobile-links a {
    display: grid !important;
    min-height: 30px !important;
    place-items: center !important;
    margin: 0 !important;
    padding: 0 8px !important;
    border: 1px solid rgba(255, 255, 255, .15) !important;
    border-radius: 999px !important;
    color: rgba(255, 255, 255, .86) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  body.sgw-theme .sgw-footer-trust {
    display: grid !important;
    gap: 7px !important;
    margin-top: 5px !important;
    padding-top: 9px !important;
    border-top: 1px solid rgba(255, 255, 255, .12) !important;
  }

  body.sgw-theme .sgw-footer-trust h3 {
    display: block !important;
    margin: 0 !important;
    text-align: center !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
  }

  body.sgw-theme .sgw-us-notices {
    display: none !important;
  }

  body.sgw-theme .sgw-payment-badges {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    width: min(100%, 330px) !important;
    margin: 0 auto !important;
  }

  body.sgw-theme .sgw-pay {
    min-height: 30px !important;
    border-radius: 999px !important;
    font-size: 10px !important;
    line-height: 1 !important;
  }

  body.sgw-theme .sgw-footer__bottom {
    margin-top: 10px !important;
    padding-top: 9px !important;
    text-align: center !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
  }

  body.sgw-theme .sgw-cookie {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: auto !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
    align-items: center !important;
    padding: 9px 10px !important;
  }

  body.sgw-theme .sgw-cookie[hidden] {
    display: none !important;
  }

  body.sgw-theme .sgw-cookie p {
    margin: 0 !important;
    font-size: 10.5px !important;
    line-height: 1.25 !important;
  }

  body.sgw-theme .sgw-cookie button {
    min-width: 86px !important;
    min-height: 34px !important;
    padding: 0 12px !important;
    font-size: 10px !important;
  }

  body.sgw-theme .sgw-support-widget,
  body.sgw-theme .sgw-support-widget.has-cookie-banner {
    right: 12px !important;
    bottom: 72px !important;
    transform: scale(.86) !important;
    transform-origin: right bottom !important;
  }
}

@media (max-width: 360px) {
  body.sgw-theme .sgw-footer-mobile-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
/* END Sgw_Boutique compact mobile footer 1.4.5 */
