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

:root {
  --bg: #0c0c0c;
  --surface: #141414;
  --surface2: #1c1c1c;
  --text: #f2ede6;
  --text-muted: #9c9289;
  --gold: #c8a96e;
  --gold-light: #e0c98a;
  --border: #282828;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}

/* ── NAV ── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(12,12,12,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-logo svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.nav-brand strong {
  display: block;
  font-weight: 500;
  color: var(--text);
}

.nav-brand span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  font-weight: 400;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12,12,12,0.92) 0%,
    rgba(12,12,12,0.65) 45%,
    rgba(12,12,12,0.15) 100%
  );
}

.hero-content {
  position: relative;
  padding: 0 3rem;
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #0c0c0c;
}

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

.btn-outline {
  background: transparent;
  border-color: rgba(242,237,230,0.3);
  color: var(--text);
}

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

/* ── SECTIONS ── */
.section {
  padding: 7rem 3rem;
}

.section-inner {
  max-width: 1340px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}

/* ── ABOUT ── */
.about-section { background: var(--surface); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-imgs {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid var(--surface);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── FEATURED ── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.featured-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface2);
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-item:hover img { transform: scale(1.06); }

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.featured-item:hover .featured-overlay { opacity: 1; }

.featured-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: 0.03em;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 3rem;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-band .btn-gold { margin: 0 auto; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 9rem 3rem 4.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,169,110,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
}

.page-hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.page-hero-desc {
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ── PORTFOLIO MASONRY ── */
.portfolio-grid {
  columns: 4;
  column-gap: 6px;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  background: var(--surface2);
  cursor: zoom-in;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}

.portfolio-item:hover img { transform: scale(1.04); }

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,12,12,0.35);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }

.zoom-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200,169,110,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* ── SHOP GRID ── */
.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.shop-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5px;
  background: var(--border);
}

.product-card {
  background: var(--surface);
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover { background: var(--surface2); }

.product-gallery {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--surface2);
  cursor: zoom-in;
}

.product-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.45s ease;
}

.product-gallery img.hidden { opacity: 0; pointer-events: none; }
.product-card:hover .product-gallery img.active { transform: scale(1.04); }

.product-gallery-btn {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  background: rgba(12,12,12,0.75);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.product-gallery-btn:hover { background: rgba(200,169,110,0.15); }

.product-thumbs {
  display: flex;
  gap: 3px;
  padding: 6px;
  background: var(--surface2);
}

.product-thumb {
  width: 38px;
  height: 38px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border: 1px solid transparent;
  transition: opacity var(--transition), border-color var(--transition);
  flex-shrink: 0;
}

.product-thumb.active,
.product-thumb:hover { opacity: 1; border-color: var(--gold); }

.product-info {
  padding: 1.4rem 1.4rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.product-meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-top: auto;
  line-height: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  border-top: 1px solid var(--border);
}

.btn-enquire {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #0c0c0c;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  font-weight: 500;
  transition: var(--transition);
}

.btn-enquire:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-buynow {
  display: inline-block;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}
.btn-enquire-mail {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.65rem 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-enquire-mail:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-wishlist {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

/* ── MODAL ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.open { display: flex; }

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 500px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1;
  transition: color var(--transition);
}

.modal-close:hover { color: var(--text); }

.modal-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.modal-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.modal-note {
  background: var(--surface2);
  border-left: 2px solid var(--gold);
  padding: 1rem 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.modal-actions { display: flex; flex-direction: column; gap: 0.75rem; }

.btn-email {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #0c0c0c;
  padding: 0.9rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  display: block;
}

.btn-email:hover { background: var(--gold-light); }

.modal-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.modal-divider::before, .modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(0,0,0,0.94);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
}

.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: color var(--transition);
}

.lightbox-close:hover { color: var(--text); }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2rem;
}

.footer-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-logo-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

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

.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.footer-heading {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

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

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.73rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .portfolio-grid { columns: 3; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  nav { padding: 1rem 1.5rem; }
  .section { padding: 5rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3.5rem; }
  .hero-content { padding: 0 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { display: none; }
  .about-imgs .about-img-main { aspect-ratio: 4/3; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 1.5rem; gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .portfolio-grid { columns: 2; }
  .shop-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 4rem 1.5rem; }
}

@media (max-width: 540px) {
  .portfolio-grid { columns: 1; }
  .featured-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}

/* ── FILTER BAR ── */
.filter-bar {
  position: sticky;
  top: 62px;
  z-index: 100;
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 3rem;
}
.filter-bar-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding-right: 0.2rem;
  flex-shrink: 0;
}
.filter-chip {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  padding: 0.28rem 0.75rem;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold); }
.filter-chip.active { background: var(--gold); border-color: var(--gold); color: #0c0c0c; font-weight: 600; }
.filter-sep { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; margin: 0 0.2rem; }
.filter-right { margin-left: auto; display: flex; align-items: center; gap: 0.75rem; }
.filter-count { font-size: 0.68rem; color: var(--text-muted); white-space: nowrap; }
.filter-clear {
  background: none; border: none; color: var(--text-muted);
  font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; font-family: inherit; padding: 0;
  text-decoration: underline; text-underline-offset: 2px;
  display: none; transition: color 0.2s;
}
.filter-clear.show { display: block; }
.filter-clear:hover { color: var(--gold); }
.sort-select {
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  padding: 0.28rem 1.8rem 0.28rem 0.65rem;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  font-family: inherit;
  cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239c9289' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.55rem center;
  outline: none; transition: border-color 0.2s;
}
.sort-select:focus { border-color: var(--gold); }

/* Sold state on product cards */
.product-gallery.is-sold::after {
  content: 'SOLD';
  position: absolute;
  inset: 0;
  background: rgba(12,12,12,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.product-card.is-sold .btn-enquire {
  opacity: 0.35;
  pointer-events: none;
}

/* No results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  display: none;
}
.no-results.show { display: block; }
.no-results h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.no-results p { color: var(--text-muted); font-size: 0.9rem; }

/* View toggle button (mobile only) */
.view-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  margin-left: 0.5rem;
}
.view-toggle:hover, .view-toggle.active { border-color: var(--gold); color: var(--gold); }

@media (max-width: 860px) {
  /* Contain filter bar so its min-width doesn't cause page-level horizontal scroll */
  .filter-bar { padding: 0.65rem 1.5rem; overflow: hidden; max-width: 100%; }
  .filter-bar-inner { overflow-x: auto; flex-wrap: nowrap; min-width: 0; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
  .filter-right { display: none; }
  .view-toggle { display: flex; }
}
@media (max-width: 540px) {
  .filter-bar { padding: 0.6rem 1rem; }
}

/* 2-column grid on mobile */
@media (max-width: 860px) {
  .shop-grid.grid-2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .shop-grid.grid-2col .product-card { min-width: 0; overflow: hidden; }
  .shop-grid.grid-2col .product-name { font-size: 0.8rem; }
  .shop-grid.grid-2col .product-meta { font-size: 0.62rem; }
  .shop-grid.grid-2col .product-price { font-size: 1rem; }
  .shop-grid.grid-2col .product-info { padding: 0.6rem 0.7rem 0; }
  .shop-grid.grid-2col .product-footer { gap: 0.3rem; padding: 0.6rem 0.7rem; flex-wrap: nowrap; }
  .shop-grid.grid-2col .btn-enquire { font-size: 0.52rem; letter-spacing: 0.07em; padding: 0.5rem 0.35rem; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .shop-grid.grid-2col .btn-enquire-mail { padding: 0.5rem 0.5rem; flex-shrink: 0; }
  .shop-grid.grid-2col .btn-wishlist { display: none; }
  .shop-grid.grid-2col .product-thumbs { display: none; }
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.22s; }
[data-reveal][data-delay="3"] { transition-delay: 0.34s; }
[data-reveal][data-delay="4"] { transition-delay: 0.46s; }
[data-reveal][data-delay="5"] { transition-delay: 0.58s; }

/* ══════════════════════════════════════
   HERO PAGE-LOAD ANIMATION
══════════════════════════════════════ */
@keyframes hero-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero-eyebrow { animation: hero-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
.hero-title   { animation: hero-up 1s   cubic-bezier(0.22,1,0.36,1) 0.3s  both; }
.hero-desc    { animation: hero-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.48s both; }
.hero-btns    { animation: hero-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.62s both; }
.hero-scroll-indicator { animation: hero-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.9s both; }

/* Parallax hero bg */
.hero-bg { will-change: transform; }

/* ══════════════════════════════════════
   HERO SCROLL INDICATOR
══════════════════════════════════════ */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: rgba(200,169,110,0.5);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  pointer-events: none;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0);   opacity: 0.45; }
  50%       { transform: translateY(7px); opacity: 0.9; }
}
.hero-scroll-indicator svg { animation: scroll-bounce 2.4s ease infinite; }

/* ══════════════════════════════════════
   PRODUCT CARD — ENHANCED HOVER
══════════════════════════════════════ */
.product-card {
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease,
              box-shadow 0.4s ease,
              background 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,169,110,0.3);
  box-shadow: 0 24px 52px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,169,110,0.1);
  background: var(--surface2);
}

/* ══════════════════════════════════════
   FEATURED — IMPROVED HOVER
══════════════════════════════════════ */
.featured-item img {
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.featured-item:hover img { transform: scale(1.07); }
.featured-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: opacity 0.35s ease;
}
.featured-name {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   BUTTON SHINE EFFECT
══════════════════════════════════════ */
.btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.55s ease;
}
.btn-gold:hover::after { left: 160%; }

/* ══════════════════════════════════════
   STAT NUMBERS — LARGER
══════════════════════════════════════ */
.stat-num {
  font-size: 3rem;
  color: var(--gold);
}

/* ══════════════════════════════════════
   PORTFOLIO — ITEM HOVER
══════════════════════════════════════ */
.portfolio-item {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s ease;
}
.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}

/* ══════════════════════════════════════
   PAGE HERO — DECORATIVE LINE
══════════════════════════════════════ */
.page-hero-title {
  position: relative;
  display: inline-block;
}
.page-hero-title::after {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
  opacity: 0.7;
}

/* ══════════════════════════════════════
   NAV — SCROLL SHADOW
══════════════════════════════════════ */
nav.scrolled {
  background: rgba(8,8,8,0.98);
  box-shadow: 0 1px 0 rgba(200,169,110,0.12);
}

/* ══════════════════════════════════════
   SECTION SEPARATOR ACCENT
══════════════════════════════════════ */
.gold-rule {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 3rem;
  opacity: 0.6;
}

@media (max-width: 540px) {
  .hero-scroll-indicator { display: none; }
  .stat-num { font-size: 2.2rem; }
}
