/* ============================================
   SELECKT v2 — style.css
   Light, editorial, premium — easy on the eyes
   ============================================ */

:root {
  --cream:    #faf8f4;
  --cream2:   #f3f0ea;
  --ink:      #1a1814;
  --ink2:     #3d3a35;
  --muted:    #8a8580;
  --accent:   #c9622f;
  --accent2:  #e8843f;
  --gold:     #c4963a;
  --white:    #ffffff;
  --border:   #e8e4dc;
  --card-bg:  #ffffff;
  --radius:   18px;
  --radius-sm:10px;
  --shadow:   0 2px 24px rgba(26,24,20,0.07);
  --shadow-hover: 0 12px 48px rgba(26,24,20,0.14);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Outfit', sans-serif;
}

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.2s;
  transform: translate(-50%, -50%);
}
body:not(:hover) .cursor-dot { opacity: 0; }

/* ===== NAVBAR ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(26,24,20,0.08); }
.nav-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--ink);
  cursor: none;
}
.nav-center { display: flex; gap: 36px; }
.nav-center a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink2);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  cursor: none;
}
.nav-center a:hover { color: var(--accent); }
.nav-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(196,150,58,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(196,150,58,0.25);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 100px 32px 60px;
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 60px;
}
.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 360px;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  animation: fadeUp 0.8s 0.2s ease both;
  cursor: none;
}
.hero-btn span { transition: transform 0.2s; }
.hero-btn:hover { background: var(--accent); }
.hero-btn:hover span { transform: translateX(4px); }

/* Hero right */
.hero-right {
  position: relative;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: 0 32px 80px rgba(26,24,20,0.15);
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-tag {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 3px;
}
.tag-cat { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.tag-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; }
.tag-price { font-size: 0.85rem; color: var(--muted); }

.hero-floater {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  width: 130px;
  transition: transform 0.3s ease;
}
.hero-floater img { width: 100%; height: 90px; object-fit: cover; }
.hero-floater p { font-size: 0.72rem; font-weight: 500; padding: 8px 10px; color: var(--ink2); line-height: 1.3; }
.hero-floater:hover { transform: translateY(-4px) scale(1.03); }
.f1 { top: 30px; left: -50px; animation: float 6s ease-in-out infinite; }
.f2 { bottom: 100px; right: -40px; animation: float 6s 2s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: var(--ink);
  color: var(--cream2);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.marquee-track {
  display: flex; gap: 32px;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track span:nth-child(even) { color: var(--gold); font-size: 0.6rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.05;
}

/* ===== EDITORIAL ===== */
.editorial {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 32px;
}
.editorial-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap; gap: 16px;
}
.editorial-desc {
  font-size: 1rem; color: var(--muted); max-width: 300px;
  font-weight: 300;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.ed-big { grid-row: span 2; }

.ed-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.ed-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.ed-img-wrap {
  position: relative;
  overflow: hidden;
}
.ed-big .ed-img-wrap { height: 380px; }
.ed-sm .ed-img-wrap  { height: 200px; }
.ed-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ed-card:hover .ed-img-wrap img { transform: scale(1.04); }
.ed-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.35) 0%, transparent 60%);
}
.ed-rank {
  position: absolute; top: 16px; left: 16px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white);
  background: rgba(26,24,20,0.55);
  backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: 100px;
}
.ed-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ed-cat {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
}
.ed-body h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem; font-weight: 600;
  line-height: 1.2; letter-spacing: -0.5px;
}
.ed-body p { font-size: 0.88rem; color: var(--muted); flex: 1; font-weight: 300; }
.ed-meta { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.stars-row { font-size: 0.82rem; color: var(--gold); margin-bottom: 12px; }
.stars-row em { color: var(--muted); font-style: normal; font-size: 0.78rem; }
.ed-price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.price-tag { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; }
.cta-btn {
  background: var(--accent);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  cursor: none;
  white-space: nowrap;
}
.cta-btn:hover { background: var(--ink); transform: translateY(-1px); }

/* ===== PRODUCTS SECTION ===== */
.products-sec {
  background: var(--cream2);
  padding: 100px 32px;
  border-top: 1px solid var(--border);
}
.products-header {
  max-width: 1280px; margin: 0 auto 52px;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 24px;
}

/* Filter */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }
.f-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.83rem; font-weight: 500;
  cursor: none; transition: all 0.2s;
}
.f-btn:hover { border-color: var(--ink); color: var(--ink); }
.f-btn.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* Products grid */
.products-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.p-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.4s, translate 0.4s;
  display: flex; flex-direction: column;
}
.p-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-hover);
}
.p-card.hidden { display: none; }

.p-img {
  position: relative; height: 230px; overflow: hidden;
  background: var(--cream2);
}
.p-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.p-card:hover .p-img img { transform: scale(1.06); }

.wishlist-btn {
  position: absolute; top: 12px; right: 12px;
  background: rgba(250,248,244,0.85);
  backdrop-filter: blur(8px);
  border: none; border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1rem; cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: var(--muted);
}
.wishlist-btn:hover { background: var(--white); color: var(--accent); transform: scale(1.1); }
.wishlist-btn.saved { color: var(--accent); }

.p-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}

.p-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.p-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.p-body h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 600; letter-spacing: -0.3px; line-height: 1.2;
}
.p-features {
  list-style: none; flex: 1;
}
.p-features li {
  font-size: 0.82rem; color: var(--muted);
  padding: 3px 0 3px 16px;
  position: relative; font-weight: 300;
}
.p-features li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--accent); font-size: 0.75rem;
}
.p-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--border);
  margin-top: 4px;
}
.p-rating { font-size: 0.8rem; color: var(--gold); }
.p-rating span { color: var(--muted); font-size: 0.75rem; margin-left: 4px; }
.p-price { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; }
.p-cta {
  display: block; text-align: center;
  margin-top: 14px;
  background: var(--cream2);
  border: 1px solid var(--border);
  color: var(--ink);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.83rem; font-weight: 500;
  transition: all 0.2s; cursor: none;
}
.p-cta:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 32px;
}
.trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: flex-start;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  flex: 1; min-width: 200px;
  padding: 0 40px;
  display: flex; flex-direction: column; gap: 8px;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child  { padding-right: 0; }
.trust-icon { font-size: 1.5rem; }
.trust-item strong { font-size: 0.95rem; font-weight: 600; }
.trust-item p { font-size: 0.82rem; color: var(--muted); font-weight: 300; }
.trust-divider { width: 1px; background: var(--border); align-self: stretch; }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--cream2);
  padding: 60px 32px 40px;
}
.footer-top {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-logo { color: var(--cream); font-size: 1.6rem; }
.footer-nav { display: flex; gap: 32px; }
.footer-nav a { font-size: 0.87rem; color: rgba(250,248,244,0.5); transition: color 0.2s; cursor: none; }
.footer-nav a:hover { color: var(--cream); }
.footer-bottom { max-width: 1280px; margin: 0 auto; text-align: center; }
.disclosure { font-size: 0.78rem; color: rgba(250,248,244,0.4); max-width: 600px; margin: 0 auto 12px; line-height: 1.6; font-weight: 300; }
.copyright { font-size: 0.75rem; color: rgba(250,248,244,0.25); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
  .hero-right { display: none; }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .ed-big { grid-row: span 1; }
  .ed-big .ed-img-wrap { height: 260px; }
}
@media (max-width: 768px) {
  .nav-center { display: none; }
  .editorial-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; gap: 32px; }
  .trust-item { padding: 0; }
  .trust-divider { display: none; }
  .footer-top { flex-direction: column; text-align: center; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .filter-bar { justify-content: center; }
  .hero { padding: 90px 20px 40px; }
  .editorial, .products-sec { padding: 60px 20px; }
}

/* Touch devices — disable custom cursor */
@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot { display: none; }
  a, button { cursor: pointer; }
}
