/* ============================================================
   BURNI — Design System v2 (NovoDesign)
   Fontes: Cormorant Garamond + Jost
   Cores: Borgonha + Salmão + Creme
   ============================================================ */

:root {
  --burgundy:       #5C0A0A;
  --burgundy-deep:  #3D0707;
  --burgundy-mid:   #7A1010;
  --salmon:         #E8867A;
  --salmon-light:   #F0A99F;
  --salmon-pale:    #F7D7D3;
  --cream:          #FAF5F0;
  --cream-dark:     #F0E8E0;
  --warm-brown:     #3D1008;
  --text-dark:      #1A0A08;
  --text-mid:       #5C3A32;
  --text-light:     #9B7060;
  --white:          #FFFFFF;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Jost', sans-serif;
  background:var(--cream);
  color:var(--text-dark);
  overflow-x:hidden;
}

/* ── NOISE TEXTURE ── */
body::before {
  content:'';
  position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events:none; z-index:9999; opacity:.35;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.4rem 4rem;
  background:rgba(250,245,240,0.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(92,10,10,0.1);
  transition:padding .3s;
}
.nav-logo {
  font-family:'Cormorant Garamond',serif;
  font-size:1.75rem; font-weight:400;
  letter-spacing:.3em; text-transform:uppercase;
  color:var(--burgundy-deep); text-decoration:none;
}
.nav-links { display:flex; gap:2.5rem; list-style:none; }
.nav-links li { margin:0; }
.nav-links a {
  text-decoration:none; color:var(--text-dark); font-size:.7rem;
  letter-spacing:.2em; text-transform:uppercase; transition:color .3s;
}
.nav-links a:hover { color:var(--burgundy); }

.nav-search {
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-right: 1rem;
}
.nav-search input {
  border: 1px solid rgba(0,0,0,0.1); border-radius: 20px;
  padding: 0.4rem 1rem 0.4rem 2.2rem; outline: none; transition: all 0.3s;
  width: 150px; font-family: 'Jost', sans-serif; font-size: 0.8rem;
  background: var(--cream);
}
.nav-search input:focus {
  width: 200px; border-color: var(--burgundy); background: var(--white);
}
.nav-search svg {
  position: absolute; left: 10px; color: var(--text-light); pointer-events: none; width: 14px;
}

.nav-actions { display:flex; align-items:center; gap:1.2rem; }
.nav-icon {
  background:none; border:none; cursor:pointer;
  color:var(--text-mid); transition:color .3s; display:none;
}
.nav-icon:hover { color:var(--burgundy); }

.auth-btn-icon {
  background: none; border: none; cursor: pointer; color: var(--text-mid);
  transition: color .3s; display: flex; align-items: center; justify-content: center;
  padding: .4rem; text-decoration: none;
}
.auth-btn-icon:hover { color: var(--burgundy); }

.cart-btn {
  display:flex; align-items:center; gap:.5rem;
  font-family:'Jost',sans-serif; font-size:.7rem;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--white); background:var(--burgundy);
  border:none; padding:.65rem 1.4rem;
  cursor:pointer; transition:background .3s;
  position:relative;
}
.cart-btn:hover { background:var(--burgundy-mid); }
.cart-badge {
  position:absolute; top:-.4rem; right:-.4rem;
  width:18px; height:18px; border-radius:50%;
  background:var(--salmon); color:var(--white);
  font-size:.6rem; display:none; align-items:center;
  justify-content:center; font-weight:500;
}
.cart-badge.visible { display:flex; }

/* Mobile menu */
.mobile-menu {
  display:none; position:fixed; inset:0; z-index:150;
  background:var(--cream); padding:5rem 2rem 2rem;
  flex-direction:column; gap:1rem; overflow-y: auto;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-size:.85rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--text-mid); text-decoration:none; transition:color .3s;
  border-bottom:1px solid rgba(92,10,10,.08); padding-bottom:1rem;
}
.mobile-menu a:hover { color:var(--burgundy); }
.mobile-menu-close {
  position:absolute; top:1.5rem; right:2rem;
  background:none; border:none; font-size:1.2rem;
  color:var(--text-light); cursor:pointer;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  min-height:100vh;
  display:grid; grid-template-columns:1fr 1fr;
  position:relative; overflow:hidden;
}
.hero-left {
  display:flex; flex-direction:column; justify-content:center;
  padding:10rem 4rem 6rem;
}
.hero-tag {
  font-size:.65rem; letter-spacing:.32em; text-transform:uppercase;
  color:var(--salmon); margin-bottom:1.8rem;
  opacity:0; animation:fadeUp 1s .2s forwards;
}
.hero-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3rem,6vw,5.2rem); font-weight:300;
  line-height:1.08; color:var(--burgundy-deep);
  margin-bottom:2rem;
  opacity:0; animation:fadeUp 1s .4s forwards;
}
.hero-title em { font-style:italic; color:var(--burgundy-mid); }
.hero-desc {
  font-size:.88rem; line-height:1.85; color:var(--text-light);
  max-width:380px; font-weight:300; margin-bottom:3rem;
  opacity:0; animation:fadeUp 1s .6s forwards;
}
.hero-ctas {
  display:flex; gap:1rem; align-items:center;
  opacity:0; animation:fadeUp 1s .8s forwards;
}
.hero-right {
  background:var(--cream-dark); position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.hero-circle {
  position:absolute; width:520px; height:520px; border-radius:50%;
  border:1px solid rgba(92,10,10,0.1);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.hero-circle-2 {
  position:absolute; width:380px; height:380px; border-radius:50%;
  border:1px solid rgba(92,10,10,.07);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.candle-art { width:220px; opacity:0; animation:float 6s ease-in-out infinite, fadeIn 1.2s .5s forwards; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-scroll {
  position:absolute; bottom:2.5rem; left:4rem;
  display:flex; align-items:center; gap:.8rem;
  font-size:.62rem; letter-spacing:.28em; text-transform:uppercase;
  color:var(--text-light);
  opacity:0; animation:fadeUp 1s 1.4s forwards;
}
.scroll-line {
  width:40px; height:1px; background:var(--salmon-pale); position:relative; overflow:hidden;
}
.scroll-line::after {
  content:''; position:absolute; left:-100%; top:0;
  height:100%; width:100%; background:var(--salmon);
  animation:scrollLine 2s 2s infinite;
}
@keyframes scrollLine { 0%{left:-100%} 100%{left:100%} }
.hero-accent {
  position:absolute; bottom:3rem; right:3rem;
  font-family:'Cormorant Garamond',serif; font-size:.78rem;
  letter-spacing:.15em; color:var(--text-light);
  writing-mode:vertical-rl;
  opacity:0; animation:fadeIn 1s 1.2s forwards;
}

/* ── BAND ── */
.band { background:var(--burgundy-deep); padding:1.1rem 0; overflow:hidden; }
.band-track {
  display:flex; gap:3rem; white-space:nowrap;
  animation:marquee 22s linear infinite;
}
.band-item {
  font-size:.65rem; letter-spacing:.3em; text-transform:uppercase;
  color:var(--salmon-pale); display:flex; align-items:center; gap:1rem; flex-shrink:0;
}
.band-dot { width:4px; height:4px; border-radius:50%; background:var(--salmon); }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════════════════════════
   INTRO
══════════════════════════════════════ */
#intro {
  padding:8rem 4rem; display:grid;
  grid-template-columns:1fr 1fr; gap:6rem;
  align-items:center; max-width:1200px; margin:0 auto;
}
.intro-label {
  font-size:.63rem; letter-spacing:.3em; text-transform:uppercase;
  color:var(--salmon); margin-bottom:1.5rem;
}
.intro-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,3.5vw,3rem); font-weight:300;
  line-height:1.3; color:var(--burgundy-deep); margin-bottom:2rem;
}
.intro-title em { font-style:italic; color:var(--burgundy-mid); }
.intro-text {
  font-size:.86rem; line-height:1.95; color:var(--text-light);
  font-weight:300; margin-bottom:1.5rem;
}
.intro-stats {
  display:flex; gap:3rem; padding-top:2rem;
  border-top:1px solid rgba(92,10,10,.12);
}
.stat-num {
  font-family:'Cormorant Garamond',serif; font-size:2.4rem;
  font-weight:300; color:var(--burgundy); line-height:1; display:block;
}
.stat-label {
  font-size:.62rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--text-light); margin-top:.3rem;
}
.intro-visual { position:relative; height:480px; }
.intro-img-main {
  position:absolute; right:0; top:0; width:78%; height:88%;
  background:var(--cream-dark); border:1px solid rgba(92,10,10,.1);
  display:flex; align-items:center; justify-content:center;
}
.intro-img-accent {
  position:absolute; left:0; bottom:0; width:46%; height:50%;
  background:var(--burgundy-deep);
  display:flex; align-items:center; justify-content:center; padding:2rem;
}
.intro-img-accent-text {
  font-family:'Cormorant Garamond',serif; font-size:1.2rem;
  font-style:italic; color:var(--salmon-pale); line-height:1.5; text-align:center;
}

/* ══════════════════════════════════════
   PRODUCTS
══════════════════════════════════════ */
#produtos { padding:8rem 4rem; background:var(--white); }
.section-header {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:3.5rem; max-width:1200px; margin-left:auto; margin-right:auto;
}
.section-label {
  font-size:.62rem; letter-spacing:.3em; text-transform:uppercase;
  color:var(--salmon); margin-bottom:.8rem;
}
.section-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.8rem,3vw,2.6rem); font-weight:300; color:var(--burgundy-deep);
}
.section-title em { font-style:italic; color:var(--burgundy-mid); }
.view-all {
  font-size:.68rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--burgundy); text-decoration:none;
  border-bottom:1px solid var(--salmon-light); padding-bottom:2px;
  transition:border-color .3s;
}
.view-all:hover { border-color:var(--burgundy); }

.filter-tabs {
  display:flex; max-width:1200px; margin:0 auto 3rem;
  border-bottom:1px solid rgba(92,10,10,.1);
}
.filter-tab {
  font-size:.68rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--text-light); background:none; border:none;
  padding:.8rem 1.6rem; cursor:pointer; position:relative;
  transition:color .3s; font-family:'Jost',sans-serif;
}
.filter-tab.active { color:var(--burgundy-deep); }
.filter-tab.active::after {
  content:''; position:absolute; bottom:-1px; left:0; right:0;
  height:1.5px; background:var(--burgundy);
}

.product-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:2.5rem; max-width:1200px; margin:0 auto;
}
.product-card { cursor:pointer; position:relative; }
.product-img {
  width:100%; aspect-ratio:4/5;
  background:var(--cream-dark); overflow:hidden;
  position:relative; margin-bottom:1.4rem;
  display:flex; align-items:center; justify-content:center;
  transition:background .4s;
}
.product-card:hover .product-img { background:var(--salmon-pale); }
.product-card:hover .product-hover-img { opacity: 1 !important; transform: scale(1.02); }
.product-hover-img { transition: all 0.5s ease !important; object-fit: cover; transform: scale(1); }
.product-badge {
  position:absolute; top:1rem; left:1rem;
  background:var(--burgundy); color:var(--white);
  font-size:.58rem; letter-spacing:.2em; text-transform:uppercase;
  padding:.3rem .7rem; z-index:1;
}
.product-badge.new { background:var(--burgundy-mid); }
.product-quick-add {
  position:absolute; bottom:1rem; left:1rem; right:1rem;
  background:var(--burgundy); color:var(--white);
  border:none; font-family:'Jost',sans-serif;
  font-size:.63rem; letter-spacing:.2em; text-transform:uppercase;
  padding:.85rem; cursor:pointer;
  opacity:0; transform:translateY(8px);
  transition:opacity .3s, transform .3s; z-index:2;
}
.product-card:hover .product-quick-add { opacity:1; transform:translateY(0); }
.product-category {
  font-size:.6rem; letter-spacing:.25em; text-transform:uppercase;
  color:var(--salmon); margin-bottom:.4rem;
}
.product-name {
  font-family:'Cormorant Garamond',serif; font-size:1.22rem;
  font-weight:400; color:var(--burgundy-deep); margin-bottom:.3rem;
}
.product-scent {
  font-size:.8rem; color:var(--text-light); font-weight:300;
  margin-bottom:.8rem; font-style:italic; font-family:'Cormorant Garamond',serif;
}
.product-footer { display:flex; justify-content:space-between; align-items:center; }
.product-price {
  font-family:'Cormorant Garamond',serif; font-size:1.25rem;
  font-weight:400; color:var(--burgundy-deep);
}
.variant-dot {
  width:16px; height:16px; border-radius:50%;
  border:1px solid rgba(92,10,10,.2);
  cursor:pointer; transition:transform .2s;
}
.variant-dot:hover { transform:scale(1.15); }
.product-variants { display:flex; gap:.4rem; }

/* ── BANNER ── */
#banner {
  background:var(--burgundy-deep); padding:7rem 4rem;
  display:grid; grid-template-columns:1fr 1fr; gap:5rem;
  align-items:center; position:relative; overflow:hidden;
}
#banner::before {
  content:'BURNI';
  position:absolute; font-family:'Cormorant Garamond',serif;
  font-size:20vw; font-weight:300; color:rgba(255,255,255,.03);
  top:50%; left:50%; transform:translate(-50%,-50%);
  white-space:nowrap; letter-spacing:.3em;
}
.banner-label {
  font-size:.63rem; letter-spacing:.3em; text-transform:uppercase;
  color:var(--salmon); margin-bottom:1.5rem;
}
.banner-title {
  font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,4vw,3.4rem);
  font-weight:300; color:var(--cream); line-height:1.2; margin-bottom:2rem;
}
.banner-title em { font-style:italic; color:var(--salmon-light); }
.banner-text {
  font-size:.86rem; line-height:1.9; color:rgba(250,245,240,.55);
  font-weight:300; margin-bottom:2.5rem;
}
.banner-right { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.banner-feature {
  padding:2rem; border:1px solid rgba(250,245,240,.1);
  transition:border-color .3s;
}
.banner-feature:hover { border-color:rgba(250,245,240,.25); }
.banner-feature-icon { width:32px; height:32px; margin-bottom:1rem; color:var(--salmon); }
.banner-feature-title {
  font-family:'Cormorant Garamond',serif; font-size:1.08rem;
  color:var(--cream); margin-bottom:.5rem;
}
.banner-feature-text {
  font-size:.76rem; line-height:1.7; color:rgba(250,245,240,.45); font-weight:300;
}

/* ── PERSONALIZADOS SLIDER ── */
.banner-slider-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(250,245,240,.1);
  background: var(--burgundy-deep);
}
.banner-slider-track {
  display: flex;
  height: 100%;
  width: calc(300px * 4); /* 2 items * 2 for loop */
  animation: bannerSlide 18s linear infinite;
}
.banner-slider-track:hover {
  animation-play-state: paused;
}
.banner-slide-item {
  width: 300px;
  height: 100%;
  flex-shrink: 0;
  padding: 0.5rem;
}
.banner-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.4s;
}
.banner-slide-item:hover img {
  filter: grayscale(0%) contrast(1.2);
}

@keyframes bannerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-300px * 2)); }
}

/* ── INSTAGRAM ── */
#instagram { padding:8rem 4rem; text-align:center; }
.instagram-header { margin-bottom:3rem; }
.instagram-handle {
  font-family:'Cormorant Garamond',serif; font-size:1.08rem; display: inline-block;
  font-style:italic; color:var(--text-light); margin-top:.5rem; text-decoration: none; transition: color .3s;
}
.instagram-handle:hover { color:var(--burgundy); }
.instagram-grid {
  display:grid; grid-template-columns:repeat(5,1fr); gap:1rem;
  max-width:1200px; margin:0 auto 2.5rem;
}
.insta-tile {
  aspect-ratio:1; overflow:hidden; position:relative; cursor:pointer;
}
.insta-tile::after {
  content:''; position:absolute; inset:0;
  background:rgba(61,7,7,0); transition:background .3s;
}
.insta-tile:hover::after { background:rgba(61,7,7,.18); }

/* ── NEWSLETTER ── */
#newsletter {
  background:var(--cream-dark); padding:7rem 4rem; text-align:center;
  border-top:1px solid rgba(92,10,10,.08);
}
.newsletter-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.8rem,3vw,2.5rem); font-weight:300;
  color:var(--burgundy-deep); margin-bottom:1rem;
}
.newsletter-title em { font-style:italic; color:var(--burgundy-mid); }
.newsletter-text { font-size:.86rem; color:var(--text-light); font-weight:300; margin-bottom:2.5rem; }
.newsletter-form { display:flex; max-width:440px; margin:0 auto; }
.newsletter-input {
  flex:1; padding:1rem 1.4rem; font-family:'Jost',sans-serif; font-size:.82rem;
  color:var(--text-dark); background:var(--white);
  border:1px solid rgba(92,10,10,.18); border-right:none; outline:none;
  font-weight:300; transition:border-color .3s;
}
.newsletter-input::placeholder { color:var(--text-light); }
.newsletter-input:focus { border-color:var(--burgundy); }
.newsletter-submit {
  font-family:'Jost',sans-serif; font-size:.68rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--white); background:var(--burgundy);
  border:none; padding:1rem 1.8rem; cursor:pointer;
  transition:background .3s; white-space:nowrap;
}
.newsletter-submit:hover { background:var(--burgundy-mid); }

/* ── BUTTONS ── */
.btn-primary {
  font-family:'Jost',sans-serif; font-size:.7rem;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--white); background:var(--burgundy);
  border:none; padding:1rem 2.2rem;
  cursor:pointer; text-decoration:none;
  transition:background .3s, transform .3s; display:inline-block;
}
.btn-primary:hover { background:var(--burgundy-mid); transform:translateY(-2px); }
.btn-secondary {
  font-family:'Jost',sans-serif; font-size:.7rem;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--burgundy); border:1px solid var(--salmon-light);
  padding:1rem 2.2rem; cursor:pointer; text-decoration:none;
  background:transparent; transition:border-color .3s, color .3s;
  display:inline-block;
}
.btn-secondary:hover { border-color:var(--burgundy); color:var(--burgundy-deep); }
.btn-light {
  font-family:'Jost',sans-serif; font-size:.7rem;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--burgundy-deep); background:var(--cream);
  border:none; padding:1rem 2.2rem; cursor:pointer;
  text-decoration:none; transition:background .3s; display:inline-block;
}
.btn-light:hover { background:var(--salmon-pale); }

/* ── FOOTER ── */
footer { background:var(--burgundy-deep); padding:5rem 4rem 2.5rem; }
.footer-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:4rem;
  padding-bottom:4rem; border-bottom:1px solid rgba(250,245,240,.1); margin-bottom:2.5rem;
}
.footer-brand-name {
  font-family:'Cormorant Garamond',serif; font-size:2rem;
  font-weight:300; letter-spacing:.28em; text-transform:uppercase;
  color:var(--cream); margin-bottom:1rem;
}
.footer-brand-desc {
  font-size:.8rem; line-height:1.85; color:rgba(250,245,240,.45);
  font-weight:300; margin-bottom:2rem;
}
.footer-social { display:flex; gap:1rem; }
.social-link {
  width:36px; height:36px; border:1px solid rgba(250,245,240,.18);
  display:flex; align-items:center; justify-content:center;
  color:rgba(250,245,240,.45); text-decoration:none; transition:border-color .3s,color .3s;
}
.social-link:hover { border-color:var(--salmon); color:var(--salmon); }
.footer-col-title {
  font-size:.62rem; letter-spacing:.3em; text-transform:uppercase;
  color:var(--salmon); margin-bottom:1.5rem;
}
.footer-links { list-style:none; display:flex; flex-direction:column; gap:.8rem; }
.footer-links a {
  font-size:.8rem; color:rgba(250,245,240,.45);
  text-decoration:none; font-weight:300; transition:color .3s;
}
.footer-links a:hover { color:var(--cream); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; }
.footer-copy { font-size:.7rem; color:rgba(250,245,240,.25); letter-spacing:.1em; }
.footer-legal { display:flex; gap:2rem; }
.footer-legal a {
  font-size:.68rem; color:rgba(250,245,240,.25);
  text-decoration:none; transition:color .3s;
}
.footer-legal a:hover { color:rgba(250,245,240,.6); }

/* ══════════════════════════════════════
   CART DRAWER
══════════════════════════════════════ */
.overlay {
  position:fixed; inset:0; background:rgba(26,10,8,0);
  z-index:199; pointer-events:none; transition:background .4s;
}
.overlay.open { background:rgba(26,10,8,.5); pointer-events:all; }

.cart-drawer {
  position:fixed; top:0; right:-480px;
  width:480px; height:100vh;
  background:var(--white); z-index:200;
  display:flex; flex-direction:column;
  box-shadow:-24px 0 60px rgba(26,10,8,.12);
  transition:right .45s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { right:0; }

.drawer-header {
  display:flex; justify-content:space-between; align-items:center;
  padding:1.8rem 2rem; border-bottom:1px solid rgba(92,10,10,.1);
  background:var(--cream);
}
.drawer-title {
  font-family:'Cormorant Garamond',serif; font-size:1.5rem;
  font-weight:400; color:var(--burgundy-deep);
}
.drawer-close {
  background:none; border:none; cursor:pointer;
  color:var(--text-light); font-size:1.1rem;
  width:32px; height:32px; display:flex; align-items:center; justify-content:center;
  transition:color .3s;
}
.drawer-close:hover { color:var(--burgundy); }

.cart-body { flex:1; overflow-y:auto; padding:1.5rem 2rem; }

.cart-item {
  display:grid; grid-template-columns:72px 1fr auto;
  gap:1.2rem; align-items:start;
  padding:1.2rem 0; border-bottom:1px solid rgba(92,10,10,.07);
}
.cart-item-img {
  width:72px; height:90px; background:var(--cream-dark);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.cart-item-info { flex:1; }
.cart-item-cat {
  font-size:.58rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--salmon); margin-bottom:.2rem;
}
.cart-item-name {
  font-family:'Cormorant Garamond',serif; font-size:1.08rem;
  color:var(--burgundy-deep); margin-bottom:.3rem;
}
.cart-item-scent {
  font-size:.75rem; color:var(--text-light);
  font-style:italic; font-family:'Cormorant Garamond',serif;
}
.cart-item-qty {
  display:flex; align-items:center; gap:.6rem; margin-top:.8rem;
}
.qty-btn {
  width:26px; height:26px; border:1px solid rgba(92,10,10,.18);
  background:none; cursor:pointer; font-size:.85rem;
  display:flex; align-items:center; justify-content:center;
  color:var(--text-mid); transition:border-color .2s, background .2s;
}
.qty-btn:hover { border-color:var(--burgundy); background:var(--salmon-pale); }
.qty-num { font-size:.82rem; color:var(--text-dark); min-width:16px; text-align:center; }
.cart-item-price {
  font-family:'Cormorant Garamond',serif; font-size:1.15rem;
  color:var(--burgundy-deep); white-space:nowrap;
}
.cart-item-remove {
  background:none; border:none; cursor:pointer;
  color:var(--text-light); font-size:.75rem;
  letter-spacing:.1em; text-transform:uppercase;
  margin-top:.5rem; display:block; transition:color .3s; text-align:right;
}
.cart-item-remove:hover { color:var(--burgundy); }

.cart-empty-state {
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; padding:4rem 2rem; text-align:center;
}
.cart-empty-state svg { color:var(--salmon-pale); margin-bottom:1.5rem; }
.cart-empty-title {
  font-family:'Cormorant Garamond',serif; font-size:1.3rem;
  font-style:italic; color:var(--text-light); margin-bottom:1rem;
}

.cart-footer {
  padding:1.5rem 2rem 2rem;
  border-top:1px solid rgba(92,10,10,.1);
  background:var(--cream);
}
.cart-subtotal {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:.6rem;
}
.cart-subtotal-label { font-size:.7rem; letter-spacing:.15em; text-transform:uppercase; color:var(--text-light); }
.cart-subtotal-value { font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:var(--burgundy-deep); }
.cart-shipping-note { font-size:.72rem; color:var(--text-light); font-weight:300; margin-bottom:1.4rem; }
.btn-checkout {
  width:100%; font-family:'Jost',sans-serif; font-size:.72rem;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--white); background:var(--burgundy);
  border:none; padding:1.1rem; cursor:pointer;
  transition:background .3s; margin-bottom:.8rem;
}
.btn-checkout:hover { background:var(--burgundy-mid); }
.btn-keep-shopping {
  width:100%; font-family:'Jost',sans-serif; font-size:.68rem;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--text-mid); background:none;
  border:1px solid rgba(92,10,10,.15); padding:.9rem;
  cursor:pointer; transition:border-color .3s;
}
.btn-keep-shopping:hover { border-color:var(--burgundy); }

/* ══════════════════════════════════════
   CHECKOUT MODAL
══════════════════════════════════════ */
.checkout-modal {
  position:fixed; inset:0; z-index:300;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .4s;
}
.checkout-modal.open { opacity:1; pointer-events:all; }
.checkout-bg {
  position:absolute; inset:0; background:rgba(26,10,8,.6);
  backdrop-filter:blur(4px);
}
.checkout-panel {
  position:relative; background:var(--white);
  width:100%; max-width:860px; max-height:90vh;
  overflow-y:auto; z-index:1;
  transform:translateY(30px); transition:transform .4s;
}
.checkout-modal.open .checkout-panel { transform:translateY(0); }
.checkout-top {
  display:flex; justify-content:space-between; align-items:center;
  padding:1.8rem 2.5rem; background:var(--cream);
  border-bottom:1px solid rgba(92,10,10,.1); position:sticky; top:0; z-index:2;
}
.checkout-top-title { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--burgundy-deep); }
.checkout-close { background:none; border:none; cursor:pointer; color:var(--text-light); font-size:1.1rem; transition:color .3s; }
.checkout-close:hover { color:var(--burgundy); }
.checkout-steps {
  display:flex; padding:1.5rem 2.5rem;
  border-bottom:1px solid rgba(92,10,10,.08);
  background:var(--cream-dark); gap:0;
}
.step { display:flex; align-items:center; gap:.6rem; font-size:.65rem; letter-spacing:.18em; text-transform:uppercase; color:var(--text-light); }
.step.active { color:var(--burgundy); }
.step.done { color:var(--salmon); }
.step-num {
  width:24px; height:24px; border-radius:50%;
  border:1px solid currentColor;
  display:flex; align-items:center; justify-content:center;
  font-size:.62rem; flex-shrink:0;
}
.step.active .step-num { background:var(--burgundy); color:var(--white); border-color:var(--burgundy); }
.step.done .step-num { background:var(--salmon); color:var(--white); border-color:var(--salmon); }
.step-divider { flex:1; height:1px; background:rgba(92,10,10,.12); align-self:center; margin:0 1rem; }
.checkout-body { display:grid; grid-template-columns:1fr 380px; }
.checkout-form-side { padding:2.5rem; border-right:1px solid rgba(92,10,10,.08); }
.checkout-section-title { font-family:'Cormorant Garamond',serif; font-size:1.15rem; color:var(--burgundy-deep); margin-bottom:1.5rem; font-weight:400; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1rem; }
.form-row.full { grid-template-columns:1fr; }
.form-group { display:flex; flex-direction:column; gap:.4rem; }
.form-label { font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; color:var(--text-light); }
.form-input, .form-select {
  padding:.8rem 1rem; font-family:'Jost',sans-serif; font-size:.82rem;
  color:var(--text-dark); background:var(--cream);
  border:1px solid rgba(92,10,10,.15); outline:none;
  transition:border-color .3s; font-weight:300; appearance:none;
}
.form-input:focus, .form-select:focus { border-color:var(--burgundy); background:var(--white); }
.form-input::placeholder { color:var(--text-light); }
.shipping-options { display:flex; flex-direction:column; gap:.8rem; margin-bottom:2rem; }
.shipping-option {
  display:flex; align-items:center; gap:1rem;
  padding:1rem 1.2rem; border:1px solid rgba(92,10,10,.15);
  cursor:pointer; transition:border-color .3s, background .3s;
}
.shipping-option.selected { border-color:var(--burgundy); background:var(--cream); }
.shipping-option input[type=radio] { accent-color:var(--burgundy); }
.shipping-option-info { flex:1; }
.shipping-option-name { font-size:.82rem; color:var(--text-dark); font-weight:400; margin-bottom:.2rem; }
.shipping-option-days { font-size:.72rem; color:var(--text-light); font-weight:300; }
.shipping-option-price { font-family:'Cormorant Garamond',serif; font-size:1.1rem; color:var(--burgundy-deep); }
.payment-methods { display:flex; gap:.8rem; margin-bottom:1.5rem; flex-wrap:wrap; }
.payment-method {
  padding:.7rem 1.2rem; border:1px solid rgba(92,10,10,.15);
  cursor:pointer; font-size:.7rem; letter-spacing:.12em;
  text-transform:uppercase; color:var(--text-mid);
  background:none; font-family:'Jost',sans-serif;
  transition:all .3s; display:flex; align-items:center; gap:.5rem;
}
.payment-method.selected { border-color:var(--burgundy); color:var(--burgundy); background:var(--cream); }
.card-form, .pix-info, .boleto-info { margin-bottom:1.5rem; }
.pix-info, .boleto-info {
  padding:1.5rem; background:var(--cream-dark);
  border:1px solid rgba(92,10,10,.08); text-align:center;
}
.pix-info p, .boleto-info p { font-size:.82rem; color:var(--text-mid); line-height:1.7; font-weight:300; }
.pix-key { font-family:'Cormorant Garamond',serif; font-size:1.1rem; color:var(--burgundy); margin:1rem 0; }
.checkout-summary-side { padding:2.5rem; background:var(--cream); }
.summary-title { font-family:'Cormorant Garamond',serif; font-size:1.1rem; color:var(--burgundy-deep); margin-bottom:1.5rem; }
.summary-item { display:flex; gap:1rem; align-items:start; padding:.9rem 0; border-bottom:1px solid rgba(92,10,10,.08); }
.summary-item-img { width:52px; height:66px; background:var(--cream-dark); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.summary-item-info { flex:1; }
.summary-item-name { font-family:'Cormorant Garamond',serif; font-size:.95rem; color:var(--burgundy-deep); }
.summary-item-qty { font-size:.72rem; color:var(--text-light); margin-top:.2rem; }
.summary-item-price { font-family:'Cormorant Garamond',serif; font-size:1rem; color:var(--burgundy-deep); }
.coupon-row { display:flex; gap:.6rem; margin:1.2rem 0; }
.coupon-input {
  flex:1; padding:.7rem 1rem; font-family:'Jost',sans-serif; font-size:.78rem;
  color:var(--text-dark); background:var(--white);
  border:1px solid rgba(92,10,10,.15); outline:none; transition:border-color .3s; font-weight:300;
}
.coupon-input:focus { border-color:var(--burgundy); }
.coupon-btn {
  padding:.7rem 1.2rem; font-family:'Jost',sans-serif; font-size:.65rem;
  letter-spacing:.15em; text-transform:uppercase;
  color:var(--white); background:var(--burgundy-mid);
  border:none; cursor:pointer; transition:background .3s;
}
.coupon-btn:hover { background:var(--burgundy); }
.summary-totals { padding-top:1rem; }
.totals-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:.6rem; }
.totals-label { font-size:.75rem; color:var(--text-light); font-weight:300; }
.totals-value { font-size:.82rem; color:var(--text-dark); }
.totals-row.total { margin-top:1rem; padding-top:1rem; border-top:1px solid rgba(92,10,10,.12); }
.totals-row.total .totals-label { font-size:.75rem; letter-spacing:.15em; text-transform:uppercase; color:var(--burgundy-deep); font-weight:400; }
.totals-row.total .totals-value { font-family:'Cormorant Garamond',serif; font-size:1.4rem; color:var(--burgundy-deep); }
.btn-place-order {
  width:100%; font-family:'Jost',sans-serif; font-size:.72rem;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--white); background:var(--burgundy);
  border:none; padding:1.15rem; cursor:pointer;
  transition:background .3s; margin-top:1.5rem;
}
.btn-place-order:hover { background:var(--burgundy-mid); }
.secure-badges { display:flex; align-items:center; justify-content:center; gap:.6rem; margin-top:1rem; }
.secure-text { font-size:.62rem; letter-spacing:.12em; text-transform:uppercase; color:var(--text-light); display:flex; align-items:center; gap:.4rem; }
.checkout-success { display:none; padding:5rem 2.5rem; text-align:center; }
.checkout-success.visible { display:block; }
.success-icon {
  width:64px; height:64px; border-radius:50%;
  background:var(--salmon-pale); display:flex; align-items:center;
  justify-content:center; margin:0 auto 2rem; color:var(--burgundy);
}
.success-title { font-family:'Cormorant Garamond',serif; font-size:2rem; color:var(--burgundy-deep); margin-bottom:1rem; font-weight:300; }
.success-sub { font-size:.88rem; color:var(--text-light); line-height:1.8; font-weight:300; }

/* ══════════════════════════════════════
   COMO USAR (page)
══════════════════════════════════════ */
.page-hero-simple {
  padding:12rem 4rem 6rem;
  background:var(--cream-dark);
  border-bottom:1px solid rgba(92,10,10,.08);
  max-width:none;
}
.page-hero-simple .hero-tag { opacity:1; animation:none; }
.page-hero-simple .hero-title { opacity:1; animation:none; font-size:clamp(2.5rem,5vw,4rem); }

.howto-section { padding:8rem 4rem; max-width:1200px; margin:0 auto; }
.howto-label { font-size:.63rem; letter-spacing:.3em; text-transform:uppercase; color:var(--salmon); margin-bottom:1rem; }
.howto-section h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,3vw,2.8rem); font-weight:300; color:var(--burgundy-deep); margin-bottom:3rem; }
.howto-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2.5rem; margin-bottom:4rem; }
.howto-card {
  padding:2.5rem; border:1px solid rgba(92,10,10,.1);
  transition:border-color .3s, background .3s;
}
.howto-card:hover { border-color:var(--salmon-light); background:var(--cream-dark); }
.howto-num {
  font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:300;
  color:var(--salmon-pale); line-height:1; margin-bottom:1.5rem;
}
.howto-card h4 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; color:var(--burgundy-deep); margin-bottom:1rem; font-weight:400; }
.howto-card p { font-size:.84rem; line-height:1.85; color:var(--text-light); font-weight:300; }

.tips-box {
  background:var(--cream-dark); border:1px solid rgba(92,10,10,.1);
  padding:2.5rem; margin-bottom:3rem;
}
.tips-box h3 { font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:var(--burgundy-deep); margin-bottom:1.5rem; }
.tips-list { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1rem; list-style:none; }
.tips-list li { display:flex; gap:1rem; align-items:flex-start; font-size:.84rem; color:var(--text-light); font-weight:300; line-height:1.7; }
.tips-list li::before { content:'✓'; color:var(--salmon); font-size:1rem; flex-shrink:0; margin-top:.1rem; }

.faq-section { padding:8rem 4rem; background:var(--white); }
.faq-inner { max-width:760px; margin:0 auto; }
.faq-header { margin-bottom:3rem; }
.faq-header .section-label { margin-bottom:.8rem; }
.faq-list { display:flex; flex-direction:column; }
.faq-item { border-bottom:1px solid rgba(92,10,10,.1); }
.faq-question {
  width:100%; background:none; border:none; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  padding:1.5rem 0; text-align:left;
  font-family:'Cormorant Garamond',serif; font-size:1.08rem;
  color:var(--burgundy-deep); font-weight:400; transition:color .3s;
}
.faq-question:hover { color:var(--burgundy-mid); }
.faq-icon {
  font-size:1.2rem; color:var(--salmon); transition:transform .3s;
  flex-shrink:0; margin-left:1rem; font-family:'Jost',sans-serif;
}
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-answer {
  font-size:.86rem; line-height:1.9; color:var(--text-light); font-weight:300;
  max-height:0; overflow:hidden; transition:max-height .4s ease, padding .3s;
}
.faq-item.open .faq-answer { max-height:300px; padding-bottom:1.5rem; }

.cta-section {
  background:var(--burgundy-deep); padding:7rem 4rem; text-align:center;
  position:relative; overflow:hidden;
}
.cta-section::before {
  content:'BURNI';
  position:absolute; font-family:'Cormorant Garamond',serif;
  font-size:20vw; font-weight:300; color:rgba(255,255,255,.03);
  top:50%; left:50%; transform:translate(-50%,-50%);
  white-space:nowrap; letter-spacing:.3em;
}
.cta-section .section-label { margin-bottom:1rem; }
.cta-section .newsletter-title { color:var(--cream); }
.cta-section .newsletter-title em { color:var(--salmon-light); }
.cta-section .newsletter-title em { color:var(--salmon-light); }
.cta-section .newsletter-text { color:rgba(250,245,240,.55); margin-bottom:2.5rem; }

/* ══════════════════════════════════════
   PRODUTO DETALHES (page)
══════════════════════════════════════ */
.product-detail-section {
  padding: 10rem 4rem 8rem; max-width: 1200px; margin: 0 auto;
}
.produto-detalhes-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.pd-images {
  display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 100px;
}
.pd-main-img {
  width: 100%; aspect-ratio: 4/5; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; overflow: hidden;
}
.pd-thumbnails {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.pd-thumb {
  aspect-ratio: 1; background: var(--cream-dark); border-radius: 4px;
  cursor: pointer; border: 1px solid transparent; transition: border-color .3s;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pd-thumb.active { border-color: var(--burgundy); }
.pd-thumb:hover { border-color: var(--salmon); }
.pd-info { display: flex; flex-direction: column; }
.pd-breadcrumbs {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 2rem;
}
.pd-breadcrumbs a { color: var(--text-light); text-decoration: none; transition: color .3s; }
.pd-breadcrumbs a:hover { color: var(--burgundy); }
.pd-breadcrumbs span { margin: 0 .5rem; }
.pd-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2.8rem;
  font-weight: 300; color: var(--burgundy-deep); margin-bottom: .5rem; line-height: 1.1;
}
.pd-scent {
  font-size: 1rem; color: var(--text-light); font-style: italic;
  font-family: 'Cormorant Garamond', serif; margin-bottom: 1.5rem;
}
.pd-price {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  color: var(--burgundy-deep); margin-bottom: 2rem;
}
.pd-desc {
  font-size: .9rem; line-height: 1.8; color: var(--text-mid);
  font-weight: 300; margin-bottom: 2.5rem;
}
.pd-variants-title {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 1rem;
}
.pd-variants {
  display: flex; gap: .8rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.pd-variant-btn {
  padding: .8rem 1.5rem; border: 1px solid rgba(92,10,10,.15);
  background: var(--white); color: var(--text-mid);
  font-family: 'Jost', sans-serif; font-size: .75rem; letter-spacing: .1em;
  cursor: pointer; transition: all .3s;
}
.pd-variant-btn.active {
  border-color: var(--burgundy); background: var(--cream); color: var(--burgundy);
}
.pd-actions {
  display: flex; gap: 1rem; margin-bottom: 3rem; align-items: stretch;
}
.pd-qty {
  display: flex; align-items: center; border: 1px solid rgba(92,10,10,.15);
  background: var(--white);
}
.pd-qty-btn {
  width: 44px; height: 48px; background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--text-mid); transition: background .3s, color .3s;
}
.pd-qty-btn:hover { background: var(--cream); color: var(--burgundy); }
.pd-qty-input {
  width: 40px; text-align: center; border: none; background: none;
  font-family: 'Jost', sans-serif; font-size: .95rem; color: var(--text-dark);
}
.pd-add-btn {
  flex: 1; font-family: 'Jost', sans-serif; font-size: .75rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--white);
  background: var(--burgundy); border: none; cursor: pointer;
  transition: background .3s; height: 48px;
}
.pd-add-btn:hover { background: var(--burgundy-mid); }
.pd-accordion {
  border-top: 1px solid rgba(92,10,10,.1);
}
.pd-acc-item {
  border-bottom: 1px solid rgba(92,10,10,.1);
}
.pd-acc-title {
  width: 100%; text-align: left; padding: 1.5rem 0; background: none; border: none;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: var(--burgundy-deep); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.pd-acc-icon { font-size: 1.2rem; transition: transform .3s; font-family: sans-serif; color: var(--salmon); }
.pd-acc-item.active .pd-acc-icon { transform: rotate(45deg); }
.pd-acc-content {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
  font-size: .85rem; line-height: 1.8; color: var(--text-light); font-weight: 300;
}
.pd-acc-item.active .pd-acc-content { max-height: 300px; padding-bottom: 1.5rem; }

/* Relacionados */
.related-section {
  padding: 5rem 4rem 8rem; max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(92,10,10,.08);
}
.related-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
  font-weight: 300; color: var(--burgundy-deep); margin-bottom: 3rem; text-align: center;
}

/* ══════════════════════════════════════
   AUTH PAGES & DASHBOARD
══════════════════════════════════════ */
.auth-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; background: var(--cream);
}
.auth-image {
  background-color: var(--salmon-pale);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.auth-image::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(92,10,10,0.15);
}
.auth-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem clamp(3rem, 8vw, 6rem); max-width: 700px; margin: 0 auto;
}
.auth-header { margin-bottom: 2.5rem; text-align: center; }
.auth-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--burgundy-deep);
  text-decoration: none; margin-bottom: 2rem; display: inline-block;
}
.auth-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
  color: var(--burgundy-deep); margin-bottom: .8rem; font-weight: 300;
}
.auth-subtitle {
  font-size: .85rem; color: var(--text-light); font-weight: 300;
}
.auth-form { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.auth-links {
  display: flex; justify-content: space-between; font-size: .8rem;
  margin-top: .5rem; color: var(--text-light); font-weight: 300;
}
.auth-links a { color: var(--burgundy); text-decoration: none; transition: color .3s; }
.auth-links a:hover { color: var(--burgundy-mid); text-decoration: underline; }

.auth-divider {
  display: flex; align-items: center; text-align: center; margin: 1.5rem 0; color: var(--text-light); font-size: .85rem; font-weight: 300;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; border-bottom: 1px solid rgba(92,10,10,.1); margin: 0 1rem;
}
.btn-social {
  display: flex; align-items: center; justify-content: center; gap: .8rem;
  width: 100%; padding: .9rem; background: var(--white); border: 1px solid rgba(92,10,10,.1);
  border-radius: 4px; color: var(--text-mid); font-family: 'Jost', sans-serif; font-size: .85rem;
  cursor: pointer; transition: all .3s;
}
.btn-social:hover {
  background: var(--cream); border-color: rgba(92,10,10,.2);
}

/* Dashboard */
.dashboard-section { padding: 9rem 4rem 6rem; max-width: 1200px; margin: 0 auto; min-height: 80vh; }
.dashboard-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(92,10,10,.08);
}
.db-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
  font-weight: 300; color: var(--burgundy-deep); margin-top: .5rem;
}
.btn-logout {
  background: none; border: none; cursor: pointer; color: var(--text-light);
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; transition: color .3s;
}
.btn-logout:hover { color: var(--burgundy); }
.db-grid { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.db-menu { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 100px; }
.db-menu-item {
  text-align: left; background: none; border: none; padding: .8rem 0; cursor: pointer;
  font-size: .9rem; color: var(--text-mid); font-weight: 300; border-bottom: 1px solid rgba(92,10,10,.05);
  display: flex; justify-content: space-between; align-items: center; transition: all .3s;
}
.db-menu-item.active { color: var(--burgundy); border-bottom-color: var(--burgundy); font-weight: 400; }
.db-menu-item:hover { color: var(--burgundy-mid); }
.db-panel { display: none; }
.db-panel.active { display: block; animation: fadeIn .5s forwards; }

.order-card {
  background: var(--white); border: 1px solid rgba(92,10,10,.08);
  padding: 1.8rem; margin-bottom: 1.5rem; transition: border-color .3s;
}
.order-card:hover { border-color: rgba(92,10,10,.2); }
.order-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px dashed rgba(92,10,10,.1);
}
.order-number { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--burgundy-deep); }
.order-date { font-size: .8rem; color: var(--text-light); font-weight: 300; }
.order-status {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 20px; font-weight: 500;
}
.status-prep { background: var(--salmon-pale); color: var(--burgundy-deep); }
.status-route { background: #e0f0df; color: #2c5a2b; }
.status-done { background: #dfebf0; color: #2b4b5a; }

.order-items { display: flex; flex-direction: column; gap: 1rem; }
.db-order-item { display: flex; justify-content: space-between; align-items: center; }
.db-item-info { display: flex; align-items: center; gap: 1rem; }
.db-item-img { width: 44px; height: 56px; background: var(--cream-dark); border-radius: 3px; display: flex; justify-content: center; align-items: center; }
.db-item-name { font-size: .9rem; color: var(--burgundy-deep); }
.db-item-qty { font-size: .8rem; color: var(--text-light); margin-left: .5rem; }
.order-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(92,10,10,.05);
}
.order-total { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--burgundy-deep); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.reveal { opacity:0; transform:translateY(30px); transition:opacity .8s ease,transform .8s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  nav { padding:1.2rem 1.5rem; }
  .nav-links { display:none; }
  .nav-search:not(.mobile-search), .auth-btn-icon { display: none; }
  .nav-actions { gap: .8rem; }
  .nav-icon { display:flex; margin-left: auto; }
  #hero { grid-template-columns:1fr; }
  .hero-right { height:55vw; min-height: 350px; }
  .hero-left { padding:7rem 1.5rem 3rem; text-align: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-ctas { justify-content: center; }
  #intro { grid-template-columns:1fr; gap:3rem; padding:5rem 1.5rem; }
  .intro-visual { height:280px; }
  .intro-img-accent { position: static; margin-top: 1rem; text-align: center; }
  .product-grid { grid-template-columns:1fr; gap: 2rem; }
  #banner { grid-template-columns:1fr; padding:5rem 1.5rem; }
  .instagram-grid { grid-template-columns:repeat(3,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; gap:2.5rem; }
  #produtos { padding:5rem 2rem; }
  .section-header { flex-direction:column; align-items:flex-start; gap:1rem; }
  #instagram { padding:5rem 2rem; }
  #newsletter { padding:5rem 2rem; }
  .checkout-body { grid-template-columns:1fr; }
  .checkout-summary-side { border-top:1px solid rgba(92,10,10,.08); }
  .cart-drawer { width:100%; right:-100%; }
  .howto-section { padding:5rem 2rem; }
  .howto-grid { grid-template-columns:1fr; }
  .faq-section { padding:5rem 2rem; }
  .cta-section { padding:5rem 2rem; }
  .page-hero-simple { padding:9rem 2rem 4rem; }
  .produto-detalhes-container { grid-template-columns: 1fr; gap: 3rem; }
  .pd-images { position: static; }
  .product-detail-section { padding: 8rem 2rem 4rem; }
  .related-section { padding: 4rem 2rem 5rem; }
  .auth-split { grid-template-columns: 1fr; }
  .auth-image { display: none; }
  .db-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .db-menu { position: static; flex-direction: row; overflow-x: auto; padding-bottom: .5rem; }
  .db-menu-item { white-space: nowrap; padding: .5rem 1rem; border: 1px solid rgba(92,10,10,.1); border-radius: 20px; }
  .db-menu-item.active { border-color: var(--burgundy); background: var(--salmon-pale); color: var(--burgundy-deep); }
  .dashboard-section { padding: 8rem 2rem 4rem; }
}
@media(max-width:600px) {
  .product-grid { grid-template-columns:1fr; }
  .instagram-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr; }
  .newsletter-form { flex-direction:column; }
  .newsletter-input { border-right:1px solid rgba(92,10,10,.18); border-bottom:none; }
  .checkout-panel { max-height:100vh; margin:0; }
  .form-row { grid-template-columns:1fr; }
  footer { padding:4rem 1.5rem 2rem; }
}
