:root{
  --bg: #f4efeb;
  --paper: #f8f4f0;
  --white: #fffdfa;
  --text: #5a3826;
  --text-soft: #8a6b57;
  --line: rgba(90, 56, 38, 0.12);
  --line-soft: rgba(90, 56, 38, 0.08);
  --button: #8a5635;
  --button-text: #fffaf7;
  --shadow: 0 18px 48px rgba(78, 49, 33, 0.08);
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  background: linear-gradient(180deg, #f4efeb 0%, #f7f2ee 100%);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
}

a{
  text-decoration: none;
  color: inherit;
}

img{
  display: block;
  max-width: 100%;
}

.hidden{
  display: none !important;
}

.small{
  font-size: 12px;
}

.muted{
  color: var(--text-soft);
}

body.noScroll{
  overflow: hidden;
}

/* HEADER */
.siteHeader{
  width: min(1280px, 90vw);
  margin: 22px auto 0;
  background: rgba(255,253,250,.92);
  border: 1px solid var(--line-soft);
  border-bottom: none;
}

.siteHeader__inner{
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
}

.brandLogo{
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 4px;
  font-size: 24px;
  color: #5f3b27;
}

.desktopNav{
  display: flex;
  gap: 36px;
  align-items: center;
}

.desktopNav a{
  font-size: 14px;
  color: #6f5647;
}

.headerActions{
  display: flex;
  gap: 10px;
  align-items: center;
}

.headerIconBtn{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
}

.headerIconBtn:hover{
  background: rgba(138, 86, 53, 0.06);
  border-color: rgba(138, 86, 53, 0.12);
}

.topIconSvg{
  width: 18px;
  height: 18px;
  fill: #6d4b38;
}

.cartCount{
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #8a5635;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* PAGE */
.luxPage{
  width: min(1280px, 90vw);
  margin: 0 auto 30px;
  background: rgba(255,253,250,.96);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}

/* HERO */
.luxHero{
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(237,225,216,.94) 0%, rgba(231,214,201,.80) 44%, rgba(230,213,200,.34) 100%);
}

.luxHero__content{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 540px;
}

.luxHero__copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.luxHero__copy h1{
  margin: 16px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 500;
  color: #6b412d;
}

.heroSubtext{
  max-width: 430px;
  font-size: 15px;
  line-height: 1.7;
  color: #8a6d5c;
  margin: 0 0 16px;
}

.heroMiniLine{
  width: 42px;
  height: 1px;
  background: rgba(107,65,45,.28);
}

.heroMiniLine--bottom{
  margin-bottom: 22px;
}

.heroCta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--button);
  color: var(--button-text);
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 700;
  transition: transform .18s ease, opacity .18s ease;
}

.heroCta:hover{
  transform: translateY(-1px);
  opacity: .95;
}

.luxHero__slider{
  position: relative;
  overflow: hidden;
  height: 100%;
}

.luxHero__track{
  display: flex;
  width: max-content;
  height: 100%;
  animation: heroSlide 32s linear infinite;
}

.luxHero__track img{
  width: 340px;
  height: 540px;
  object-fit: cover;
  flex-shrink: 0;
  filter: saturate(.92) brightness(1.02);
}

@keyframes heroSlide{
  from{ transform: translateX(0); }
  to{ transform: translateX(-2040px); }
}

/* TRUST */
.trustStrip{
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #fbf7f3;
}

.trustStrip__inner{
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 16px 20px;
  color: #866958;
  font-size: 13px;
}

/* SECTIONS */
.luxSection{
  padding: 56px 54px;
}

.sectionTitleWrap{
  text-align: center;
  margin-bottom: 28px;
}

.sectionTitle{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 500;
  color: #6a4530;
}

.sectionSubtitle{
  margin: 10px auto 0;
  max-width: 620px;
  color: #947766;
  line-height: 1.7;
  font-size: 14px;
}

/* TOOLBAR */
.shopToolbar{
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.shopSearch{
  width: min(540px, 92vw);
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fffaf7;
  outline: none;
  color: #6b4835;
}

.shopSearch::placeholder{
  color: #a28674;
}

.shopSortWrap{
  display: inline-flex;
  align-items: center;
}

.shopSort{
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fffaf7;
  color: #6b4835;
  outline: none;
  min-width: 220px;
  cursor: pointer;
}

/* GRID */
.luxGrid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.luxGrid--featured{
  gap: 22px;
}

/* PRODUCT CARD */
.product{
  background: transparent;
  border: none;
  box-shadow: none;
  min-height: auto;
  position: relative;
}

.product__imgWrap{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #f7efe8;
}

.product__img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .45s ease;
}

.product:hover .product__img{
  transform: scale(1.04);
}

.product__overlay{
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: center;
  padding: 0 14px 16px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .28s ease, transform .28s ease;
}

.product:hover .product__overlay{
  opacity: 1;
  transform: translateY(0);
}

.quickBtn{
  min-width: 132px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,248,244,.92);
  color: #7b5945;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
  cursor: pointer;
}

.product__body{
  padding: 14px 6px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.tag{
  display: none;
}

.product__title{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  color: #6b4733;
}

.product__desc{
  color: #9a7c68;
  line-height: 1.55;
  font-size: 13px;
  max-width: 240px;
  min-height: 40px;
}

.priceRow{
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.priceRow strong{
  font-size: 15px;
  color: #6a4530;
}

.stock{
  font-size: 12px;
  color: #a28372;
}

.product__actions{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  width: 100%;
  align-items: center;
}

.product__actions .btn{
  min-width: 160px;
}

/* BANNERS */
.editorialBanner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 370px;
  background: #d9c1b1;
}

.editorialBanner__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorialBanner__content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 58px;
  color: #fff6f0;
}

.editorialBanner__content h2{
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1.06;
  font-weight: 500;
}

.editorialBanner__content p{
  max-width: 470px;
  line-height: 1.75;
  color: rgba(255,248,242,.84);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ABOUT */
.aboutEditorial{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  padding: 66px 54px;
}

.aboutEditorial__copy h2{
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 500;
  color: #6a4530;
}

.aboutEditorial__copy p{
  max-width: 520px;
  color: #8e7261;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.aboutEditorial__image img{
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  object-fit: cover;
  border: 1px solid var(--line-soft);
}

/* CONTACT */
.contactLuxury{
  padding: 0 54px 64px;
}

.contactLuxury__box{
  border-top: 1px solid var(--line-soft);
  padding-top: 38px;
  text-align: center;
}

.contactLuxury__box h2{
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 500;
}

.contactLuxury__box p{
  max-width: 720px;
  margin: 0 auto 22px;
  color: #8b6f5f;
  line-height: 1.75;
}

.contactLuxury__actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f6efea;
  color: #7a5947;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1px;
  transition: transform .18s ease, background .18s ease;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn--primary{
  background: var(--button);
  color: var(--button-text);
  border-color: transparent;
}

.btn--ghost{
  background: #f9f3ef;
}

.btn--full{
  width: 100%;
}

.lightBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fffdfa;
  color: #7a563f;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
}

.softBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #f3ebe6;
  color: #8a6a56;
  font-size: 12px;
  letter-spacing: 1px;
  border: 1px solid rgba(122,86,63,.08);
}

/* EMPTY */
.empty{
  text-align: center;
  padding: 40px 0 10px;
}

.empty h3{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

/* DRAWER */
.drawer{
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(70, 48, 35, 0.16);
  z-index: 100;
}

.drawer.open{
  display: block;
}

.drawer__content{
  position: absolute;
  right: 0;
  top: 0;
  width: min(430px, 94vw);
  height: 100%;
  background: #fffdfa;
  border-left: 1px solid var(--line-soft);
  box-shadow: 0 28px 60px rgba(64, 41, 28, 0.12);
  display: flex;
  flex-direction: column;
}

.drawer__header{
  padding: 18px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__header h2{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.cartList{
  list-style: none;
  padding: 14px 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: auto;
  flex: 1;
}

.cartItem{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  background: #fcf8f4;
}

.qty{
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty button{
  width: 34px;
  height: 34px;
  min-width: auto;
  padding: 0;
  border-radius: 12px;
}

.cartFooter{
  padding: 16px;
  border-top: 1px solid var(--line-soft);
}

.cartTotal{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

/* MODAL */
.modal{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(72, 50, 38, 0.18);
  z-index: 140;
  backdrop-filter: blur(4px);
}

.modal__box{
  width: min(760px, 96vw);
  max-height: 92vh;
  overflow: auto;
  background: #fffdfa;
  border: 1px solid var(--line-soft);
  box-shadow: 0 30px 70px rgba(72, 50, 38, 0.12);
}

.modal__header{
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__header h3{
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.accountSection,
.checkoutBody,
.checkoutSummary{
  padding: 18px 20px;
}

.formGrid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.formGrid .full{
  grid-column: 1 / -1;
}

.input,
textarea.input{
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fffaf7;
  color: #6d4b38;
  outline: none;
}

.input:focus,
textarea.input:focus{
  border-color: rgba(138,86,53,.28);
}

label{
  display: block;
  margin-bottom: 6px;
  color: #7d6150;
  font-size: 13px;
}

.checkoutSummary__card{
  border: 1px solid var(--line-soft);
  background: #fcf7f3;
  padding: 14px;
}

.summaryRow{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.modal__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.userCard{
  border: 1px solid var(--line-soft);
  background: #fcf7f3;
  padding: 16px;
  margin-bottom: 14px;
}

.userCard__name{
  font-size: 22px;
  font-family: Georgia, "Times New Roman", serif;
}

.userCard__mail{
  color: #8d6f5e;
  margin-top: 4px;
}

.ordersBlock{
  margin-top: 22px;
}

.ordersBlock h4{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 10px;
}

.ordersList{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.orderCard{
  border: 1px solid var(--line-soft);
  background: #fcf7f3;
  padding: 12px;
}

/* MOBILE MENU */
.menuBtn{
  position: fixed;
  top: 24px;
  left: 18px;
  z-index: 130;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(122,86,63,.10);
  background: rgba(255,252,249,.96);
  box-shadow: 0 10px 24px rgba(72, 50, 38, 0.08);
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  cursor: pointer;
}

.menuBtn span{
  width: 100%;
  height: 2px;
  background: #6c4a37;
}

.mobileMenu{
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  max-width: 88vw;
  height: 100vh;
  background: #fffdfa;
  border-right: 1px solid var(--line-soft);
  box-shadow: 0 24px 60px rgba(72, 50, 38, 0.10);
  z-index: 135;
  padding: 22px 18px;
  transition: left .28s ease;
  display: flex;
  flex-direction: column;
}

.mobileMenu.open{
  left: 0;
}

.mobileMenu__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mobileMenu__brand{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.mobileMenu__sub{
  color: #8e7261;
  font-size: 13px;
}

.iconClose{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: #fff;
  cursor: pointer;
}

.mobileMenu__nav{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menuLink{
  padding: 12px 14px;
  border-radius: 14px;
  color: #6d4b38;
}

.menuLink:hover{
  background: rgba(138,86,53,.06);
}

.mobileMenu__actions{
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menuOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.16);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
  z-index: 132;
}

.menuOverlay.show{
  opacity: 1;
  pointer-events: auto;
}

/* REVEAL */
/* REVEAL SEGURO */
.reveal,
.revealImg{
  opacity: 1;
  transform: none;
}

body.reveal-ready .reveal{
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity .9s cubic-bezier(.22,1,.36,1),
    transform .9s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

body.reveal-ready .reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

body.reveal-ready .reveal--left{
  transform: translateX(-46px);
}

body.reveal-ready .reveal--left.is-visible{
  transform: translateX(0);
}

body.reveal-ready .reveal--right{
  transform: translateX(46px);
}

body.reveal-ready .reveal--right.is-visible{
  transform: translateX(0);
}

.reveal-delay-1{ transition-delay: .08s; }
.reveal-delay-2{ transition-delay: .16s; }
.reveal-delay-3{ transition-delay: .24s; }

body.reveal-ready .revealImg{
  opacity: 0;
  transform: scale(.96) translateY(30px);
  transition:
    opacity 1s cubic-bezier(.22,1,.36,1),
    transform 1s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

body.reveal-ready .revealImg.is-visible{
  opacity: 1;
  transform: scale(1) translateY(0);
}

.parallaxSoft{
  transform: translateY(0);
  transition: transform .15s linear;
}
/* RESPONSIVE */
@media (max-width: 1100px){
  .luxGrid{
    grid-template-columns: repeat(2, 1fr);
  }

  .editorialBanner,
  .aboutEditorial,
  .luxHero__content{
    grid-template-columns: 1fr;
  }

  .luxHero__slider{
    height: 360px;
  }

  .luxHero__track img{
    width: 280px;
    height: 360px;
  }

  @keyframes heroSlide{
    from{ transform: translateX(0); }
    to{ transform: translateX(-1680px); }
  }

  .editorialBanner__content,
  .aboutEditorial{
    padding: 42px 34px;
  }

  .aboutEditorial__image img{
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 820px){
  .desktopNav{
    display: none;
  }

  .menuBtn{
    display: flex;
  }

  .siteHeader{
    width: min(96vw, 1280px);
    margin-top: 12px;
  }

  .siteHeader__inner{
    padding: 0 18px 0 72px;
  }

  .luxPage{
    width: min(96vw, 1280px);
  }

  .luxSection,
  .contactLuxury,
  .aboutEditorial{
    padding-left: 20px;
    padding-right: 20px;
  }

  .editorialBanner__content{
    padding: 34px 20px;
  }

  .editorialBanner__content h2,
  .aboutEditorial__copy h2{
    font-size: 38px;
  }

  .sectionTitle{
    font-size: 34px;
  }

  .formGrid{
    grid-template-columns: 1fr;
  }

  .shopToolbar{
    flex-direction: column;
    align-items: stretch;
  }

  .shopSearch,
  .shopSort{
    width: 100%;
    min-width: auto;
  }

  .trustStrip__inner{
    gap: 14px;
    font-size: 12px;
  }
}

@media (max-width: 560px){
  .luxGrid{
    grid-template-columns: 1fr;
  }

  .luxHero{
    min-height: auto;
  }

  .luxHero__copy{
    padding: 46px 18px 30px;
  }

  .luxHero__copy h1{
    font-size: 44px;
  }

  .heroSubtext{
    font-size: 14px;
    max-width: 300px;
  }

  .luxHero__slider{
    height: 280px;
  }

  .luxHero__track img{
    width: 220px;
    height: 280px;
  }

  @keyframes heroSlide{
    from{ transform: translateX(0); }
    to{ transform: translateX(-1320px); }
  }

  .brandLogo{
    font-size: 20px;
    letter-spacing: 3px;
  }

  .siteHeader__inner{
    min-height: 62px;
  }

  .sectionTitle{
    font-size: 30px;
  }

  .editorialBanner__content h2,
  .aboutEditorial__copy h2{
    font-size: 32px;
  }

  .product__title{
    font-size: 20px;
  }

  .product__actions .btn{
    width: 100%;
    max-width: 240px;
  }

  .contactLuxury__actions{
    flex-direction: column;
    align-items: center;
  }

  .contactLuxury__actions .heroCta,
  .contactLuxury__actions .softBtn{
    width: 100%;
    max-width: 260px;
  }
}

@media (prefers-reduced-motion: reduce){
  .reveal,
  .revealImg,
  .parallaxSoft,
  .luxHero__track,
  .product__img,
  .product__overlay{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}