/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  background: #fdfbf7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; color: #1a1a1a; }
em { font-style: italic; color: #b8865b; }

:root {
  --ink: #1a1a1a;
  --ink-2: #3a3a3a;
  --muted: #6b6b6b;
  --line: #e8e2d8;
  --cream: #fdfbf7;
  --cream-2: #f5efe5;
  --gold: #b8865b;
  --gold-dk: #9c6e44;
  --rose: #d4a5a5;
  --shadow: 0 8px 30px rgba(26, 26, 26, .08);
  --shadow-lg: 0 20px 60px rgba(26, 26, 26, .15);
}

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: 13px;
  letter-spacing: .3px;
  padding: 10px 16px;
}
.announce strong { color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 251, 247, .95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--gold);
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px;
  letter-spacing: 1px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--ink); letter-spacing: .5px; }
.brand-sub { font-size: 10.5px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-top: 2px; }

.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .3s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--ink); transition: background .2s ease;
  position: relative;
}
.icon-btn:hover { background: var(--cream-2); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--gold); color: white;
  border-radius: 9px; font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; transform: scale(0); transition: transform .2s ease;
}
.cart-count.active { transform: scale(1); }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: calc(100vh - 120px);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,26,26,.65) 0%, rgba(26,26,26,.35) 50%, rgba(26,26,26,.15) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  color: white; max-width: 720px;
  padding: 80px 24px;
}
.eyebrow {
  display: inline-block; font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
  color: var(--gold); margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  color: white; letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,.85); max-width: 580px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; border-radius: 50px;
  font-size: 14.5px; font-weight: 600; letter-spacing: .5px;
  transition: all .25s ease;
  cursor: pointer; border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--gold); color: white;
  box-shadow: 0 8px 20px rgba(184, 134, 91, .35);
}
.btn-primary:hover {
  background: var(--gold-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(184, 134, 91, .45);
}
.btn-ghost {
  background: transparent; color: white;
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
  background: white; color: var(--ink); border-color: white;
}
.btn-block { width: 100%; }

.hero-meta { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-meta div { color: white; }
.hero-meta strong { display: block; font-family: 'Playfair Display', serif; font-size: 22px; }
.hero-meta span { font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: .5px; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--cream-2); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .eyebrow { color: var(--gold); }
.section-head h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; letter-spacing: -.5px; }
.section-head p { color: var(--muted); font-size: 16.5px; }

/* ---------- Categories ---------- */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.cat-card {
  position: relative; overflow: hidden; border-radius: 16px;
  aspect-ratio: 3/4; background: var(--ink);
  display: flex; align-items: flex-end;
  transition: transform .3s ease;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.cat-card:hover .cat-img { transform: scale(1.08); }
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
}
.cat-body {
  position: relative; z-index: 2; padding: 24px; color: white; width: 100%;
}
.cat-body h3 { color: white; font-size: 24px; margin-bottom: 4px; }
.cat-body span { font-size: 13px; color: rgba(255,255,255,.8); letter-spacing: .5px; }

/* ---------- Filter chips ---------- */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.chip {
  padding: 10px 22px; border-radius: 50px;
  background: white; border: 1px solid var(--line);
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: all .2s ease;
}
.chip:hover { border-color: var(--gold); color: var(--ink); }
.chip.active {
  background: var(--ink); color: white; border-color: var(--ink);
}

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product {
  background: white; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  aspect-ratio: 1; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.product-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background .3s ease;
}
.product:hover .product-img::after { background: rgba(0,0,0,.05); }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--ink); color: var(--gold);
  font-size: 10.5px; letter-spacing: 1.5px; font-weight: 600;
  padding: 5px 11px; border-radius: 50px; text-transform: uppercase;
}
.product-badge.sale { background: var(--rose); color: white; }
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 600;
  color: var(--ink); margin-bottom: 8px; line-height: 1.3;
}
.product-rating { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.product-rating .stars { color: var(--gold); letter-spacing: 1px; }
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.product-price { display: flex; flex-direction: column; }
.price-now { font-size: 19px; font-weight: 700; color: var(--ink); font-family: 'Playfair Display', serif; }
.price-was { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.add-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.add-btn:hover { background: var(--gold); transform: scale(1.08); }
.add-btn svg { width: 18px; height: 18px; }

/* ---------- USPs ---------- */
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.usp {
  background: var(--cream-2); padding: 36px 28px; border-radius: 16px;
  text-align: center;
  transition: transform .3s ease;
}
.usp:hover { transform: translateY(-4px); }
.usp-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); box-shadow: var(--shadow);
}
.usp-icon svg { width: 28px; height: 28px; }
.usp h3 { font-size: 19px; margin-bottom: 10px; }
.usp p { font-size: 14.5px; color: var(--muted); }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px;
  align-items: center;
}
.about-img { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-img-tag {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  padding: 8px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  color: var(--ink); text-transform: uppercase;
}
.about-body h2 { font-size: clamp(30px, 4vw, 44px); margin: 16px 0 24px; letter-spacing: -.5px; }
.about-body p { color: var(--ink-2); margin-bottom: 16px; font-size: 16px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line);
}
.about-stats strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--gold); margin-bottom: 4px;
}
.about-stats span { font-size: 13px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.contact-grid h2 { font-size: clamp(28px, 3.5vw, 40px); margin: 16px 0 16px; letter-spacing: -.5px; }
.contact-grid > div > p { color: var(--muted); margin-bottom: 36px; }
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream-2); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.ci svg { width: 20px; height: 20px; }
.contact-list strong { display: block; color: var(--ink); margin-bottom: 4px; font-size: 14.5px; }
.contact-list a, .contact-list span { color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: white; padding: 40px; border-radius: 18px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 24px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 6px; letter-spacing: .3px;
}
.field input, .field textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 14.5px; color: var(--ink);
  background: var(--cream); transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: white;
}
.field textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px; padding-bottom: 60px;
}
.brand-light .brand-title { color: white; }
.brand-light .brand-sub { color: rgba(255,255,255,.5); }
.footer-tagline { margin: 20px 0; font-size: 14.5px; line-height: 1.6; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: background .2s ease;
}
.socials a:hover { background: var(--gold); }
.socials svg { width: 18px; height: 18px; }

.site-footer h4 {
  color: white; font-family: 'Inter', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 600;
}
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: 14.5px; }
.site-footer ul a:hover { color: var(--gold); }
.site-footer > .container > div > p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

.newsletter { display: flex; gap: 8px; margin-top: 4px; }
.newsletter input {
  flex: 1; padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 8px;
  background: rgba(255,255,255,.05); color: white;
  font: inherit; font-size: 14px;
}
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter input:focus { outline: none; border-color: var(--gold); }
.newsletter button {
  padding: 12px 20px; background: var(--gold); color: white;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: background .2s ease;
}
.newsletter button:hover { background: var(--gold-dk); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.5);
}
.footer-bottom strong { color: white; font-weight: 600; }

/* ---------- Cart drawer ---------- */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: white; z-index: 100;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  opacity: 0; pointer-events: none; z-index: 99;
  transition: opacity .3s ease;
}
.cart-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px; border-bottom: 1px solid var(--line);
}
.cart-head h3 { font-size: 22px; }
.cart-body { flex: 1; overflow-y: auto; padding: 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty p { margin-bottom: 24px; }
.cart-empty .btn { color: var(--ink); border-color: var(--ink); }
.cart-empty .btn:hover { background: var(--ink); color: white; }

.cart-item {
  display: grid; grid-template-columns: 70px 1fr auto; gap: 14px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 70px; height: 70px; border-radius: 10px; background-size: cover; background-position: center; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--muted); }
.cart-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-qty button {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream-2); color: var(--ink);
  font-size: 16px; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.cart-qty button:hover { background: var(--ink); color: white; }
.cart-qty span { font-size: 13px; min-width: 18px; text-align: center; }
.cart-item-remove { color: var(--muted); font-size: 12px; text-decoration: underline; }
.cart-item-remove:hover { color: var(--rose); }

.cart-foot { padding: 24px; border-top: 1px solid var(--line); background: var(--cream); }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.cart-total span { font-size: 14px; color: var(--muted); }
.cart-total strong { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ink); }
.cart-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: white;
  padding: 14px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 110; transition: transform .3s ease;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-inner { height: 68px; }
  .brand-sub { display: none; }
  .hero { min-height: 600px; }
  .hero-content { padding: 60px 24px; }
  .hero-meta { gap: 24px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .usp-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-body { padding: 14px; }
  .product-name { font-size: 14px; }
  .price-now { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Mobile nav ---------- */
.nav.open {
  display: flex; position: fixed; top: 68px; left: 0; right: 0;
  background: white; flex-direction: column; gap: 0;
  padding: 16px 24px; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.nav.open a { padding: 14px 0; border-bottom: 1px solid var(--line); }
.nav.open a:last-child { border-bottom: none; }
