/* ========================================
   Jean Paul Gaultier - Official Site Clone
   Based on: fashion.jeanpaulgaultier.com
   Grid: 36-column, 1440px max
   ======================================== */

/* --- FONTS --- */
@font-face {
  font-family: 'GaultierText';
  src: url('assets/fonts/500b5136484f5aab-s.p.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GaultierText';
  src: url('assets/fonts/3c165d0f17df71e4-s.p.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GaultierText';
  src: url('assets/fonts/c18c938132ca73ee-s.p.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'GaultierText';
  src: url('assets/fonts/f3b36c8462251ece-s.p.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'GaultierDisplay';
  src: url('assets/fonts/798a84a2902bb802-s.p.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GaultierDisplay';
  src: url('assets/fonts/3c64233f222723b5-s.p.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GaultierDisplay';
  src: url('assets/fonts/a05d862ee4756c0b-s.p.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'GaultierMono';
  src: url('assets/fonts/b97bc5f733bfe6cf-s.p.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NewsGothicStd';
  src: url('assets/fonts/a4c962a37509cdc8-s.p.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- CSS VARIABLES (Design Tokens) --- */
:root {
  --GaultierText: 'GaultierText', sans-serif;
  --GaultierDisplay: 'GaultierDisplay', serif;
  --GaultierMono: 'GaultierMono', monospace;
  --NewsGothicStd: 'NewsGothicStd', sans-serif;

  --font-scale: 1px;

  /* Colors */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-near-black: #161616;
  --color-border: #e0e0e0;
  --color-text-secondary: #828282;
  --color-text-tertiary: #989898;
  --color-bg: #ffffff;
  --color-gray-light: #f5f5f5;

  /* Grid */
  --grid-columns: 36;
  --grid-col-width: 40px;
  --grid-max-width: 1440px;

  /* Spacing */
  --header-height: 75px;
  --header-top-bar-height: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--GaultierText);
  font-size: calc(11 * var(--font-scale));
  font-weight: 400;
  color: var(--color-black);
  background: var(--color-bg);
  letter-spacing: -0.01em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

/* --- BASE GRID --- */
.base-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  max-width: var(--grid-max-width);
  margin: 0 auto;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  font-size: calc(11 * var(--font-scale));
  font-family: var(--GaultierText);
}

.cookie-banner p {
  flex: 1;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.cookie-banner a {
  text-decoration: underline;
}

.cookie-btn {
  background: var(--color-black);
  color: var(--color-white);
  padding: 12px 32px;
  font-family: var(--GaultierText);
  font-size: calc(11 * var(--font-scale));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

/* ========================================
   HEADER - EXACT JPG REPLICA
   ======================================== */

/* Header Main Structure */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 75px;
  z-index: 6;
  background-color: transparent;
  font-family: var(--GaultierDisplay);
  font-size: 16px;
  color: var(--color-black);
}

/* Animated Background Element */
.header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 784px;
  background-color: var(--color-white);
  transform: translate3d(0, -784px, 0);
  transition: transform 0.3s ease-in-out;
  z-index: 1;
}

/* Container and Grid */
.header-inner {
  position: relative;
  width: 100%;
  height: 75px;
  z-index: 2;
}

.header-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 53px;
}

/* Logo Positioning - Absolutely Centered */
.header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: block;
  width: 110px;
  height: 40px;
}

.header-logo svg,
.header-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navigation Shared Styles */
.header-nav-left,
.header-nav-right {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 3;
}

.header-nav-right {
  justify-content: flex-end;
  gap: 30px;
}

.header-nav-item {
  position: relative;
  text-decoration: none;
  color: var(--color-black);
  display: block;
  transition: color 0.2s ease;
}

/* Primary Navigation (Main Menu Items) */
.nav-primary {
  font-family: var(--GaultierDisplay);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 15px;
  padding: 5px 0;
}

.nav-primary:hover {
  color: var(--color-black);
}

/* Navigation Underline Effect */
.nav-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-primary:hover .nav-underline {
  transform: scaleX(1);
}

/* Secondary Navigation (Actions) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-link,
.action-button {
  font-family: var(--GaultierDisplay);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: var(--color-black);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.action-link:hover,
.action-button:hover {
  opacity: 0.7;
}

.cart-count {
  font-size: 13px;
  margin-left: 3px;
}

/* Separator */
.nav-sep {
  font-family: var(--GaultierDisplay);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-black);
  opacity: 0.5;
  margin: 0 8px;
  pointer-events: none;
  user-select: none;
}

/* Dropdown Menu */
.nav-item-with-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 75px;
  left: -53px; /* Align with container padding */
  width: 100vw;
  background-color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 5;
}

.nav-item-with-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item-with-dropdown:hover ~ .header-background,
.nav-item-with-dropdown:hover .header-background {
  transform: translate3d(0, 0, 0);
}

.dropdown-columns {
  display: flex;
  padding: 40px 53px;
  gap: 40px;
  min-height: 400px;
}

.dropdown-column {
  flex: 1;
  max-width: 300px;
}

.dropdown-title {
  font-family: var(--GaultierText);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.dropdown-links {
  list-style: none;
}

.dropdown-links li {
  margin-bottom: 8px;
}

.dropdown-link {
  font-family: var(--GaultierText);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  line-height: 16.9px;
  transition: color 0.2s ease;
}

.dropdown-link:hover {
  color: var(--color-black);
}

/* Hover Effects for Header Background */
.nav-item-with-dropdown:hover ~ * .header-background,
.site-header:hover .header-background {
  transform: translate3d(0, 0, 0);
}

/* Ensure proper stacking context */
.nav-item-with-dropdown {
  z-index: 10;
}

.nav-item-with-dropdown:hover {
  z-index: 15;
}

/* Additional fine-tuning for exact replica */
.nav-text {
  position: relative;
  z-index: 2;
}

/* Smooth transitions for all interactive elements */
.header-nav-item,
.action-link,
.action-button {
  transition: all 0.2s ease;
}

/* ========================================
   COMPACT HEADER (Category Pages)
   ======================================== */
.site-header-compact {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 75px;
  z-index: 6;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  font-family: var(--GaultierDisplay);
}

.site-header-compact .header-content {
  padding: 0 53px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 20px;
}

.site-header-compact .header-logo {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  grid-column: 2;
  justify-self: center;
}

.compact-menu-btn,
.compact-cart-btn {
  font-family: var(--GaultierDisplay);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: var(--color-black);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.compact-menu-btn:hover,
.compact-cart-btn:hover {
  opacity: 0.7;
}

.compact-cart-btn {
  justify-self: end;
}

/* ========================================
   HERO - DOUBLE EDITO COVER
   ======================================== */
.double-edito-cover {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  overflow: hidden;
  position: relative;
  margin-top: 0;
}

.edito-panel {
  position: relative;
  overflow: hidden;
}

.edito-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}

.edito-panel:hover img {
  transform: scale(1.02);
}

.edito-panel-overlay {
  position: absolute;
  bottom: 40px;
  right: 40px;
  max-width: 320px;
}

.newsletter-box {
  background: rgba(255,255,255,0.95);
  padding: 24px;
}

.newsletter-box h3 {
  font-family: var(--GaultierDisplay);
  font-size: calc(18 * var(--font-scale));
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.newsletter-box p {
  font-size: calc(11 * var(--font-scale));
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid var(--color-black);
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--GaultierText);
  font-size: calc(11 * var(--font-scale));
  padding: 8px 0;
  background: transparent;
  text-transform: uppercase;
}

.newsletter-form input::placeholder {
  color: var(--color-text-secondary);
}

.newsletter-form button {
  padding: 8px 12px;
  font-family: var(--GaultierText);
  font-size: calc(11 * var(--font-scale));
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  font-weight: 700;
}

/* ========================================
   PRODUCT GRID (Homepage)
   ======================================== */
.product-section {
  padding: 60px 0 80px;
}

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

.product-card {
  position: relative;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-gray-light);
}

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

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

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

.product-card:hover .img-main {
  opacity: 0;
}

.product-info {
  padding: 12px 16px 16px;
}

.product-name {
  font-family: var(--GaultierText);
  font-size: calc(11 * var(--font-scale));
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  line-height: 1.4;
}

.product-price {
  font-family: var(--GaultierMono);
  font-size: calc(11 * var(--font-scale));
  color: var(--color-black);
}

.product-sold-out .product-price::after {
  content: ' — SOLD OUT';
  color: var(--color-text-secondary);
}

/* Size selector (hover) */
.product-sizes {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  padding: 8px 16px;
  display: flex;
  gap: 8px;
  font-size: calc(10 * var(--font-scale));
  font-family: var(--GaultierText);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card:hover .product-sizes {
  opacity: 1;
  transform: translateY(0);
}

.size-item {
  cursor: pointer;
  padding: 2px 4px;
}

.size-item:hover {
  text-decoration: underline;
}

/* ========================================
   NEWSLETTER SECTION (Below hero)
   ======================================== */
.newsletter-section {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.newsletter-section h2 {
  font-family: var(--GaultierDisplay);
  font-size: calc(20 * var(--font-scale));
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.newsletter-inline-form {
  display: flex;
  flex: 1;
  max-width: 480px;
  border-bottom: 1px solid var(--color-black);
}

.newsletter-inline-form input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--GaultierText);
  font-size: calc(11 * var(--font-scale));
  padding: 10px 0;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.newsletter-inline-form input::placeholder {
  color: var(--color-text-secondary);
}

.newsletter-submit-btn {
  padding: 10px 0 10px 16px;
  font-family: var(--GaultierText);
  font-size: calc(11 * var(--font-scale));
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 48px 40px 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: var(--grid-max-width);
  margin: 0 auto 48px;
}

.footer-col h4 {
  font-family: var(--GaultierText);
  font-size: calc(11 * var(--font-scale));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-family: var(--GaultierText);
  font-size: calc(11 * var(--font-scale));
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-secondary);
}

.footer-col ul li a:hover {
  color: var(--color-black);
}

.footer-col p {
  font-size: calc(11 * var(--font-scale));
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  max-width: var(--grid-max-width);
  margin: 0 auto;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: calc(11 * var(--font-scale));
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-secondary);
}

.footer-social a:hover {
  color: var(--color-black);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: calc(10 * var(--font-scale));
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-secondary);
}

.footer-legal a:hover {
  color: var(--color-black);
}

.footer-locale {
  font-size: calc(11 * var(--font-scale));
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-locale img {
  width: 16px;
  height: auto;
  display: inline-block;
}

/* ========================================
   COMPACT HEADER (Category Pages)
   ======================================== */
.site-header-compact {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.header-compact-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding: 0 40px;
  max-width: var(--grid-max-width);
  margin: 0 auto;
}

.menu-btn {
  font-family: var(--GaultierDisplay);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--color-black);
  justify-self: start;
}

.cart-btn {
  font-family: var(--GaultierDisplay);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--color-black);
  justify-self: end;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-overlay-inner {
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-overlay-close {
  align-self: flex-end;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  color: var(--color-black);
  margin-bottom: 40px;
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.overlay-nav-item {
  font-family: var(--GaultierDisplay);
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-black);
  text-decoration: none;
}

.overlay-nav-item:hover {
  opacity: 0.6;
}

.overlay-nav-bottom {
  margin-top: auto;
  display: flex;
  gap: 32px;
}

.overlay-nav-small {
  font-family: var(--GaultierDisplay);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-black);
  text-decoration: none;
}

/* Category tab count as superscript */
.category-tab .tab-count {
  font-family: var(--GaultierMono);
  color: var(--color-text-secondary);
  font-size: 9px;
  vertical-align: super;
  line-height: 0;
}

/* ========================================
   CATEGORY PAGE SPECIFIC
   ======================================== */

/* Category top banner (same as homepage hero but smaller) */
.category-hero {
  height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Category slider bar */
.category-slider-bar {
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: var(--header-height);
  background: var(--color-white);
  z-index: 100;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-slider-bar::-webkit-scrollbar {
  display: none;
}

.category-slider-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  padding: 0 20px;
}

.category-tab {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 14px 20px;
  font-family: var(--GaultierDisplay);
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
  text-decoration: none;
  color: var(--color-black);
}

.category-tab:hover {
  border-bottom-color: var(--color-black);
}

.category-tab.active {
  border-bottom-color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0;
}

.category-tab .tab-count {
  font-family: var(--GaultierMono);
  color: var(--color-text-secondary);
  font-size: calc(10 * var(--font-scale));
}

/* Category header */
.category-header {
  padding: 32px 20px 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.category-title {
  font-family: var(--GaultierDisplay);
  font-size: calc(36 * var(--font-scale));
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}

.category-count {
  font-family: var(--GaultierMono);
  font-size: calc(14 * var(--font-scale));
  color: var(--color-text-secondary);
}

/* Filters bar */
.filters-bar {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.filters-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--GaultierText);
  font-size: calc(11 * var(--font-scale));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
}

/* Category product grid (4-column) */
.category-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.category-product-grid .product-card {
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.category-product-grid .product-card:nth-child(4n) {
  border-right: none;
}

/* See more button */
.see-more-section {
  padding: 48px 20px;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.see-more-btn {
  display: inline-block;
  padding: 14px 60px;
  border: 1px solid var(--color-black);
  font-family: var(--GaultierText);
  font-size: calc(13 * var(--font-scale));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: none;
  transition: background 0.2s, color 0.2s;
}

.see-more-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* ========================================
   REASSURANCE / PROMO BANNER
   ======================================== */
.promo-banner {
  background: var(--color-black);
  color: var(--color-white);
  padding: 10px 20px;
  text-align: center;
  font-family: var(--GaultierText);
  font-size: calc(11 * var(--font-scale));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .double-edito-cover,
  .category-hero {
    height: 80vh;
  }

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

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

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

@media (max-width: 768px) {
  .header-nav-left .header-nav-item:not(:first-child):not(:last-child) {
    display: none;
  }

  .double-edito-cover,
  .category-hero {
    grid-template-columns: 1fr;
    height: 100vh;
  }

  .edito-panel:last-child {
    display: none;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .newsletter-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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