/* ============================================================
   NY Watch Market – Custom Theme CSS
   Bootstrap 5 base – Luxury white/gold aesthetic
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --nyw-black: #111111;
  --nyw-dark: #1a1a1a;
  --nyw-gold: #c8a96e;
  --nyw-gold-lt: #d4aa6a;
  --nyw-gold-dk: #a0823e;
  --nyw-gold-grad: linear-gradient(135deg, #c8a96e 0%, #e8c98a 50%, #c8a96e 100%);
  --nyw-white: #ffffff;
  --nyw-gray: #666666;
  --nyw-light: #f7f6f2;
  --nyw-border: #e8e4dd;
  --font-head: 'Bai Jamjuree', sans-serif;
  --font-body: 'Mulish', sans-serif;
  --transition: all .25s ease;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: #222;
  background: #fff;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 600;
}

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

a:hover {
  color: var(--nyw-gold);
}

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

/* ---------- Navbar ---------- */
.nyw-navbar {
  background: #fff;
  padding: 11px;
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid var(--nyw-border);
  transition: padding .3s ease, box-shadow .3s ease;
}

.nyw-navbar--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

.nyw-navbar .navbar-brand img {
  height: 90px;
  width: auto;
  transition: height .3s ease;
}

.nyw-navbar--scrolled .navbar-brand img {
  height: 70px;
}

.nyw-navbar .nav-link {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #444 !important;
  padding: 1.4rem .8rem !important;
  transition: color .2s;
  position: relative;
}

.nyw-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .8rem;
  right: .8rem;
  height: 2px;
  background: var(--nyw-gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.nyw-navbar .nav-link:hover::after,
.nyw-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.nyw-navbar .nav-link:hover,
.nyw-navbar .nav-link.active {
  color: var(--nyw-gold) !important;
}

/* Base dropdown-menu shared styles (no positioning override — Bootstrap handles position: absolute) */
.nyw-navbar .dropdown-menu {
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 0;
  border-top: 2px solid var(--nyw-gold);
  min-width: 220px;
  padding: .5rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

/* Desktop (lg+): hidden by default, revealed on hover via opacity/visibility */
@media (min-width: 992px) {
  .nyw-navbar .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    pointer-events: none;
  }

  /* Support for nested dropdown submenus on desktop */
  .nyw-navbar .dropdown-submenu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    /* Align nicely with parent item */
  }
}

/* Mobile (below lg): use display:none / display:block toggled by .show */
@media (max-width: 991.98px) {
  .nyw-navbar .dropdown-menu {
    display: none;
    position: static !important;
    float: none;
    box-shadow: none;
    border-top: 2px solid var(--nyw-gold);
    border-left: 2px solid var(--nyw-gold);
    border-right: none;
    border-bottom: none;
    margin-left: 1rem;
    min-width: 0;
    transform: none;
    transition: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nyw-navbar .dropdown-menu.show {
    display: block;
  }
}

/* Open on hover — desktop only (lg+) */
@media (min-width: 992px) {

  .nyw-navbar .nav-item.dropdown:hover>.dropdown-menu,
  .nyw-navbar .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}


.nyw-navbar .dropdown-item {
  color: #555;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .6rem 1.4rem;
  transition: background .15s, color .15s;
}

.nyw-navbar .dropdown-item:hover {
  background: #faf8f4;
  color: var(--nyw-gold);
}

/* ── Chevron icon ── */
.nyw-chevron {
  font-size: .65rem;
  margin-left: .35rem;
  vertical-align: middle;
  transition: transform .22s ease;
  display: inline-block;
  line-height: 1;
  /* prevent it triggering the underline ::after pseudo-element */
  position: relative;
}

/* Bootstrap .dropdown-toggle::after caret is hidden — we use our own .nyw-chevron icon */
.nyw-navbar .dropdown-toggle::after {
  display: none !important;
}


/* Rotate chevron when dropdown is open (hover) */
@media (min-width: 992px) {

  .nyw-navbar .nav-item.dropdown:hover>a .nyw-chevron,
  .nyw-navbar .dropdown-item.dropdown:hover>a .nyw-chevron {
    transform: rotate(180deg);
  }
}

/* When Bootstrap toggles aria-expanded=true (mobile / click fallback) */
.nyw-navbar a[aria-expanded="true"] .nyw-chevron {
  transform: rotate(180deg);
}


/* Search toggle icon button */
.nyw-search-toggle {
  background: none;
  border: none;
  color: #555;
  font-size: 1.05rem;
  padding: .3rem .4rem;
  cursor: pointer;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nyw-search-toggle:hover {
  color: var(--nyw-gold);
}

/* Search overlay */
.nyw-search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

body.nyw-search-open {
  overflow: hidden;
}

.nyw-search-overlay.is-open {
  display: flex;
}

.nyw-search-panel {
  width: 600px;
  max-width: 90vw;
}

.nyw-search-overlay form {
  position: relative;
  background: #111;
  border: 1px solid rgba(200, 169, 110, .35);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.nyw-search-overlay input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--nyw-gold);
  color: #fff;
  font-size: 1.6rem;
  padding: .5rem 0;
  outline: none;
}

.nyw-search-overlay input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.nyw-search-overlay input[type="search"]::-webkit-search-decoration,
.nyw-search-overlay input[type="search"]::-webkit-search-cancel-button,
.nyw-search-overlay input[type="search"]::-webkit-search-results-button,
.nyw-search-overlay input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.nyw-search-close {
  position: absolute;
  top: 12px;
  right: 14px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 0;
}

.nyw-search-hint {
  font-size: .82rem;
  color: rgba(255, 255, 255, .58);
  margin: .85rem 0 0;
}

.nyw-search-status {
  min-height: 1.2rem;
  margin-top: .9rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--nyw-gold);
}

.nyw-search-results {
  display: grid;
  gap: .8rem;
  margin-top: 1rem;
  max-height: min(48vh, 420px);
  overflow-y: auto;
}

.nyw-search-result {
  display: flex;
  gap: .9rem;
  align-items: center;
  padding: .85rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  background: rgba(255, 255, 255, .03);
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
}

.nyw-search-result:hover {
  border-color: rgba(200, 169, 110, .55);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-1px);
}

.nyw-search-result-thumb {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 4px;
  flex: 0 0 68px;
}

.nyw-search-result-info {
  min-width: 0;
  display: grid;
  gap: .25rem;
}

.nyw-search-result-top {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nyw-search-result-type {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nyw-gold);
}

.nyw-search-result-title {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
}

.nyw-search-result-meta {
  font-size: .78rem;
  color: rgba(255, 255, 255, .62);
}



/* ---------- Hero ---------- */
.nyw-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nyw-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.nyw-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, .35) 0%,
      rgba(0, 0, 0, .6) 60%,
      rgba(0, 0, 0, .8) 100%);
  z-index: 1;
}

.nyw-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2rem;
  max-width: 900px;
}

.nyw-hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.nyw-hero-content h1 .gold-text {
  background: var(--nyw-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nyw-hero-content p {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Hero divider line */
.nyw-hero-divider {
  width: 60px;
  height: 2px;
  background: var(--nyw-gold-grad);
  margin: 0 auto 1.5rem;
}

/* ---------- Section Utilities ---------- */
.nyw-section {
  padding: 90px 0;
}

.nyw-section-dark {
  background: var(--nyw-light);
  color: #222;
}

.nyw-section-black {
  background: #f0efea;
  color: #222;
}

.nyw-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  position: relative;
}

.nyw-section-title span {
  color: var(--nyw-gold);
}

/* Gold underline accent for centered section titles */
.nyw-section-title-wrap {
  margin-bottom: 3rem;
}

.nyw-section-title-wrap .nyw-gold-line {
  width: 50px;
  height: 2px;
  background: var(--nyw-gold-grad);
  margin: .75rem auto 0;
}

.nyw-section-title-wrap.text-start .nyw-gold-line {
  margin-left: 0;
}

/* ---------- Marquee ---------- */
.nyw-marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  background: var(--nyw-light);
  /* border-top: 1px solid var(--nyw-border);
  border-bottom: 1px solid var(--nyw-border); */
  padding: 20px 0;
}

.nyw-marquee-track {
  display: inline-flex;
  animation: nywMarquee 36s linear infinite;
  will-change: transform;
}

@keyframes nywMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.nyw-marquee-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 16px;
  width: 260px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity .2s;
}

.nyw-marquee-item:hover {
  opacity: .85;
}

.nyw-marquee-item img {
  width: 260px;
  height: 185px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(200, 169, 110, .15);
}

.nyw-marquee-title {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--nyw-gold);
  margin-top: .55rem;
}

/* ---------- CTA Boxes ---------- */
.nyw-cta-box {
  background: #fff;
  /* border: 1px solid var(--nyw-border); */
  color: #222;
  text-align: center;
  padding: 72px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nyw-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 110, .06) 0%, transparent 60%);
  transition: opacity .3s;
  opacity: 0;
}

.nyw-cta-box:hover::before {
  opacity: 1;
}

.nyw-cta-box:hover {
  border-color: rgba(200, 169, 110, .5);
  background: #faf8f4;
}

.nyw-cta-box h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--nyw-gold);
  margin-bottom: .75rem;
}

.nyw-cta-box p {
  color: #666;
  margin: 0 0 1.5rem;
  font-size: .95rem;
  line-height: 1.7;
}

.nyw-cta-box .btn-nyw-gold {
  font-size: .78rem;
  padding: .6rem 1.8rem;
}

/* ---------- Product Cards ---------- */
.nyw-product-card {
  border: 1px solid #e8e4dd;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nyw-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .14);
  border-color: rgba(200, 169, 110, .4);
}

.nyw-product-img-wrap {
  position: relative;
  overflow: hidden;
}

.nyw-product-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}

.nyw-product-card:hover .nyw-product-img {
  transform: scale(1.04);
}

.nyw-product-body {
  padding: 1rem 1rem .8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nyw-product-title {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: #111;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.45;
}

.nyw-product-price {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--nyw-gold);
  margin-top: auto;
  padding-top: .4rem;
}

.nyw-product-price del {
  color: #aaa;
  font-size: .85rem;
  margin-right: .35rem;
  font-weight: 400;
}

.nyw-product-card .btn-gold {
  display: block;
  width: 100%;
  background: var(--nyw-black);
  color: var(--nyw-gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .65rem;
  border: none;
  border-top: 1px solid #eee;
  border-radius: 0;
  text-align: center;
  margin-top: .8rem;
  transition: background .2s, color .2s;
}

.nyw-product-card .btn-gold:hover {
  background: var(--nyw-gold);
  color: #111;
  border-color: var(--nyw-gold);
}

/* ---------- Brand Grid ---------- */
.nyw-brand-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  height: 270px;
  display: block;
  border: 1px solid rgba(200, 169, 110, .1);
}

.nyw-brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.nyw-brand-card:hover img {
  transform: scale(1.08);
}

.nyw-brand-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .82) 0%,
      rgba(0, 0, 0, .3) 55%,
      rgba(0, 0, 0, .05) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  transition: background .3s;
}

.nyw-brand-card:hover .nyw-brand-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, .9) 0%,
      rgba(0, 0, 0, .4) 60%,
      rgba(0, 0, 0, .1) 100%);
}

.nyw-brand-overlay h3 {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
  transition: color .2s;
}

.nyw-brand-card:hover .nyw-brand-overlay h3 {
  color: var(--nyw-gold);
}

/* Gold border bottom on hover */
.nyw-brand-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--nyw-gold-grad);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.nyw-brand-card:hover::after {
  transform: scaleX(1);
}

/* ---------- Reviews ---------- */
.nyw-reviews {
  position: relative;
  overflow: hidden;
}

.nyw-reviews video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.nyw-reviews-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  z-index: 1;
}

.nyw-reviews-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 80px 0;
}

/* ---------- SEO / FAQ Accordion ---------- */
.nyw-seo {
  background: var(--nyw-light);
}

.nyw-seo .accordion-item {
  border-radius: 4px !important;
  overflow: hidden;
  border: 1px solid var(--nyw-border) !important;
}

.nyw-seo .accordion-button {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  background: #fff;
  color: #333;
  padding: 1.1rem 1.4rem;
}

.nyw-seo .accordion-button:not(.collapsed) {
  background: #faf8f4;
  color: var(--nyw-gold-dk);
  box-shadow: none;
  border-left: 3px solid var(--nyw-gold);
}

.nyw-seo .accordion-button::after {
  filter: none;
}

.nyw-seo .accordion-body {
  background: #fff;
  font-size: .92rem;
  line-height: 1.85;
  color: #555;
  padding: 1.2rem 1.6rem;
}

.nyw-seo .accordion-body h2,
.nyw-seo .accordion-body h3 {
  font-size: 1rem;
  margin-top: 1rem;
  color: #222;
  font-weight: 700;
}

.nyw-seo .accordion-body a {
  color: var(--nyw-gold-dk);
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.nyw-footer-logo img {
  height: 70px;
  width: auto;
}

.nyw-footer-tagline {
  color: #888;
  font-size: .9rem;
  line-height: 1.7;
}

.nyw-footer-socials {
  display: flex;
  gap: .75rem;
}

.nyw-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #333;
  border-radius: 50%;
  color: #aaa;
  font-size: 1rem;
  transition: color .2s, border-color .2s;
}

.nyw-footer-socials a:hover {
  color: var(--nyw-gold);
  border-color: var(--nyw-gold);
}

.nyw-footer-heading {
  color: var(--nyw-gold);
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.nyw-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nyw-footer-links li {
  margin-bottom: .5rem;
  color: #aaa;
  font-size: .9rem;
}

.nyw-footer-links li a {
  color: #aaa;
  text-decoration: none;
  transition: color .2s;
}

.nyw-footer-links li a:hover {
  color: var(--nyw-gold);
}

.nyw-footer-badges img {
  border-radius: 4px;
  filter: brightness(.8);
}

.nyw-footer {
  background: var(--nyw-black);
  color: #aaa;
  padding: 64px 0 0;
  font-size: .9rem;
}

.nyw-footer h5 {
  color: var(--nyw-gold);
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.nyw-footer p {
  line-height: 1.7;
}

.nyw-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nyw-footer ul li {
  margin-bottom: .5rem;
}

.nyw-footer ul li a {
  color: #aaa;
  transition: color .2s;
}

.nyw-footer ul li a:hover {
  color: var(--nyw-gold);
}

.nyw-footer .footer-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.nyw-footer .newsletter-form {
  display: flex;
  gap: .5rem;
}

.nyw-footer .newsletter-form input {
  flex: 1;
  background: #1e1e1e;
  border: 1px solid #333;
  color: #fff;
  padding: .5rem .8rem;
  border-radius: 4px 0 0 4px;
  font-size: .9rem;
}

.nyw-footer .newsletter-form input::placeholder {
  color: #666;
}

.nyw-footer .newsletter-form button {
  background: var(--nyw-gold);
  border: none;
  color: #111;
  font-weight: 700;
  padding: .5rem 1rem;
  border-radius: 0 4px 4px 0;
  font-size: .85rem;
  cursor: pointer;
  transition: background .2s;
}

.nyw-footer .newsletter-form button:hover {
  background: var(--nyw-gold-lt);
}

.nyw-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  border-radius: 50%;
  color: #aaa;
  margin-right: 8px;
  font-size: 15px;
  transition: border-color .2s, color .2s;
}

.nyw-footer-social a:hover {
  border-color: var(--nyw-gold);
  color: var(--nyw-gold);
}

.nyw-footer-bottom {
  border-top: 1px solid #222;
  margin-top: 48px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: #555;
}

.nyw-footer-bottom a {
  color: var(--nyw-gold);
}

/* Back to top */
#nyw-back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--nyw-gold);
  color: #111;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: background .2s;
}

#nyw-back-top:hover {
  background: var(--nyw-gold-lt);
}

#nyw-back-top.visible {
  display: flex;
}

/* ---------- Btn Gold ---------- */
.btn-nyw-gold {
  background: var(--nyw-gold);
  color: #111;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  padding: .8rem 2.2rem;
  border-radius: 2px;
  transition: background .2s, transform .15s;
  display: inline-block;
}

.btn-nyw-gold:hover {
  background: var(--nyw-gold-lt);
  color: #111;
  transform: translateY(-1px);
}

.btn-nyw-outline {
  background: transparent;
  color: var(--nyw-gold);
  border: 2px solid var(--nyw-gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .75rem 2rem;
  border-radius: 2px;
  transition: background .2s, color .2s, transform .15s;
  display: inline-block;
}

.btn-nyw-outline:hover {
  background: var(--nyw-gold);
  color: #111;
  transform: translateY(-1px);
}

/* ---------- Contact info items ---------- */
.nyw-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
  color: #aaa;
}

.nyw-contact-item svg,
.nyw-contact-item i {
  color: var(--nyw-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Centered Navbar Layout ---------- */
.nyw-navbar-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 76px;
  padding: 0 1.5rem;
}

/* Left nav: fills equal space, items in a row */
.nyw-nav-left {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Center logo: shrink-only, centered between the two flex-1 sides */
.nyw-nav-logo {
  flex-shrink: 0;
  margin: 0 1rem;
  display: flex;
  align-items: center;
}

.nyw-nav-logo img {
  height: 90px;
  width: auto;
  transition: height .3s ease;
  display: block;
}

.nyw-navbar--scrolled .nyw-nav-logo img {
  height: 70px;
}

/* Right: fills equal space, items row, pushed right */
.nyw-nav-right {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: .1rem;
}

.nyw-nav-right .navbar-nav {
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Mobile bar */
.nyw-mobile-bar {
  height: 90px;
  background: #fff;
  border-bottom: 1px solid var(--nyw-border);
}

.nyw-mobile-bar .nyw-nav-logo img {
  height: 64px;
  margin: 0;
}

.nyw-mobile-toggle {
  background: none;
  border: 1px solid #ddd;
  color: #555;
  font-size: 1.4rem;
  padding: .2rem .5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 3px;
}

.nyw-mobile-toggle:hover {
  color: var(--nyw-gold);
  border-color: var(--nyw-gold);
}

.nyw-mobile-menu {
  background: #fff;
  border-bottom: 1px solid var(--nyw-border);
}

.nyw-mobile-menu .nav-link {
  padding: .7rem 0 !important;
  font-size: .85rem;
  color: #444 !important;
}

.nyw-mobile-menu .dropdown-menu {
  position: static !important;
  transform: none !important;
  background: #faf8f4;
  border: none;
  border-left: 2px solid var(--nyw-gold);
  border-radius: 0;
  padding: .25rem 0 .25rem 1rem;
  margin: 0;
  box-shadow: none;
}

/* Cart icon (desktop) */
.nyw-nav-cart {
  position: relative;
  color: #555;
  font-size: 1.15rem;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  margin-left: .4rem;
}

.nyw-nav-cart:hover {
  color: var(--nyw-gold);
}

.nyw-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--nyw-gold);
  color: #111;
  border-radius: 50%;
  font-size: .6rem;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}

/* Mobile search */
.nyw-mobile-search {
  display: flex;
}

.nyw-mobile-search input {
  width: 100%;
  background: #f5f5f2;
  border: 1px solid #ddd;
  color: #333;
  padding: .5rem .8rem;
  font-size: .9rem;
  outline: none;
  border-radius: 3px;
}

.nyw-mobile-search input::placeholder {
  color: #aaa;
}

/* ---------- Star Ratings ---------- */
.nyw-stars {
  font-size: .8rem;
  color: #f5a623;
  margin-bottom: .35rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 1px;
}

.nyw-stars .bi-star,
.nyw-stars .bi-star-half {
  color: #ccc;
}

.nyw-stars-count {
  font-size: .75rem;
  color: #999;
  margin-left: .3rem;
}

/* ---------- SEO Text Section ---------- */
.nyw-seo-text {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid #eee;
}

.nyw-seo-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: #111;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.nyw-seo-text p {
  color: #555;
  font-size: .95rem;
  line-height: 1.85;
  max-width: 860px;
  margin: 0 auto;
}

/* ---------- Featured Products Slider ---------- */
.nyw-featured {
  background: var(--nyw-light);
  padding: 90px 0;
}

.nyw-featured-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.nyw-featured-track::-webkit-scrollbar {
  display: none;
}

.nyw-featured-card {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.nyw-featured-card:hover {
  border-color: rgba(200, 169, 110, .5);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
}

.nyw-featured-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.nyw-featured-body {
  padding: 1rem;
}

.nyw-featured-badge {
  display: inline-block;
  background: var(--nyw-gold);
  color: #111;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  margin-bottom: .6rem;
}

.nyw-featured-badge--sold {
  background: #111;
  color: var(--nyw-gold);
}

.nyw-featured-title {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nyw-featured-price {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--nyw-gold);
  margin-bottom: .75rem;
}

.nyw-featured-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.nyw-featured-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background .2s;
  padding: 0;
}

.nyw-featured-dots button.active {
  background: var(--nyw-gold);
}

/* ---------- Reviews Platform Section ---------- */
.nyw-reviews-platforms {
  background: #f0efea;
  padding: 90px 0;
}

.nyw-review-platforms {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.nyw-review-platform {
  text-align: center;
  padding: 2rem 2.5rem;
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 6px;
  min-width: 200px;
  transition: border-color .25s, box-shadow .25s;
}

.nyw-review-platform:hover {
  border-color: rgba(200, 169, 110, .5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
}

.nyw-review-platform-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #222;
  margin-bottom: .5rem;
}

.nyw-review-platform-stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: .4rem;
}

.nyw-review-platform-count {
  font-size: .8rem;
  color: #888;
}

/* ---------- Newsletter Forminator Overrides ---------- */
.nyw-footer-newsletter .forminator-ui.forminator-custom-form {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  margin: 0 !important;
  font-family: var(--font-body) !important;
}

.nyw-footer-newsletter .forminator-label {
  display: none !important;
}

.nyw-footer-newsletter .forminator-row:not(.forminator-row-last) {
  flex: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nyw-footer-newsletter .forminator-row-last {
  margin: 0 !important;
  padding: 0 !important;
}

.nyw-footer-newsletter .forminator-col,
.nyw-footer-newsletter .forminator-field {
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
}

.nyw-footer-newsletter .forminator-input {
  width: 100% !important;
  background: #fff !important;
  border: 1px solid #ddd !important;
  border-right: none !important;
  border-radius: 3px 0 0 3px !important;
  color: #333 !important;
  padding: .55rem .8rem !important;
  font-size: .85rem !important;
  outline: none !important;
  font-family: var(--font-body) !important;
  min-height: auto !important;
  height: 100% !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

.nyw-footer-newsletter .forminator-input::placeholder {
  color: #aaa !important;
}

.nyw-footer-newsletter .forminator-button-submit {
  background: var(--nyw-gold) !important;
  border: 1px solid var(--nyw-gold) !important;
  border-radius: 0 3px 3px 0 !important;
  color: #111 !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  padding: .55rem 1rem !important;
  cursor: pointer !important;
  transition: all .2s ease !important;
  font-family: var(--font-body) !important;
  min-height: auto !important;
  height: 100% !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
}

.nyw-footer-newsletter .forminator-button-submit:hover {
  background: var(--nyw-gold-lt) !important;
  border-color: var(--nyw-gold-lt) !important;
}

.nyw-footer-newsletter .forminator-response-message {
  width: 100% !important;
  margin-top: .5rem !important;
  font-size: .8rem !important;
  padding: .4rem !important;
  border-radius: 3px !important;
}

/* ══════════════════════════════════════════════════
   SHOP PAGE STYLES
══════════════════════════════════════════════════ */

/* ── Shop Hero ──────────────────────────────────── */
.nyw-shop-hero {
  position: relative;
  background: #0d0d0d url('') center/cover no-repeat;
  padding: 80px 0 70px;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid rgba(200, 169, 110, .15);
}

.nyw-shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .92) 0%, rgba(17, 10, 2, .88) 100%);
  z-index: 1;
}

.nyw-shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(200, 169, 110, .12) 0%, transparent 70%);
  z-index: 1;
}

.nyw-shop-hero .container {
  position: relative;
  z-index: 2;
}

.nyw-shop-hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--nyw-gold);
  margin-bottom: .75rem;
}

.nyw-shop-hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .8rem;
  line-height: 1.1;
}

.nyw-shop-hero-title .gold-text {
  background: var(--nyw-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nyw-shop-hero-sub {
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .03em;
  margin: 0;
}

/* ── Brand Filter Tabs ──────────────────────────── */
.nyw-brand-tabs-wrap {
  background: #fff;
  border-bottom: 1px solid var(--nyw-border);
  padding: 0;
  position: sticky;
  top: 76px;
  /* height of navbar */
  z-index: 100;
}

.nyw-brand-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nyw-brand-tabs::-webkit-scrollbar {
  display: none;
}

.nyw-brand-tab {
  flex-shrink: 0;
  display: inline-block;
  padding: .85rem 1.2rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #777;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.nyw-brand-tab:hover {
  color: #333;
  border-bottom-color: rgba(200, 169, 110, .4);
}

.nyw-brand-tab.active {
  color: var(--nyw-gold);
  border-bottom-color: var(--nyw-gold);
}

/* ── Shop Wrap ──────────────────────────────────── */
.nyw-shop-wrap {
  background: #f9f9f7;
  padding: 48px 0 80px;
  min-height: 60vh;
}

/* ── Sidebar ────────────────────────────────────── */
.nyw-shop-sidebar {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nyw-sidebar-widget {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 4px;
  padding: 1.2rem 1.4rem;
}

.nyw-sidebar-widget-title {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid #eee;
}

.nyw-sidebar-brand-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nyw-sidebar-brand-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .42rem .4rem;
  font-size: .85rem;
  color: #444;
  border-radius: 3px;
  transition: background .15s, color .15s;
}

.nyw-sidebar-brand-link:hover {
  background: #f5f0e8;
  color: #111;
}

.nyw-sidebar-brand-link.active {
  color: var(--nyw-gold-dk);
  font-weight: 700;
}

.nyw-sidebar-brand-count {
  font-size: .72rem;
  color: #aaa;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 1px 7px;
}

/* WooCommerce price-filter widget overrides */
.nyw-shop-sidebar .widget_price_filter .price_slider_wrapper {
  margin-top: .5rem;
}

.nyw-shop-sidebar .widget_price_filter .ui-slider {
  background: #e0e0e0;
  border: none;
  height: 4px;
  border-radius: 2px;
  margin: .5rem 0 1.2rem;
}

.nyw-shop-sidebar .widget_price_filter .ui-slider-range {
  background: var(--nyw-gold);
}

.nyw-shop-sidebar .widget_price_filter .ui-slider-handle {
  background: var(--nyw-gold);
  border: none;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  top: -6px;
  cursor: grab;
}

.nyw-shop-sidebar .widget_price_filter .price_slider_amount .button {
  background: var(--nyw-gold);
  color: #111;
  border: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s;
}

.nyw-shop-sidebar .widget_price_filter .price_slider_amount .button:hover {
  background: var(--nyw-gold-lt);
}

/* ── Shop Toolbar ───────────────────────────────── */
.nyw-shop-toolbar {
  border-bottom: 1px solid #e0ded8;
  padding-bottom: .85rem;
}

.nyw-result-count {
  font-size: .82rem;
  color: #777;
  letter-spacing: .02em;
}

.woocommerce-ordering select {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: .4rem .85rem;
  font-size: .82rem;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}

.woocommerce-ordering select:focus {
  border-color: var(--nyw-gold);
}

/* ── Product Card ───────────────────────────────── */
.nyw-product-col {
  display: flex;
}

.nyw-product-card {
  background: #fff;
  border: 1px solid #e8e8e4;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}

.nyw-product-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  border-color: rgba(200, 169, 110, .5);
  transform: translateY(-4px);
}

.nyw-product-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f7f7f5;
  aspect-ratio: 1 / 1;
}

.nyw-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.nyw-product-card:hover .nyw-product-img {
  transform: scale(1.05);
}

.nyw-product-img--placeholder {
  background: #f0f0ec;
  aspect-ratio: 1/1;
}

/* Hover overlay CTA */
.nyw-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}

.nyw-product-card:hover .nyw-product-overlay {
  opacity: 1;
}

.nyw-product-cta {
  background: var(--nyw-gold);
  color: #111;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .6rem 1.4rem;
  border-radius: 2px;
}

/* Sale badge */
.nyw-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2px;
  z-index: 2;
}

.nyw-product-badge--sale {
  background: #c0392b;
  color: #fff;
}

.nyw-product-badge--sold {
  background: #111;
  color: var(--nyw-gold);
}

/* Product info */
.nyw-product-info {
  padding: .9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nyw-product-brand {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nyw-gold-dk);
  margin-bottom: .3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nyw-product-title {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: .4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nyw-product-title a {
  color: #111;
}

.nyw-product-title a:hover {
  color: var(--nyw-gold);
}

.nyw-product-stars {
  font-size: .72rem;
  margin-bottom: .45rem;
}

.nyw-product-price {
  margin-top: auto;
  padding-top: .5rem;
}

.nyw-product-price .woocommerce-Price-amount {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}

.nyw-product-price ins .woocommerce-Price-amount {
  color: #111;
}

.nyw-product-price del .woocommerce-Price-amount {
  font-size: .82rem;
  font-weight: 400;
  color: #aaa;
  text-decoration: line-through;
}

/* ── Pagination ─────────────────────────────────── */
.nyw-shop-pagination .woocommerce-pagination ul {
  display: flex;
  gap: .4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.nyw-shop-pagination .woocommerce-pagination ul li {
  display: inline;
}

.nyw-shop-pagination .woocommerce-pagination ul li a,
.nyw-shop-pagination .woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: .85rem;
  font-weight: 600;
  color: #555;
  transition: background .2s, border-color .2s, color .2s;
  background: #fff;
}

.nyw-shop-pagination .woocommerce-pagination ul li a:hover {
  background: #f5f0e8;
  border-color: var(--nyw-gold);
  color: var(--nyw-gold-dk);
}

.nyw-shop-pagination .woocommerce-pagination ul li span.current {
  background: var(--nyw-gold);
  border-color: var(--nyw-gold);
  color: #111;
}

/* ── Mobile shop filter button ──────────────────── */
.nyw-mobile-filter-btn {
  display: none;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: #444;
  border: 1px solid #ddd;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.nyw-mobile-filter-btn:hover {
  color: var(--nyw-gold);
  border-color: var(--nyw-gold);
}

@media (max-width: 991px) {
  .nyw-mobile-filter-btn {
    display: inline-flex;
  }
}

/* ── Shop Responsive ────────────────────────────── */
@media (max-width: 991px) {
  .nyw-shop-wrap {
    padding: 32px 0 60px;
  }

  .nyw-shop-hero {
    padding: 56px 0 48px;
  }

  .nyw-brand-tabs-wrap {
    top: 70px;
  }
}

@media (max-width: 767px) {
  .nyw-shop-hero {
    padding: 40px 0 36px;
  }

  .nyw-product-info {
    padding: .7rem .8rem .8rem;
  }

  .nyw-product-title {
    font-size: .82rem;
  }

  .nyw-shop-toolbar {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .nyw-navbar .nav-link {
    padding: 1.3rem .65rem !important;
  }
}

@media (max-width: 991px) {
  .nyw-section {
    padding: 64px 0;
  }

  .nyw-brand-card {
    height: 210px;
  }

  .nyw-navbar .nav-link {
    padding: .75rem 1rem !important;
  }

  .nyw-navbar .nav-link::after {
    display: none;
  }

  .nyw-cta-box {
    padding: 50px 28px;
  }
}

@media (max-width: 767px) {
  .nyw-hero {
    height: 75vh;
    min-height: 520px;
  }

  .nyw-hero-content h1 {
    font-size: 2.1rem;
    letter-spacing: .04em;
  }

  .nyw-product-img {
    height: 200px;
  }

  .nyw-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .nyw-marquee-item {
    width: 200px;
  }

  .nyw-marquee-item img {
    width: 200px;
    height: 145px;
  }

  .nyw-section {
    padding: 48px 0;
  }

  .nyw-cta-box {
    padding: 44px 20px;
  }
}

@media (max-width: 480px) {
  .nyw-hero-content h1 {
    font-size: 1.7rem;
  }

  .nyw-brand-card {
    height: 175px;
  }
}

/* ════════════════════════════════════════════════════
   SINGLE PRODUCT
════════════════════════════════════════════════════ */
.nyw-single-product {
  padding-top: 12px;
}

.nyw-single-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8c8578;
  margin-bottom: 28px;
}

.nyw-single-breadcrumb a {
  color: #6e675c;
}

.nyw-single-breadcrumb a:hover {
  color: var(--nyw-gold-dk);
}

.nyw-single-media,
.nyw-single-summary-card,
.nyw-single-tabs-wrap .woocommerce-tabs .panel {
  background: #fff;
  border: 1px solid #ebe7de;
  box-shadow: 0 14px 50px rgba(14, 10, 4, .06);
}

.nyw-single-media {
  border-radius: 6px;
  padding: 18px;
  position: sticky;
  top: 118px;
  z-index: 10;
}

/* ── Custom Bootstrap Gallery Carousel ─── */
.nyw-gallery-carousel {
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(180deg, #faf9f6 0%, #f1eee7 100%);
  position: relative;
}

.nyw-gallery-main-img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  width: 100%;
}

.nyw-gallery-zoom {
  position: relative;
  display: block;
}

.nyw-gallery-zoom-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 1rem;
  opacity: 0;
  transition: opacity .2s;
}

.nyw-gallery-zoom:hover .nyw-gallery-zoom-icon {
  opacity: 1;
}

/* Arrow buttons */
.nyw-gallery-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9) !important;
  border: 1px solid #e0d9cd;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #111;
  position: absolute;
  transition: background .2s;
}

.nyw-gallery-arrow:hover {
  background: #fff !important;
  border-color: #c8a96e;
}

.nyw-gallery-arrow.carousel-control-prev {
  left: 12px;
}

.nyw-gallery-arrow.carousel-control-next {
  right: 12px;
}

.nyw-gallery-arrow i {
  font-size: 1rem;
  color: #111;
}

.nyw-gallery-arrow .carousel-control-prev-icon,
.nyw-gallery-arrow .carousel-control-next-icon {
  display: none;
}

/* Thumbnail strip */
.nyw-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0 0;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}

.nyw-gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}

.nyw-gallery-thumbs::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 2px;
}

.nyw-gallery-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  background: #f0ede6;
  cursor: pointer;
  transition: border-color .2s;
}

.nyw-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nyw-gallery-thumb.active,
.nyw-gallery-thumb:hover {
  border-color: var(--nyw-gold);
}

/* Sale badge */
.nyw-single-media .onsale {
  position: absolute;
  left: 18px !important;
  top: 18px !important;
  z-index: 5;
  min-width: 0;
  min-height: 0;
  line-height: 1;
  border-radius: 999px;
  padding: .45rem .8rem;
  background: #111;
  color: var(--nyw-gold);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}


.nyw-single-gallery-placeholder {
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
}

.nyw-single-gallery-placeholder i {
  font-size: 4rem;
  color: var(--nyw-gold);
  margin-bottom: 1rem;
}

.nyw-single-gallery-placeholder h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: .65rem;
  color: #111;
}

.nyw-single-gallery-placeholder p {
  max-width: 420px;
  margin: 0;
  color: #6e675c;
  line-height: 1.75;
}

.nyw-single-summary-card {
  border-radius: 6px;
  padding: 32px;
}

.nyw-single-summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 14px;
}

.nyw-single-eyebrow {
  margin: 0;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--nyw-gold-dk);
}

.nyw-single-stock {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .42rem .8rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nyw-single-stock.is-in-stock {
  background: rgba(50, 112, 68, .09);
  color: #2d6b3d;
}

.nyw-single-stock.is-out-of-stock {
  background: rgba(164, 63, 53, .08);
  color: #9b352c;
}

.nyw-single-summary-card .product_title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: .02em;
  margin: 0 0 16px;
  color: #111;
}

.nyw-single-price-wrap .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .7rem;
  margin: 0;
}

.nyw-single-price-wrap .price .woocommerce-Price-amount {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: #111;
}

.nyw-single-price-wrap .price del .woocommerce-Price-amount {
  color: #9f9789;
  font-size: 1rem;
  font-weight: 500;
}

.nyw-single-price-wrap .price ins {
  text-decoration: none;
}

.nyw-single-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 169, 110, .45), rgba(200, 169, 110, 0));
  margin: 24px 0;
}

.nyw-single-summary-card .woocommerce-product-details__short-description {
  color: #5f584d;
  line-height: 1.9;
  font-size: .96rem;
}

.nyw-single-summary-card .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

.nyw-single-cart-wrap form.cart {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 1em;
  margin-bottom: 0;
}

.nyw-single-cart-wrap .quantity {
  margin: 0 !important;
  display: inline-flex;
  align-items: center;
  padding: .95rem 1rem !important;
  border: 1px solid #ddd6c9;
  border-radius: 999px;
  background: #fbfaf7;
  height: auto;
}

.nyw-single-cart-wrap .quantity .qty {
  width: 60px;
  border: none !important;
  outline: none !important;
  background: transparent;
  font-weight: 700;
  color: #111;
  box-shadow: none !important;
  text-align: center;
  padding: 0;
  margin: 0;
}

.nyw-single-cart-wrap .single_add_to_cart_button {
  background: #111 !important;
  border: 1px solid #111 !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: .95rem 1.75rem !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: all .25s ease;
}

.nyw-single-cart-wrap .single_add_to_cart_button:hover {
  background: var(--nyw-gold) !important;
  border-color: var(--nyw-gold) !important;
  color: #111 !important;
}

.nyw-single-price-message {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 22px;
}

.nyw-single-price-badge {
  min-width: 82px;
  background: #111;
  color: #fff;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 12px 10px;
}

.nyw-single-price-badge span {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.nyw-single-price-badge small {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: .35rem;
}

.nyw-single-price-content {
  flex: 1;
  margin: 0;
  padding: 14px 18px;
  background: #efebe3;
  border: 1px solid #e0d9cd;
  border-left: 0;
  border-radius: 0 10px 10px 0;
  color: #342f29;
  line-height: 1.7;
  font-size: .9rem;
}

.nyw-single-specs {
  display: grid;
  gap: 14px;
}

.nyw-single-spec {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 14px;
  border-bottom: 1px solid #efe9df;
}

.nyw-single-spec:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.nyw-single-spec-label {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8c8578;
}

.nyw-single-spec-value,
.nyw-single-spec-value a {
  color: #181512;
  line-height: 1.7;
}

.nyw-single-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.nyw-single-trust-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 14px 16px;
  border: 1px solid #ece6dc;
  border-radius: 4px;
  background: #fbfaf7;
  font-size: .88rem;
  font-weight: 600;
  color: #2a251e;
}

.nyw-single-trust-item i {
  font-size: 1.05rem;
  color: var(--nyw-gold-dk);
}

.nyw-single-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid #efe9df;
}

.nyw-single-share-label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8c8578;
}

.nyw-single-share-links {
  display: flex;
  gap: .7rem;
}

.nyw-single-share-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd6ca;
  background: #fff;
  color: #111;
}

.nyw-single-share-links a:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

.nyw-single-tabs-wrap {
  margin-top: 34px;
}

.nyw-single-tabs-wrap .woocommerce-tabs::after,
.nyw-single-tabs-wrap .woocommerce-tabs::before,
.nyw-single-product::after,
.nyw-single-product::before {
  display: none !important;
}

.nyw-single-tabs-wrap .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  border-bottom: 1px solid #e6dfd2;
}

.nyw-single-tabs-wrap .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0 0 14px;
  border: 0;
  background: transparent;
}

.nyw-single-tabs-wrap .woocommerce-tabs ul.tabs li::before,
.nyw-single-tabs-wrap .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.nyw-single-tabs-wrap .woocommerce-tabs ul.tabs li a {
  padding: 0;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #817969;
}

.nyw-single-tabs-wrap .woocommerce-tabs ul.tabs li.active {
  border-bottom: 3px solid #111;
}

.nyw-single-tabs-wrap .woocommerce-tabs ul.tabs li.active a {
  color: #111;
}

.nyw-single-tabs-wrap .woocommerce-tabs .panel {
  border-radius: 6px;
  padding: 28px 30px;
  margin: 0 0 18px;
}

.nyw-single-tabs-wrap .woocommerce-Tabs-panel>h2:first-child {
  display: none;
}

.nyw-single-tabs-wrap .woocommerce-Tabs-panel,
.nyw-single-tabs-wrap .woocommerce-Tabs-panel p,
.nyw-single-tabs-wrap .woocommerce-Tabs-panel li,
.nyw-single-tabs-wrap .woocommerce-Tabs-panel td,
.nyw-single-tabs-wrap .woocommerce-Tabs-panel th {
  color: #484137;
  line-height: 1.85;
}

.nyw-single-tabs-wrap .woocommerce-Tabs-panel table {
  width: 100%;
  border-collapse: collapse;
}

.nyw-single-tabs-wrap .woocommerce-Tabs-panel table td,
.nyw-single-tabs-wrap .woocommerce-Tabs-panel table th {
  padding: 12px 14px;
  border: 1px solid #ece4d8;
  vertical-align: top;
}

.nyw-single-tabs-wrap .woocommerce-Reviews-title,
.nyw-single-tabs-wrap .comment-reply-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: #111;
}

.nyw-single-tabs-wrap input,
.nyw-single-tabs-wrap textarea,
.nyw-single-tabs-wrap select {
  width: 100%;
  border: 1px solid #d9d1c4;
  border-radius: 4px;
  padding: .85rem 1rem;
  background: #fff;
}

.nyw-single-tabs-wrap #submit {
  background: #111 !important;
  border: 1px solid #111 !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: .9rem 1.6rem !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .nyw-single-media {
    position: static;
  }

  .nyw-single-gallery-placeholder {
    min-height: 440px;
  }
}

@media (max-width: 767px) {
  .nyw-single-breadcrumb {
    margin-bottom: 20px;
    gap: .4rem;
    font-size: .7rem;
    padding-left: 15px;
    padding-right: 15px;
  }

  .nyw-single-summary-card,
  .nyw-single-tabs-wrap .woocommerce-tabs .panel {
    padding: 22px 18px;
  }

  .nyw-single-summary-top,
  .nyw-single-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .nyw-single-spec {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .nyw-single-trust-grid {
    grid-template-columns: 1fr;
  }

  .nyw-single-price-message {
    flex-direction: column;
  }

  .nyw-single-price-badge {
    border-radius: 10px 10px 0 0;
    min-width: 0;
  }

  .nyw-single-price-content {
    border-left: 1px solid #e0d9cd;
    border-top: 0;
    border-radius: 0 0 10px 10px;
  }

  .nyw-single-tabs-wrap .woocommerce-tabs ul.tabs {
    gap: 1rem;
    padding-left: 15px;
    padding-right: 15px;
  }

  .nyw-single-tabs-wrap .woocommerce-tabs ul.tabs li {
    padding-bottom: 10px;
  }
}

/* ════════════════════════════════════════════════════
   REQUEST A QUOTE — Out-of-Stock Button & Modal
════════════════════════════════════════════════════ */

/* Button */
.nyw-request-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  border-radius: 999px;
  padding: 8px 20px 10px 22px;
  margin-top: 1em;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
}

.nyw-request-quote-btn:hover {
  background: var(--nyw-gold);
  border-color: var(--nyw-gold);
  color: #111;
}

.nyw-request-quote-btn i {
  font-size: 1rem;
}

/* Modal shell */
.nyw-quote-modal-content {
  border: none;
  border-radius: 14px;
  padding: 32px 28px 28px;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
  max-height: 90vh;
  overflow-y: auto;
}

/* Close button */
.nyw-quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e0d9cd;
  background: #f7f4ef;
  color: #555;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background .2s, color .2s;
  padding: 0;
  line-height: 1;
}

.nyw-quote-modal-close:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Product overview header */
.nyw-quote-product-header {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e5dfd4;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 24px;
  background: #faf9f6;
}

.nyw-quote-product-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ece6dc;
  background: #f0ede6;
}

.nyw-quote-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nyw-quote-product-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nyw-quote-product-info strong {
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.nyw-quote-product-price {
  font-size: .9rem;
  font-weight: 600;
  color: #444;
}

.nyw-quote-product-price .woocommerce-Price-amount {
  color: #111;
  font-weight: 700;
}

/* Forminator form inside modal */
.nyw-quote-form-wrap .forminator-ui.forminator-custom-form {
  background: transparent !important;
  padding: 0 !important;
}

.nyw-quote-form-wrap .forminator-row {
  margin-bottom: 1rem;
}

.nyw-quote-form-wrap .forminator-label {
  color: #333 !important;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.nyw-quote-form-wrap .forminator-input,
.nyw-quote-form-wrap .forminator-select,
.nyw-quote-form-wrap .forminator-textarea {
  background: #f7f6f3 !important;
  border: 1px solid #ddd6c9 !important;
  border-radius: 6px !important;
  color: #222 !important;
  height: 48px !important;
  padding: 0 1rem !important;
  font-size: .93rem !important;
  line-height: 48px !important;
  transition: border-color .2s;
  width: 100% !important;
}

.nyw-quote-form-wrap .forminator-textarea {
  height: 120px !important;
  line-height: 1.6 !important;
  padding: .75rem 1rem !important;
}

.nyw-quote-form-wrap .forminator-input:focus,
.nyw-quote-form-wrap .forminator-textarea:focus {
  border-color: #c8a96e !important;
  outline: none;
  background: #fff !important;
}

.nyw-quote-form-wrap .forminator-btn-submit,
.nyw-quote-form-wrap button[type="submit"] {
  background: #111 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: .95rem 2rem !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  width: 100% !important;
  cursor: pointer;
  transition: background .25s !important;
}

.nyw-quote-form-wrap .forminator-btn-submit:hover,
.nyw-quote-form-wrap button[type="submit"]:hover {
  background: var(--nyw-gold) !important;
  color: #111 !important;
}

/* ════════════════════════════════════════════════════
   FIND A WATCH — Source A Watch page
════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────── */
.nyw-faw-hero {
  position: relative;
  background: #0d0d0d url('../assets/DSC02557-scaled-1.jpg') center 30%/cover no-repeat;
  padding: 100px 0 90px;
  overflow: hidden;
}

.nyw-faw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .52);
}

.nyw-faw-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(200, 169, 110, .15) 0%, transparent 65%);
  pointer-events: none;
}

.nyw-faw-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--nyw-gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.nyw-faw-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.nyw-faw-title .nyw-gold {
  background: var(--nyw-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nyw-faw-divider {
  width: 56px;
  height: 2px;
  background: var(--nyw-gold);
  margin: 0 auto 1.5rem;
}

.nyw-faw-desc {
  font-size: .98rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto .9rem;
}

/* ── Trust Badges ──────────────────────────────── */
.nyw-faw-badges {
  background: var(--nyw-light);
  border-bottom: 1px solid var(--nyw-border);
  padding: 32px 0;
}

.nyw-faw-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: #555;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nyw-faw-badge i {
  font-size: 1.6rem;
  color: var(--nyw-gold);
}

/* ── Form Section ──────────────────────────────── */
.nyw-faw-form-section {
  background: #f0efea;
  padding: 72px 0 96px;
}

.nyw-faw-form-card {
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 6px;
  padding: 52px 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.nyw-faw-form-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: #111;
  margin-bottom: .6rem;
}

.nyw-faw-form-sub {
  font-size: .9rem;
  color: #777;
  margin-bottom: 2rem;
}

/* ── Forminator overrides (light theme) ─────────── */
.nyw-faw-forminator .forminator-ui.forminator-custom-form {
  background: transparent !important;
  padding: 0 !important;
}

.nyw-faw-forminator .forminator-row {
  margin-bottom: 1rem;
}

.nyw-faw-forminator .forminator-label {
  color: #444 !important;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.nyw-faw-forminator .forminator-input,
.nyw-faw-forminator .forminator-select,
.nyw-faw-forminator .forminator-textarea {
  background: #fff !important;
  border: 1px solid #ddd !important;
  border-radius: 3px !important;
  color: #222 !important;
  height: 46px !important;
  padding: 0 .9rem !important;
  font-size: .92rem !important;
  line-height: 46px !important;
  transition: border-color .2s;
}

.nyw-faw-forminator .forminator-textarea {
  height: auto !important;
  line-height: 1.6 !important;
  padding: .65rem .9rem !important;
}

.nyw-faw-forminator .forminator-input:focus,
.nyw-faw-forminator .forminator-select:focus,
.nyw-faw-forminator .forminator-textarea:focus {
  border-color: var(--nyw-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(200, 169, 110, .12) !important;
}

.nyw-faw-forminator .forminator-button-submit {
  background: var(--nyw-gold) !important;
  color: #111 !important;
  border: none !important;
  border-radius: 3px !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  padding: .75rem 2.2rem !important;
  transition: opacity .2s !important;
  cursor: pointer;
}

.nyw-faw-forminator .forminator-button-submit:hover {
  opacity: .85 !important;
}

/* ── Select2 — Find a Watch form ── */
/* Container: force full width regardless of JS-set inline style */
.nyw-faw-forminator .select2-container.forminator-select,
.nyw-faw-forminator .select2.forminator-select {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Visible trigger button — same height as text inputs */
.nyw-faw-forminator .select2-container--default.forminator-select .select2-selection--single,
.nyw-faw-forminator .select2-selection--single {
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  height: 46px !important;
  min-height: unset !important;
  padding: 0 .9rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.nyw-faw-forminator .select2-selection__rendered {
  color: #333 !important;
  line-height: 1.4 !important;
  padding-left: 0 !important;
  padding-right: 1.6rem !important;
  flex: 1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.nyw-faw-forminator .select2-selection__arrow {
  position: absolute !important;
  top: 50% !important;
  right: .7rem !important;
  transform: translateY(-50%) !important;
  height: auto !important;
}

.nyw-faw-forminator .select2-selection__arrow b {
  border-color: #888 transparent transparent !important;
}

/* Dropdown panel — every layer forced white */
.select2-dropdown,
.select2-dropdown *,
.select2-results,
.select2-results__options,
.select2-results__option {
  background: #fff !important;
  background-color: #fff !important;
}

.select2-dropdown {
  position: absolute !important;
  left: 0 !important;
  border: 1px solid #ddd !important;
  border-radius: 0 0 4px 4px !important;
  z-index: 999999 !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .12) !important;
  min-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.select2-results__option {
  color: #333 !important;
  padding: .55rem .9rem !important;
  font-size: .9rem !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: rgba(200, 169, 110, .15) !important;
  background-color: rgba(200, 169, 110, .15) !important;
  color: #7a5c1e !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: rgba(200, 169, 110, .08) !important;
  background-color: rgba(200, 169, 110, .08) !important;
  color: #7a5c1e !important;
}

/* Prevent the dropdown from pushing layout / breaking viewport */
.nyw-faw-forminator .forminator-field {
  position: relative !important;
  overflow: visible !important;
}

.nyw-faw-forminator .forminator-row {
  overflow: visible !important;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .nyw-faw-hero {
    padding: 72px 0 64px;
  }

  .nyw-faw-form-card {
    padding: 40px 32px;
  }
}

@media (max-width: 575px) {
  .nyw-faw-hero {
    padding: 56px 0 48px;
  }

  .nyw-faw-form-card {
    padding: 28px 20px;
  }
}


/* ════════════════════════════════════════════════════
   SELL & TRADE MY WATCH page
════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────── */
.nyw-sat-hero {
  position: relative;
  background: #0d0d0d url('../assets/DSC01380-1536x1024-1.jpg') center 40%/cover no-repeat;
  padding: 100px 0 90px;
  overflow: hidden;
}

.nyw-sat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .52);
}

.nyw-sat-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(200, 169, 110, .15) 0%, transparent 65%);
  pointer-events: none;
}

.nyw-sat-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--nyw-gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.nyw-sat-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.nyw-sat-title .nyw-gold {
  background: var(--nyw-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nyw-sat-divider {
  width: 56px;
  height: 2px;
  background: var(--nyw-gold);
  margin: 0 auto 1.5rem;
}

.nyw-sat-desc {
  font-size: .98rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto .9rem;
}

/* ── Trust Badges ──────────────────────────────── */
.nyw-sat-badges {
  background: var(--nyw-light);
  border-bottom: 1px solid var(--nyw-border);
  padding: 32px 0;
}

.nyw-sat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: #555;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nyw-sat-badge i {
  font-size: 1.6rem;
  color: var(--nyw-gold);
}

/* ── How It Works ──────────────────────────────── */
.nyw-sat-steps {
  background: #fff;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--nyw-border);
}

.nyw-sat-steps-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: #111;
  margin-bottom: .5rem;
}

.nyw-sat-step {
  text-align: center;
  padding: 32px 24px;
}

.nyw-sat-step-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(200, 169, 110, .18);
  line-height: 1;
  margin-bottom: .75rem;
  letter-spacing: .02em;
}

.nyw-sat-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin-bottom: .5rem;
  letter-spacing: .03em;
}

.nyw-sat-step-desc {
  font-size: .9rem;
  color: #666;
  line-height: 1.7;
}

/* ── Form Section ──────────────────────────────── */
.nyw-sat-form-section {
  background: #f0efea;
  padding: 72px 0 96px;
}

.nyw-sat-form-card {
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 6px;
  padding: 52px 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.nyw-sat-form-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: #111;
  margin-bottom: .6rem;
}

.nyw-sat-form-sub {
  font-size: .9rem;
  color: #777;
  margin-bottom: 2rem;
}

/* ── Forminator overrides ──────────────────────── */
.nyw-sat-forminator .forminator-ui.forminator-custom-form {
  background: transparent !important;
  padding: 0 !important;
}

.nyw-sat-forminator .forminator-row {
  margin-bottom: 1rem;
}

.nyw-sat-forminator .forminator-label {
  color: #444 !important;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.nyw-sat-forminator .forminator-input,
.nyw-sat-forminator .forminator-select,
.nyw-sat-forminator .forminator-textarea {
  background: #fff !important;
  border: 1px solid #ddd !important;
  border-radius: 3px !important;
  color: #222 !important;
  height: 46px !important;
  padding: 0 .9rem !important;
  font-size: .92rem !important;
  line-height: 46px !important;
  transition: border-color .2s;
}

.nyw-sat-forminator .forminator-textarea {
  height: auto !important;
  line-height: 1.6 !important;
  padding: .65rem .9rem !important;
}

.nyw-sat-forminator .forminator-input:focus,
.nyw-sat-forminator .forminator-select:focus,
.nyw-sat-forminator .forminator-textarea:focus {
  border-color: var(--nyw-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(200, 169, 110, .12) !important;
}

.nyw-sat-forminator .forminator-button-submit {
  background: var(--nyw-gold) !important;
  color: #111 !important;
  border: none !important;
  border-radius: 3px !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  padding: .85rem 2.4rem !important;
  transition: background .2s !important;
}

.nyw-sat-forminator .forminator-button-submit:hover {
  background: var(--nyw-gold-dk) !important;
}

.nyw-sat-forminator .forminator-field {
  position: relative;
}

.nyw-sat-forminator .forminator-row {
  overflow: visible;
}

/* Select2 for sat form */
.nyw-sat-forminator .select2-container.forminator-select,
.nyw-sat-forminator .select2.forminator-select {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.nyw-sat-forminator .select2-container--default.forminator-select .select2-selection--single,
.nyw-sat-forminator .select2-selection--single {
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  height: 46px !important;
  min-height: unset !important;
  padding: 0 .9rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.nyw-sat-forminator .select2-selection__rendered {
  color: #333 !important;
  line-height: 1.4 !important;
  padding-left: 0 !important;
  padding-right: 1.6rem !important;
  flex: 1 !important;
}

.nyw-sat-forminator .select2-selection__arrow {
  position: absolute !important;
  right: .7rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .nyw-sat-hero {
    padding: 72px 0 64px;
  }

  .nyw-sat-form-card {
    padding: 40px 32px;
  }
}

@media (max-width: 575px) {
  .nyw-sat-hero {
    padding: 56px 0 48px;
  }

  .nyw-sat-form-card {
    padding: 28px 20px;
  }
}


/* ════════════════════════════════════════════════════
   CONSIGNMENT page
════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────── */
.nyw-con-hero {
  position: relative;
  background: #0d0d0d url('../assets/DSC07220-1536x1024-1.jpg') center 35%/cover no-repeat;
  padding: 100px 0 90px;
  overflow: hidden;
}

.nyw-con-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .54);
}

.nyw-con-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(200, 169, 110, .15) 0%, transparent 65%);
  pointer-events: none;
}

.nyw-con-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--nyw-gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.nyw-con-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.nyw-con-title .nyw-gold {
  background: var(--nyw-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nyw-con-divider {
  width: 56px;
  height: 2px;
  background: var(--nyw-gold);
  margin: 0 auto 1.5rem;
}

.nyw-con-desc {
  font-size: .98rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 660px;
  margin: 0 auto .9rem;
}

/* ── Trust Badges ──────────────────────────────── */
.nyw-con-badges {
  background: var(--nyw-light);
  border-bottom: 1px solid var(--nyw-border);
  padding: 32px 0;
}

.nyw-con-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: #555;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nyw-con-badge i {
  font-size: 1.6rem;
  color: var(--nyw-gold);
}

/* ── Consignment Rates ─────────────────────────── */
.nyw-con-rates {
  background: #fff;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--nyw-border);
}

.nyw-con-rates-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: #111;
  margin-bottom: .5rem;
}

.nyw-con-rates-table {
  border: 1px solid var(--nyw-border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 2rem;
}

.nyw-con-rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1.5rem;
  border-bottom: 1px solid var(--nyw-border);
  font-size: .92rem;
}

.nyw-con-rate-row:last-child {
  border-bottom: none;
}

.nyw-con-rate-row:nth-child(even) {
  background: #fafaf8;
}

.nyw-con-rate-range {
  color: #333;
  font-weight: 500;
}

.nyw-con-rate-pct {
  color: var(--nyw-gold-dk);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
}

.nyw-con-rate-row--cta .nyw-con-rate-range {
  color: #111;
  font-weight: 600;
}

.nyw-con-rate-row--cta .nyw-con-rate-pct {
  background: var(--nyw-gold);
  color: #111;
  padding: .3rem .9rem;
  border-radius: 3px;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Form Section ──────────────────────────────── */
.nyw-con-form-section {
  background: #f0efea;
  padding: 72px 0 96px;
}

.nyw-con-form-card {
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 6px;
  padding: 52px 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.nyw-con-form-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: #111;
  margin-bottom: .6rem;
}

.nyw-con-form-sub {
  font-size: .9rem;
  color: #777;
  margin-bottom: 2rem;
}

/* ── Forminator overrides ──────────────────────── */
.nyw-con-forminator .forminator-ui.forminator-custom-form {
  background: transparent !important;
  padding: 0 !important;
}

.nyw-con-forminator .forminator-row {
  margin-bottom: 1rem;
  overflow: visible;
}

.nyw-con-forminator .forminator-label {
  color: #444 !important;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.nyw-con-forminator .forminator-input,
.nyw-con-forminator .forminator-select,
.nyw-con-forminator .forminator-textarea {
  background: #fff !important;
  border: 1px solid #ddd !important;
  border-radius: 3px !important;
  color: #222 !important;
  height: 46px !important;
  padding: 0 .9rem !important;
  font-size: .92rem !important;
  line-height: 46px !important;
  transition: border-color .2s;
}

.nyw-con-forminator .forminator-textarea {
  height: auto !important;
  line-height: 1.6 !important;
  padding: .65rem .9rem !important;
}

.nyw-con-forminator .forminator-input:focus,
.nyw-con-forminator .forminator-select:focus,
.nyw-con-forminator .forminator-textarea:focus {
  border-color: var(--nyw-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(200, 169, 110, .12) !important;
}

.nyw-con-forminator .forminator-button-submit {
  background: var(--nyw-gold) !important;
  color: #111 !important;
  border: none !important;
  border-radius: 3px !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  padding: .85rem 2.4rem !important;
  transition: background .2s !important;
}

.nyw-con-forminator .forminator-button-submit:hover {
  background: var(--nyw-gold-dk) !important;
}

.nyw-con-forminator .forminator-field {
  position: relative;
}

/* Select2 for consignment form */
.nyw-con-forminator .select2-container.forminator-select,
.nyw-con-forminator .select2.forminator-select {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.nyw-con-forminator .select2-container--default.forminator-select .select2-selection--single,
.nyw-con-forminator .select2-selection--single {
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  height: 46px !important;
  min-height: unset !important;
  padding: 0 .9rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.nyw-con-forminator .select2-selection__rendered {
  color: #333 !important;
  line-height: 1.4 !important;
  padding-left: 0 !important;
  padding-right: 1.6rem !important;
  flex: 1 !important;
}

.nyw-con-forminator .select2-selection__arrow {
  position: absolute !important;
  right: .7rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .nyw-con-hero {
    padding: 72px 0 64px;
  }

  .nyw-con-form-card {
    padding: 40px 32px;
  }
}

@media (max-width: 575px) {
  .nyw-con-hero {
    padding: 56px 0 48px;
  }

  .nyw-con-form-card {
    padding: 28px 20px;
  }

  .nyw-con-rate-row {
    padding: .75rem 1rem;
  }
}


/* ════════════════════════════════════════════════════
   CONTACT US page
════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────── */
.nyw-ctu-hero {
  position: relative;
  background: #0d0d0d url('../assets/DSC02557-scaled-1.jpg') center 50%/cover no-repeat;
  padding: 90px 0 80px;
  overflow: hidden;
}

.nyw-ctu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
}

.nyw-ctu-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(200, 169, 110, .14) 0%, transparent 65%);
  pointer-events: none;
}

.nyw-ctu-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--nyw-gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.nyw-ctu-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.nyw-ctu-title .nyw-gold {
  background: var(--nyw-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nyw-ctu-divider {
  width: 56px;
  height: 2px;
  background: var(--nyw-gold);
  margin: 0 auto 1.5rem;
}

.nyw-ctu-desc {
  font-size: .98rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Main Section ──────────────────────────────── */
.nyw-ctu-main {
  background: #f0efea;
  padding: 72px 0 96px;
}

/* ── Contact Info Panel ────────────────────────── */
.nyw-ctu-info {
  position: sticky;
  top: 100px;
}

.nyw-ctu-info-title {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #111;
  margin-bottom: .5rem;
}

.nyw-ctu-info-title .nyw-gold {
  background: var(--nyw-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nyw-ctu-info-sub {
  font-size: .9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.nyw-ctu-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.nyw-ctu-info-icon {
  width: 42px;
  height: 42px;
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--nyw-gold);
  font-size: 1rem;
}

.nyw-ctu-info-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 .2rem;
}

.nyw-ctu-info-value {
  font-size: .92rem;
  color: #222;
  font-weight: 500;
  text-decoration: none;
}

a.nyw-ctu-info-value:hover {
  color: var(--nyw-gold-dk);
}

/* ── Business Hours ────────────────────────────── */
.nyw-ctu-hours {
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}

.nyw-ctu-hours-title {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--nyw-gold-dk);
  margin-bottom: .9rem;
}

.nyw-ctu-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  color: #444;
  padding: .35rem 0;
  border-bottom: 1px solid var(--nyw-border);
}

.nyw-ctu-hours-row:last-child {
  border-bottom: none;
}

/* ── Form Card ─────────────────────────────────── */
.nyw-ctu-form-card {
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 6px;
  padding: 52px 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.nyw-ctu-form-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: #111;
  margin-bottom: .5rem;
}

.nyw-ctu-form-title .nyw-gold {
  background: var(--nyw-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nyw-ctu-form-sub {
  font-size: .9rem;
  color: #777;
  margin-bottom: 2rem;
}

/* ── Forminator overrides ──────────────────────── */
.nyw-ctu-forminator .forminator-ui.forminator-custom-form {
  background: transparent !important;
  padding: 0 !important;
}

.nyw-ctu-forminator .forminator-row {
  margin-bottom: 1rem;
  overflow: visible;
}

.nyw-ctu-forminator .forminator-label {
  color: #444 !important;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.nyw-ctu-forminator .forminator-input,
.nyw-ctu-forminator .forminator-select,
.nyw-ctu-forminator .forminator-textarea {
  background: #fff !important;
  border: 1px solid #ddd !important;
  border-radius: 3px !important;
  color: #222 !important;
  height: 46px !important;
  padding: 0 .9rem !important;
  font-size: .92rem !important;
  line-height: 46px !important;
  transition: border-color .2s;
}

.nyw-ctu-forminator .forminator-textarea {
  height: auto !important;
  min-height: 130px !important;
  line-height: 1.6 !important;
  padding: .65rem .9rem !important;
}

.nyw-ctu-forminator .forminator-input:focus,
.nyw-ctu-forminator .forminator-select:focus,
.nyw-ctu-forminator .forminator-textarea:focus {
  border-color: var(--nyw-gold) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(200, 169, 110, .12) !important;
}

.nyw-ctu-forminator .forminator-button-submit {
  background: var(--nyw-gold) !important;
  color: #111 !important;
  border: none !important;
  border-radius: 3px !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  padding: .85rem 2.4rem !important;
  transition: background .2s !important;
}

.nyw-ctu-forminator .forminator-button-submit:hover {
  background: var(--nyw-gold-dk) !important;
}

.nyw-ctu-forminator .forminator-field {
  position: relative;
}

/* Select2 */
.nyw-ctu-forminator .select2-container.forminator-select,
.nyw-ctu-forminator .select2.forminator-select {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.nyw-ctu-forminator .select2-container--default.forminator-select .select2-selection--single,
.nyw-ctu-forminator .select2-selection--single {
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  height: 46px !important;
  min-height: unset !important;
  padding: 0 .9rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.nyw-ctu-forminator .select2-selection__rendered {
  color: #333 !important;
  line-height: 1.4 !important;
  padding-left: 0 !important;
  padding-right: 1.6rem !important;
  flex: 1 !important;
}

.nyw-ctu-forminator .select2-selection__arrow {
  position: absolute !important;
  right: .7rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .nyw-ctu-hero {
    padding: 72px 0 64px;
  }

  .nyw-ctu-form-card {
    padding: 40px 32px;
  }

  .nyw-ctu-info {
    position: static;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .nyw-ctu-hero {
    padding: 56px 0 48px;
  }

  .nyw-ctu-form-card {
    padding: 28px 20px;
  }
}


/* ════════════════════════════════════════════════════
   ABOUT US page
════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────── */
.nyw-abu-hero {
  position: relative;
  background: #0d0d0d url('../assets/DSC02557-scaled-1.jpg') center 40%/cover no-repeat;
  padding: 100px 0 90px;
  overflow: hidden;
}

.nyw-abu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .60);
}

.nyw-abu-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(200, 169, 110, .15) 0%, transparent 65%);
  pointer-events: none;
}

.nyw-abu-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--nyw-gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.nyw-abu-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.nyw-abu-title .nyw-gold {
  background: var(--nyw-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nyw-abu-divider {
  width: 56px;
  height: 2px;
  background: var(--nyw-gold);
  margin: 0 auto 1.5rem;
}

.nyw-abu-divider-left {
  width: 56px;
  height: 2px;
  background: var(--nyw-gold);
  margin: 0 0 1.5rem;
}

.nyw-abu-desc {
  font-size: .98rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Shared Typography ──────────────────────────── */
.nyw-abu-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--nyw-gold);
  margin-bottom: .5rem;
}

.nyw-abu-label--light {
  color: rgba(200, 169, 110, .8);
}

.nyw-abu-section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: #111;
  margin-bottom: .5rem;
}

.nyw-abu-section-title .nyw-gold {
  background: var(--nyw-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nyw-abu-body {
  font-size: .96rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ── Intro Section ──────────────────────────────── */
.nyw-abu-intro {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid var(--nyw-border);
}

.nyw-abu-intro-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .10);
}

.nyw-abu-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Services ───────────────────────────────────── */
.nyw-abu-services {
  background: #f0efea;
  padding: 80px 0;
  border-bottom: 1px solid var(--nyw-border);
}

.nyw-abu-service-card {
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 6px;
  padding: 2.2rem 2rem;
  height: 100%;
  transition: box-shadow .2s, transform .2s;
}

.nyw-abu-service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .09);
  transform: translateY(-3px);
}

.nyw-abu-service-icon {
  width: 52px;
  height: 52px;
  background: rgba(200, 169, 110, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--nyw-gold);
  font-size: 1.4rem;
}

.nyw-abu-service-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  letter-spacing: .03em;
  margin-bottom: .75rem;
}

.nyw-abu-service-body {
  font-size: .88rem;
  color: #666;
  line-height: 1.75;
  margin: 0;
}

/* ── Why Us ─────────────────────────────────────── */
.nyw-abu-why {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid var(--nyw-border);
}

.nyw-abu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nyw-abu-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .92rem;
  color: #444;
  padding: .55rem 0;
  border-bottom: 1px solid var(--nyw-border);
}

.nyw-abu-list li:last-child {
  border-bottom: none;
}

.nyw-abu-list li i {
  color: var(--nyw-gold);
  font-size: 1rem;
  margin-top: .1rem;
  flex-shrink: 0;
}

/* ── Approach / CTA ─────────────────────────────── */
.nyw-abu-approach {
  background: #111;
  padding: 80px 0 90px;
}

.nyw-abu-approach-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .5rem;
}

.nyw-abu-approach-title .nyw-gold {
  background: var(--nyw-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nyw-abu-approach-body {
  font-size: .96rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.85;
  margin-bottom: .8rem;
}

.nyw-abu-btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 3px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}

.nyw-abu-btn--gold {
  background: var(--nyw-gold);
  color: #111;
}

.nyw-abu-btn--gold:hover {
  background: var(--nyw-gold-dk);
  color: #111;
}

.nyw-abu-btn--outline {
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
}

.nyw-abu-btn--outline:hover {
  border-color: var(--nyw-gold);
  color: var(--nyw-gold);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .nyw-abu-hero {
    padding: 72px 0 64px;
  }

  .nyw-abu-intro {
    padding: 56px 0;
  }

  .nyw-abu-services {
    padding: 56px 0;
  }

  .nyw-abu-why {
    padding: 56px 0;
  }

  .nyw-abu-approach {
    padding: 56px 0 64px;
  }
}

@media (max-width: 575px) {
  .nyw-abu-hero {
    padding: 56px 0 48px;
  }

  .nyw-abu-service-card {
    padding: 1.6rem 1.4rem;
  }
}


/* ════════════════════════════════════════════════════
   BLOGS page
════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────── */
.nyw-blg-hero {
  position: relative;
  background: #0d0d0d url('../assets/DSC01380-1536x1024-1.jpg') center 50%/cover no-repeat;
  padding: 90px 0 80px;
  overflow: hidden;
}

.nyw-blg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .60);
}

.nyw-blg-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(200, 169, 110, .14) 0%, transparent 65%);
  pointer-events: none;
}

.nyw-blg-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--nyw-gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.nyw-blg-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.nyw-blg-title .nyw-gold {
  background: var(--nyw-gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nyw-blg-divider {
  width: 56px;
  height: 2px;
  background: var(--nyw-gold);
  margin: 0 auto 1.5rem;
}

.nyw-blg-desc {
  font-size: .98rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Blog Grid ──────────────────────────────────── */
.nyw-blg-main {
  background: #f0efea;
  padding: 72px 0 96px;
}

/* ── Blog Card ──────────────────────────────────── */
.nyw-blg-card {
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}

.nyw-blg-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, .10);
  transform: translateY(-4px);
}

.nyw-blg-card-img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}

.nyw-blg-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.nyw-blg-card:hover .nyw-blg-card-img {
  transform: scale(1.04);
}

.nyw-blg-card-body {
  padding: 1.5rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nyw-blg-card-meta {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nyw-gold);
  margin-bottom: .6rem;
}

.nyw-blg-card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #111;
  line-height: 1.45;
  margin-bottom: .75rem;
}

.nyw-blg-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.nyw-blg-card-title a:hover {
  color: var(--nyw-gold-dk);
}

.nyw-blg-card-excerpt {
  font-size: .88rem;
  color: #666;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.2rem;
}

.nyw-blg-read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--nyw-gold-dk);
  text-decoration: none;
  transition: gap .2s, color .2s;
}

.nyw-blg-read-more:hover {
  color: #111;
  gap: .7rem;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 991px) {
  .nyw-blg-hero {
    padding: 72px 0 64px;
  }

  .nyw-blg-main {
    padding: 56px 0 72px;
  }
}

@media (max-width: 575px) {
  .nyw-blg-hero {
    padding: 56px 0 48px;
  }
}


/* ════════════════════════════════════════════════════
   SINGLE BLOG POST
════════════════════════════════════════════════════ */

.nyw-sgl-hero {
  position: relative;
  background: #0d0d0d center 50%/cover no-repeat;
  padding: 100px 0 88px;
  overflow: hidden;
}

.nyw-sgl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .64) 0%, rgba(0, 0, 0, .58) 100%);
}

.nyw-sgl-back-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  text-decoration: none;
  margin-bottom: 1rem;
}

.nyw-sgl-back-link:hover {
  color: var(--nyw-gold);
}

.nyw-sgl-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--nyw-gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.nyw-sgl-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: .03em;
  color: #fff;
  margin-bottom: 1.15rem;
}

.nyw-sgl-divider {
  width: 56px;
  height: 2px;
  background: var(--nyw-gold);
  margin: 0 auto 1.2rem;
}

.nyw-sgl-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}

.nyw-sgl-meta span+span::before {
  content: '•';
  margin-right: 1rem;
  color: rgba(255, 255, 255, .45);
}

.nyw-sgl-main {
  background: #f0efea;
  padding: 72px 0 96px;
}

.nyw-sgl-article,
.nyw-sgl-sidebar-card {
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 6px;
}

.nyw-sgl-content-wrap {
  padding: 48px 48px 40px;
}

.nyw-sgl-content {
  color: #444;
  font-size: 1rem;
  line-height: 1.9;
}

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

.nyw-sgl-content h2,
.nyw-sgl-content h3,
.nyw-sgl-content h4 {
  color: #111;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.35;
  margin: 2rem 0 .85rem;
}

.nyw-sgl-content h2 {
  font-size: 1.7rem;
}

.nyw-sgl-content h3 {
  font-size: 1.35rem;
}

.nyw-sgl-content p,
.nyw-sgl-content ul,
.nyw-sgl-content ol,
.nyw-sgl-content blockquote {
  margin-bottom: 1.2rem;
}

.nyw-sgl-content a {
  color: var(--nyw-gold-dk);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.nyw-sgl-content blockquote {
  border-left: 3px solid var(--nyw-gold);
  padding: .25rem 0 .25rem 1rem;
  color: #222;
  font-style: italic;
}

.nyw-sgl-content ul,
.nyw-sgl-content ol {
  padding-left: 1.2rem;
}

.nyw-sgl-cta {
  border-top: 1px solid var(--nyw-border);
  padding: 28px 48px 36px;
}

.nyw-sgl-cta-label {
  font-size: .88rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.nyw-sgl-btn {
  display: inline-block;
  padding: .78rem 1.8rem;
  border-radius: 3px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}

.nyw-sgl-btn--gold {
  background: var(--nyw-gold);
  color: #111;
}

.nyw-sgl-btn--gold:hover {
  background: var(--nyw-gold-dk);
  color: #111;
}

.nyw-sgl-btn--outline {
  border: 1px solid #d7d2c7;
  color: #222;
}

.nyw-sgl-btn--outline:hover {
  border-color: var(--nyw-gold);
  color: var(--nyw-gold-dk);
}

.nyw-sgl-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 1.5rem;
}

.nyw-sgl-sidebar-card {
  padding: 1.5rem;
}

.nyw-sgl-sidebar-card--dark {
  background: #111;
  border-color: #111;
  color: rgba(255, 255, 255, .72);
}

.nyw-sgl-sidebar-card--dark h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 1rem;
}

.nyw-sgl-sidebar-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--nyw-gold);
  margin-bottom: 1rem;
}

.nyw-sgl-recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nyw-sgl-recent-list li {
  padding: .9rem 0;
  border-bottom: 1px solid var(--nyw-border);
}

.nyw-sgl-recent-list li:first-child {
  padding-top: 0;
}

.nyw-sgl-recent-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.nyw-sgl-recent-list a {
  display: block;
  color: #111;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: .25rem;
}

.nyw-sgl-recent-list a:hover {
  color: var(--nyw-gold-dk);
}

.nyw-sgl-recent-list span {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
}

.nyw-sgl-inline-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--nyw-gold);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nyw-sgl-inline-link:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .nyw-sgl-hero {
    padding: 72px 0 64px;
  }

  .nyw-sgl-main {
    padding: 56px 0 72px;
  }

  .nyw-sgl-sidebar {
    position: static;
  }
}

@media (max-width: 575px) {
  .nyw-sgl-hero {
    padding: 56px 0 48px;
  }

  .nyw-sgl-content-wrap,
  .nyw-sgl-cta {
    padding-left: 22px;
    padding-right: 22px;
  }

  .nyw-sgl-meta span+span::before {
    margin-right: .6rem;
  }
}


/* ═══════════════════════════════════════════════════
   WOOCOMMERCE CART PAGE
═══════════════════════════════════════════════════ */

/* Page wrapper */
.woocommerce-cart .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Page title */
.woocommerce-cart h1.page-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111;
  letter-spacing: -.02em;
}

/* ── Layout: table left, totals right ── */
.woocommerce-cart .woocommerce-cart-form {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 900px) {
  .woocommerce-cart .woocommerce-cart-form {
    grid-template-columns: 1fr;
  }
}

/* ── Cart Table ── */
.woocommerce-cart table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #eee8de;
  border-radius: 10px;
  overflow: hidden;
  font-size: .93rem;
}

.woocommerce-cart table.shop_table thead th {
  background: #f8f5ef;
  padding: 14px 18px;
  text-align: left;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #888;
  border-bottom: 1px solid #eee8de;
}

.woocommerce-cart table.shop_table tbody tr {
  border-bottom: 1px solid #f0ebe2;
}

.woocommerce-cart table.shop_table tbody tr:last-child {
  border-bottom: none;
}

.woocommerce-cart table.shop_table td {
  padding: 20px 18px;
  vertical-align: middle;
  color: #222;
}

/* Thumbnail cell */
.woocommerce-cart td.product-thumbnail {
  width: 90px;
  padding-right: 0;
}

.woocommerce-cart td.product-thumbnail img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ece7dc;
  display: block;
}

/* Product name */
.woocommerce-cart td.product-name {
  font-weight: 600;
  line-height: 1.5;
}

.woocommerce-cart td.product-name a {
  color: #111;
  text-decoration: none;
  font-size: .95rem;
}

.woocommerce-cart td.product-name a:hover {
  color: var(--nyw-gold-dk);
}

.woocommerce-cart td.product-name .variation {
  font-size: .8rem;
  color: #888;
  margin-top: .35rem;
}

/* Price & subtotal */
.woocommerce-cart td.product-price,
.woocommerce-cart td.product-subtotal {
  font-weight: 600;
  color: #111;
  font-size: .95rem;
  white-space: nowrap;
}

/* Remove button */
.woocommerce-cart td.product-remove a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f0e8;
  color: #999 !important;
  font-size: 1.1rem;
  line-height: 1;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.woocommerce-cart td.product-remove a.remove:hover {
  background: #111;
  color: #fff !important;
}

/* Quantity input */
.woocommerce-cart .quantity input.qty {
  width: 56px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
  font-size: .93rem;
  font-weight: 600;
  color: #111;
  padding: 0 8px;
  background: #fafafa;
}

/* Update cart button row */
.woocommerce-cart tr.cart_item:last-child+tr td,
.woocommerce-cart .actions {
  padding: 18px;
  background: #fafaf7;
  border-top: 1px solid #eee8de;
}

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

.woocommerce-cart .coupon label {
  display: none;
}

.woocommerce-cart .coupon #coupon_code {
  height: 42px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 14px;
  font-size: .88rem;
  color: #111;
  background: #fff;
  min-width: 180px;
}

.woocommerce-cart .coupon .button,
.woocommerce-cart .button[name="update_cart"] {
  height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.woocommerce-cart .coupon .button:hover,
.woocommerce-cart .button[name="update_cart"]:hover {
  background: var(--nyw-gold-dk);
  border-color: var(--nyw-gold-dk);
}

.woocommerce-cart .button[name="update_cart"] {
  margin-left: auto;
  display: block;
}

/* ── Cart Totals Card ── */
.woocommerce-cart .cart_totals {
  background: #fff;
  border: 1px solid #eee8de;
  border-radius: 10px;
  padding: 28px 24px;
  position: sticky;
  top: 120px;
}

.woocommerce-cart .cart_totals h2 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee8de;
}

.woocommerce-cart .cart_totals table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  padding: 12px 0;
  font-size: .9rem;
  border-bottom: 1px solid #f0ebe2;
  vertical-align: middle;
}

.woocommerce-cart .cart_totals table th {
  text-align: left;
  color: #666;
  font-weight: 600;
  width: 45%;
}

.woocommerce-cart .cart_totals table td {
  text-align: right;
  font-weight: 700;
  color: #111;
}

.woocommerce-cart .cart_totals table .order-total th,
.woocommerce-cart .cart_totals table .order-total td {
  font-size: 1.05rem;
  border-bottom: none;
  padding-top: 16px;
}

/* Coupon in totals */
.woocommerce-cart .cart_totals .woocommerce-shipping-calculator,
.woocommerce-cart .cart_totals .shipping-calculator-form {
  font-size: .85rem;
}

/* Proceed to checkout button */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  background: #111;
  color: #fff !important;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s;
  border: none;
  margin-top: 4px;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--nyw-gold-dk);
}

/* Empty cart */
.woocommerce-cart .woocommerce-cart-form--empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 1rem;
}

.woocommerce-cart .cart-empty {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.woocommerce-cart .return-to-shop .button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #111;
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s;
}

.woocommerce-cart .return-to-shop .button:hover {
  background: var(--nyw-gold-dk);
}

/* Notices */
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .woocommerce-info {
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 24px;
  font-size: .9rem;
  list-style: none;
}

.woocommerce-cart .woocommerce-message {
  background: #f0f8ec;
  border-left: 4px solid #5cb85c;
  color: #2d6a2d;
}

.woocommerce-cart .woocommerce-error {
  background: #fdf0f0;
  border-left: 4px solid #d9534f;
  color: #7b2020;
}

/* Mobile tweaks */
@media (max-width: 600px) {

  .woocommerce-cart table.shop_table thead th.product-thumbnail,
  .woocommerce-cart table.shop_table thead th.product-price {
    display: none;
  }

  .woocommerce-cart td.product-thumbnail {
    display: none;
  }

  .woocommerce-cart td.product-price {
    display: none;
  }

  .woocommerce-cart .woocommerce {
    padding: 28px 16px 60px;
  }

  .woocommerce-cart .coupon {
    flex-direction: column;
    align-items: stretch;
  }

  .woocommerce-cart .coupon #coupon_code {
    width: 100%;
  }
}


/* ═══════════════════════════════════════════════════
   WOOCOMMERCE BLOCKS CART PAGE
   (wp-block-woocommerce-cart / wc-block-cart)
═══════════════════════════════════════════════════ */

/* ── Outer wrap & page padding ── */
.woocommerce-cart .wp-block-woocommerce-cart.alignwide {
  padding: 48px 0 80px;
}

/* ── Sidebar layout: items | totals ── */
/* The block's parent is full-viewport so we must constrain here */
.wc-block-components-sidebar-layout {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 320px !important;
  gap: 28px !important;
  align-items: start !important;
}

@media (max-width: 960px) {
  .wc-block-components-sidebar-layout {
    grid-template-columns: 1fr !important;
  }

  .woocommerce-cart .wp-block-woocommerce-cart.alignwide {
    padding: 28px 0 60px;
  }
}


/* ── Both grid children must fill their column ── */
.wc-block-components-main.wc-block-cart__main,
.wc-block-cart__sidebar {
  width: 100% !important;
  min-width: 0 !important;
  align-self: start;
  flex: 0 0 auto !important;
  /* prevent flex-shrink if parent still flex */
}

/* ── Main (left) column ── */
.wc-block-components-main.wc-block-cart__main {
  background: #fff;
  border: 1px solid #eee8de;
  border-radius: 12px;
  overflow: hidden;
}


/* ── Cart items table ── */
.wc-block-cart-items {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
}

.wc-block-cart-items__header {
  background: #f8f5ef;
  border-bottom: 1px solid #eee8de;
}

/* Align the header columns with the data columns */
.wc-block-cart-items__header th {
  padding: 12px 16px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #888;
  text-align: left;
}

/* Image header — matches the narrow thumbnail column */
.wc-block-cart-items__header-image {
  width: 88px;
  text-align: left;
}

/* Product/details header — takes remaining space */
.wc-block-cart-items__header-product {
  text-align: left;
}

/* Total header — right-aligned, matches price column */
.wc-block-cart-items__header-total {
  width: 130px;
  text-align: right !important;
}


/* Cart row */
.wc-block-cart-items__row {
  border-bottom: 1px solid #f0ebe2;
  transition: background .15s;
}

.wc-block-cart-items__row:last-child {
  border-bottom: none;
}

.wc-block-cart-items__row td {
  padding: 16px 16px;
  vertical-align: middle;
}

/* Right-align the total/price column to match the header */
.wc-block-cart-item__total {
  text-align: right;
  width: 130px;
}

/* Product image */
.wc-block-cart-item__image img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ece7dc;
  display: block;
}

/* Product name & meta */
.wc-block-cart-item__product {
  line-height: 1.5;
}

.wc-block-cart-item__product-name,
.wc-block-cart-item__product .wc-block-cart-item__product-name {
  color: #111;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none !important;
}

.wc-block-cart-item__product-name:hover {
  color: var(--nyw-gold-dk);
}

.wc-block-components-product-details,
.wc-block-components-product-metadata {
  font-size: .8rem;
  color: #888;
  margin-top: .3rem;
}

/* Price display */
.wc-block-cart-item__total .wc-block-components-product-price,
.wc-block-components-product-price__value {
  font-weight: 700;
  font-size: .95rem;
  color: #111 !important;
}

/* Quantity stepper */
.wc-block-components-quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  background: #fafafa;
}

.wc-block-components-quantity-selector__button {
  width: 34px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background .15s, color .15s;
}

.wc-block-components-quantity-selector__button:hover {
  background: #111;
  color: #fff;
}

.wc-block-components-quantity-selector__input {
  width: 44px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  font-size: .93rem;
  font-weight: 700;
  color: #111;
  background: #fff;
  -moz-appearance: textfield;
}

.wc-block-components-quantity-selector__input::-webkit-outer-spin-button,
.wc-block-components-quantity-selector__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Remove button */
.wc-block-cart-item__remove-link,
.wc-block-components-product-remove-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .78rem;
  color: #999;
  text-decoration: underline;
  padding: 0;
  transition: color .15s;
}

.wc-block-cart-item__remove-link:hover,
.wc-block-components-product-remove-button:hover {
  color: #c0392b;
}

/* ── Sidebar (right) column ── */
.wc-block-cart__sidebar {
  background: #fff;
  border: 1px solid #eee8de;
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 110px;
}

/* Force all block children inside sidebar to be full width */
.wc-block-cart__sidebar>*,
.wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block,
.wc-block-cart__sidebar .wc-block-components-totals-wrapper {
  width: 100% !important;
  box-sizing: border-box;
}




/* Coupon code accordion */
.wc-block-components-totals-coupon {
  border-bottom: 1px solid #f0ebe2;
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.wc-block-components-totals-coupon__button,
.wc-block-components-panel__button {
  background: none;
  border: none;
  padding: 0;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--nyw-gold-dk);
  cursor: pointer;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.wc-block-components-totals-coupon__form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.wc-block-components-totals-coupon__input input,
.wc-block-components-text-input input {
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 14px;
  font-size: .85rem;
  color: #111;
  background: #fafafa;
  width: 100%;
}

.wc-block-components-totals-coupon__button.wc-block-components-button {
  height: 40px;
  padding: 0 18px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}

/* Totals rows */
.wc-block-components-totals-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f5f1ea;
  font-size: .9rem;
}

.wc-block-components-totals-item:last-child {
  border-bottom: none;
}

.wc-block-components-totals-item__label {
  color: #666;
  font-weight: 500;
}

.wc-block-components-totals-item__value {
  font-weight: 700;
  color: #111;
}

/* Total row (larger) */
.wc-block-components-totals-footer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  border-top: 2px solid #eee8de;
  margin-top: 8px;
}

/* Proceed to Checkout — only style the actual <a> link */
.wc-block-cart__submit-container {
  /* just a wrapper div — no visual styling */
  display: block;
  margin-top: 12px;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  width: auto !important;
}

a.wc-block-cart__submit-button,
.wc-block-cart__submit-button {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  background: #111 !important;
  color: #fff !important;
  padding: 11px 24px !important;
  border-radius: 8px !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: background .2s !important;
  border: none !important;
  margin: 0 !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  /* kill any WooCommerce outline/ring */
  outline: none !important;
  box-shadow: none !important;
}

a.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button:hover {
  background: var(--nyw-gold-dk) !important;
  color: #fff !important;
}


/* ── Empty cart ── */
.wc-block-cart--is-empty {
  text-align: center;
  padding: 60px 24px;
}

.wc-block-cart--is-empty .wc-block-cart__empty-cart__ h2 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 1rem;
}

/* ── Notices ── */
.wc-block-components-notice-banner {
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 16px;
  font-size: .88rem;
}

.wc-block-components-notice-banner.is-success {
  background: #f0f8ec;
  border-left: 4px solid #5cb85c;
  color: #2d6a2d;
}

.wc-block-components-notice-banner.is-error {
  background: #fdf0f0;
  border-left: 4px solid #d9534f;
  color: #7b2020;
}

/* ════════════════════════════════════════════════════════════════
   REVIEWS PAGE (page-reviews.php)
════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.nyw-rev-hero {
  position: relative;
  background: #0d0d0d url('../assets/DSC01380-1536x1024-1.jpg') center 40%/cover no-repeat;
  padding: 100px 0 90px;
  overflow: hidden;
  color: #fff;
}

.nyw-rev-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .52);
}

.nyw-rev-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(200, 169, 110, .15) 0%, transparent 65%);
}

.nyw-rev-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.nyw-rev-eyebrow {
  color: var(--nyw-gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.nyw-rev-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 74px);
  max-width: 780px;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin: 0;
}

.nyw-rev-desc {
  max-width: 610px;
  color: #e9e1d6;
  font-size: 18px;
  margin: 24px 0 34px;
}

.nyw-rev-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nyw-rev-actions--center {
  justify-content: center;
}

/* Reviews page uses existing .btn-nyw-gold and .btn-nyw-outline classes */
.nyw-rev-actions .btn-nyw-outline {
  border-color: #fff;
  color: #fff;
}

.nyw-rev-actions .btn-nyw-outline:hover {
  background: #fff;
  color: #111;
}

.nyw-rev-seller-card .btn-nyw-outline {
  border-color: #111;
  color: #111;
}

.nyw-rev-seller-card .btn-nyw-outline:hover {
  background: #111;
  color: #fff;
}

/* ── Hero Panel ── */
.nyw-rev-panel {
  background: rgba(255,255,255,.94);
  color: #222;
  border-radius: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.8);
}

.nyw-rev-score-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.nyw-rev-score-card {
  border: 1px solid var(--nyw-border);
  border-radius: 20px;
  padding: 20px;
  background: #fff;
}

.nyw-rev-stars {
  color: var(--nyw-gold);
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 10px;
}

.nyw-rev-score-title {
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 4px;
}

.nyw-rev-score-note {
  color: #66615a;
  font-size: 13px;
}

.nyw-rev-mini-story {
  margin-top: 18px;
  background: #f1ece4;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid var(--nyw-border);
}

.nyw-rev-mini-story strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.nyw-rev-mini-story p {
  margin: 0;
  color: #3c3833;
  font-size: 15px;
}

/* ── Section Head ── */
.nyw-rev-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.nyw-rev-section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 50px);
  color: #222;
  max-width: 680px;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 0;
}

.nyw-rev-section-head p {
  max-width: 420px;
  color: #66615a;
  margin: 0;
}

/* ── Trust Section ── */
.nyw-rev-trust {
  padding: 82px 0;
  background: #f7f6f2;
}

.nyw-rev-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.nyw-rev-trust-card {
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 22px;
  padding: 22px;
  min-height: 170px;
  box-shadow: 0 14px 34px rgba(40, 34, 25, .06);
}

.nyw-rev-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #efe4d1;
  color: var(--nyw-gold-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.nyw-rev-trust-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  margin: 0 0 10px;
  line-height: 1.2;
}

.nyw-rev-trust-card p {
  color: #66615a;
  font-size: 14px;
  margin: 0;
}

/* ── Featured Reviews ── */
.nyw-rev-featured {
  background: #fff;
  border-top: 1px solid var(--nyw-border);
  border-bottom: 1px solid var(--nyw-border);
  padding: 82px 0;
}

.nyw-rev-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.nyw-rev-review-card {
  background: #fbfaf7;
  border: 1px solid var(--nyw-border);
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 330px;
  position: relative;
  overflow: hidden;
}

.nyw-rev-review-card::before {
  content: "\201C";
  position: absolute;
  right: 22px;
  top: -4px;
  font-family: Georgia, serif;
  font-size: 90px;
  color: rgba(200,169,110,.15);
  line-height: 1;
}

.nyw-rev-review-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  padding-right: 24px;
  margin: 0;
  line-height: 1.2;
}

.nyw-rev-review-card p {
  color: #46413b;
  margin: 0;
  flex: 1;
}

.nyw-rev-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--nyw-border);
}

.nyw-rev-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.nyw-rev-reviewer small {
  color: #66615a;
  display: block;
}

/* ── Platforms Section ── */
.nyw-rev-platforms-section {
  padding: 82px 0;
  background: #f7f6f2;
}

.nyw-rev-platforms {
  display: flex;
  gap: 18px;
}

.nyw-rev-platform-card {
  background: #111;
  color: #fff;
  border-radius: 24px;
  padding: 26px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 38px rgba(0,0,0,.12);
}

.nyw-rev-platform-card:nth-child(even) {
  background: #2a241c;
}

.nyw-rev-platform-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  margin: 0 0 12px;
}

.nyw-rev-platform-card p {
  color: #ded6ca;
  margin: 0 0 20px;
  font-size: 14px;
}

.nyw-rev-platform-card a {
  color: var(--nyw-gold);
  font-weight: 800;
  font-size: 14px;
}

.nyw-rev-platform-card a:hover {
  color: var(--nyw-gold-lt);
}

/* ── Process Section ── */
.nyw-rev-process-section {
  padding: 82px 0;
  background: #fff;
}

.nyw-rev-process {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.nyw-rev-process h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 50px);
  margin: 0 0 18px;
  line-height: 1.08;
}

.nyw-rev-process-desc {
  color: #66615a;
  font-size: 17px;
  margin: 0;
}

.nyw-rev-process-box {
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 18px 38px rgba(40, 34, 25, .08);
}

.nyw-rev-steps {
  display: grid;
  gap: 14px;
}

.nyw-rev-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--nyw-border);
  border-radius: 18px;
}

.nyw-rev-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--nyw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #111;
}

.nyw-rev-step strong {
  display: block;
  margin-bottom: 3px;
}

.nyw-rev-step span {
  color: #66615a;
  font-size: 14px;
}

/* ── Seller Section ── */
.nyw-rev-seller-band {
  background: linear-gradient(135deg, #efe5d3 0%, #f9f6ef 100%);
  border-top: 1px solid var(--nyw-border);
  border-bottom: 1px solid var(--nyw-border);
  padding: 76px 0;
}

.nyw-rev-seller-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.nyw-rev-seller-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 50px);
  margin: 0 0 18px;
  line-height: 1.08;
}

.nyw-rev-seller-card {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid var(--nyw-border);
}

.nyw-rev-seller-card h3 {
  font-family: var(--font-head);
  font-size: 26px;
  margin: 0 0 14px;
}

.nyw-rev-seller-card > p {
  color: #66615a;
  margin: 0 0 24px;
}

/* ── FAQ Section ── */
.nyw-rev-faq {
  padding: 82px 0;
  background: #f7f6f2;
}

.nyw-rev-faq-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
}

.nyw-rev-faq-wrap h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 16px;
  line-height: 1.08;
}

.nyw-rev-faq-list {
  display: grid;
  gap: 12px;
}

.nyw-rev-faq-list details {
  background: #fff;
  border: 1px solid var(--nyw-border);
  border-radius: 18px;
  padding: 18px 20px;
}

.nyw-rev-faq-list summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.nyw-rev-faq-list summary::-webkit-details-marker {
  display: none;
}

.nyw-rev-faq-list details p {
  color: #66615a;
  margin: 12px 0 0;
}

/* ── Final CTA ── */
.nyw-rev-final-cta {
  background: #111;
  color: #fff;
  padding: 82px 0;
}

.nyw-rev-final-inner {
  text-align: center;
}

.nyw-rev-final-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 56px);
  margin: 0 0 18px;
  line-height: 1.08;
}

.nyw-rev-final-inner > p {
  color: #ddd3c7;
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 18px;
}

/* ── Reviews Page Responsive ── */
@media (max-width: 980px) {
  .nyw-rev-hero-inner,
  .nyw-rev-process,
  .nyw-rev-seller-inner,
  .nyw-rev-faq-wrap {
    grid-template-columns: 1fr;
  }

  .nyw-rev-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nyw-rev-review-grid {
    grid-template-columns: 1fr;
  }

  .nyw-rev-platforms {
    grid-template-columns: repeat(2, 1fr);
  }

  .nyw-rev-section-head {
    display: block;
  }

  .nyw-rev-section-head p {
    margin-top: 16px;
  }

  .nyw-rev-hero {
    padding: 72px 0 64px;
  }
}

@media (max-width: 620px) {
  .nyw-rev-score-row,
  .nyw-rev-trust-grid,
  .nyw-rev-platforms {
    grid-template-columns: 1fr;
  }

  .nyw-rev-trust,
  .nyw-rev-featured,
  .nyw-rev-platforms-section,
  .nyw-rev-process-section,
  .nyw-rev-seller-band,
  .nyw-rev-faq,
  .nyw-rev-final-cta {
    padding: 58px 0;
  }

  .nyw-rev-hero {
    padding: 56px 0 48px;
  }

  .nyw-rev-hero-inner {
    padding: 40px 18px;
  }

  .nyw-rev-actions {
    flex-direction: column;
  }

  .nyw-rev-actions .btn-nyw-outline,
  .nyw-rev-actions .btn-nyw-gold {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   CHATY PLUGIN — HIDE TOOLTIP TEXT ONLY (keep icon + functionality)
   ============================================================ */
.chaty-tooltip:before,
.chaty-tooltip:after,
.chaty-tooltip .on-hover-text {
    display: none !important;
}