:root {
  --cream: #F7F0E6;
  --espresso: #1C1410;
  --caramel: #C8842A;
  --caramel-light: #E8A84C;
  --sage: #8A9E7A;
  --blush: #E8D5C4;
  --warm-white: #FDFAF6;
  --text-muted: #7A6B5D;
  --radius: 4px;
  --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--espresso);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 8px; height: 8px;
  background: var(--caramel);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--caramel);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.4s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}
.cursor-ring.hover { width: 60px; height: 60px; opacity: 0.3; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--caramel); }

/* ─── HEADER ─── */
header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 3000;
  padding: 0 60px;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(253,250,246,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,132,42,0.12);
  transition: var(--transition);
}
header.scrolled { height: 64px; }

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.04em;
}
.logo span { color: var(--caramel); font-style: italic; }

nav ul { list-style: none; display: flex; gap: 40px; align-items: center; }
nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}
nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--caramel);
  transition: width 0.4s ease;
}
nav a:hover { color: var(--espresso); }
nav a:hover::after, nav a.active::after { width: 100%; }
nav a.active { color: var(--espresso); }

.menu-trigger { display: none; flex-direction: column; gap: 6px; cursor: none; }
.menu-trigger span {
  display: block; width: 28px; height: 1.5px;
  background: var(--espresso);
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 280px;
  font-weight: 300;
  color: rgba(200,132,42,0.04);
  letter-spacing: -0.02em;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 60px;
  position: relative;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--caramel);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.5vw, 86px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--espresso);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--caramel);
}

.hero-desc {
  margin-top: 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 380px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-actions {
  margin-top: 48px;
  display: flex; gap: 20px; align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--espresso);
  color: white;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: none;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--caramel);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary .arrow { position: relative; z-index: 1; transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(6px); }

.btn-secondary {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.3s;
}
.btn-secondary:hover { color: var(--espresso); }

.hero-right {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.3s forwards;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }

.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,20,16,0.15) 0%, transparent 60%);
}

.hero-card {
  position: absolute;
  bottom: 48px; left: -24px;
  background: white;
  padding: 24px 28px;
  box-shadow: 0 30px 80px rgba(28,20,16,0.18);
  display: flex; align-items: center; gap: 16px;
  animation: slideRight 0.8s ease 1.2s both;
}
.hero-card-icon { font-size: 28px; }
.hero-card-text p { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.hero-card-text strong { font-size: 15px; font-family: 'Cormorant Garamond', serif; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--espresso);
  padding: 40px 80px;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 30px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300;
  color: var(--caramel-light);
  line-height: 1;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 6px;
}
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* ─── SECTION UTILITY ─── */
.section-wrap { padding: 120px 80px; }
.section-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--caramel); display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--caramel); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 300; line-height: 1.1;
}

/* ─── CATALOGUE ─── */
#catalogo { background: var(--cream); }
.catalogue-header { text-align: center; margin-bottom: 60px; }

.categories {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
  margin-bottom: 60px;
}
.cat-btn {
  background: transparent;
  border: 1px solid rgba(28,20,16,0.2);
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  transition: var(--transition);
}
.cat-btn:hover, .cat-btn.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: white;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

.product-card {
  background: white;
  position: relative;
  overflow: hidden;
  group: true;
  transition: var(--transition);
}
.product-card:hover { z-index: 2; box-shadow: 0 40px 80px rgba(28,20,16,0.15); transform: translateY(-4px); }

.product-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--caramel);
  color: white;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px;
  z-index: 2;
}

.product-img-wrap { overflow: hidden; position: relative; }
.product-img {
  width: 100%; height: 280px;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,20,16,0.5) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
}
.product-card:hover .product-overlay { opacity: 1; }

.product-info { padding: 28px 28px 32px; }
.product-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; margin-bottom: 8px;
}
.product-info p { font-size: 13px; color: var(--text-muted); font-weight: 300; margin-bottom: 20px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: var(--espresso);
}
.price small { font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text-muted); }

.add-btn {
  width: 44px; height: 44px;
  background: var(--espresso);
  border: none;
  color: white;
  font-size: 20px;
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.add-btn:hover { background: var(--caramel); }
.add-btn.added { background: var(--sage); }

/* ─── ABOUT ─── */
.about-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 80vh;
}
.about-img { position: relative; overflow: hidden; min-height: 500px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(28,20,16,0.15);
}
.about-content {
  background: var(--espresso);
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.about-content::before {
  content: '1994';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px; font-weight: 300;
  color: rgba(255,255,255,0.03);
  right: -20px; bottom: -20px;
  line-height: 1;
}
.about-content .section-label { color: var(--caramel-light); }
.about-content .section-label::before { background: var(--caramel-light); }
.about-content .section-title { color: white; margin-bottom: 24px; }
.about-content p { color: rgba(255,255,255,0.55); line-height: 1.9; font-weight: 300; font-size: 15px; max-width: 420px; }

.about-features { margin-top: 48px; display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
}
.feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300;
  color: var(--caramel-light);
  line-height: 1; width: 50px;
}
.feature-text { color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 300; line-height: 1.5; }
.feature-text strong { display: block; color: white; font-size: 15px; margin-bottom: 2px; }

/* ─── FOOTER ─── */
footer {
  background: var(--cream);
  border-top: 1px solid rgba(28,20,16,0.08);
  padding: 80px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.footer-brand .logo { font-size: 32px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; max-width: 260px; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--espresso); margin-bottom: 20px; font-weight: 500;
}
.footer-col p { font-size: 14px; color: var(--text-muted); line-height: 2; font-weight: 300; }
.footer-col a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--caramel); }
.footer-bottom {
  background: var(--espresso); padding: 20px 80px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

/* ─── FLOATING BUTTONS ─── */
.btn-cart {
  position: fixed; right: 28px; bottom: 108px;
  width: 56px; height: 56px;
  background: var(--espresso);
  border: none; cursor: none;
  display: flex; align-items: center; justify-content: center;
  z-index: 4000;
  transition: var(--transition);
  box-shadow: 0 10px 40px rgba(28,20,16,0.25);
}
.btn-cart:hover { background: var(--caramel); transform: translateY(-3px); }
.btn-cart svg { width: 22px; height: 22px; stroke: white; fill: none; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: var(--caramel);
  color: white; font-size: 10px; font-weight: 600;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
}

.whatsapp {
  position: fixed; right: 28px; bottom: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 4000;
  box-shadow: 0 10px 40px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(37,211,102,0.45); }
.whatsapp svg { width: 26px; height: 26px; fill: white; }

/* ─── CART DRAWER ─── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(28,20,16,0.5);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: 0.4s;
  z-index: 5000;
}
.overlay.active { opacity: 1; visibility: visible; }

.cart-overlay {
  position: fixed; top: 0; right: -480px;
  width: 440px; height: 100vh;
  background: var(--warm-white);
  z-index: 6000;
  transition: var(--transition);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 80px rgba(28,20,16,0.15);
}
.cart-overlay.active { right: 0; }

.cart-header {
  padding: 36px 36px 24px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(28,20,16,0.06);
}
.cart-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400;
}
.close-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  color: var(--text-muted);
  font-size: 20px;
  transition: color 0.3s;
}
.close-btn:hover { color: var(--espresso); }

.cart-items { flex: 1; overflow-y: auto; padding: 24px 36px; }
.cart-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid rgba(28,20,16,0.05);
}
.cart-item h4 { font-size: 14px; font-weight: 400; margin-bottom: 4px; }
.cart-item-price { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--caramel); }
.cart-remove { background: none; border: none; cursor: none; color: var(--text-muted); font-size: 16px; transition: color 0.3s; padding: 4px; }
.cart-remove:hover { color: #c0392b; }

.cart-empty { text-align: center; padding: 80px 0; color: var(--text-muted); font-size: 14px; }

.cart-footer {
  padding: 24px 36px 36px;
  border-top: 1px solid rgba(28,20,16,0.06);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 24px;
}
.cart-total span { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.cart-total strong { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; }

.btn-checkout {
  width: 100%; background: var(--espresso);
  color: white; border: none; padding: 18px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: none; font-family: 'DM Sans', sans-serif;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-checkout::before {
  content: ''; position: absolute; inset: 0;
  background: var(--caramel);
  transform: translateX(-100%); transition: transform 0.4s ease;
}
.btn-checkout span { position: relative; z-index: 1; }
.btn-checkout:hover::before { transform: translateX(0); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed; top: 80px; left: 0;
  width: 100%; background: var(--warm-white);
  transform: translateY(-100%); opacity: 0;
  transition: var(--transition);
  z-index: 2900;
  padding: 32px 40px;
  border-bottom: 1px solid rgba(28,20,16,0.05);
  display: none;
}
.mobile-nav.active { transform: translateY(0); opacity: 1; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--espresso); text-decoration: none;
  border-bottom: 1px solid rgba(28,20,16,0.05);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--caramel); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  header { padding: 0 32px; }
  .section-wrap { padding: 80px 40px; }
  .about-content { padding: 80px 48px; }
  footer { padding: 60px 40px; grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 20px 40px; }
}

@media (max-width: 768px) {
  header { padding: 0 24px; }
  nav ul { display: none; }
  .menu-trigger { display: flex; }
  .mobile-nav { display: block; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 24px; }
  .hero-right { height: 55vh; }
  .hero-card { left: 16px; bottom: 24px; }

  .stats-bar { padding: 40px 24px; }
  .stat-divider { display: none; }

  .section-wrap { padding: 80px 24px; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-img { min-height: 40vh; }
  .about-content { padding: 60px 32px; }

  footer { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 8px; text-align: center; }

  .cart-overlay { width: 100%; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}