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

:root {
  --bg: #faf9f7;
  --bg-white: #ffffff;
  --bg-warm: #f3f1ed;
  --bg-dark: #1a1a1a;
  --text: #1a1a1a;
  --text-2: #555;
  --text-3: #999;
  --accent: #b8956a;
  --accent-dark: #9a7b56;
  --border: #e8e5e0;
  --border-light: #f0eeea;
  --font: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --nav-h: 80px;
  --max-w: 1320px;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overscroll-behavior: none; }
body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.7; -webkit-font-smoothing: antialiased; font-weight: 300;
  font-size: 15px;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; letter-spacing: -0.3px; }
a { color: inherit; text-decoration: none; transition: all 0.4s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: var(--font); font-size: inherit; outline: none; border: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 36px; font-weight: 400; font-size: 12px; text-transform: uppercase;
  letter-spacing: 2.5px; border: 1px solid transparent; cursor: pointer;
  transition: all 0.4s var(--ease); background: transparent;
}
.btn-primary { background: var(--text); color: #fff; border-color: var(--text); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-secondary { border-color: var(--text); color: var(--text); }
.btn-secondary:hover { background: var(--text); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline-light { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--text); border-color: #fff; }
.btn-lg { padding: 18px 52px; font-size: 13px; }
.btn-sm { padding: 10px 24px; font-size: 11px; }

/* ─── SECTION ─── */
.section { padding: 100px 0; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px;
  font-weight: 400;
}
.section-subtitle { font-size: 1rem; color: var(--text-2); max-width: 520px; font-weight: 300; line-height: 1.8; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }
.section-header .section-title { margin-bottom: 0; }
.link-arrow { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-2); display: inline-flex; align-items: center; gap: 8px; }
.link-arrow:hover { color: var(--accent); gap: 12px; }

/* ─── GRIDS ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up { animation: fadeUp 0.7s var(--ease) forwards; }
.fade-in { animation: fadeIn 0.6s ease forwards; }
.fade-in-up { animation: fadeUp 0.8s var(--ease) forwards; }

/* ─── BADGE ─── */
.badge { display: inline-block; padding: 5px 14px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.badge-accent { background: var(--accent); color: #fff; }
.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-red { background: #ffebee; color: #c62828; }

/* ─── NAV ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(250,249,247,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 1000; border-bottom: 1px solid var(--border-light);
  transition: all 0.4s ease;
}
.navbar-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo img { height: 50px; width: auto; object-fit: contain; }
.navbar-links { display: flex; gap: 36px; align-items: center; }
.navbar-links a {
  font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-2); transition: all 0.3s ease; position: relative;
}
.navbar-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 1px; background: var(--accent); transition: width 0.3s ease;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--text); }
.navbar-links a:hover::after, .navbar-links a.active::after { width: 100%; }
.navbar-actions { display: flex; align-items: center; gap: 16px; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.3rem; color: var(--text); padding: 8px; cursor: pointer; }

@media (max-width: 768px) {
  .navbar-inner { padding: 0 24px; }
  .navbar-links { display: none; }
  .mobile-toggle { display: block; }
  .container { padding: 0 24px; }
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: 320px;
  background: var(--bg-white); z-index: 1001;
  padding: 0; transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,0.1); }

.mobile-nav-close {
  position: absolute; top: 20px; right: 20px; background: none; border: none;
  cursor: pointer; color: var(--text); padding: 4px;
}

.mobile-nav-logo { padding: 32px 36px 24px; border-bottom: 1px solid var(--border-light); }

.mobile-nav-links { padding: 16px 36px; flex: 1; }
.mobile-nav-links a {
  display: block; padding: 16px 0; font-size: 1.05rem; font-family: var(--font-display);
  border-bottom: 1px solid var(--border-light); color: var(--text); transition: all 0.3s;
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a.active { color: var(--accent); }
.mobile-nav-links a:hover { color: var(--accent); padding-left: 6px; }

.mobile-nav-info {
  padding: 20px 36px; border-top: 1px solid var(--border-light);
  background: var(--bg);
}
.mobile-nav-info-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  font-size: 13px; color: var(--text-2);
}
.mobile-nav-info-item svg, .mobile-nav-info-item i { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.mobile-nav-info-item a { color: var(--text-2); transition: color 0.2s; }
.mobile-nav-info-item a:hover { color: var(--accent); }

.mobile-nav-social {
  display: flex; gap: 20px; padding: 20px 36px; border-top: 1px solid var(--border-light);
  background: var(--bg);
}
.mobile-nav-social a {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--text-2); transition: all 0.3s;
}
.mobile-nav-social a:hover { color: var(--accent); border-color: var(--accent); }
.mobile-nav-social a svg, .mobile-nav-social a i { width: 18px; height: 18px; }

.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.15); z-index: 1000; opacity: 0; pointer-events: none; transition: all 0.4s ease; backdrop-filter: blur(2px); }
.mobile-overlay.open { opacity: 1; pointer-events: all; }

/* ─── HERO ─── */
.hero-minimal { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-minimal-bg { position: absolute; inset: 0; }
.hero-minimal-bg img { width: 100%; height: 100%; object-fit: cover; animation: subtleZoom 20s infinite alternate linear; }
@keyframes subtleZoom { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero-minimal-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%); }
.hero-minimal-content { position: relative; z-index: 2; text-align: center; max-width: 750px; padding: 0 24px; color: #fff; }
.hero-minimal-content .eyebrow { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 24px; opacity: 0.8; }
.hero-minimal-title { font-size: clamp(3rem, 7vw, 5.5rem); font-style: italic; margin-bottom: 24px; color: #fff; line-height: 1; }
.hero-minimal-desc { font-size: 1.05rem; font-weight: 300; margin: 0 auto; max-width: 500px; line-height: 1.7; opacity: 0.9; }

@media (max-width: 768px) {
  .hero-minimal { height: 85vh; }
  .hero-minimal-title { font-size: 2.8rem; }
}

/* ─── PHILOSOPHY ─── */
.philosophy-section { background: var(--bg-white); padding: 100px 0; }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; text-align: center; }
.philosophy-item .philosophy-number { font-family: var(--font-display); font-size: 2.2rem; color: var(--accent); display: block; margin-bottom: 16px; font-style: italic; }
.philosophy-item h3 { font-size: 1.15rem; margin-bottom: 10px; font-family: var(--font); font-weight: 500; letter-spacing: 0; }
.philosophy-item p { color: var(--text-2); font-size: 0.9rem; line-height: 1.8; }

@media (max-width: 768px) { .philosophy-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ─── PRODUCT CARDS ─── */
.minimal-product-card { display: block; position: relative; }
.minimal-product-image {
  aspect-ratio: 3/4; overflow: hidden; background: var(--bg-warm);
  margin-bottom: 16px; position: relative;
}
.minimal-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.minimal-product-card:hover .minimal-product-image img { transform: scale(1.06); }
.minimal-product-info { text-align: center; padding: 4px 0 16px; }
.minimal-product-name { font-size: 0.95rem; margin-bottom: 4px; font-family: var(--font); font-weight: 400; }
.minimal-product-category { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 1.5px; }

/* ─── CATEGORY CARDS ─── */
.minimal-category-card { display: block; text-align: center; }
.minimal-category-image { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 20px; position: relative; }
.minimal-category-image img { width: 100%; height: 100%; object-fit: cover; transition: all 0.8s var(--ease); }
.minimal-category-card:hover .minimal-category-image img { transform: scale(1.04); }
.minimal-category-title { font-size: 1.6rem; font-style: italic; }

/* Mobile: Horizontal scroll categories */
@media (max-width: 768px) {
  .categories-scroll {
    display: flex !important; grid-template-columns: none !important;
    overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 16px !important; padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .categories-scroll::-webkit-scrollbar { display: none; }
  .categories-scroll .minimal-category-card {
    flex: 0 0 70vw; scroll-snap-align: start; margin-top: 0 !important;
  }
  .categories-scroll .minimal-category-image { aspect-ratio: 3/4; }
  .categories-scroll .minimal-category-title { font-size: 1.2rem; }
}
.mt-large { margin-top: 80px; }
@media (max-width: 768px) { .mt-large { margin-top: 0; } }

/* ─── CTA ─── */
.cta-minimal { padding: 120px 0; background: var(--bg-white); text-align: center; }
.cta-minimal-container { max-width: 640px; }
.cta-subtitle { font-size: 1rem; color: var(--text-2); margin-bottom: 36px; line-height: 1.9; font-weight: 300; }

/* ─── SHOP PAGE ─── */
.shop-page { margin-top: var(--nav-h); }
.shop-hero {
  background: var(--bg-dark); color: #fff; padding: 72px 0 64px;
  text-align: center; position: relative; overflow: hidden;
}
.shop-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('') center/cover; opacity: 0.08;
}
.shop-hero h1 { font-size: clamp(2.4rem, 4vw, 3.2rem); font-style: italic; color: #fff; margin-bottom: 12px; position: relative; }
.shop-hero p { color: rgba(255,255,255,0.6); font-size: 0.95rem; position: relative; }

.shop-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 40px;
  flex-wrap: wrap; gap: 16px;
}
.shop-controls-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.shop-controls-left .search-input {
  padding: 10px 16px 10px 36px; background: var(--bg-white); border: 1px solid var(--border);
  font-size: 13px; width: 240px; transition: all 0.3s ease;
}
.shop-controls-left .search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(184,149,106,0.08); }
.shop-controls-right select {
  padding: 10px 16px; border: 1px solid var(--border); background: var(--bg-white);
  font-size: 12px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
  color: var(--text-2); appearance: auto;
}

.shop-body { display: grid; grid-template-columns: 220px 1fr; gap: 48px; padding-top: 36px; padding-bottom: 100px; }

.shop-sidebar { align-self: start; }
.shop-sidebar .filter-title {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
  font-family: var(--font); margin-top: 7px;
}
.shop-sidebar .filter-link {
  display: block; padding: 9px 0; font-size: 13px; color: var(--text-2);
  transition: all 0.25s ease; position: relative; cursor: pointer;
}
.shop-sidebar .filter-link:hover { color: var(--accent); padding-left: 8px; }
.shop-sidebar .filter-link.active { color: var(--text); font-weight: 500; }
.shop-sidebar .filter-link.active::before {
  content: ''; position: absolute; left: -12px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; background: var(--accent); border-radius: 50%;
}
.shop-sidebar .filter-group { margin-bottom: 36px; }

/* Sidebar price inputs */
.sidebar-price-row { display: flex; align-items: flex-end; gap: 8px; margin-top: 8px; }
.sidebar-price-field { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sidebar-price-field label { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; }
.sidebar-price-field input {
  width: 100%; padding: 10px 10px; border: 1px solid var(--border); background: var(--bg);
  font-size: 13px; color: var(--text); outline: none; transition: border 0.2s;
}
.sidebar-price-field input:focus { border-color: var(--accent); }
.sidebar-price-btn {
  padding: 10px 14px; background: var(--bg-dark); color: #fff; border: none;
  font-size: 12px; font-weight: 500; cursor: pointer; transition: opacity 0.2s;
}
.sidebar-price-btn:hover { opacity: 0.85; }

/* Shop Topbar */
.shop-topbar {
  margin-top: var(--nav-h); padding: 16px 0;
}
.shop-search-row {
  position: relative; margin-bottom: 12px;
}
.shop-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 15px; height: 15px; color: var(--text-3); pointer-events: none;
}
.shop-search-input {
  width: 100%; padding: 12px 16px 12px 40px; background: var(--bg); border: 1px solid var(--border);
  font-size: 13px; transition: all 0.3s ease; color: var(--text);
}
.shop-search-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(184,149,106,0.08); }

.shop-filters-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.shop-sort-wrap { display: flex; align-items: center; gap: 8px; }
.shop-sort-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-3); }
.shop-sort-select {
  padding: 10px 14px; border: 1px solid var(--border); background: var(--bg-white);
  font-size: 12px; cursor: pointer; color: var(--text); appearance: auto; text-transform: uppercase; letter-spacing: 1px;
}
.active-filter {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 14px; background: var(--bg-warm); font-size: 12px; color: var(--text-2);
}

/* Product Card - Reference Style */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.pcard { display: block; background: var(--bg-white); transition: all 0.4s var(--ease); }
.pcard:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.pcard-img {
  aspect-ratio: 4/3; overflow: hidden; background: var(--bg-warm);
  position: relative;
}
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.pcard:hover .pcard-img img { transform: scale(1.04); }
.pcard-badge-sold {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.7); color: #fff; padding: 4px 12px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px;
}

.pcard-body { padding: 16px 16px 20px; }
.pcard-name {
  font-family: var(--font); font-size: 14px; font-weight: 500;
  color: var(--text); margin-bottom: 6px; line-height: 1.4;
  letter-spacing: 0;
}
.pcard-dims {
  font-size: 12px; color: var(--text-3); margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.pcard-price {
  font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.pcard-colors { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pcard-color-dot {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--bg-white); box-shadow: 0 0 0 1px var(--border);
  display: inline-block; transition: transform 0.2s ease;
}
.pcard-color-dot:hover { transform: scale(1.15); }
.pcard-color-more {
  font-size: 11px; color: var(--text-3); padding: 4px 8px;
  border: 1px solid var(--border); border-radius: 12px; line-height: 1;
}
.filter-count { color: var(--text-3); font-size: 11px; }

/* Pagination */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border-light);
}
.pagination-num, .pagination-arrow {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-2); border: 1px solid var(--border);
  transition: all 0.2s ease; text-decoration: none;
}
.pagination-num:hover, .pagination-arrow:hover { border-color: var(--accent); color: var(--accent); }
.pagination-num.active {
  background: var(--bg-dark); color: #fff; border-color: var(--bg-dark); font-weight: 500;
}

@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }
/* Shop Products Header */
.shop-products-header {
  display: flex; align-items: baseline; justify-content: flex-end;
  margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.shop-products-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400; font-style: italic; letter-spacing: -0.3px;
}
.shop-products-count { font-size: 13px; color: var(--text-2); }
.shop-products-count strong { color: var(--text); font-weight: 600; }

/* Page Title - above search */
.shop-page-title { margin-bottom: 12px; }
.shop-page-title .shop-products-title { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* Mobile count */
.mobile-product-count { display: none; }

@media (max-width: 768px) {
  .mobile-product-count { display: inline-block; font-size: 13px; color: var(--text-2); }
  .mobile-product-count strong { color: var(--text); font-weight: 600; }
  .shop-products-header { display: none; }
}

/* Mobile filter count badge */
.mf-count { float: right; font-size: 12px; color: var(--text-3); font-weight: 400; }

/* Mobile Category Dropdown - hidden on desktop */
.mobile-cat-dropdown { display: none; }

@media (max-width: 1024px) {
  .shop-body { grid-template-columns: 200px 1fr; gap: 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* Hide desktop sidebar, show dropdown */
  .shop-sidebar { display: none !important; }
  .mobile-cat-dropdown { display: block; position: relative; }

  .mobile-cat-btn {
    padding: 0; background: none; border: none;
    font-size: 13px; font-weight: 500; color: var(--accent);
    cursor: pointer; display: flex; align-items: center; gap: 6px;
  }
  .mobile-cat-btn svg { color: var(--accent); }

  .shop-filters-row { display: flex; align-items: center; justify-content: space-between; }

  .shop-body { display: block; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pcard-body { padding: 10px 8px 14px; }
  .pcard-name { font-size: 12px; }
  .pcard-price { font-size: 15px; }
  .pcard-dims { font-size: 10px; }
  .pcard-color-dot { width: 18px; height: 18px; }
}

/* Filter Modal Overlay - hidden by default */
.filter-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(2px);
}
.filter-modal-overlay.open { display: flex; align-items: flex-end; justify-content: center; }

.filter-modal {
  background: var(--bg-white); width: 100%; max-width: 480px;
  max-height: 85vh; border-radius: 16px 16px 0 0;
  display: flex; flex-direction: column; animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.filter-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px; border-bottom: 1px solid var(--border);
}
.filter-modal-header h3 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
  font-style: italic; letter-spacing: -0.3px;
}
.filter-modal-close {
  background: none; border: none; cursor: pointer; color: var(--text-2);
  padding: 4px; border-radius: 50%; transition: background 0.2s;
}
.filter-modal-close:hover { background: var(--bg); }

.filter-modal-count {
  padding: 12px 24px; font-size: 13px; color: var(--text-2);
  border-bottom: 1px solid var(--border-light); background: var(--bg);
}
.filter-modal-count strong { color: var(--text); font-weight: 600; }

.filter-modal-body { flex: 1; overflow-y: auto; padding: 0; }

.filter-modal-section { padding: 8px 0; }
.filter-modal-section + .filter-modal-section { border-top: 1px solid var(--border); }

.filter-modal-section-title {
  padding: 12px 24px 6px; font-size: 10px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-3); font-weight: 600;
}

.filter-modal-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; font-size: 14px; color: var(--text-2);
  border-bottom: 1px solid var(--border-light); transition: all 0.2s;
}
.filter-modal-item:last-child { border-bottom: none; }
.filter-modal-item:hover { background: var(--bg); color: var(--text); }
.filter-modal-item.active {
  color: var(--text); font-weight: 500; background: var(--bg-warm);
  border-left: 3px solid var(--accent);
}
.filter-modal-item .mf-count { font-size: 12px; color: var(--text-3); font-weight: 400; }

/* Price range in modal */
.filter-modal-price-row {
  display: flex; align-items: flex-end; gap: 10px; padding: 10px 24px 16px;
}
.filter-modal-price-field {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
}
.filter-modal-price-field label {
  font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px;
}
.filter-modal-price-field input {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border); background: var(--bg-white);
  font-size: 14px; color: var(--text); outline: none; transition: border 0.2s;
}
.filter-modal-price-field input:focus { border-color: var(--accent); }
.filter-modal-price-field span {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-size: 13px; color: var(--text-3); pointer-events: none; display: none;
}
.filter-modal-price-btn {
  padding: 10px 16px; background: var(--bg-dark); color: #fff; border: none;
  font-size: 13px; font-weight: 500; cursor: pointer; letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.filter-modal-price-btn:hover { opacity: 0.85; }

.filter-modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.filter-modal-close-btn {
  width: 100%; padding: 14px; background: var(--bg-white); border: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer;
  text-transform: uppercase; letter-spacing: 1px; transition: all 0.2s;
}
.filter-modal-close-btn:hover { background: var(--bg-dark); color: #fff; }

/* ─── PRODUCT DETAIL ─── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: var(--nav-h); padding-top: 40px; }
.product-gallery-main { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--bg-warm); }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; }
.product-gallery-thumbs button { border: 2px solid transparent; padding: 0; cursor: pointer; background: none; transition: all 0.3s ease; }
.product-gallery-thumbs button.active { border-color: var(--accent); }
.product-info h1 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-style: italic; margin-bottom: 16px; }
.product-info .price { font-family: var(--font); font-weight: 300; font-size: 1.5rem; color: var(--text); }

@media (max-width: 768px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── ABOUT ─── */
.about-hero {
  margin-top: var(--nav-h); padding: 80px 0 60px;
  text-align: center; background: var(--bg-white);
}
.about-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-style: italic; margin-bottom: 12px; }
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { aspect-ratio: 4/5; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card { padding: 40px 28px; background: var(--bg-white); text-align: center; border: 1px solid var(--border); transition: all 0.4s var(--ease); }
.value-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.value-card-icon { font-size: 1.5rem; margin-bottom: 16px; color: var(--accent); }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; font-family: var(--font); font-weight: 500; }
.value-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; }

/* Newsletter - Pill Design */
.newsletter-section {
  padding: 80px 0; background: var(--bg); text-align: center;
}
.newsletter-title {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 400; font-style: italic; margin-bottom: 12px;
}
.newsletter-subtitle {
  font-size: 14px; color: var(--text-2); margin-bottom: 40px; max-width: 420px; margin-left: auto; margin-right: auto;
}
.newsletter-pill {
  display: flex; align-items: center; max-width: 560px; margin: 0 auto;
  background: var(--bg-dark); border-radius: 60px; padding: 6px 6px 6px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.newsletter-pill input {
  flex: 1; background: none; border: none; color: rgba(255,255,255,0.8);
  font-size: 14px; padding: 14px 0; outline: none;
}
.newsletter-pill input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-pill button {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--accent); color: #fff; border: none;
  border-radius: 50px; font-size: 13px; font-weight: 500; cursor: pointer;
  letter-spacing: 0.5px; transition: all 0.3s ease; white-space: nowrap;
}
.newsletter-pill button:hover { background: #a07a55; }
.newsletter-pill button svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .newsletter-section { padding: 56px 0; }
  .newsletter-pill { max-width: 100%; padding: 5px 5px 5px 20px; }
  .newsletter-pill button { padding: 12px 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* Footer - White */
.footer { background: var(--bg-white); color: var(--text); padding: 72px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.footer-col h3 { font-family: var(--font); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; color: var(--text-3); font-weight: 500; padding-bottom: 12px; border-bottom: 2px solid #b8956a; display: inline-block; }
.footer-col p { font-size: 0.9rem; line-height: 1.8; color: var(--text-2); font-weight: 300; }
.footer-col a { display: block; font-size: 0.9rem; color: var(--text-2); padding: 5px 0; transition: all 0.3s ease; font-weight: 300; }
.footer-col a:hover { color: var(--accent); transform: translateX(4px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 56px; padding: 24px 48px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-3); letter-spacing: 0.5px;
}
.footer-bottom a:hover { color: var(--text); }
.footer-powered {
  text-align: center; padding: 20px 0; border-top: 1px solid var(--border);
  font-size: 12px; color: #999; letter-spacing: 0.5px;
}
.footer-powered a {
  color: #1a1a1a; font-weight: 600; text-decoration: none;
}
.footer-powered a:hover { color: var(--accent); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer { padding: 48px 0 0; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; padding: 24px 20px; }
}

/* ─── CONTACT ─── */
.contact-split { display: grid; grid-template-columns: 5fr 7fr; min-height: calc(100vh - var(--nav-h)); margin-top: var(--nav-h); }
.contact-info-side {
  background: var(--bg-dark); color: #fff; padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-info-side h1 { font-style: italic; font-size: clamp(2rem, 3vw, 2.8rem); color: #fff; margin-bottom: 16px; }
.contact-info-side .subtitle { color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-bottom: 48px; line-height: 1.8; }
.contact-detail { margin-bottom: 36px; }
.contact-detail-label { font-size: 10px; text-transform: uppercase; letter-spacing: 2.5px; color: var(--accent); margin-bottom: 10px; }
.contact-detail-value { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

.contact-form-side { padding: 80px 60px; background: var(--bg-white); display: flex; flex-direction: column; justify-content: center; }
.contact-form-side h2 { font-style: italic; font-size: 1.8rem; margin-bottom: 8px; }
.contact-form-side .form-subtitle { color: var(--text-2); font-size: 0.9rem; margin-bottom: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-2); margin-bottom: 8px; font-weight: 500; }
.form-input {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border); background: var(--bg);
  font-size: 14px; transition: all 0.3s ease; color: var(--text);
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(184,149,106,0.08); }
.form-input::placeholder { color: var(--text-3); }

/* Custom Select Dropdowns */
.custom-select {
  position: relative; width: 100%;
}
.custom-select-trigger {
  width: 100%; padding: 14px 40px 14px 16px; border: 1px solid var(--border); background: var(--bg);
  font-size: 14px; color: var(--text-3); cursor: pointer; transition: all 0.3s ease;
  position: relative; user-select: none;
}
.custom-select-trigger.has-value { color: var(--text); }
.custom-select-trigger::after {
  content: ''; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 5px solid var(--text-3); transition: transform 0.2s ease;
}
.custom-select.open .custom-select-trigger { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(184,149,106,0.08); }
.custom-select.open .custom-select-trigger::after { transform: translateY(-50%) rotate(180deg); }

.custom-select-options {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 50;
  background: var(--bg-white); border: 1px solid var(--border); border-top: none;
  max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.custom-select.open .custom-select-options { max-height: 300px; overflow-y: auto; }

.custom-select-options div {
  padding: 12px 16px; font-size: 14px; color: var(--text-2); cursor: pointer;
  transition: all 0.15s ease; border-bottom: 1px solid var(--border-light);
}
.custom-select-options div:last-child { border-bottom: none; }
.custom-select-options div:hover { background: var(--bg); color: var(--text); padding-left: 20px; }

/* Form section titles */
.form-section-title {
  font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent);
  font-weight: 600; margin: 32px 0 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border-light);
}
.form-section-title:first-of-type { margin-top: 0; }

/* Dimensions row */
.form-dims-row { display: flex; align-items: center; gap: 8px; }
.form-dims-row .form-input { flex: 1; }
.dims-sep { font-size: 16px; color: var(--text-3); font-weight: 300; }

/* File upload area */
.form-upload-area {
  border: 2px dashed var(--border); padding: 32px; text-align: center;
  cursor: pointer; transition: all 0.3s ease; display: flex; flex-direction: column;
  align-items: center; gap: 8px; color: var(--text-3);
}
.form-upload-area:hover { border-color: var(--accent); background: rgba(184,149,106,0.03); }
.form-upload-area span { font-size: 13px; }
.form-upload-area small { font-size: 11px; color: var(--text-3); }
.form-file-names { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.form-file-names span {
  font-size: 12px; color: var(--accent); background: rgba(184,149,106,0.08);
  padding: 4px 10px; border-radius: 4px;
}

/* Success message */
.form-success {
  background: rgba(76,175,80,0.08); border: 1px solid rgba(76,175,80,0.3);
  color: #2e7d32; padding: 16px 20px; margin-bottom: 24px; font-size: 14px;
}

@media (max-width: 860px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-info-side { padding: 60px 32px; }
  .contact-form-side { padding: 60px 32px; }
  .form-row { grid-template-columns: 1fr; }
  .form-dims-row { flex-wrap: wrap; }
}

/* ─── ADMIN ─── */
.admin-layout { min-height: 100vh; }

.admin-sidebar {
  background: #1a1a1a; color: #fff; display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0; width: 240px; z-index: 100;
}
.admin-sidebar-logo {
  padding: 28px 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-nav { flex: 1; padding: 16px 0; }
.admin-nav a {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.45); padding: 12px 24px; font-size: 13px;
  text-decoration: none; transition: all 0.2s ease; border-left: 3px solid transparent;
  font-weight: 400;
}
.admin-nav a:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.04); }
.admin-nav a.active {
  color: #fff; background: rgba(255,255,255,0.06);
  border-left-color: #b8956a; font-weight: 500;
}
.admin-sidebar-footer {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 12px 0;
}
.admin-sidebar-footer a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.35); padding: 10px 24px; font-size: 12px;
  text-decoration: none; transition: all 0.2s ease;
}
.admin-sidebar-footer a:hover { color: rgba(255,255,255,0.7); }

.admin-content { margin-left: 240px; padding: 40px 48px; background: #fafaf8; min-height: 100vh; }
.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid #eee;
}
.admin-header h1 { font-family: var(--font); font-size: 22px; font-weight: 600; color: #1a1a1a; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat {
  background: #fff; border: 1px solid #eee; padding: 28px; transition: box-shadow 0.2s;
}
.admin-stat:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.admin-stat h3 { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: #999; font-weight: 500; margin-bottom: 8px; }
.admin-stat .value { font-size: 32px; font-weight: 600; color: #1a1a1a; }

.admin-table { border-collapse: collapse; width: 100%; background: #fff; border: 1px solid #eee; }
.admin-table th {
  padding: 14px 16px; border-bottom: 2px solid #eee; color: #999;
  font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px;
  text-align: left; font-weight: 600; background: #fafaf8;
}
.admin-table td { padding: 14px 16px; border-bottom: 1px solid #f0f0f0; font-size: 13px; color: #444; }
.admin-table tr:hover td { background: #fafaf8; }

.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

/* ─── MISC ─── */
.card { background: var(--bg-white); border: 1px solid var(--border); }
.input-field { padding: 14px 16px; border: 1px solid var(--border); font-size: 14px; background: var(--bg-white); transition: all 0.3s ease; color: var(--text); }
.input-field:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(184,149,106,0.08); }
.input-field::placeholder { color: var(--text-3); }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-2); font-weight: 500; }

.empty-state { padding: 80px 20px; text-align: center; }
.loading-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
}
@media (max-width: 768px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}
