/* ============================================================
   GOLF WANG — DSM Design System
   Dover Street Market aesthetic: luxe minimalist, monochromatic,
   typography-first. Black/white/grey palette only.
   ============================================================ */

/* --- Font Faces --- */

@font-face {
  font-family: 'Arial Black';
  src: url('../assets/ArialBlack.woff2') format('woff2'),
       url('../assets/ArialBlack.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arial';
  src: url('../assets/ArialBold.woff2') format('woff2'),
       url('../assets/ArialBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arial';
  src: url('../assets/Arial.woff2') format('woff2'),
       url('../assets/Arial.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- Reset --- */

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

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', Helvetica, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: #000000;
  background-color: #FFFFFF;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

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

picture {
  display: contents;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  padding: 0;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Sticky Footer Push --- */

main,
.main-content {
  flex: 1;
}

footer {
  margin-top: auto;
}

/* --- Container --- */

.site-inner {
  width: 100%;
  padding: 0 24px;
}

/* --- Nav (Desktop) --- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FFFFFF;
  height: 60px;
  width: 100%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
}

.nav-logo img {
  height: 24px;
  width: 70px;
  object-fit: contain;
}

.nav-right {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #BABABA;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
  letter-spacing: 1.08px;
}

.nav-link:hover {
  color: #000000;
}

/* --- Menu Overlay --- */

.menu-overlay {
  position: fixed;
  inset: 0;
  background-color: #FFFFFF;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 20px;
}

.menu-top-logo img {
  height: 24px;
  width: 70px;
  object-fit: contain;
}

.menu-close {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #BABABA;
  background: none;
  border: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  cursor: pointer;
  letter-spacing: 1.08px;
}

.menu-close:hover {
  color: #000000;
}

.menu-body {
  display: flex;
  padding: 30px 20px 50px;
}

.menu-section {
  flex: 1;
}

.menu-section-label {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.menu-section-links {
  display: flex;
  flex-direction: column;
}

.menu-section-shop .menu-section-links {
  gap: 6px;
}

.menu-section-explore .menu-section-links {
  gap: 4px;
}

.menu-link {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: #BABABA;
  text-transform: uppercase;
  line-height: 36px;
  transition: color 0.2s ease;
  display: block;
}

.menu-link:hover {
  color: #000000;
}

.menu-support-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-support-link {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #BABABA;
  text-transform: uppercase;
  line-height: 16px;
  transition: color 0.2s ease;
  display: block;
  text-align: left;
}

.menu-support-link:hover {
  color: #000000;
}

.menu-link-search-mobile {
  display: none;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-mobile-bottom {
  display: none;
}

.menu-mobile-divider {
  height: 1px;
  background: #BABABA;
  width: 100%;
}

.menu-mobile-copyright {
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 7px;
  font-weight: 400;
  color: #BABABA;
  text-transform: uppercase;
  margin-top: 2px;
}

.menu-mobile-footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 0;
}

.menu-mobile-footer-link {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #BABABA;
  text-transform: uppercase;
  transition: color 0.2s ease;
  display: block;
}

.menu-mobile-footer-link:hover {
  color: #000000;
}

/* --- Search Overlay --- */

.search-overlay {
  position: fixed;
  inset: 0;
  background-color: #FFFFFF;
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.search-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 20px;
}

.search-close {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #BABABA;
  background: none;
  border: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  cursor: pointer;
}

.search-close:hover {
  color: #000000;
}

.search-title {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
}

.search-input-area {
  padding: 0 24px;
  margin-bottom: 24px;
}

.search-meta {
  display: flex;
  justify-content: flex-end;
  padding: 0 24px 16px;
}

.search-count {
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
}

.search-input {
  width: 100%;
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid #000000;
  background: none;
  outline: none;
}

.search-input:focus {
  outline: none;
  border-bottom-color: #000;
}

.currency-select:focus {
  outline: none;
  border-color: #000;
}

.search-input::placeholder {
  color: #BABABA;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.search-card {
  display: block;
}

.search-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 8px;
}

.search-card-name {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.3;
}

.search-card-price {
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  margin-top: 2px;
}

/* --- Currency Modal --- */

.currency-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.currency-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.currency-modal {
  position: relative;
  background-color: #FFFFFF;
  padding: 40px 44px;
  min-width: 420px;
  max-width: calc(100% - 32px);
}

.currency-modal-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.currency-modal-title {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
}

.currency-modal-close {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  transition: color 0.2s ease;
}

.currency-modal-close:hover {
  color: #BABABA;
}

.currency-modal-body {
  margin-bottom: 32px;
}

.currency-modal-label {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.currency-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #BABABA;
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  background: transparent;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  text-transform: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.currency-save {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #BABABA;
  background: none;
  border: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
}

.currency-save:hover {
  color: #000000;
}

/* --- Newsletter Modal --- */

.newsletter-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.newsletter-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.newsletter-modal {
  position: relative;
  background-color: #FFFFFF;
  padding: 40px 44px;
  min-width: 420px;
  max-width: calc(100% - 32px);
}

.newsletter-modal-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.newsletter-modal-title {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
}

.newsletter-modal-close {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  transition: color 0.2s ease;
}

.newsletter-modal-close:hover {
  color: #BABABA;
}

.newsletter-modal-body {
  margin-bottom: 32px;
}

.newsletter-label {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.newsletter-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #BABABA;
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  background: transparent;
  outline: none;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.newsletter-input::placeholder {
  color: #BABABA;
}

.newsletter-input:focus {
  border-color: #000;
}

.newsletter-submit {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #BABABA;
  background: none;
  border: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease;
}

.newsletter-submit:hover {
  color: #000000;
}

.newsletter-success {
  display: none;
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .newsletter-modal {
    min-width: 0;
    width: calc(100% - 32px);
    padding: 30px 24px;
  }
  .newsletter-modal-title {
    font-size: 20px;
  }
  .newsletter-submit {
    font-size: 24px;
  }
}

.search-no-results {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 14px;
  color: #000000;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 40px 0;
  grid-column: 1 / -1;
}

/* --- Breadcrumbs --- */

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
}

.breadcrumb-link {
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #BABABA;
  text-transform: uppercase;
  transition: color 0.2s ease;
  letter-spacing: 0.8px;
}

.breadcrumb-link:hover {
  color: #000000;
}

.breadcrumb-sep {
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #E5E5E5;
}

.breadcrumb-current {
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* --- Page Titles --- */

.page-title {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 40px 24px 24px;
  margin-bottom: 0;
}

/* --- Detail Nav Row (prev/next) --- */

.detail-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.detail-nav-row button {
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 0.2s ease;
  padding: 0;
}

.detail-nav-row button:hover {
  color: #BABABA;
}

@media (max-width: 768px) {
  .detail-nav-row {
    padding: 12px 16px;
  }
}

/* --- Product Grid (Collection / Shop pages) --- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.product-card {
  display: block;
}

.product-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 8px;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-card-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-card-img-hover {
  opacity: 1;
}

.product-card-name {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.3;
}

.product-card-price {
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
  margin-top: 2px;
}

/* --- PDP (Product Detail Page) --- */

.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pdp-gallery-img {
  width: 100%;
  display: block;
}

.pdp-info {
  position: sticky;
  top: 68px;
  align-self: start;
  padding-top: 0;
}

.pdp-name {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.18px;
}

.pdp-price {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.32px;
}

.pdp-brand {
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #BABABA;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.48px;
}

.pdp-description {
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  text-transform: none;
  margin-bottom: 24px;
  letter-spacing: 0.12px;
}

/* Color swatches */

.pdp-colors {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.pdp-color-swatch {
  width: 56px;
  height: 70px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease;
  overflow: hidden;
}

.pdp-color-swatch.active,
.pdp-color-swatch:hover {
  border-color: #000000;
}

.pdp-color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-color-label {
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.44px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Size pills */

.pdp-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.pdp-size-pill {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  border: 1px solid #000000;
  background: none;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pdp-size-pill:hover {
  color: #000000;
}

.pdp-size-pill.active {
  color: #FFFFFF;
  background: #000000;
  border-color: #000000;
}

.pdp-size-pill.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* BUY CTA */

.pdp-buy {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #BABABA;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 0.72px;
}

.pdp-buy:hover,
.pdp-buy.ready {
  color: #000000;
}

/* Action links (SIZE CHART, SHIPPING & RETURNS) */

.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp-action-link {
  font-family: 'Arial', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #BABABA;
  text-transform: uppercase;
  transition: color 0.2s ease;
  cursor: pointer;
  letter-spacing: 0.48px;
}

.pdp-action-link:hover {
  color: #000000;
}

/* --- Related Products --- */

.related-section {
  margin-top: 0;
  padding: 60px 0;
}

.related-header {
  font-family: 'Arial Black', 'Arial', Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* --- Progress Bar (loading/stock) --- */

.progress-bar {
  width: 100%;
  height: 2px;
  background-color: #E5E5E5;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: #000000;
  transition: width 0.3s ease;
}

/* Footer styles are in components/footer.html inline <style> */

/* --- Utility Classes --- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-primary { color: #000000; }
.text-secondary { color: #BABABA; }
.text-uppercase { text-transform: uppercase; }

/* ============================================================
   RESPONSIVE — Tablet Landscape (≤1200px)
   ============================================================ */

@media (max-width: 1200px) {

  .page-title { font-size: 44px; }

  .product-grid,
  .related-grid,
  .search-results {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .related-grid {
    gap: 16px;
  }

}

/* ============================================================
   RESPONSIVE — Tablet (≤900px)
   ============================================================ */

@media (max-width: 900px) {

  .nav { height: 54px; }
  .nav-link { font-size: 16px; }

  .page-title { font-size: 40px; padding: 36px 24px 20px; }

  .detail-nav-row button { font-size: 12px; }

  .product-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .related-grid {
    gap: 16px;
  }

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

  .pdp {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pdp-info {
    position: static;
  }

}

/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */

@media (max-width: 768px) {

  /* Page title mobile */
  .page-title {
    font-size: 28px;
    padding: 24px 16px 16px;
  }

  /* Container */
  .site-inner {
    padding: 0 16px;
  }

  /* Nav mobile */
  .nav {
    height: 46px;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .nav-logo img {
    height: 20px;
    width: 58px;
  }

  .nav-right {
    gap: 10px;
  }

  .nav-link {
    font-size: 14px;
    letter-spacing: 0.84px;
  }

  .nav-search-link {
    display: none;
  }

  .nav-link {
    font-size: 16px;
    letter-spacing: 0;
  }

  /* Menu overlay mobile — full-screen drawer */
  .menu-overlay {
    width: 100%;
    max-width: none;
    right: auto;
    opacity: 1;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .menu-overlay.active {
    transform: translateX(0);
  }

  .menu-link-search-mobile {
    display: block;
  }

  .menu-top {
    height: auto;
    padding: 18px 20px;
    justify-content: flex-end;
  }

  .menu-top-logo {
    display: none;
  }

  .menu-close {
    font-size: 16px;
    letter-spacing: 0.96px;
  }

  .menu-body {
    flex-direction: column;
    gap: 20px;
    padding: 40px 30px 30px;
    height: calc(100vh - 56px);
    height: calc(100svh - 56px);
  }

  .menu-section {
    flex: none;
  }

  .menu-section-shop .menu-section-label {
    margin-bottom: 15px;
  }

  .menu-section-explore .menu-section-label {
    margin-bottom: 10px;
  }

  .menu-link {
    font-size: 22px;
    letter-spacing: 0.44px;
    line-height: 22px;
  }

  .menu-section-shop .menu-section-links {
    gap: 6px;
  }

  .menu-section-explore .menu-section-links {
    gap: 4px;
  }

  .menu-section-support {
    display: none;
  }

  .menu-mobile-bottom {
    display: block;
    margin-top: auto;
    padding-bottom: 30px;
  }

  /* Search overlay mobile */
  .search-top {
    height: 46px;
    padding: 0 16px;
  }

  .search-input-area {
    padding: 0 16px;
  }

  .search-meta {
    padding: 0 16px 12px;
  }

  .search-results {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }

  /* Page title */
  .page-title {
    font-size: 28px;
    padding: 20px 16px;
  }

  /* Product grid */
  .product-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .related-grid {
    gap: 10px;
  }

  .product-card-name {
    font-size: 11px;
  }

  .product-card-price {
    font-size: 11px;
  }

  /* PDP mobile */
  .pdp {
    grid-template-columns: 1fr;
  }

  .pdp-name {
    font-size: 16px;
  }

  .pdp-price {
    font-size: 14px;
  }

  .pdp-buy {
    font-size: 28px;
  }

  .pdp-color-swatch {
    width: 48px;
    height: 60px;
  }

  .pdp-sizes {
    gap: 6px;
  }

  .pdp-size-pill {
    width: 40px;
    height: 40px;
    font-size: 11px;
  }

  /* Related */
  .related-header {
    font-size: 16px;
  }

}

/* ============================================================
   RESPONSIVE — Wide Desktop (≥1600px)
   ============================================================ */

@media (min-width: 1600px) {

  .page-title {
    font-size: 52px;
    padding: 44px 24px 28px;
  }

}
