* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  background: #181210;
  color: #f3ece4;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 6%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent);
  mix-blend-mode: normal;
}
.logo img { height: 52px; display:block; }
.navbar nav a {
  color: #f3ece4; text-decoration: none; margin-left: 26px; font-size: 0.85rem;
  letter-spacing: 1px; transition: color .3s; cursor:pointer;
}
.navbar nav a:hover { color: #c9974a; }

/* CINEMATIC PINNED STAGE */
.stage {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.panel {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
}
.panel[data-index="0"] { opacity: 1; pointer-events: auto; }

.panel .bg {
  position: absolute; inset: -8%;
  background-size: cover; background-position: center;
  transform: scale(1.1);
  will-change: transform, opacity;
}
.panel .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,12,8,.35) 0%, rgba(15,10,7,.78) 100%);
}
.panel .shade.dark {
  background: linear-gradient(180deg, rgba(12,8,6,.55) 0%, rgba(10,7,5,.85) 100%);
}

.copy {
  position: relative; z-index: 2; max-width: 720px; padding: 0 24px;
  text-align: center;
}
.copy h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); line-height:1.15; font-weight: 900; }
.copy h1 span { color: #c9974a; font-style: italic; }
.copy h2 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 22px; font-weight: 700; }
.copy p { font-weight: 300; font-size: clamp(1rem, 1.6vw, 1.2rem); color: #e6dccd; line-height: 1.8; }
.hero-cta { margin-top: 34px; }
.copy .price {
  display:inline-block; margin-top: 22px; color:#c9974a; font-weight:600; font-size:1.2rem;
  letter-spacing: 1px;
}

/* sello grid (panel 4) */
.sello-grid { display:flex; justify-content:center; gap: 50px; flex-wrap:wrap; margin-top: 36px; }
.sello { text-align:center; }
.sello strong { display:block; font-size: 2rem; color:#c9974a; font-family:'Playfair Display',serif; }
.sello span { font-size:.8rem; letter-spacing:1px; color:#cbb89a; }

/* ===== TIENDA SECTION ===== */
.tienda { padding: 120px 6%; text-align: center; background: #181210; position: relative; z-index: 5; }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; font-weight: 700;
}
.section-title::after {
  content:""; display:block; width:70px; height:3px; background:#c9974a; margin: 16px auto 0;
}
.tienda-sub { color:#cfc4b6; margin-bottom: 46px; font-weight:300; }

.tienda-toolbar {
  display:flex; flex-wrap: wrap; align-items:center; justify-content:center;
  gap: 22px; margin-bottom: 34px; text-align:left;
}
.search-box {
  display:flex; align-items:center; gap: 10px;
  background:#1f1712; border:1px solid #3a2c20; border-radius: 30px;
  padding: 11px 20px; min-width: 230px;
}
.search-box svg { color:#c9974a; flex-shrink:0; }
.search-box input {
  background:transparent; border:none; outline:none; color:#f3ece4;
  font-family:'Poppins',sans-serif; font-size:.92rem; width:100%;
}
.search-box input::placeholder { color:#8a7a68; }

.filter-group { display:flex; gap: 10px; flex-wrap:wrap; }
.filter-chip {
  background:transparent; border:1px solid #3a2c20; color:#cfc4b6;
  padding: 9px 20px; border-radius:30px; cursor:pointer; font-size:.85rem;
  letter-spacing:.5px; transition: all .25s; font-family:'Poppins',sans-serif;
}
.filter-chip:hover { border-color:#c9974a; color:#f3ece4; }
.filter-chip.active { background:#c9974a; border-color:#c9974a; color:#1c130d; font-weight:600; }

.sort-group, .price-group {
  display:flex; align-items:center; gap: 10px; color:#cfc4b6; font-size:.85rem;
}
.sort-group select {
  background:#1f1712; color:#f3ece4; border:1px solid #3a2c20; border-radius: 20px;
  padding: 9px 16px; font-family:'Poppins',sans-serif; font-size:.85rem; cursor:pointer; outline:none;
}
.price-group input[type="range"] {
  accent-color: #c9974a; cursor:pointer; width: 140px;
}
.price-group span { color:#c9974a; font-weight:600; }

.results-count { color:#8a7a68; font-size:.85rem; margin-bottom: 26px; letter-spacing:.5px; }
.no-results { color:#8a7a68; padding: 60px 0; font-style: italic; }

/* shop grid & cards */
.grid-productos {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 28px;
  margin-bottom: 10px;
}
.card-producto {
  background: #1f1712; border-radius:16px; overflow:hidden; text-align:left;
  border: 1px solid rgba(201,151,74,.18);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display:flex; flex-direction:column;
}
.card-producto:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.45);
  border-color: rgba(201,151,74,.45);
}
.card-producto .card-img {
  height: 200px; background-size: cover; background-position:center; position:relative;
}
.card-producto .card-tag {
  position:absolute; top: 14px; left: 14px; background: rgba(20,14,10,.75);
  color:#c9974a; font-size:.7rem; letter-spacing:1.5px; text-transform:uppercase;
  padding: 6px 14px; border-radius:20px; backdrop-filter: blur(4px);
}
.card-body { padding: 20px 22px 24px; display:flex; flex-direction:column; gap: 6px; flex:1; }
.card-producto h3 { font-size:1.1rem; margin: 0; }
.card-producto .desc { color:#a8998a; font-size:.85rem; font-weight:300; line-height:1.6; flex:1; }
.card-footer { display:flex; align-items:center; justify-content:space-between; margin-top: 12px; gap: 12px; }
.card-producto .price { font-size: 1.15rem; color:#c9974a; font-weight:600; }
.btn-secondary {
  background:transparent; border:1px solid #c9974a; color:#c9974a; padding:10px 22px;
  border-radius:30px; cursor:pointer; font-weight:500; letter-spacing:.5px; transition:.3s;
  font-size: .82rem; white-space:nowrap; font-family:'Poppins',sans-serif;
}
.btn-secondary:hover { background:#c9974a; color:#1c130d; }
.btn-secondary.added { background:#7a9a6e; border-color:#7a9a6e; color:#11210d; }

@media (max-width: 720px) {
  .tienda-toolbar { flex-direction: column; align-items: stretch; }
  .search-box, .sort-group, .price-group { width: 100%; }
}
.btn-primary {
  display:inline-block; background:#c9974a; color:#1c130d; padding: 15px 38px;
  border-radius: 32px; text-decoration:none; font-weight:600; letter-spacing:1px;
  border:none; cursor:pointer; transition: transform .25s, box-shadow .25s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,151,74,.35); }

/* progress dots */
.progress-dots {
  position: fixed; right: 28px; top: 50%; transform: translateY(-50%);
  z-index: 150; display:flex; flex-direction:column; gap: 14px;
}
.progress-dots span {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(243,236,228,.3);
  transition: background .35s, transform .35s; cursor: pointer;
}
.progress-dots span.active { background: #c9974a; transform: scale(1.4); }

.scroll-hint {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 150; letter-spacing: 2px; font-size: .78rem; color: #cbb89a; opacity: .75;
}
.scroll-hint.hide { opacity: 0; transition: opacity .4s; }

/* FOOTER */
footer { background:#120c08; padding: 90px 6% 30px; position: relative; z-index: 5; }
.footer-content {
  display:flex; justify-content:space-between; flex-wrap:wrap; gap: 50px; margin-bottom: 50px;
}
.footer-brand h2 { color:#f3ece4; margin-bottom: 14px; }
.footer-brand h2 span { color:#c9974a; }
.footer-brand p { color:#bba98e; font-weight:300; margin-bottom: 6px; }
.newsletter { display:flex; flex-direction:column; gap: 14px; max-width: 320px; }
.newsletter h3 { margin-bottom: 6px; font-size:1.1rem; }
.newsletter input {
  padding: 13px 18px; border-radius: 30px; border: 1px solid #3a2c20; background:#1f1712; color:#f3ece4;
}
.copyright { text-align:center; color:#7d6b56; font-size:.8rem; letter-spacing:1px; }

@media (max-width: 720px) {
  .navbar nav { display:none; }
  .progress-dots { right: 14px; }
}
