@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --surface: rgba(255, 255, 255, 0.05);
  --text: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.75);
  --gold: #c9a66b;
  --gold-dark: #a4824b;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.75;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

.announcement-bar {
  background: #0a0a0a;
  color: #f5f5f5;
  padding: 1rem 2rem;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  color: #0a0a0a;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.85rem 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
}

.mobile-menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0a;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1;
}

.main-nav {
  display: flex;
  gap: 1.15rem;
  flex-wrap: nowrap;
  justify-content: center;
}

.main-nav a {
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: var(--gold);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 49;
  background: #ffffff;
  color: #0a0a0a;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.site-header:has(.has-mega-menu:hover) .mega-menu,
.site-header.is-mega-open .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-inner {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 1.6rem 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
}

.mega-menu h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.1;
}

.mega-menu nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem 1rem;
}

.mega-menu nav a {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.25rem;
  color: #0a0a0a;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-menu nav a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.nav-badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.25rem 0.6rem;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.nav-badge.sale {
  background: #e74c3c;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.header-search {
  width: min(22vw, 13rem);
  min-width: 9rem;
  height: 2.85rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.header-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: #0a0a0a;
  padding: 0 0.2rem 0 0.9rem;
  font: inherit;
  font-size: 0.78rem;
  outline: 0;
}

.header-search button {
  height: 100%;
  border: 0;
  background: #0a0a0a;
  color: #ffffff;
  padding: 0 0.8rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-icon-button {
  min-width: 2.85rem;
  height: 2.85rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.header-icon-button:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.cart-button,
.wishlist-toggle {
  position: relative;
}

.cart-count,
.wishlist-count {
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #0a0a0a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

main {
  max-width: 1360px;
  margin: 0 auto;
  padding: 2.5rem 2rem 5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 2rem 0 4rem;
  min-height: min(720px, calc(100vh - 170px));
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 1.6rem;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.75;
  max-width: 520px;
}

.hero-media {
  aspect-ratio: 4 / 5;
  min-height: 520px;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #171717;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0 0 4.5rem;
  border: 1px solid var(--border);
  background: var(--border);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  padding: 1.4rem;
  background: #111111;
}

.trust-icon {
  font-size: 2rem;
  color: var(--gold);
  margin: 0;
  min-width: 3rem;
  text-align: center;
}

.trust-title {
  color: var(--text);
  font-weight: 700;
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.trust-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.05;
  margin-top: 0.6rem;
}

.products-section {
  padding: 1rem 0 5rem;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.collection-page {
  min-height: 54vh;
}

.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: -0.5rem 0 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.collection-toolbar p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-right: auto;
}

.collection-toolbar label {
  color: var(--muted);
  display: grid;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-toolbar select,
.collection-search input {
  min-height: 2.7rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background: #101010;
  color: var(--text);
  padding: 0 0.9rem;
  font: inherit;
}

.collection-search {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
  flex: 1 1 24rem;
}

.collection-search input {
  width: 100%;
}

.collection-search button {
  min-height: 2.7rem;
  border: 1px solid var(--gold);
  border-radius: 0.25rem;
  background: var(--gold);
  color: #0a0a0a;
  padding: 0 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}

.product-card {
  width: 100%;
  min-width: 0;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.25rem;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 166, 107, 0.45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.product-media {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.quick-view-button {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 12;
  min-height: 2.55rem;
  border: 1px solid #ffffff;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.94);
  color: #0a0a0a;
  padding: 0 1.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, 0.5rem);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.product-card:hover .quick-view-button,
.quick-view-button:focus-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.quick-view-button:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.product-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}

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

.product-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--gold);
  color: #0a0a0a;
  padding: 0.45rem 0.75rem;
  border-radius: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 10;
}

.product-wishlist {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 11;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.product-wishlist:hover,
.product-wishlist.is-active {
  background: #0a0a0a;
  color: var(--gold);
  transform: translateY(-1px);
}

.product-badge.bestseller {
  background: #c9a66b;
}

.product-badge.limited {
  background: #e74c3c;
}

.product-meta {
  padding: 1rem;
}

.product-card h3 {
  min-height: 3.1rem;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.25;
  margin: 0 0 0.45rem;
  letter-spacing: 0;
}

.product-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.product-add-btn,
.wishlist-add-btn,
.drawer-checkout {
  width: 100%;
  min-height: 2.95rem;
  border: 1px solid #0a0a0a;
  border-radius: 0.25rem;
  background: #0a0a0a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.wishlist-page-remove {
  width: 100%;
  margin-top: 0.7rem;
}

.empty-state {
  grid-column: 1 / -1;
  color: var(--muted);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.product-add-btn:hover,
.wishlist-add-btn:hover,
.drawer-checkout:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #0a0a0a;
}

.drawer-checkout:disabled {
  border-color: rgba(0, 0, 0, 0.12);
  background: #efefef;
  color: #777777;
  cursor: not-allowed;
}

.drawer-checkout:disabled:hover {
  border-color: rgba(0, 0, 0, 0.12);
  background: #efefef;
  color: #777777;
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: 4.5rem 0 1rem;
  border-top: 1px solid var(--border);
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.brand-story h2 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
}

.brand-story p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.brand-story img {
  aspect-ratio: 16 / 11;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 0.45rem;
}

.site-footer {
  background: #050505;
  color: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
  border-top: 1px solid rgba(201, 166, 107, 0.22);
}

.footer-grid {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a,
.footer-col p,
.footer-bottom,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-brand-col {
  max-width: 25rem;
}

.footer-logo {
  margin-bottom: 0.6rem;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.7rem;
}

.footer-contact {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.2rem;
}

.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-social a {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(201, 166, 107, 0.38);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-social a:hover {
  background: var(--gold);
  color: #050505;
}

.footer-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footer-newsletter-form input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.25rem;
  background: #101010;
  color: #ffffff;
  padding: 0.9rem 1rem;
  font: inherit;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter-form button {
  border: 1px solid var(--gold);
  border-radius: 0.25rem;
  background: var(--gold);
  color: #050505;
  padding: 0 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
}

.container {
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.page-header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.page-header h2 {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.page-header p:not(.eyebrow),
.policy-section p,
.contact-detail-card p,
.contact-form-card label {
  color: var(--muted);
}

.policy-section,
.contact-detail-card,
.contact-form-card {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.policy-section h3,
.contact-detail-card h3,
.contact-form-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-form-card form {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.contact-form-card label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background: #111111;
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
}

.btn,
.btn-primary {
  min-height: 2.95rem;
  border: 1px solid #0a0a0a;
  border-radius: 0.25rem;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer,
.wishlist-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(100vw, 430px);
  height: 100vh;
  background: #ffffff;
  color: #0a0a0a;
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.28);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.is-open,
.wishlist-panel.is-open {
  transform: translateX(0);
}

.wishlist-panel {
  z-index: 91;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.drawer-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drawer-close {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #0a0a0a;
  font-size: 1.2rem;
}

.cart-items,
.wishlist-items {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.4rem;
}

.cart-line,
.wishlist-line {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-line img,
.wishlist-line img {
  width: 82px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #f5f5f5;
}

.cart-line h3,
.wishlist-line h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.line-price {
  color: #555555;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.quantity-controls button {
  width: 2rem;
  height: 2rem;
  border: 0;
  background: #ffffff;
  color: #0a0a0a;
}

.quantity-controls span {
  min-width: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.line-remove,
.wishlist-remove {
  margin-top: 0.8rem;
  border: 0;
  background: transparent;
  color: #555555;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-empty {
  display: none;
  padding: 2rem 1.4rem;
  color: #666666;
  font-size: 0.95rem;
}

.drawer-empty.is-visible {
  display: block;
}

.drawer-footer {
  padding: 1.2rem 1.4rem 1.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.breadcrumb-nav {
  width: min(100% - 48px, 1320px);
  margin: 1.1rem auto 0;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-page .breadcrumb-nav {
  color: rgba(17, 17, 17, 0.58);
}

.breadcrumb-nav a:hover {
  color: var(--gold);
}

.quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
}

.quick-view-modal.is-open {
  display: flex;
  pointer-events: auto;
}

.quick-view-card {
  position: relative;
  width: min(100%, 860px);
  max-height: min(88vh, 760px);
  overflow: auto;
  background: #ffffff;
  color: #0a0a0a;
  border-radius: 0.35rem;
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.32);
}

.quick-view-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
}

.quick-view-card img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  background: #f2f2f2;
}

.quick-view-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quick-view-copy h2 {
  color: #111111;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.quick-view-copy p:not(.eyebrow) {
  color: #555555;
}

.quick-view-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.quick-view-link {
  min-height: 2.95rem;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-view-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 92;
  width: min(88vw, 390px);
  height: 100vh;
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 24px 0 80px rgba(0, 0, 0, 0.24);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer-nav {
  display: grid;
  gap: 0;
  padding: 0.5rem 1.4rem 1.4rem;
}

.mobile-drawer-nav a,
.mobile-drawer-nav summary {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  color: #0a0a0a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-drawer-nav details a {
  display: block;
  padding-left: 1rem;
  color: #555555;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 1rem;
  }

  .hero-media {
    order: -1;
    min-height: 0;
    max-height: 620px;
  }

  .brand-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  main {
    padding: 1.5rem 1rem 3.5rem;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-search {
    display: none;
  }

  .collection-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .collection-toolbar p {
    margin-right: 0;
  }

  .collection-search {
    flex-basis: auto;
  }

  .hero {
    gap: 1.5rem;
    padding: 1rem 0 3rem;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .hero-media {
    aspect-ratio: 4 / 5;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .product-card h3 {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

}

@media (max-width: 520px) {
  body {
    padding-bottom: 2rem;
  }

  .header-inner {
    padding: 0.8rem 1rem;
  }

  .announcement-bar,
  .site-footer,
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .container {
    width: 100%;
  }

  .announcement-bar {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .brand-logo {
    font-size: 1.35rem;
    text-align: center;
  }

  .nav-badge {
    display: none;
  }

  .header-icon-button {
    min-width: 2.55rem;
    height: 2.55rem;
    padding: 0 0.7rem;
  }

  .header-icon-button[aria-label="Account"] {
    display: none;
  }

  .cart-drawer,
  .wishlist-panel {
    top: auto;
    bottom: 0;
    width: 100vw;
    height: min(86vh, 720px);
    border-radius: 1rem 1rem 0 0;
    transform: translateY(100%);
  }

  .cart-drawer.is-open,
  .wishlist-panel.is-open {
    transform: translateY(0);
  }

  h1,
  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .hero-copy p,
  .product-card h3,
  .product-price,
  .footer-col p {
    font-size: 0.95rem;
  }

  .hero-media {
    min-height: 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .mega-menu {
    display: none;
  }

  .breadcrumb-nav {
    width: min(100% - 32px, 680px);
  }

  .quick-view-card {
    grid-template-columns: 1fr;
  }

  .quick-view-card img {
    min-height: 0;
    max-height: 430px;
  }

  .quick-view-button {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .brand-story {
    padding-top: 3rem;
  }

  .footer-grid {
    width: 100%;
  }

  .footer-bottom {
    width: 100%;
  }

  .footer-newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-newsletter-form button {
    min-height: 2.75rem;
  }
}

/* Product detail page */
.product-detail-page {
  background: #f7f6f3;
  color: #111111;
}

.product-detail-page .product-page {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5.75rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: start;
}

.product-detail-page .product-gallery {
  position: sticky;
  top: 118px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.product-detail-page .product-thumbnails {
  display: grid;
  gap: 0.8rem;
}

.product-detail-page .thumbnail-button {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0.25rem;
  background: #ffffff;
  padding: 0;
  overflow: hidden;
}

.product-detail-page .thumbnail-button.is-active,
.product-detail-page .thumbnail-button:hover {
  border-color: #111111;
}

.product-detail-page .thumbnail-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.product-detail-page .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(72vh, 700px);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.35rem;
  overflow: hidden;
}

.product-detail-page .product-image img {
  width: 100%;
  max-width: 720px;
  max-height: 680px;
  object-fit: contain;
  transition: transform 0.35s ease;
  will-change: transform;
}

.product-detail-page .product-image:hover img {
  transform: scale(1.45);
  cursor: zoom-in;
}

.product-detail-page .product-info {
  position: sticky;
  top: 118px;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  background: rgba(247, 246, 243, 0.94);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.35rem;
  backdrop-filter: blur(18px);
}

.product-detail-page .product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 1.2rem 0 1rem;
  color: #111111;
  font-size: 0.9rem;
}

.product-detail-page .product-rating span {
  color: var(--gold-dark);
  letter-spacing: 0.08em;
}

.product-detail-page .product-rating a,
.product-detail-page .option-header a {
  color: #555555;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.product-detail-page .product-kicker {
  margin-bottom: 0.65rem;
  color: #666666;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-detail-page .product-info h1 {
  font-size: clamp(2.5rem, 3.7vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 1.1rem;
  color: #111111;
}

.product-detail-page .product-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.product-detail-page .sale-price {
  color: #111111;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 600;
}

.product-detail-page .original-price {
  color: #777777;
  font-size: 1rem;
  text-decoration: line-through;
}

.product-detail-page .sale-label {
  padding: 0.28rem 0.55rem;
  background: #111111;
  color: #ffffff;
  border-radius: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-page .description {
  max-width: 34rem;
  margin-bottom: 1.6rem;
  color: #555555;
  font-size: 1rem;
  line-height: 1.8;
}

.product-detail-page .product-option {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.product-detail-page .option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  color: #111111;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-page .option-header strong {
  color: #666666;
  font-size: 0.82rem;
}

.product-detail-page .color-swatches {
  display: flex;
  gap: 0.75rem;
}

.product-detail-page .color-swatch {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 0 0 4px #ffffff;
}

.product-detail-page .swatch-ivory {
  background: #eee9df;
}

.product-detail-page .swatch-champagne {
  background: #cdbb98;
}

.product-detail-page .swatch-black {
  background: #111111;
}

.product-detail-page .color-swatch.is-active,
.product-detail-page .color-swatch:hover {
  border-color: #111111;
}

.product-detail-page .sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0;
}

.product-detail-page .sizes button {
  width: 3.4rem;
  height: 3rem;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0.25rem;
  background: #ffffff;
  color: #111111;
  font-size: 0.9rem;
  font-weight: 600;
}

.product-detail-page .sizes button:hover,
.product-detail-page .sizes button:focus-visible {
  border-color: #111111;
  outline: none;
}

.product-detail-page .product-quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: #ffffff;
}

.product-detail-page .product-quantity button {
  width: 3rem;
  height: 3rem;
  border: 0;
  background: transparent;
  color: #111111;
  font-size: 1.1rem;
}

.product-detail-page .product-quantity span {
  min-width: 3rem;
  text-align: center;
  font-weight: 700;
}

.product-detail-page .product-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.product-detail-page .buy-btn {
  width: 100%;
  min-height: 3.75rem;
  border: 1px solid #111111;
  border-radius: 0.25rem;
  background: #111111;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-page .buy-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #111111;
}

.product-detail-page .wishlist-add-btn {
  background: transparent;
  color: #111111;
}

.product-detail-page .compare-add-btn {
  min-height: 3.4rem;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 0.25rem;
  background: transparent;
  color: #111111;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-page .wishlist-add-btn:hover,
.product-detail-page .wishlist-add-btn.is-active,
.product-detail-page .compare-add-btn:hover,
.product-detail-page .compare-add-btn.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #111111;
}

.product-detail-page .back {
  display: inline-block;
  color: #555555;
  font-size: 0.95rem;
}

.product-detail-page .back:hover {
  color: #111111;
}

.product-detail-page .product-tabs {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.product-detail-page .tab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.product-detail-page .tab-button {
  padding: 1rem 0.5rem;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  background: transparent;
  color: #777777;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-page .tab-button.is-active {
  border-bottom-color: #111111;
  color: #111111;
}

.product-detail-page .tab-panel {
  display: none;
  padding: 1rem 0 0;
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-detail-page .tab-panel.is-active {
  display: block;
}

.product-detail-page .tab-panel ul {
  margin: 0.8rem 0 0 1rem;
}

.product-detail-page .spec-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.product-detail-page .spec-list div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.product-detail-page .spec-list dt {
  color: #111111;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-page .spec-list dd {
  margin: 0;
  color: #555555;
}

.product-detail-page .product-lower-section {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.product-detail-page .product-trust-badges {
  width: min(100% - 48px, 1320px);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.product-detail-page .product-trust-badges div {
  background: #ffffff;
  padding: 1.2rem;
}

.product-detail-page .product-trust-badges strong {
  display: block;
  color: #111111;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-detail-page .product-trust-badges span {
  color: #666666;
  font-size: 0.9rem;
}

.product-detail-page .recently-viewed-section .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-detail-page .complete-set-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.product-detail-page .set-feature {
  display: grid;
  grid-template-columns: minmax(130px, 0.72fr) 1fr;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.6rem);
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.35rem;
}

.product-detail-page .set-feature img {
  aspect-ratio: 3 / 4;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #f2f2f2;
}

.product-detail-page .set-feature h3,
.product-detail-page .related-product-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-detail-page .set-feature p {
  margin-top: 0.55rem;
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-detail-page .related-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.product-detail-page .related-product-card {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.25rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-detail-page .related-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.12);
}

.product-detail-page .related-product-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.product-detail-page .related-product-card h3 {
  padding: 1rem 1rem 0.3rem;
}

.product-detail-page .related-product-card p {
  padding: 0 1rem 1rem;
  color: var(--gold-dark);
  font-weight: 700;
}

@media (max-width: 860px) {
  .product-detail-page .product-page {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2rem 0 3rem;
  }

  .product-detail-page .product-gallery {
    position: static;
    grid-template-columns: 1fr;
  }

  .product-detail-page .product-thumbnails {
    order: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-detail-page .product-image {
    min-height: 0;
    padding: 1rem;
  }

  .product-detail-page .product-image img {
    max-height: 520px;
  }

  .product-detail-page .product-info {
    position: static;
    padding-top: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }

  .product-detail-page .tab-list {
    grid-template-columns: 1fr;
  }

  .product-detail-page .spec-list div,
  .product-detail-page .complete-set-grid,
  .product-detail-page .set-feature,
  .product-detail-page .product-trust-badges {
    grid-template-columns: 1fr;
  }

  .product-detail-page .related-product-grid,
  .product-detail-page .recently-viewed-section .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .product-detail-page .product-lower-section {
    width: min(100% - 32px, 680px);
    padding: 2.5rem 0;
  }

  .product-detail-page .related-product-grid,
  .product-detail-page .recently-viewed-section .product-grid {
    grid-template-columns: 1fr;
  }
}

/* HAVENLYSKY FURNITURE luxury furniture visual system */
:root {
  --bg: #f4efe7;
  --surface: #fffdf8;
  --text: #111111;
  --muted: #6f675f;
  --gold: #b59b73;
  --gold-dark: #6d5b42;
  --border: rgba(17, 17, 17, 0.12);
}

body {
  background: var(--bg);
  color: var(--text);
}

.announcement-bar {
  background: #111111;
  color: #f9f4ec;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  padding: 0.78rem 2rem;
}

.site-header {
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.brand-logo,
.footer-logo {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-logo {
  font-size: clamp(1rem, 1.35vw, 1.45rem);
}

.main-nav a,
.footer-col a,
.header-search button,
.product-add-btn,
.buy-btn,
.wishlist-add-btn,
.compare-add-btn,
.drawer-checkout {
  letter-spacing: 0.16em;
}

.hero {
  background: #f4efe7;
  min-height: calc(100vh - 116px);
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem);
}

.hero-copy {
  max-width: 560px;
}

.hero-copy .eyebrow,
.section-header .eyebrow,
.product-kicker,
.mega-menu .eyebrow,
.page-header .eyebrow {
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.24em;
}

.hero h1 {
  color: #111111;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  margin: 1rem 0 1.4rem;
}

.hero-copy p:last-child {
  color: #403a34;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  max-width: 34rem;
}

.hero-media {
  background: #e6dacb;
  border: 1px solid rgba(17, 17, 17, 0.1);
  min-height: clamp(520px, 70vh, 760px);
  overflow: hidden;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.trust-bar,
.products-section,
.brand-story,
.product-detail-page .product-page,
.product-lower-section,
.container {
  background: var(--bg);
}

.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  background: transparent;
  border-color: var(--border);
}

.products-section {
  padding-top: clamp(4rem, 7vw, 7rem);
}

.section-header h2,
.page-header h2,
.brand-story h2,
.product-info h1 {
  color: #111111;
  letter-spacing: 0;
}

.product-grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.product-card,
.related-product-card,
.set-feature,
.contact-detail-card,
.contact-form-card,
.policy-section {
  background: #fffdf8;
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: none;
  border-radius: 0;
}

.product-media {
  background: #ebe1d5;
}

.product-card img,
.related-product-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-meta h3,
.related-product-card h3,
.set-feature h3 {
  color: #111111;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0;
}

.product-price,
.line-price,
.sale-price,
.product-detail-page .related-product-card p {
  color: #111111;
}

.product-badge,
.nav-badge {
  background: #111111;
  color: #fffdf8;
  border-radius: 0;
}

.product-badge.bestseller,
.product-badge.limited,
.nav-badge.sale {
  background: #b59b73;
  color: #111111;
}

.product-add-btn,
.buy-btn,
.drawer-checkout,
.quick-view-link {
  background: #111111;
  color: #fffdf8;
  border: 1px solid #111111;
  border-radius: 0;
}

.wishlist-add-btn,
.compare-add-btn,
.sizes button,
.product-quantity button,
.tab-button,
.header-icon-button,
.header-search,
.footer-newsletter-form input {
  border-radius: 0;
}

.wishlist-add-btn,
.compare-add-btn,
.sizes button,
.tab-button {
  background: transparent;
  color: #111111;
  border-color: rgba(17, 17, 17, 0.18);
}

.tab-button.is-active,
.sizes button:hover,
.product-add-btn:hover,
.buy-btn:hover,
.quick-view-link:hover {
  background: #6d5b42;
  border-color: #6d5b42;
  color: #fffdf8;
}

.brand-story {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-story img {
  background: #e9ded1;
  border: 1px solid var(--border);
}

.site-footer {
  background: #111111;
  color: #fffdf8;
}

.footer-col a,
.footer-description,
.footer-contact,
.footer-newsletter p,
.footer-bottom {
  color: rgba(255, 253, 248, 0.72);
}

.footer-newsletter-form input {
  background: transparent;
  color: #fffdf8;
  border-color: rgba(255, 253, 248, 0.28);
}

.footer-newsletter-form button {
  background: #fffdf8;
  color: #111111;
  border-radius: 0;
}

.product-detail-page .product-info,
.cart-drawer,
.wishlist-panel,
.quick-view-card,
.mobile-menu-drawer {
  background: #fffdf8;
  color: #111111;
  border-color: rgba(17, 17, 17, 0.12);
}

.product-detail-page .product-image,
.product-detail-page .thumbnail-button {
  background: #ebe1d5;
  border-color: rgba(17, 17, 17, 0.12);
}

.product-detail-page .description,
.tab-panel,
.spec-list dd,
.empty-state,
.collection-toolbar {
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media {
    min-height: 420px;
  }
}

.section-intro {
  max-width: 620px;
  margin: 0.75rem auto 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.featured-collections {
  background: #fffdf8;
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--border);
}

.collection-feature-grid {
  width: min(100%, 1380px);
  margin: 2.4rem auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 17, 17, 0.12);
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.collection-feature-card {
  background: #f4efe7;
  min-width: 0;
}

.collection-feature-card a {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}

.collection-feature-card img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  background: #e8ded2;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.collection-feature-card div {
  padding: clamp(1rem, 2vw, 1.4rem);
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.collection-feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.05;
  color: #111111;
}

.collection-feature-card p,
.product-card-description {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.collection-feature-card span,
.product-shop-link {
  width: max-content;
  margin-top: 0.35rem;
  color: #111111;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.collection-feature-card:hover img {
  transform: scale(1.035);
  filter: contrast(1.03);
}

.homepage-products {
  background: var(--bg);
}

.premium-product-grid,
.homepage-products .product-grid {
  width: min(100%, 1380px);
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.09);
}

.product-card .product-media {
  overflow: hidden;
}

.product-card .product-media img {
  transition: transform 0.45s ease;
}

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

.product-meta {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.product-meta .product-price {
  margin-top: 0.2rem;
}

.product-shop-link {
  display: inline-flex;
  margin: 0;
}

.product-add-btn {
  margin-top: 0.2rem;
}

.quick-view-button {
  border-radius: 0;
  letter-spacing: 0.14em;
}

@media (max-width: 1180px) {
  .collection-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .premium-product-grid,
  .homepage-products .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .featured-collections,
  .products-section {
    padding-inline: 1rem;
  }

  .collection-feature-grid,
  .premium-product-grid,
  .homepage-products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-feature-card div,
  .product-meta {
    padding: 1rem;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-inline: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .collection-feature-grid,
  .premium-product-grid,
  .homepage-products .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* Conversion landing upgrades */
.conversion-hero .hero-copy {
  display: grid;
  gap: 1.1rem;
}

.conversion-hero h1 {
  max-width: 760px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.hero-primary-cta,
.hero-secondary-cta {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border: 1px solid #111111;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.hero-primary-cta {
  background: #111111;
  color: #fffdf8;
}

.hero-secondary-cta {
  background: rgba(255, 253, 248, 0.72);
  color: #111111;
}

.hero-primary-cta:hover,
.hero-secondary-cta:hover {
  transform: translateY(-2px);
  background: #6d5b42;
  border-color: #6d5b42;
  color: #fffdf8;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.2rem;
}

.hero-trust-strip span {
  padding: 0.52rem 0.72rem;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: #111111;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversion-labels {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 3;
  display: grid;
  gap: 0.35rem;
}

.conversion-labels span {
  width: max-content;
  padding: 0.35rem 0.55rem;
  background: rgba(17, 17, 17, 0.88);
  color: #fffdf8;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-price-stack {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-price-stack .product-price {
  font-size: 1.05rem;
  font-weight: 900;
}

.compare-price {
  color: rgba(17, 17, 17, 0.44);
  text-decoration: line-through;
  font-size: 0.86rem;
}

.savings-note {
  width: 100%;
  color: #6d5b42;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-urgency {
  margin: 1rem 0 0.2rem;
  padding: 0.9rem 1rem;
  background: #111111;
  color: #fffdf8;
  display: grid;
  gap: 0.2rem;
}

.product-urgency strong {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-urgency span {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.86rem;
}

.product-detail-page .buy-btn {
  min-height: 3.5rem;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(17, 17, 17, 0.18);
}

.conversion-detail-sections {
  border-top: 1px solid var(--border);
}

.conversion-info-grid {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.conversion-info-grid article {
  background: #fffdf8;
  border: 1px solid rgba(17, 17, 17, 0.12);
  padding: clamp(1.2rem, 2vw, 1.75rem);
}

.conversion-info-grid h2 {
  margin: 0.35rem 0 0.9rem;
  color: #111111;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.05;
}

.conversion-info-grid ul {
  display: grid;
  gap: 0.65rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.conversion-info-grid details {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  padding: 0.8rem 0;
}

.conversion-info-grid summary {
  cursor: pointer;
  color: #111111;
  font-weight: 800;
}

.conversion-info-grid details p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .conversion-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-cta-row {
    display: grid;
  }

  .hero-primary-cta,
  .hero-secondary-cta {
    width: 100%;
  }

  .hero-trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
