/* ============================================
   JLCC — Japan Luxury by Christian Carlos
   Global Stylesheet | pursemaison.com inspired
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --bg: #F5F4F0;
  --white: #ffffff;
  --navy: #1B243A;
  --gold: #C9A96E;
  --gold-light: #e8d5a8;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: #e5e3de;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Helvetica Neue', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* =================== ANNOUNCEMENT BAR =================== */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 400;
  height: 38px;
  overflow: hidden;
}

.announcement-slider {
  display: flex;
  flex-direction: column;
  animation: slideAnnounce 8s infinite;
}

.announcement-slide {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  flex-shrink: 0;
}

@keyframes slideAnnounce {

  0%,
  40% {
    transform: translateY(0);
  }

  45%,
  90% {
    transform: translateY(-38px);
  }

  95%,
  100% {
    transform: translateY(-76px);
  }
}


.announcement-bar a {
  color: var(--gold-light);
  text-decoration: underline;
  transition: color 0.2s;
}

.announcement-bar a:hover {
  color: var(--gold);
}

/* =================== NAVIGATION =================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  width: 100%;
}

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

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 180px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 20px 0 8px;
  /* top padding replaces the old gap so hover stays connected */
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
}

.dropdown a:hover {
  background: var(--bg);
  color: var(--gold);
}

.dropdown a::after {
  display: none;
}

/* Tiered Dropdown */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu-content {
  display: none;
  position: absolute;
  top: -2px;
  left: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 180px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  z-index: 10;
}

.dropdown-submenu:hover .dropdown-submenu-content {
  display: block;
}

.nav-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  padding: 4px;
}

.nav-icon-btn:hover {
  color: var(--gold);
}

.nav-icon-btn svg {
  width: 20px;
  height: 20px;
}

/* Mobile nav toggle */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--navy);
}

.nav-hamburger svg {
  width: 24px;
  height: 24px;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 110px);
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 10s ease;
  z-index: 0;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  padding: 0 40px;
}

.hero-logo-small img {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 600px;
}

.hero-cta-solid {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 48px;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-cta-solid:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  animation: bounce 2s infinite;
}

.hero-scroll-hint svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {

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

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* =================== SECTIONS =================== */
.section {
  padding: 80px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.section-full {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* =================== PRODUCT GRID =================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--white);
  position: relative;
}

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

.product-card-image img.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}

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

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

.product-card-image .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.product-card-info {
  padding: 16px 12px;
  text-align: center;
  background: var(--bg);
}

.product-card-brand {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-card-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-card-price {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.product-card-location {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* =================== VIEW ALL BUTTON =================== */
.view-all-wrap {
  text-align: center;
  margin-top: 50px;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 48px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-solid {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 48px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--navy);
}

.btn-solid:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* =================== BRANDS SECTION =================== */
.brands-section {
  background: var(--white);
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.brands-track {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-top: 40px;
}

.brand-chip {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 20px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
  font-weight: 500;
}

.brand-chip:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(201, 169, 110, 0.05);
}

/* =================== BRAND LOGOS =================== */
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  padding: 28px 16px;
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 90px;
}

.brand-logo-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.brand-logo-card:hover {
  border-color: var(--gold);
  background: #fdfcf8;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.brand-logo-card:hover::before {
  transform: scaleX(1);
}

.brand-logo-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  line-height: 1.2;
  transition: color 0.3s;
}

.brand-logo-img {
  max-height: 150px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}

.brand-logo-card:hover .brand-logo-img {
  filter: grayscale(0%) opacity(1);
}

.brand-logo-card:hover .brand-logo-text {
  color: var(--gold);
}

/* =================== WHY US =================== */
.why-section {
  background: linear-gradient(135deg, #0d1520 0%, #1a2740 50%, #0f1e30 100%);
  color: var(--white);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  text-align: center;
}

.why-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
}

.why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 169, 110, 0.5);
  transform: translateY(-4px);
}

.why-item:hover::before {
  opacity: 1;
}

.why-item-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.why-item h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  color: var(--white);
}

.why-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.why-section .section-label {
  color: var(--gold);
}

.why-section h2 {
  color: var(--white);
}

/* =================== FOOTER =================== */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.footer-brand-name span {
  color: var(--gold);
  font-weight: 500;
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

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

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* =================== SHOP PAGE =================== */
.shop-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 60px 40px;
}

.shop-hero h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.shop-hero p {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}

/* --- Shop two-column layout --- */
.shop-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 0;
}

/* --- Sidebar --- */
.shop-sidebar {
  width: 240px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 36px 0 60px;
  position: sticky;
  top: 110px;
}

.sidebar-section {
  padding: 0 24px 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.sidebar-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.sidebar-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 14px;
  text-align: left;
}

button.sidebar-section-title {
  cursor: pointer;
}

.sidebar-section-title svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  color: var(--navy);
}

/* Collapsed accordion state */
.sidebar-section.collapsed .sidebar-filter-list {
  display: none !important;
}

.sidebar-section.collapsed .filter-toggle svg {
  transform: rotate(180deg);
}

/* Price Filter Dual Slider */
.price-filter {
  padding: 0 5px;
}

.price-filter-form {
  display: block;
}

.range-values {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

.slider-track-container {
  position: relative;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 20px;
}

.slider-track {
  position: absolute;
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  z-index: 1;
}

.slider-track-container input[type="range"] {
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
  appearance: none;
  background: none;
  pointer-events: none;
  z-index: 2;
}

.slider-track-container input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
}

.slider-track-container input[type="range"]::-moz-range-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
}

.apply-price-btn {
  width: 100%;
  padding: 8px;
  background: var(--navy);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
}

.apply-price-btn:hover {
  background: #2a3550;
}

/* Sidebar filter list */
.sidebar-filter-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s;
  border-left: 2px solid transparent;
  text-decoration: none;
  border-radius: 0 4px 4px 0;
}

.sidebar-filter-item:hover {
  color: var(--navy);
  background: rgba(0, 0, 0, 0.03);
}

.sidebar-filter-item.active {
  color: var(--navy);
  border-left-color: var(--gold);
  background: rgba(201, 169, 110, 0.07);
  font-weight: 500;
}

/* Sidebar search */
.sidebar-search-form {
  display: block;
}

.sidebar-search-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 0 10px;
  gap: 8px;
  transition: border-color 0.2s;
}

.sidebar-search-wrap:focus-within {
  border-color: var(--navy);
}

.sidebar-search-wrap>svg {
  width: 15px;
  height: 15px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.sidebar-search-wrap input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text);
  padding: 10px 0;
}

.sidebar-search-wrap input::placeholder {
  color: var(--text-muted);
}

.sidebar-search-clear {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.2s;
  cursor: pointer;
}

.sidebar-search-clear svg {
  width: 14px;
  height: 14px;
}

.sidebar-search-clear:hover {
  color: var(--navy);
}

/* Clear all button */
.sidebar-clear-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 0.2s;
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid var(--border);
  width: 100%;
  justify-content: center;
}

.sidebar-clear-all svg {
  width: 13px;
  height: 13px;
}

.sidebar-clear-all:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* --- Main content area --- */
.shop-main {
  flex: 1;
  min-width: 0;
  padding: 36px 40px 60px;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.products-count {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.products-count strong {
  color: var(--navy);
  font-weight: 600;
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.no-products svg {
  width: 64px;
  height: 64px;
  color: var(--border);
  margin: 0 auto 20px;
}

.no-products p {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 8px;
}

.no-products span {
  font-size: 13px;
}

/* =================== UTILITY =================== */
.divider {
  height: 1px;
  background: var(--border);
  max-width: 1440px;
  margin: 0 auto;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 1024px) {
  .shop-sidebar {
    width: 200px;
  }
}

@media (max-width: 900px) {
  .shop-sidebar {
    display: none !important;
  }
}

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  /* Sidebar collapses above product grid on tablet */
  .shop-layout {
    flex-direction: column;
    padding: 0 20px;
  }

  .shop-sidebar {
    width: 100%;
    position: static;
    border-right: none;
    border-bottom: 1px solid var(--border);
    max-height: none;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }

  .sidebar-section {
    padding: 0 16px 16px;
    flex: 1;
    min-width: 160px;
    border-bottom: none;
    margin-bottom: 0;
    border-right: 1px solid var(--border);
  }

  .sidebar-section:last-child {
    border-right: none;
  }

  .shop-main {
    padding: 24px 0 40px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .nav-inner {
    grid-template-columns: 1fr auto auto;
    gap: 16px;
  }

  .section {
    padding: 50px 20px;
  }

  .brands-section,
  .why-section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .shop-hero h1 {
    font-size: 32px;
  }

  .shop-main {
    padding: 20px 0 40px;
  }
}

@media (max-width: 480px) {

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

/* =================== SINGLE PRODUCT PAGE =================== */
.product-page {
  padding: 80px 40px;
  background: var(--white);
}

.product-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-page-image {
  background: #fff;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Image Zoom */
.zoom-lens {
  position: absolute;
  border: 1px solid #d4d4d4;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: crosshair;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
}

.product-page-image:hover .zoom-lens,
.product-page-image:hover .zoom-result {
  visibility: visible;
  opacity: 1;
}

.zoom-result {
  position: absolute;
  top: 0;
  left: calc(100% + 80px);
  width: calc(100% * (1 / 1.2));
  height: 100%;
  border: 1px solid var(--border);
  background-color: #fff;
  background-repeat: no-repeat;
  z-index: 100;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

@media (max-width: 900px) {
  .zoom-lens, .zoom-result {
    display: none !important;
  }
}

.product-page-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-page-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ede6;
}

.product-page-placeholder svg {
  width: 80px;
  height: 80px;
  stroke: #d5cfc5;
}

.product-page-details {
  padding: 20px 0;
}

.product-page-brand a {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.product-page-brand a:hover {
  color: var(--gold);
}

.product-page-name {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  margin: 12px 0 20px;
  line-height: 1.2;
}

.product-page-price {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 30px;
}

.product-page-meta {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 30px;
  display: flex;
  gap: 40px;
  font-size: 13px;
}

.product-page-meta p {
  margin: 0;
}

.product-page-meta strong {
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  margin-right: 6px;
}

.product-page-meta a:hover {
  color: var(--gold);
}

.product-page-description {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 40px;
}

.product-page-actions {
  margin-bottom: 40px;
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 18px 0;
  font-size: 13px;
}

.product-page-shipping {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg);
  padding: 16px 20px;
}

.product-page-shipping svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

@media (max-width: 900px) {
  .product-page-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =================== PAGINATION =================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  cursor: pointer;
}

.page-btn svg {
  width: 16px;
  height: 16px;
}

.page-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

.page-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  font-weight: 500;
}

.page-prev,
.page-next {
  padding: 0 12px;
}

.page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 40px;
  color: var(--text-muted);
  font-size: 14px;
}

.pagination-info {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* =================== MOBILE NAV =================== */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.mobile-nav a:hover {
  background: var(--bg);
  color: var(--gold);
}

/* =================== SEARCH OVERLAY =================== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(245, 244, 240, 0.97);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.search-overlay.active {
  display: flex;
}

.search-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

.search-close svg {
  width: 28px;
  height: 28px;
}

.search-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--navy);
  width: min(600px, 85vw);
  padding-bottom: 10px;
  gap: 16px;
}

.search-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.search-form input::placeholder {
  color: rgba(27, 36, 58, 0.35);
}

.search-form button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

.search-form button svg {
  width: 24px;
  height: 24px;
}