/*
Theme Name: Vastra House
Theme URI: https://thevastrahouse.com
Description: The Vastra House — Premium Fashion from Nepal. Clean product catalog with inquiry system.
Version: 1.0
Author: The Vastra House
Text Domain: vastra-house
*/

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --white:       #ffffff;
  --cream:       #faf8f5;
  --cream-dark:  #f4f0ea;
  --accent:      #b5904a;
  --accent-dark: #9a7535;
  --accent-light:#f5ede0;
  --maroon:      #3a1208;
  --gray-text:   #6b6b6b;
  --gray-mid:    #9a9a9a;
  --gray-line:   #e5e0d8;
  --green:       #2d7a4f;
  --red:         #c0392b;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --container:        1280px;
  --container-narrow: 860px;
  --radius:    3px;
  --radius-md: 6px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p  { line-height: 1.7; color: var(--gray-text); }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Announcement Bar ──────────────────────────────────────── */
.ann-bar {
  background: var(--accent);
  color: var(--white);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
}
.ann-track {
  display: flex;
  white-space: nowrap;
  animation: annScroll 32s linear infinite;
}
.ann-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 48px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ann-item i { width: 13px; height: 13px; flex-shrink: 0; }
@keyframes annScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
}

/* Logo row — image left, text centered */
.header-logo-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid var(--gray-line);
}
.header-logo-side {
  display: flex;
  justify-content: flex-end;
  padding-right: 16px;
}
.header-logo-side-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}
.header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

/* Logo image in nav (left side) */
.header-nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 16px;
  text-decoration: none;
  line-height: 0;
}
.header-nav-logo img,
.header-nav-logo .custom-logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.header-nav-logo-text span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Text fallback logo (kept for reference, not shown in header) */
.logo-main {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--maroon);
  text-transform: uppercase;
  line-height: 1;
}
.logo-tagline {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

/* Nav row — split layout */
.header-nav-row {
  border-bottom: 1px solid var(--gray-line);
}
.header-nav-inner {
  display: flex;
  align-items: center;
  height: 60px;
  position: relative;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}
.header-nav-left  { justify-content: flex-start; }
.header-nav-right { justify-content: flex-end; margin-left: auto; }

.header-nav a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-text);
  position: relative;
  padding: 0 0 2px;
  transition: color 0.2s;
  white-space: nowrap;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.3s var(--ease);
}
.header-nav a:hover        { color: var(--black); }
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }
.header-nav a.active       { color: var(--black); }

/* Center brand in nav (decorative, hidden on small screens) */
.header-nav-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: auto;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  text-align: center;
  white-space: nowrap;
  padding: 0 24px;
  transition: color 0.2s;
}
.header-nav-brand:hover { color: var(--black); }

/* Search icon button in nav */
.header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  color: var(--gray-text);
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.header-search-btn:hover { color: var(--black); }
.header-search-btn i { width: 15px; height: 15px; }

/* Search bar — slide down */
.header-search-bar {
  border-bottom: 1px solid var(--gray-line);
  background: var(--white);
  display: none;
  animation: searchSlide 0.2s ease;
}
.header-search-bar.open { display: block; }
@keyframes searchSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.search-bar-inner i { width: 16px; height: 16px; color: var(--gray-mid); flex-shrink: 0; }
.search-bar-inner input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--black);
  background: none;
  letter-spacing: 0.02em;
}
.search-bar-inner input::placeholder { color: var(--gray-mid); }
.search-bar-inner button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-mid);
  display: flex;
  padding: 4px;
  transition: color 0.2s;
}
.search-bar-inner button:hover { color: var(--black); }
.search-bar-inner button i { width: 16px; height: 16px; }

/* Mobile hamburger — only shows on mobile */
.mob-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px 0 6px 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.mob-menu-btn span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--black);
  transition: all 0.25s;
}

/* ── Mobile Nav ────────────────────────────────────────────── */
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--white);
  flex-direction: column;
  overflow-y: auto;
}
.mob-nav.open { display: flex; }
.mob-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--gray-line);
}
.mob-nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mob-nav-logo span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.mob-nav-logo small {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gray-text);
  text-transform: uppercase;
}
.mob-close-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mob-close-btn i { width: 22px; height: 22px; }
.mob-nav-links {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  flex: 1;
}
.mob-nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-line);
  transition: color 0.2s, background 0.2s;
}
.mob-nav-links a:hover { color: var(--accent); background: var(--cream); }
.mob-nav-sep {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 20px 24px 8px;
  background: var(--cream);
  border-bottom: 1px solid var(--gray-line);
}
.mob-nav-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-line);
}
.mob-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
}
.mob-wa-link i { width: 18px; height: 18px; }

/* ── Nav Dropdown ───────────────────────────────────────────── */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-text);
  padding: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s;
}
.nav-dropdown-btn:hover { color: var(--black); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  min-width: 220px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--gray-text);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--black); }
.nav-dropdown a i { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent); }
.nav-dropdown-sep {
  border-top: 1px solid var(--gray-line);
  margin: 4px 0;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); }
/* .btn-whatsapp kept only for page-contact.php */
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #128C7E; }
.btn-sm { padding: 9px 18px; font-size: 11px; }
.btn-lg { padding: 16px 36px; font-size: 13px; }
.btn i { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-text);
  flex-wrap: wrap;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--gray-line); }

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-line);
  padding: 18px 0 20px;
}
.page-hero h1 { margin-top: 10px; }
.page-hero p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--gray-text);
  max-width: 480px;
}

/* ── Section ────────────────────────────────────────────────── */
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.bg-cream      { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-black      { background: var(--black); color: var(--white); }

.sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--black);
}

/* ── Homepage Hero ─────────────────────────────────────────── */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  overflow: hidden;
}
.hero-content-wrap {
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 80px 64px 80px 0;
}
.hero-content-wrap .container-col { max-width: 540px; }
.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
}
.hero-title em { color: var(--accent); font-style: italic; }
.hero-subtitle {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 400px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-img-col {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}
.hero-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  position: absolute;
  inset: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-img-placeholder span { font-size: 5rem; opacity: 0.4; }
.hero-img-placeholder p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent);
  opacity: 0.6;
}

/* ── Category Grid ─────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
  padding: 20px 16px;
  transition: transform 0.3s var(--ease);
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  z-index: 1;
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.cat-card-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: 0.35;
}
.cat-card-body {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.cat-card-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.cat-card-count {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  margin-top: 3px;
  letter-spacing: 0.06em;
}

/* ── Product Card ───────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s var(--ease);
}
.product-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.product-img {
  position: relative;
  width: 100%;
  height: 240px;
  background: var(--cream);
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.22;
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  z-index: 1;
}
.badge-new     { background: var(--black);    color: var(--white); }
.badge-sale    { background: var(--red);      color: var(--white); }
.badge-trend   { background: var(--accent);   color: var(--white); }
.badge-oos     { background: var(--gray-mid); color: var(--white); }

.product-info {
  padding: 14px 16px 16px;
}
.product-type-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 6px;
}
.product-short {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-line);
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}
.product-old {
  font-size: 11px;
  color: var(--gray-text);
  text-decoration: line-through;
  margin-left: 4px;
}
.product-inquire {
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  padding: 6px 12px;
  border: 1.5px solid var(--black);
  border-radius: var(--radius);
  background: none;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.product-inquire:hover { background: var(--black); color: var(--white); }
.product-inquire i { width: 12px; height: 12px; }
.product-oos-lbl {
  font-size: 11px;
  color: var(--gray-mid);
  font-weight: 500;
  flex-shrink: 0;
}

/* ── Shop / Catalog ─────────────────────────────────────────── */
.shop-wrap { padding: 40px 0 80px; }
.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: 170px;
}
.sidebar-mobile-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--gray-line);
  width: 100%;
  margin-bottom: 16px;
}
.sidebar-mobile-toggle i { width: 16px; height: 16px; }
.filter-section {
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-line);
}
.filter-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-text);
  padding: 5px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.filter-option:hover { color: var(--black); }
.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--black);
  cursor: pointer;
  flex-shrink: 0;
}
.filter-option .filter-count {
  margin-left: auto;
  font-size: 10px;
  color: var(--gray-mid);
}
.price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.price-inputs input {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--black);
  background: var(--white);
}
.price-inputs input:focus { outline: none; border-color: var(--black); }
.price-dash { font-size: 11px; color: var(--gray-mid); flex-shrink: 0; }
.filter-apply {
  width: 100%;
  padding: 9px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.filter-apply:hover { background: var(--accent); }

.shop-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-line);
  gap: 12px;
  flex-wrap: wrap;
}
.shop-count { font-size: 13px; color: var(--gray-text); }
.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
}
.sort-select:focus { outline: none; border-color: var(--black); }

.empty-state {
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.empty-state i    { width: 48px; height: 48px; color: var(--gray-line); }
.empty-state p    { color: var(--gray-text); }

/* ── Product Detail ─────────────────────────────────────────── */
.pd-wrap { padding: 40px 0 80px; }
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.pd-gallery {}
.pd-main-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  cursor: zoom-in;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.pd-main-img .pd-no-img { font-size: 5rem; opacity: 0.2; }
.pd-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pd-thumb {
  width: 72px;
  height: 72px;
  border: 2px solid var(--gray-line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.pd-thumb.active,
.pd-thumb:hover { border-color: var(--black); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }

.pd-info {}
.pd-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.pd-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}
.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.pd-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
}
.pd-old-price {
  font-size: 1.1rem;
  color: var(--gray-text);
  text-decoration: line-through;
}
.pd-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.pd-stock.in  { background: rgba(45,122,79,0.1);  color: var(--green); }
.pd-stock.out { background: rgba(192,57,43,0.1);  color: var(--red); }
.pd-stock i { width: 12px; height: 12px; }

.pd-attr { margin-bottom: 20px; }
.pd-attr-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 10px;
}
.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pd-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border: 1.5px solid var(--gray-line);
  border-radius: 20px;
  color: var(--black);
  background: var(--white);
  white-space: nowrap;
}

.pd-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0;
}
.pd-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

.pd-divider {
  border: none;
  border-top: 1px solid var(--gray-line);
  margin: 24px 0;
}
.pd-short-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-text);
  margin-bottom: 20px;
}

/* Specs table */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--gray-line); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 10px 0; font-size: 13px; }
.spec-key { color: var(--gray-text); width: 42%; font-weight: 500; }
.spec-val { color: var(--black); font-weight: 500; }

/* Tabs */
.pd-tabs {
  display: flex;
  border-bottom: 1.5px solid var(--gray-line);
  margin-bottom: 20px;
  gap: 0;
}
.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-text);
  cursor: pointer;
  transition: color 0.2s;
}
.tab-btn:hover { color: var(--black); }
.tab-btn.active { color: var(--black); border-bottom-color: var(--black); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Quick inquiry on product page */
.pd-inquiry {
  background: var(--cream);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 32px;
}
.pd-inquiry h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.form-input,
.form-textarea,
.form-select {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { outline: none; border-color: var(--black); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-msg {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  margin-top: 12px;
  display: none;
}
.form-msg.success { background: rgba(45,122,79,0.1); color: var(--green); }
.form-msg.error   { background: rgba(192,57,43,0.1); color: var(--red); }
.form-msg.show    { display: block; }

/* ── Brand Story / About ────────────────────────────────────── */
.brand-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.brand-img-placeholder { font-size: 5rem; opacity: 0.25; }
.brand-content h2 { margin-bottom: 20px; }
.brand-content p  { margin-bottom: 16px; font-size: 15px; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
}
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-icon i { width: 22px; height: 22px; color: var(--accent); }
.value-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.value-desc { font-size: 13px; line-height: 1.6; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { width: 17px; height: 17px; color: var(--accent); }
.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 3px;
}
.contact-val { font-size: 14px; color: var(--black); font-weight: 500; }

/* ── Blog ───────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.blog-card-img {
  aspect-ratio: 3/4;
  background: var(--cream);
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.25;
}
.blog-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.blog-card-meta {
  font-size: 11px;
  color: var(--gray-mid);
  margin-top: auto;
}

/* Single post */
.post-wrap { padding: 52px 0 80px; }
.post-header { margin-bottom: 40px; }
.post-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-text);
  flex-wrap: wrap;
}
.post-feat-img {
  aspect-ratio: 3/2;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 40px;
}
.post-feat-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; display: block; }
.post-content {
  font-size: 16px;
  line-height: 1.85;
}
.post-content p  { margin-bottom: 20px; color: var(--gray-text); }
.post-content .post-intro { font-size: 1.15rem; line-height: 1.8; color: var(--black); font-style: italic; border-left: 3px solid var(--accent); padding-left: 20px; margin-bottom: 32px; }
.post-content h2,
.post-content h3 { margin: 36px 0 16px; }
.post-content ul,
.post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { margin-bottom: 8px; line-height: 1.7; color: var(--gray-text); }
.post-content img { border-radius: var(--radius); margin: 24px auto; }
.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 24px;
  margin: 24px 0;
  font-style: italic;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-num {
  padding: 9px 15px;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  transition: all 0.2s;
}
.page-num:hover,
.page-num.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-social a i { width: 14px; height: 14px; }

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}
.footer-contact-row i { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ── 404 ────────────────────────────────────────────────────── */
.not-found-wrap {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.not-found-num {
  font-family: var(--font-serif);
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gray-line);
  margin-bottom: 16px;
}
.not-found-wrap h1 { font-size: 1.8rem; margin-bottom: 12px; }
.not-found-wrap p  { margin-bottom: 32px; }

/* ── Utilities ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── Responsive: Tablet ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .home-hero             { grid-template-columns: 1fr; min-height: auto; }
  .hero-content-wrap     { padding: 64px 24px; }
  .hero-img-col          { height: 440px; }
  .section               { padding: 64px 0; }
  .shop-layout           { grid-template-columns: 1fr; }
  .shop-sidebar          { position: static; }
  .sidebar-mobile-toggle { display: flex; }
  .sidebar-filters       { display: none; }
  .sidebar-filters.open  { display: block; }
  .pd-grid               { grid-template-columns: 1fr; gap: 40px; }
  .pd-main-img           { aspect-ratio: 4/3; }
  .footer-grid           { grid-template-columns: 1fr 1fr; gap: 32px; }
  .brand-split           { grid-template-columns: 1fr; gap: 40px; }
  .brand-img             { aspect-ratio: 16/9; max-height: 420px; }
  .contact-grid          { grid-template-columns: 1fr; gap: 40px; }
  .header-nav-brand      { display: none; }
}

/* ── Responsive: Mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
  .header-nav, .header-nav-brand { display: none; }
  .mob-menu-btn          { display: flex; }
  .header-logo-side      { display: none; }
  .header-logo-row       { padding: 14px 24px; }
  .header-nav-inner      { justify-content: flex-end; }
  .header-nav-row        { border-bottom: none; }
  .header-nav-row .container { padding: 8px 24px; }
  .logo-main             { font-size: 1.2rem; letter-spacing: 0.14em; }
  .hero-img-col          { height: 320px; }
  .section               { padding: 48px 0; }
  .shop-wrap             { padding: 24px 0 56px; }
  .footer-grid           { grid-template-columns: 1fr; gap: 28px; }
  .products-grid         { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .blog-grid             { grid-template-columns: 1fr; }
  .blog-card-img         { aspect-ratio: 16/9; }
  .form-grid             { grid-template-columns: 1fr; }
  .cat-grid              { grid-template-columns: repeat(2, 1fr); }
  .values-grid           { grid-template-columns: 1fr 1fr; }
  .sec-header            { flex-direction: column; align-items: flex-start; }
  .pd-tabs               { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tab-btn               { white-space: nowrap; }
  .pd-main-img           { aspect-ratio: 1/1; }
  .brand-img             { aspect-ratio: 3/2; max-height: 300px; }
}

/* ── Responsive: Small Mobile ───────────────────────────────── */
@media (max-width: 480px) {
  .products-grid         { grid-template-columns: 1fr; }
  .values-grid           { grid-template-columns: 1fr; }
  .hero-actions          { flex-direction: column; align-items: stretch; }
  .hero-img-col          { height: 240px; }
  .section               { padding: 40px 0; }
  .shop-wrap             { padding: 16px 0 48px; }
  .pd-cta-row            { flex-direction: column; }
  .not-found-num         { font-size: 5rem; }
  .footer-bottom         { flex-direction: column; text-align: center; }
  .footer-bottom-links   { flex-wrap: wrap; justify-content: center; }
  .btn-lg                { padding: 14px 24px; font-size: 12px; }
  .header-logo-row       { padding: 10px 16px; }
  .logo-main             { font-size: 1.1rem; }
  .sec-header            { margin-bottom: 24px; }
  .pd-inquiry            { padding: 18px; }
  .brand-img             { max-height: 260px; }
  .footer-grid           { gap: 20px; }
}

/* ── Returns / Policy Pages ─────────────────────────────────── */
.policy-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-line);
}
.policy-section:last-child { border-bottom: none; margin-bottom: 0; }
.policy-section h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--maroon);
  margin: 0 0 16px;
}
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.policy-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
}
.policy-list--check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.policy-list--cross li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.policy-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.policy-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
}
.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
