:root {
  --ink: #17140f;
  --ink-2: #423b32;
  --gold: #b8873b;
  --gold-deep: #9a6f2c;
  --gold-bright: #e68e13;
  --cream: #f8f4ec;
  --sand: #efe7d8;
  --line: #e7ded0;
  --white: #fffdf9;
  --muted: #8a8175;
  --ok: #2f8f5b;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 10px rgba(23,20,15,.05);
  --shadow: 0 18px 50px -20px rgba(23,20,15,.28);
  --ease: cubic-bezier(.22,.61,.36,1);
  --container: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #fff; }

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

/* Typography helpers */
h1, h2, h3, .display { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.05; letter-spacing: -.01em; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; color: var(--gold); }
.eyebrow {
  display: inline-block; font-size: 11.5px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px;
}
.eyebrow--dark { color: rgba(23,20,15,.6); }
.eyebrow--gold { color: var(--gold-bright); }

.section-head { margin-bottom: 34px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.section-head.center { text-align: center; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* Buttons */
.btn {
  --pad: 15px 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: var(--pad); border-radius: 999px; font-weight: 600; font-size: 14.5px;
  border: 1.5px solid transparent; cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
  font-family: inherit;
}
.btn--gold { background: var(--gold-bright); color: #fff; box-shadow: 0 10px 24px -8px rgba(230,142,19,.6); }
.btn--gold:hover { background: #cf7d0d; transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--block { width: 100%; }

.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center; border: none; background: transparent;
  color: var(--ink); cursor: pointer; border-radius: 999px; position: relative; transition: background .2s;
}
.icon-btn:hover { background: rgba(23,20,15,.06); }

/* Announcement */
.announce { background: var(--ink); color: var(--cream); overflow: hidden; font-size: 12px; letter-spacing: .04em; }
.announce__track { display: flex; gap: 48px; white-space: nowrap; padding: 9px 0; width: max-content; animation: marq 28s linear infinite; }
.announce__track span { opacity: .85; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ===== Top utility bar ===== */
.topbar2 { background: var(--ink); color: rgba(255,253,249,.85); font-size: 13px; position: relative; z-index: 61; }
.topbar2__inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar2__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: inherit; }
.topbar2__phone svg { color: #25D366; }

/* flag language dropdown */
.langdd { position: relative; }
.langdd__btn { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: none; color: inherit; cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 500; padding: 6px 4px; }
.langdd__btn img, .langdd__menu img { width: 20px; height: 20px; border-radius: 999px; object-fit: cover; flex: 0 0 auto; }
.langdd__btn i { font-size: 9px; opacity: .7; transition: transform .2s; font-style: normal; }
.langdd.is-open .langdd__btn i { transform: rotate(180deg); }
.langdd__menu { position: absolute; top: calc(100% + 8px); right: 0; background: #fff; color: var(--ink); border-radius: 12px; box-shadow: var(--shadow); padding: 6px; min-width: 190px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s var(--ease); z-index: 70; }
.langdd.is-open .langdd__menu { opacity: 1; visibility: visible; transform: none; }
.langdd__menu button { display: flex; align-items: center; gap: 11px; width: 100%; background: transparent; border: none; padding: 11px 12px; border-radius: 8px; cursor: pointer; font-family: inherit; font-size: 14.5px; color: var(--ink); text-align: left; }
.langdd__menu button:hover { background: var(--sand); }
.langdd__menu button .chk { margin-left: auto; color: var(--ok); opacity: 0; font-weight: 700; }
.langdd__menu button.is-active .chk { opacity: 1; }

/* ===== Main header (dark) ===== */
.header { position: sticky; top: 0; z-index: 60; background: var(--ink); color: var(--cream); }
.header__inner { display: flex; align-items: center; gap: 26px; height: 84px; }
.brand img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.header__search { flex: 1; max-width: 720px; position: relative; }
.header__search input { width: 100%; height: 50px; border-radius: 999px; border: none; padding: 0 56px 0 22px; font-family: inherit; font-size: 15px; background: #fff; color: var(--ink); }
.header__search input:focus { outline: 2px solid var(--gold-bright); }
.header__search input::placeholder { color: var(--muted); }
.header__search button { position: absolute; right: 6px; top: 6px; width: 38px; height: 38px; border-radius: 999px; border: none; background: var(--gold-bright); color: #fff; cursor: pointer; display: grid; place-items: center; }
.header__actions { display: flex; align-items: center; gap: 22px; }
.haction { display: flex; flex-direction: column; align-items: center; gap: 3px; background: transparent; border: none; color: var(--cream); cursor: pointer; font-family: inherit; font-size: 11.5px; font-weight: 500; position: relative; text-decoration: none; transition: color .2s; }
.haction:hover { color: var(--gold-2); }
.haction .cart-count { position: absolute; top: -7px; right: 4px; background: var(--gold-bright); color: #fff; font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 999px; display: grid; place-items: center; padding: 0 3px; }
.header__burger { display: none; flex-direction: column; gap: 4px; }
.header__burger span { width: 20px; height: 1.8px; background: var(--cream); }
.currency { border: 1px solid rgba(255,253,249,.22); background: transparent; border-radius: 999px; padding: 9px 12px; font-weight: 600; font-size: 13px; font-family: inherit; cursor: pointer; color: var(--cream); }
.currency option { color: var(--ink); }

/* ===== Category bar (gold) ===== */
.catbar { position: sticky; top: 84px; z-index: 55; background: var(--gold-bright); color: #fff; box-shadow: 0 6px 18px -10px rgba(230,142,19,.8); }
.catbar__inner { display: flex; align-items: center; height: 52px; }
.catbar__all { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; padding-right: 20px; margin-right: 12px; border-right: 1px solid rgba(255,255,255,.35); }
.catbar__links { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; flex: 1; }
.catbar__links::-webkit-scrollbar { display: none; }
.catbar__links a { padding: 8px 15px; border-radius: 8px; font-size: 13px; font-weight: 600; white-space: nowrap; transition: background .15s; letter-spacing: .03em; text-transform: uppercase; }
.catbar__links a:hover, .catbar__links a.is-active { background: rgba(0,0,0,.14); }

/* ===== Category page hero ===== */
.cathero { padding: 40px 0 20px; }
.cathero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.cathero .breadcrumb a { color: var(--gold-deep); font-weight: 600; }
.cathero h1 { font-family: "Fraunces", serif; font-size: clamp(34px, 5vw, 54px); font-weight: 600; letter-spacing: -.02em; }
.cathero .shop__count { display: inline-block; margin-top: 8px; color: var(--muted); font-weight: 500; }

/* Hero — grade com parallax */
.herog { position: relative; height: 100vh; min-height: 620px; max-height: 1000px; overflow: hidden; background: var(--cream); }
.herog__bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: transform .8s var(--ease); will-change: transform; transform: scale(1.08); }
.herog__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 34px); padding: clamp(28px, 5vw, 72px); width: 100%; max-width: 1500px; }
.herog__cell { aspect-ratio: 3/4; overflow: hidden; border-radius: 8px; background: var(--sand); }
.herog__cell img { width: 100%; height: 100%; object-fit: cover; opacity: .72; transition: transform .9s var(--ease), opacity .4s; }
.herog:hover .herog__cell img { opacity: .82; }

.herog__overlay { position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, color-mix(in srgb, var(--cream) 42%, transparent), color-mix(in srgb, var(--cream) 74%, transparent));
}
.herog__center { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 26px; padding: 20px; }
.herog__eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-deep); }
.herog__title { font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(58px, 15vw, 210px); line-height: .86; letter-spacing: -.035em; color: var(--ink); }
.herog__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.herog__bio { position: absolute; left: clamp(20px, 4vw, 52px); bottom: clamp(66px, 9vw, 92px); z-index: 3; max-width: 340px; }
.herog__bio p { font-size: 14.5px; line-height: 1.65; color: var(--ink-2); }
.herog__bio em { font-style: italic; color: var(--gold-deep); font-family: "Fraunces", serif; }

.herog__scroll { position: absolute; right: clamp(20px, 4vw, 52px); bottom: clamp(30px, 5vw, 44px); z-index: 3; display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; }
.herog__scroll span { display: grid; place-items: center; width: 30px; height: 30px; border: 1.5px solid var(--ink); border-radius: 999px; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* Categorias */
.cats { padding: 30px 0 40px; }
.cats__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.cat-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 12px; text-align: center; cursor: pointer; transition: all .28s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.cat-card img { width: 54px; height: 54px; object-fit: contain; transition: transform .3s var(--ease); }
.cat-card:hover img { transform: scale(1.12) rotate(-4deg); }
.cat-card span { font-size: 12.5px; font-weight: 600; letter-spacing: .02em; }

/* Shop grid */
.shop { padding: 40px 0 70px; }
.shop__count { color: var(--muted); font-size: 14px; font-weight: 500; }
.chips { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 30px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex: 0 0 auto; background: transparent; border: 1.5px solid var(--line); color: var(--ink-2); padding: 9px 18px; border-radius: 999px; font-weight: 600; font-size: 13.5px; cursor: pointer; transition: all .2s; font-family: inherit; }
.chip:hover { border-color: var(--gold); color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 22px; }
.card { position: relative; display: flex; flex-direction: column; opacity: 0; transform: translateY(16px); animation: cardIn .5s var(--ease) forwards; }
@keyframes cardIn { to { opacity: 1; transform: none; } }
.card__media {
  position: relative; aspect-ratio: 1/1; background: var(--sand); border-radius: var(--radius-lg);
  overflow: hidden; display: grid; place-items: center; margin-bottom: 14px;
}
.card__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__ico { font-size: 54px; }
.card__tag { position: absolute; top: 12px; left: 12px; background: var(--white); color: var(--gold-deep); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.card__out { position: absolute; top: 12px; right: 12px; background: rgba(23,20,15,.7); color: #fff; font-size: 10px; font-weight: 600; padding: 5px 9px; border-radius: 999px; }
.card__add {
  position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 12px; border: none; border-radius: 999px;
  background: var(--ink); color: var(--cream); font-weight: 600; font-size: 13.5px; cursor: pointer; font-family: inherit;
  opacity: 0; transform: translateY(10px); transition: all .28s var(--ease);
}
.card:hover .card__add { opacity: 1; transform: none; }
.card__add:hover { background: var(--gold-bright); }
.card__cat { font-size: 10.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); }
.card__name { font-size: 14.5px; font-weight: 500; margin: 5px 0 8px; line-height: 1.35; min-height: 39px; }
.card__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.card__price .main { font-family: "Fraunces", serif; font-size: 20px; font-weight: 600; }
.card__price .sub { font-size: 12px; color: var(--muted); }
.grid-empty { grid-column: 1/-1; text-align: center; padding: 60px 0; color: var(--muted); font-family: "Fraunces", serif; font-size: 20px; }
.shop__more { text-align: center; margin-top: 44px; }

/* Story */
.story { background: var(--sand); padding: clamp(50px, 8vw, 96px) 0; }
.story__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__copy h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 20px; }
.story__copy > p { color: var(--ink-2); font-size: 17px; margin-bottom: 24px; }
.story__list { list-style: none; margin-bottom: 30px; display: grid; gap: 12px; }
.story__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.story__list span { color: var(--gold-bright); }

/* Brands marquee */
.brands { padding: clamp(50px, 7vw, 84px) 0 clamp(40px, 6vw, 70px); }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 60px; width: max-content; animation: marq 34s linear infinite; }
.marquee__track img { height: 34px; width: auto; object-fit: contain; filter: grayscale(1) brightness(.4); opacity: .5; transition: all .3s; }
.marquee__track img:hover { filter: none; opacity: 1; }

/* CTA */
.cta { padding: 0 0 clamp(50px, 7vw, 90px); }
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta__card { border-radius: var(--radius-lg); padding: 44px; }
.cta__card h3 { font-size: 30px; margin-bottom: 10px; }
.cta__card p { margin-bottom: 24px; opacity: .85; }
.cta__card--gold { background: linear-gradient(135deg, var(--gold-bright), #f2a63e); color: var(--ink); }
.cta__card--dark { background: var(--ink); color: var(--cream); }
.news { display: flex; gap: 10px; }
.news input { flex: 1; padding: 15px 18px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); border-radius: 999px; color: var(--cream); font-family: inherit; font-size: 14.5px; }
.news input::placeholder { color: rgba(255,253,249,.5); }
.news input:focus { outline: none; border-color: var(--gold-bright); }
.cta__card--dark small { display: block; margin-top: 12px; color: var(--ok); font-weight: 600; min-height: 16px; }

/* Footer */
.footer { background: var(--ink); color: #cbc3b6; padding: clamp(50px, 6vw, 76px) 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 44px; }
.footer__brand img { height: 30px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 16px; }
.footer__brand p { font-size: 14px; max-width: 300px; margin-bottom: 16px; }
.footer__pay { font-size: 12.5px; color: var(--gold); letter-spacing: .04em; }
.mp-social { display: flex; gap: 16px; margin-top: 16px; }
.mp-social a { font-size: 13.5px; font-weight: 600; color: #cbc3b6; transition: color .2s; }
.mp-social a:hover { color: var(--gold-bright); }
.footer__col h5 { color: var(--cream); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; font-weight: 600; }
.footer__col a { display: block; font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--gold-bright); }
.footer__addr { font-size: 14px; margin-bottom: 10px; line-height: 1.6; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; font-size: 12.5px; color: #8a8175; flex-wrap: wrap; gap: 8px; }

/* Drawer */
.drawer { position: fixed; inset: 0; z-index: 80; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(23,20,15,.5); opacity: 0; transition: opacity .3s; }
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: 400px; max-width: 92vw; background: var(--cream); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s var(--ease); box-shadow: var(--shadow); }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 22px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.drawer__empty { text-align: center; color: var(--muted); margin-top: 50px; font-family: "Fraunces", serif; font-size: 18px; }
.citem { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.citem__img { width: 60px; height: 60px; border-radius: var(--radius); background: var(--sand); display: grid; place-items: center; overflow: hidden; flex: 0 0 auto; font-size: 26px; }
.citem__img img { width: 100%; height: 100%; object-fit: contain; }
.citem__info { flex: 1; min-width: 0; }
.citem__info h4 { font-size: 13.5px; font-weight: 600; line-height: 1.35; }
.citem__info .p { color: var(--gold-deep); font-weight: 600; font-size: 14px; margin-top: 3px; font-family: "Fraunces", serif; }
.citem__qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.citem__qty button { width: 26px; height: 26px; border: 1px solid var(--line); background: var(--white); border-radius: 6px; cursor: pointer; font-weight: 700; }
.citem__rm { background: none; border: none; color: var(--muted); cursor: pointer; align-self: flex-start; }
.drawer__foot { padding: 22px 24px; border-top: 1px solid var(--line); }
.drawer__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.drawer__total strong { font-family: "Fraunces", serif; font-size: 26px; }
.drawer__note { display: block; text-align: center; color: var(--muted); font-size: 11.5px; margin-top: 10px; }
.checkout-fields { display: grid; gap: 8px; margin-bottom: 12px; }
.checkout-fields input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; font-size: 14.5px; font-family: inherit; background: var(--white); color: var(--ink); }
.checkout-fields input:focus { outline: none; border-color: var(--gold); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1080px) {
  .cats__grid { grid-template-columns: repeat(4, 1fr); }
  .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .header__inner { flex-wrap: wrap; height: auto; padding-top: 12px; padding-bottom: 12px; gap: 14px; }
  .header__search { order: 3; flex-basis: 100%; max-width: none; }
  .header__search input { height: 46px; }
  .header__actions { gap: 16px; }
  .haction span:not(.cart-count) { display: none; }
  .brand { margin-right: auto; }
  .catbar { top: 0; position: static; }
  .story__inner, .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .herog__grid { grid-template-columns: repeat(3, 1fr); }
  .herog__bio { max-width: 260px; }
}
@media (max-width: 620px) {
  .cats__grid { grid-template-columns: repeat(3, 1fr); }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 20px 14px; }
  .card__add { opacity: 1; transform: none; position: static; margin-top: 10px; }
  .footer__inner { grid-template-columns: 1fr; }
  .section-head--row { align-items: flex-start; }
  .herog { min-height: 560px; }
  .herog__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .herog__bio { position: static; margin: 0 auto; max-width: none; text-align: center; padding: 0 24px; }
  .herog__center { justify-content: center; gap: 20px; padding-bottom: 90px; }
  .herog__scroll { display: none; }
}
