*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --gold: #C4A45A;
  --gold2: #E8D49A;
  --gold3: #8A6A2A;
  --ink: #111010;
  --ink2: #1E1C1A;
  --ink3: #2E2B27;
  --stone: #F5F2ED;
  --stone2: #EDE8DF;
  --stone3: #DDD5C4;
  --white: #FFFFFF;
  --txt: #1A1714;
  --txt2: #4A4238;
  --txt3: #8A7A68;
  --red: #B52C2C;
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--ff-sans);
  background: var(--white);
  color: var(--txt);
  overflow-x: clip
}

img {
  display: block;
  max-width: 100%;
  height: auto
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font-family: inherit;
  cursor: pointer
}

/* ── TOP ANNOUNCEMENT BAR ── */
.top-announcement-bar {
  background: linear-gradient(90deg, #4a3814 0%, #8A6A2A 50%, #4a3814 100%);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  height: 34px;
  overflow: hidden;
  position: relative;
  z-index: 205;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.top-announcement-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-announcement-item {
  position: absolute;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  white-space: nowrap;
  pointer-events: none;
}

.top-announcement-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── HEADER ── */
#hdr {
  position: sticky;
  top: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  padding: 0 56px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--stone3);
  transition: box-shadow .3s var(--ease);
}

#hdr.up {
  box-shadow: 0 4px 32px rgba(0, 0, 0, .08)
}

nav.main {
  display: flex;
  gap: 40px
}

nav.main a {
  font-size: 10.5px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--txt2);
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
}

nav.main a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s var(--ease);
}

nav.main a:hover {
  color: var(--gold)
}

nav.main a:hover::after {
  width: 100%
}

.logo-c {
  justify-self: center
}

.brand-logo-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.header-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s var(--ease);
}

.header-logo-img:hover {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s var(--ease);
}

.footer-logo-img:hover {
  transform: scale(1.03);
}

.logo-emblem {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-serif);
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  background: transparent;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(196, 164, 90, 0.15);
}

.logo-text {
  display: flex;
  flex-direction: column;
  text-align: left
}

.logo-title {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 4.5px;
  color: var(--txt);
  line-height: 1;
}

.logo-sub {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--txt3);
  text-transform: uppercase;
}

.filter-tab {
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--stone);
  border: 1px solid var(--stone3);
  color: var(--txt2);
  border-radius: 30px;
  cursor: pointer;
  transition: all .2s var(--ease);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--ink);
  border-color: var(--gold);
  color: var(--gold);
}

.filter-select-wrap {
  position: relative;
  background: var(--stone);
  border: 1px solid var(--stone3);
  border-radius: 30px;
  overflow: hidden;
  transition: all .2s var(--ease);
}

.filter-select-wrap select {
  padding: 8px 36px 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: none;
  border: none;
  outline: none;
  color: var(--txt2);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.filter-select-wrap::after {
  content: '▼';
  font-size: 8px;
  color: var(--txt3);
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.filter-select-wrap:hover {
  border-color: var(--gold);
  background: var(--stone2);
}

.filter-clear-btn {
  background: none;
  border: none;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 16px;
  transition: color .2s;
}

.filter-clear-btn:hover {
  color: var(--ink);
}

.hdr-right {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end
}

.ico-btn {
  background: none;
  border: none;
  color: var(--txt);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: color .2s;
  position: relative;
}

.ico-btn:hover {
  color: var(--gold)
}

.badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.badge.hidden {
  display: none
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--txt)
}

/* ── MOBILE MENU ── */
#mob-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(252, 251, 250, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 24px 24px max(24px, env(safe-area-inset-bottom));
  justify-content: space-between;
  animation: fadeUp .3s var(--ease) both;
}

.mob-menu-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--stone3);
}

.mob-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain
}

.mob-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--ink);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 auto;
}

.mob-menu-links a {
  font-family: var(--ff-serif);
  font-size: 19px;
  letter-spacing: 2px;
  font-weight: 400;
  color: var(--txt);
  text-decoration: none;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all .2s var(--ease);
}

.mob-menu-links a:hover {
  color: var(--gold);
  padding-left: 6px
}

.mob-admin-link {
  font-family: var(--ff-sans) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--txt3) !important;
  letter-spacing: 1.5px !important
}

.mob-menu-foot {
  margin-top: auto
}

.hidden {
  display: none !important
}

/* ── HERO ── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 52% 48%;
  height: 580px;
  max-height: 680px;
  background: var(--ink2);
  overflow: hidden;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 48px 64px;
}

.hero-kicker {
  font-size: 10px;
  letter-spacing: 4px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-line span {
  flex: 0 0 48px;
  height: 1px;
  background: var(--gold);
  opacity: .6
}

.hero-line i {
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg)
}

.hero-sub {
  font-size: 14px;
  color: rgba(245, 242, 237, .7);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  padding: 14px 32px;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  transition: background .25s, transform .2s, box-shadow .25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(196, 164, 90, .35)
}

.btn-out {
  border: 1.5px solid rgba(245, 242, 237, .35);
  color: rgba(245, 242, 237, .85);
  padding: 14px 32px;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-out:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.btn-full {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 28px
}

.hero-right {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, var(--ink2) 0%, transparent 35%);
  pointer-events: none;
}

.hero-slide-img,
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 1.2s ease;
}

/* ── BRANDS STRIP ── */
.brands-strip {
  height: 110px;
  background: var(--white);
  border-top: 1px solid var(--stone3);
  border-bottom: 1px solid var(--stone3);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 48px;
}

.brands-track-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 72px;
  animation: marq 40s linear infinite;
  width: max-content;
}

.brands-track-container:hover .brands-track {
  animation-play-state: paused;
}

.brand-logo-item {
  color: var(--txt);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-item svg {
  height: 42px;
  width: auto;
  max-width: 240px;
}

.brand-logo-item:hover {
  opacity: 1;
  color: var(--gold);
  transform: scale(1.06);
}

.brands-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--white);
  border: none;
  color: var(--gold);
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
}

.brands-arrow:hover {
  color: var(--gold3);
}

.brands-arrow svg {
  width: 22px;
  height: 22px;
}

.left-arrow {
  left: 0;
  box-shadow: 10px 0 20px rgba(255, 255, 255, 0.9);
}

.right-arrow {
  right: 0;
  box-shadow: -10px 0 20px rgba(255, 255, 255, 0.9);
}

@keyframes marq {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SCROLLTELLING DIVIDER ── */
.st-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 0;
  background: var(--white);
}

.st-divider::before,
.st-divider::after {
  content: '';
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.st-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.st-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── TRUST BAR ── */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border-top: 1px solid #e8e6e1;
  border-bottom: 1px solid #e8e6e1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid #e8e6e1;
  transition: background .2s;
}

.trust-item:last-child {
  border-right: none
}

.trust-item:hover {
  background: #faf9f7
}

.trust-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: #faf9f7;
  border: 1px solid #e8e6e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8860b;
}

.trust-ico svg {
  width: 20px;
  height: 20px
}

.trust-item b {
  display: block;
  font-size: 10.5px;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.trust-item p {
  font-size: 12px;
  color: #777777
}

/* ── SECTION HEADER ── */
.sec-hdr {
  text-align: center;
  padding: 80px 48px 56px
}

.sec-hdr h2 {
  font-family: var(--ff-serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--txt);
  margin-bottom: 20px;
}

.orn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.orn-line {
  flex: 0 0 56px;
  height: 1px;
  background: var(--gold)
}

.orn-dia {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg)
}

/* ── PRODUCTS ── */
#produtos {
  background: #faf9f7;
  padding-bottom: 80px;
}

.sec-hdr {
  text-align: center;
  padding: 64px 24px 36px;
}

.sec-hdr h2 {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 10px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
  border: none;
}

.prod-card {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 22px 18px 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.prod-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  z-index: 2;
}

.fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #888888;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  cursor: pointer;
}

.fav:hover,
.fav.active {
  color: #b8860b;
  transform: scale(1.15);
}

.prod-img-wrap {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-bottom: 16px;
  position: relative;
  padding: 10px;
}

.prod-img-wrap img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.06));
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.06);
}

.prod-info {
  padding: 0;
  background: transparent;
  text-align: left;
}

.prod-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 3px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prod-brand {
  font-size: 13px;
  font-weight: 400;
  color: #737373;
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 12px;
}

.prod-price-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prod-price {
  font-size: 18px;
  font-weight: 700;
  color: #b8860b;
  letter-spacing: -0.2px;
}

.prod-inst {
  font-size: 12px;
  color: #8c8c8c;
  font-weight: 400;
}

/* ── FEATURED ── */
.featured {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 680px;
  background: var(--stone);
}

.feat-img {
  overflow: hidden;
  position: relative
}

.feat-img img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
}

.feat-img:hover img {
  transform: scale(1.04)
}

.feat-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196, 164, 90, .2);
  pointer-events: none;
}

.feat-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 88px;
}

.feat-tag {
  font-size: 9.5px;
  letter-spacing: 4px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feat-brand {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--txt3);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.feat-name {
  font-family: var(--ff-serif);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 300;
  color: var(--txt);
  line-height: 1.0;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.feat-desc {
  font-size: 14px;
  color: var(--txt3);
  line-height: 1.9;
  margin-bottom: 32px
}

.notes {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.note-row {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.note-lbl {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase
}

.note-val {
  font-size: 13px;
  color: var(--txt2)
}

.perf-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--txt3);
  text-align: center;
}

.stat-ico {
  width: 42px;
  height: 42px;
  border: 1px solid var(--stone3);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.feat-price {
  margin-bottom: 8px
}

.feat-price .p {
  font-size: 30px;
  font-weight: 700;
  color: var(--red);
  margin-right: 12px
}

.feat-price .i {
  font-size: 13px;
  color: var(--txt3)
}

/* ── BRANDS SHOWCASE ── */
.brands-section {
  background: var(--white);
  padding: 0 0 80px
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--stone3);
  margin: 0;
}

.brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  border-right: 1px solid var(--stone3);
  cursor: pointer;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}

.brand-tile:nth-child(5n) {
  border-right: none
}

.brand-tile:nth-child(n+6) {
  border-top: 1px solid var(--stone3)
}

.brand-tile:hover {
  background: var(--stone)
}

.brand-tile-emblem {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  background: var(--stone);
  transition: all .3s var(--ease);
  box-shadow: 0 6px 20px rgba(196, 164, 90, 0.06);
}

.brand-tile:hover .brand-tile-emblem {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(196, 164, 90, 0.25);
  border-color: var(--gold);
}

.brand-tile-name {
  font-family: var(--ff-serif);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--txt2);
  text-align: center;
  text-transform: uppercase;
  margin-top: 16px;
  transition: color .2s;
}

.brand-tile:hover .brand-tile-name {
  color: var(--gold)
}

/* ── DESTAQUE OLFATIVO (EDITORIAL SHOWCASE) ── */
.destaque-section {
  background: #ffffff;
  padding: 80px 48px;
}

.destaque-container {
  max-width: 1100px;
  margin: 0 auto;
}

.destaque-badge-tag {
  font-size: 10px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #b8860b;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.destaque-tag-dot {
  width: 6px;
  height: 6px;
  background: #b8860b;
  border-radius: 50%;
  display: inline-block;
}

.destaque-content-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: center;
  background: #faf9f7;
  border: 1px solid #e8e6e1;
  border-radius: 12px;
  padding: 56px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.destaque-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 360px;
}

.destaque-bottle-halo {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.destaque-bottle-img {
  max-height: 340px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: opacity .4s ease, transform .4s ease;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
}

.destaque-brand {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.destaque-title {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 400;
  color: #111111;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.destaque-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 24px;
}

.destaque-pyramid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  background: #ffffff;
  border: 1px solid #e8e6e1;
  border-radius: 8px;
  padding: 18px 22px;
}

.pyr-row {
  display: flex;
  align-items: center;
  font-size: 12.5px;
  line-height: 1.5;
}

.pyr-label {
  width: 80px;
  font-size: 9.5px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #b8860b;
  text-transform: uppercase;
  flex-shrink: 0;
}

.pyr-val {
  color: #333333;
  font-weight: 400;
}

.destaque-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.destaque-price-box {
  display: flex;
  flex-direction: column;
}

.destaque-price-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888888;
}

.destaque-price-val {
  font-family: var(--ff-sans);
  font-size: 24px;
  font-weight: 700;
  color: #111111;
}

.destaque-btn {
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
  border-radius: 4px;
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all .25s ease;
}

.destaque-btn:hover {
  background: #b8860b;
  border-color: #b8860b;
  color: #ffffff;
  transform: translateY(-2px);
}

.destaque-dots {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.destaque-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid #b8860b;
  background: transparent;
  cursor: pointer;
  transition: all .25s ease;
  padding: 0;
}

.destaque-dot.active {
  background: #b8860b;
  transform: scale(1.25);
}

/* ── ABOUT (POR QUE NOVARE?) ── */
.about {
  background: #f7f5f0;
  padding: 88px 0;
  border-top: 1px solid #e8e6e1;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.about-tag {
  font-size: 10px;
  letter-spacing: 5px;
  font-weight: 700;
  color: #b8860b;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-h2 {
  font-family: var(--ff-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  color: #111111;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-card {
  padding: 44px 32px;
  border: 1px solid #e8e6e1;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all .3s var(--ease);
}

.about-card:hover {
  border-color: #b8860b;
  box-shadow: 0 12px 36px rgba(184, 134, 11, 0.1);
  transform: translateY(-6px);
}

.about-ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border: 1.5px solid #d4af37;
  background: #faf9f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.about-card h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  color: #111111;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 13.5px;
  color: #666666;
  line-height: 1.8;
}

/* ── FOOTER (CLEAN LUXURY) ── */
footer {
  background: #fcfbfa;
  padding: 64px 80px 0;
  border-top: 1px solid #e8e6e1;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid #e8e6e1;
}

.foot-logo {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.foot-brand p {
  font-size: 13px;
  color: #666666;
  line-height: 1.9;
  margin-top: 16px;
  max-width: 280px;
}

.foot-col h4 {
  font-size: 10px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: #b8860b;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.foot-col a {
  display: block;
  font-size: 13px;
  color: #555555;
  margin-bottom: 12px;
  transition: color .2s;
}

.foot-col a:hover {
  color: #b8860b
}

.foot-bottom {
  text-align: center;
  padding: 24px;
  font-size: 11.5px;
  color: #888888;
  letter-spacing: 1.5px;
}

/* ── CART ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 16, 16, .6);
  z-index: 400;
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  height: 100vh;
  background: var(--white);
  z-index: 401;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .14);
}

.cart-drawer.open {
  transform: translateX(0)
}

.cart-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--stone3);
}

.cart-hdr h2 {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
}

.cart-hdr button {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--txt3);
  transition: color .2s;
}

.cart-hdr button:hover {
  color: var(--txt)
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px
}

.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--txt3);
}

.cart-empty span {
  font-size: 48px
}

.cart-empty p {
  font-size: 14px
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--stone3);
}

.cart-item img {
  width: 68px;
  height: 86px;
  object-fit: cover;
  background: var(--stone2);
  border: 1px solid var(--stone3);
  flex-shrink: 0;
}

.ci-info {
  flex: 1;
  min-width: 0
}

.ci-brand {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--txt3);
  font-weight: 700;
  text-transform: uppercase
}

.ci-name {
  font-family: var(--ff-serif);
  font-size: 15px;
  color: var(--txt);
  margin: 3px 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.ci-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--red)
}

.ci-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 6px
}

.qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--stone3);
  background: none;
  font-size: 16px;
  color: var(--txt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.qty button:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.qty span {
  font-size: 13px;
  font-weight: 500;
  min-width: 20px;
  text-align: center
}

.rm-btn {
  background: none;
  border: none;
  font-size: 10.5px;
  color: var(--txt3);
  text-decoration: underline;
  padding: 0;
  transition: color .2s;
}

.rm-btn:hover {
  color: var(--red)
}

.cart-foot {
  padding: 22px 28px;
  border-top: 1px solid var(--stone3);
  background: var(--stone);
}

.cart-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.cart-sub span:first-child {
  font-size: 13px;
  color: var(--txt3)
}

.cart-sub span:last-child {
  font-size: 22px;
  font-weight: 700;
  color: var(--txt)
}

.btn-wa {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 18px;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .3s;
}

.btn-wa:hover {
  background: #1cb358;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .3)
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-left {
  animation: fadeUp .9s var(--ease) both
}

/* ── RESPONSIVE ── */
@media(max-width:1400px) {
  .prod-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .brands-grid {
    grid-template-columns: repeat(5, 1fr)
  }
}

@media(max-width:1100px) {
  .prod-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .featured {
    grid-template-columns: 1fr
  }

  .feat-body {
    padding: 52px 48px
  }

  .feat-img img {
    min-height: 420px;
    height: 420px
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .hero-right {
    height: 60vw;
    min-height: 280px
  }

  .hero-left {
    padding: 72px 48px 56px
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .brands-grid .brand-tile:nth-child(5n) {
    border-right: 1px solid var(--stone3)
  }

  .brands-grid .brand-tile:nth-child(3n) {
    border-right: none
  }
}

@media(max-width:768px) {
  #hdr {
    padding: 0 16px;
    grid-template-columns: auto 1fr auto;
    height: 64px
  }

  .header-logo-img {
    height: 38px
  }

  nav.main {
    display: none
  }

  .menu-btn {
    display: flex
  }

  .sec-hdr {
    padding: 44px 16px 28px
  }

  .sec-hdr h2 {
    font-size: 24px;
    letter-spacing: 3px
  }

  .filter-bar {
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 4px 12px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none
  }

  .filter-group {
    flex-shrink: 0
  }

  .filter-tab {
    padding: 6px 14px;
    font-size: 10px
  }

  .filter-select-wrap select {
    padding: 6px 28px 6px 12px;
    font-size: 10px
  }

  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 14px;
    gap: 10px
  }

  .prod-card {
    padding: 14px 12px 14px;
    border-radius: 10px
  }

  .prod-img-wrap {
    margin-bottom: 8px;
    padding: 6px
  }

  .prod-name {
    font-size: 13.5px
  }

  .prod-brand {
    font-size: 11px;
    margin-bottom: 8px
  }

  .ml-pill {
    font-size: 10px;
    padding: 3px 8px
  }

  .btn-add {
    padding: 10px 8px;
    font-size: 9.5px;
    letter-spacing: 1px
  }

  .trust {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 16px;
    gap: 12px
  }

  .trust-item {
    padding: 16px 12px
  }

  .trust-item:nth-child(2) {
    border-right: none
  }

  .trust-item:nth-child(n+3) {
    border-top: 1px solid var(--stone3)
  }

  .about {
    padding: 56px 16px
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .about-card {
    padding: 32px 20px
  }

  footer {
    padding: 44px 20px 0
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 36px
  }

  .cart-drawer {
    width: 100vw;
    max-width: 100vw
  }

  .cart-foot {
    padding: 20px 24px max(24px, env(safe-area-inset-bottom))
  }

  .hero-left {
    padding: 48px 20px 32px
  }

  .brands-strip {
    height: 80px;
    padding: 0 12px
  }

  .brands-arrow {
    display: none
  }
}

@media(max-width:360px) {
  .prod-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 16px
  }

  .prod-card {
    padding: 20px 16px
  }
}

/* ── ML SELECTOR ── */
.ml-selector {
  display: flex;
  gap: 6px;
  margin: 8px 0 12px;
  flex-wrap: wrap;
}

.ml-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid var(--stone3);
  background: var(--stone);
  color: var(--txt2);
  border-radius: 20px;
  cursor: pointer;
  transition: all .2s;
}

.ml-pill:hover,
.ml-pill.active {
  border-color: var(--gold);
  background: var(--ink);
  color: var(--gold);
}

.ci-ml {
  font-size: 11px;
  color: var(--txt3);
  font-weight: 500;
  margin-bottom: 2px
}

/* ── ADMIN MODAL ── */
.admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.admin-modal {
  background: var(--white);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.admin-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: var(--ink);
  color: var(--gold);
  border-bottom: 1px solid rgba(196, 164, 90, 0.2);
}

.admin-hdr h2 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px
}

.admin-close {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 22px;
  cursor: pointer
}

.admin-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1
}

.admin-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--stone3);
  padding-bottom: 12px
}

.admin-tab {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--txt3);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}

.admin-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold)
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--stone3);
  vertical-align: middle
}

.admin-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--txt3);
  background: var(--stone);
}

.admin-table img {
  width: 40px;
  height: 48px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--stone3)
}

.stock-badge {
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  display: inline-block
}

.stock-badge.low {
  background: #fee2e2;
  color: #dc2626
}

.stock-badge.ok {
  background: #dcfce7;
  color: #15803d
}

.admin-actions {
  display: flex;
  gap: 8px
}

.btn-sm {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid var(--stone3);
  cursor: pointer;
  background: var(--white);
  transition: all .2s;
}

.btn-sm.edit:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.btn-sm.del:hover {
  border-color: var(--red);
  color: var(--red)
}

.admin-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.form-group.full {
  grid-column: 1 / -1
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--txt2)
}

.form-control {
  padding: 10px 14px;
  font-size: 13px;
  border: 1px solid var(--stone3);
  background: var(--stone);
  outline: none;
  transition: border .2s;
  width: 100%;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white)
}

.photo-bank-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 8px
}

.photo-bank-thumb {
  border: 2px solid var(--stone3);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  aspect-ratio: 1;
  background: var(--stone);
}

.photo-bank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.photo-bank-thumb.selected,
.photo-bank-thumb:hover {
  border-color: var(--gold)
}

.photo-bank-thumb span {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 9px;
  text-align: center;
  padding: 2px;
  text-transform: uppercase;
}

.sizes-builder {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.size-row {
  display: flex;
  gap: 10px;
  align-items: center
}

.size-row input {
  flex: 1
}

/* ══════════════════════════════════════════════════════════
   LUXURY PRODUCT MODAL (POP-UP ESFUMAÇADO & GLASSMORPHISM)
   ══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   FRENESI-STYLE CLEAN LUXURY PRODUCT MODAL (LIGHT THEME)
   ══════════════════════════════════════════════════════════ */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(17, 17, 20, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}

.product-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.product-modal-container {
  background: #ffffff;
  border: 1px solid #e8e6e1;
  border-radius: 20px;
  width: 100%;
  max-width: 1020px;
  max-height: 90vh;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #111111;
  transform: scale(0.95) translateY(12px);
  transition: transform .35s var(--ease);
}

.product-modal-overlay.open .product-modal-container {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f3ef;
  border: 1px solid #e5e2d8;
  color: #111111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.modal-close-btn:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}

/* Modal Left Pane (Bottle Showcase - Light) */
.modal-bottle-pane {
  background: #fcfbfa;
  border-right: 1px solid #eee7dd;
  padding: 40px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.modal-bottle-wrap {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modal-bottle-img {
  max-width: 85%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.12));
  transition: transform .4s var(--ease);
}

.modal-bottle-wrap:hover .modal-bottle-img {
  transform: scale(1.03);
}

.modal-frasco-badge {
  position: absolute;
  bottom: 0;
  background: #ffffff;
  border: 1px solid #e0ddd5;
  color: #444444;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.modal-decant-circle {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle, #fcf8ee 0%, #f4ebd6 100%);
  border: 1.5px solid #d4af37;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.18);
}

.modal-decant-circle span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #8a6a2a;
}

.modal-decant-circle b {
  font-size: 12px;
  font-weight: 800;
  color: #111111;
}

.modal-trust-badges {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid #eee7dd;
  margin-top: 16px;
}

.modal-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  color: #777777;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Modal Right Pane (Details - Light) */
.modal-details-pane {
  overflow-y: auto;
  max-height: 90vh;
  padding: 36px 40px 32px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.modal-kicker {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #b8860b;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-title {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 2.5vw, 34px);
  color: #111111;
  line-height: 1.15;
  margin-bottom: 12px;
  font-weight: 400;
}

.modal-price-header {
  margin-bottom: 18px;
}

.modal-dyn-price {
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.5px;
}

.modal-dyn-inst {
  font-size: 12.5px;
  color: #b8860b;
  margin-top: 4px;
}

.modal-family-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
}

.family-name {
  font-size: 11px;
  font-weight: 600;
  background: #faf7f0;
  color: #8a6a2a;
  border: 1px solid #ede4d1;
  padding: 4px 12px;
  border-radius: 20px;
}

.fixation-badge,
.projection-badge {
  font-size: 10.5px;
  background: #f5f3ef;
  color: #555555;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #e5e2d8;
}

.modal-sizes-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* NEW VOLUMETRIA LAYOUT: TOP FULL BOTTLE BUTTON + 3 DECANTS GRID */
.modal-full-bottle-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e0ddd5;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 12px;
  text-align: left;
  box-sizing: border-box;
}
.modal-full-bottle-card:hover {
  background: #faf8f3;
  border-color: #111111;
  transform: translateY(-1px);
}
.modal-full-bottle-card.active {
  background: #111111;
  border: 1px solid #111111;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.full-bottle-badge {
  font-size: 10px;
  color: #C4A45A;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
  transition: color 0.2s ease;
}
.full-bottle-title {
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  transition: color 0.2s ease;
}
.full-bottle-price {
  font-size: 17px;
  font-weight: 800;
  color: #C4A45A;
  transition: color 0.2s ease;
}
.modal-full-bottle-card.active .full-bottle-badge {
  color: #e5c478;
}
.modal-full-bottle-card.active .full-bottle-title {
  color: #ffffff;
}
.modal-full-bottle-card.active .full-bottle-price {
  color: #e5c478;
}

.modal-sizes-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}
.modal-sizes-grid-3 .modal-size-btn {
  width: 100%;
  min-width: unset;
  padding: 10px 8px;
  text-align: center;
}

.modal-size-btn {
  min-width: 64px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e0ddd5;
  color: #111111;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.modal-size-btn:hover {
  border-color: #111111;
}

.modal-size-btn.active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.modal-size-btn.active .size-price {
  color: #e5c478;
}

.modal-rendimento-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #faf8f3;
  border: 1px solid #ebe4d3;
  border-radius: 10px;
  padding: 12px 16px;
  margin: 20px 0;
  font-size: 12.5px;
  color: #444444;
}

.rend-icon {
  font-size: 18px;
}

.modal-purchase-box {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 24px;
  padding-top: 10px;
}

.modal-qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f3ef;
  border: 1px solid #e0ddd5;
  border-radius: 8px;
  padding: 4px 8px;
  height: 46px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: none;
  background: #ffffff;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.qty-btn:hover {
  background: #111111;
  color: #ffffff;
}

.qty-num {
  font-size: 14px;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
  color: #111111;
}

.modal-actions-row {
  display: flex;
  gap: 10px;
  flex: 1;
}

.btn-modal-cart {
  flex: 1.4;
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
  padding: 14px 20px;
  border-radius: 8px;
  height: 46px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-modal-cart:hover {
  background: #333333;
  border-color: #333333;
  transform: translateY(-1px);
}

.btn-modal-wpp {
  flex: 1;
  background: #25D366;
  color: #ffffff;
  border: 1px solid #25D366;
  padding: 14px 16px;
  border-radius: 8px;
  height: 46px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-modal-wpp:hover {
  background: #1eb857;
  border-color: #1eb857;
  transform: translateY(-1px);
}

.modal-desc-box {
  background: #faf9f7;
  border: 1px solid #e8e6e1;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

.modal-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 15px;
  color: #b8860b;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 13px;
  color: #555555;
  line-height: 1.7;
}

.modal-pyramid {
  background: #ffffff;
  border: 1px solid #e8e6e1;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 16px;
}

.pyramid-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  border-bottom: 1px solid #f0eee8;
  padding-bottom: 8px;
}

.pyramid-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #111111;
  text-transform: uppercase;
}

.pyramid-sub {
  font-size: 11px;
  color: #888888;
  font-style: italic;
}

.pyramid-level {
  margin-bottom: 10px;
}

.level-name {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #777777;
  text-transform: uppercase;
}

.level-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.note-pill {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 16px;
  background: #f5f3ef;
  color: #333333;
  border: 1px solid #e5e2d8;
}

/* Mobile responsive modal perfection */
@media (max-width: 768px) {
  .product-modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .product-modal-container {
    width: 100vw;
    max-width: 100vw;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    border: 1px solid #e0ddd5;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
  }

  .product-modal-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
  }

  .product-modal-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .modal-bottle-pane {
    padding: 20px 16px 14px;
    border-right: none;
    border-bottom: 1px solid #eee7dd;
    background: linear-gradient(180deg, #FAF8F5 0%, #FFFFFF 100%);
  }

  .modal-bottle-wrap {
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-bottle-img {
    max-height: 180px;
    object-fit: contain;
  }

  .modal-gallery-strip {
    gap: 8px;
    margin-top: 10px;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .modal-gallery-strip button {
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0;
  }

  .modal-trust-badges {
    margin-top: 12px;
    gap: 8px;
  }

  .modal-trust-item {
    font-size: 11px;
  }

  .modal-details-pane {
    padding: 20px 16px max(24px, env(safe-area-inset-bottom));
  }

  .modal-full-bottle-card {
    padding: 12px 14px;
    margin-bottom: 10px;
  }

  .full-bottle-title {
    font-size: 14px;
  }

  .full-bottle-price {
    font-size: 15px;
  }

  .modal-sizes-grid-3 {
    gap: 6px;
  }

  .modal-sizes-grid-3 .modal-size-btn {
    padding: 8px 4px;
  }

  .size-ml {
    font-size: 11px;
  }

  .size-price {
    font-size: 12px;
  }

  .modal-purchase-box {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 16px;
  }

  .modal-actions-row {
    flex-direction: column;
    gap: 8px;
  }

  .btn-modal-cart, .btn-modal-buy-now {
    width: 100%;
    padding: 14px;
    font-size: 12px;
  }
}

/* ── CATEGORY CIRCLES (FRENESI STYLE) ── */
.categories-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 20px;
  text-align: center;
}

.categories-title {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #111111;
  margin-bottom: 36px;
}

.categories-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.category-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.category-circle:hover {
  transform: translateY(-6px);
}

.cat-circle-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(145deg, #C4A45A 0%, #d4b868 50%, #b89844 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(196, 164, 90, 0.25);
  transition: box-shadow 0.3s ease;
}

.category-circle:hover .cat-circle-img {
  box-shadow: 0 14px 40px rgba(196, 164, 90, 0.4);
}

.cat-circle-img img {
  max-width: 70%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.category-circle:hover .cat-circle-img img {
  transform: scale(1.08);
}

.cat-circle-img-2 {
  position: absolute;
  max-width: 45% !important;
  max-height: 55% !important;
  right: -5%;
  top: 5%;
  z-index: 1 !important;
  opacity: 0.7;
}

.cat-circle-label {
  font-family: var(--ff-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #111111;
  text-transform: uppercase;
}

/* ── CATALOG TOP BAR & EXPANDABLE LAYOUT ── */
.catalog-section {
  padding: 20px 0 40px;
  max-width: 1440px;
  margin: 0 auto;
  background: transparent;
}

.catalog-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  padding: 0 32px;
}

.catalog-tabs-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cat-tab-btn {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--bdr);
  background: transparent;
  color: var(--txt2);
  font-size: 13px;
  font-family: var(--ff-sans);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cat-tab-btn:hover {
  border-color: var(--gold2);
  color: var(--gold2);
}

.cat-tab-btn.active {
  background: var(--txt);
  color: #ffffff;
  border-color: var(--txt);
  font-weight: 700;
}

.cat-tab-arabe.active {
  background: var(--gold-grad);
  color: #000000;
  border-color: var(--gold);
}

.toggle-sidebar-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--bdr);
  background: transparent;
  color: var(--txt2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-sidebar-filter-btn:hover {
  background: var(--gold2);
  color: #ffffff;
  border-color: var(--gold2);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 24px 32px 0;
  align-items: start;
}

.catalog-layout.with-sidebar {
  grid-template-columns: 270px 1fr;
}

.catalog-sidebar {
  background: #ffffff;
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 24px 20px;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.catalog-sidebar.hidden-sidebar {
  display: none !important;
}

.catalog-content {
  width: 100%;
}

.catalog-content .prod-grid {
  padding: 0;
  max-width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.sidebar-header-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bdr);
}

.sidebar-header-mobile h3 {
  font-family: var(--ff-serif);
  font-size: 18px;
  color: var(--txt);
}

.sidebar-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--txt2);
  cursor: pointer;
}

.sidebar-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-title {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 4px;
}

.price-filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--txt2);
  cursor: pointer;
  user-select: none;
}

.price-radio input[type="radio"] {
  accent-color: var(--gold2);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.price-radio small {
  color: var(--gold2);
  font-weight: 600;
}

/* ── "POR QUE ESCOLHER UM DECANT?" (FRENESI LIGHT) ── */
.decant-why-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 32px;
}

.decant-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  background: #faf9f7;
  border: 1px solid #e8e6e1;
  border-radius: 16px;
  padding: 40px;
}

.decant-why-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 400px;
}

.decant-why-content h2 {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 24px;
}

.decant-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.decant-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--txt2);
}

.dwl-check {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── PIX PRICE ON PRODUCT CARDS ── */
.prod-pix-price {
  font-size: 12px;
  font-weight: 700;
  color: #2d8a4e;
  margin-top: 2px;
}

@media (max-width: 992px) {

  .catalog-layout,
  .catalog-layout.with-sidebar {
    grid-template-columns: 1fr;
    padding: 12px 16px 0;
  }

  .catalog-top-bar {
    padding: 0 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .catalog-tabs-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    gap: 8px;
  }

  .catalog-tabs-row::-webkit-scrollbar {
    display: none;
  }

  .cat-tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 12px;
  }

  .toggle-sidebar-filter-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 12px;
  }

  .catalog-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
    overflow-y: auto;
    transform: translateY(100%);
  }

  .catalog-sidebar:not(.hidden-sidebar) {
    transform: translateY(0);
  }

  .sidebar-header-mobile {
    display: flex;
  }

  .decant-why-section {
    padding: 0 16px;
    margin: 24px auto;
  }

  .decant-why-grid {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    gap: 20px;
  }

  .decant-why-content h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .decant-why-list {
    gap: 12px;
  }

  .decant-why-list li {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  #hdr {
    padding: 0 16px;
    grid-template-columns: auto 1fr auto;
    height: 58px;
  }

  .header-logo-img {
    height: 32px;
  }

  .hero-left {
    padding: 36px 18px 28px;
  }

  .hero-left h1 {
    font-size: 26px !important;
    line-height: 1.25 !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 12px !important;
  }

  .hero-left p {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-btns .btn-gold,
  .hero-btns .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 16px;
    font-size: 11px;
  }

  .sec-hdr {
    padding: 28px 16px 16px;
  }

  .sec-hdr h2 {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .catalog-content .prod-grid,
  .prod-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 10px !important;
    gap: 10px !important;
  }

  .prod-card {
    padding: 12px 10px 12px;
    border-radius: 10px;
  }

  .prod-img-wrap {
    height: 140px;
    margin-bottom: 8px;
    padding: 4px;
  }

  .prod-name {
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 2px;
  }

  .prod-brand {
    font-size: 10.5px;
    margin-bottom: 6px;
  }

  .prod-price {
    font-size: 14px;
    font-weight: 700;
  }

  .prod-pix-price {
    font-size: 10.5px;
  }

  .prod-inst {
    font-size: 9.5px;
  }

  .destaque-section {
    padding: 20px 16px;
  }

  .destaque-content-card {
    padding: 20px 16px;
  }

  .destaque-title {
    font-size: 22px;
  }

  .destaque-desc {
    font-size: 12.5px;
  }

  .about {
    padding: 40px 16px;
  }

  .about-card {
    padding: 24px 16px;
  }

  footer {
    padding: 36px 16px 0;
  }
}

/* ── ADMIN & BADGE ENHANCEMENTS ── */
.badge-status {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}
.badge-status.connected {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}
.badge-status.disconnected {
  background: rgba(241, 196, 15, 0.15);
  color: #f1c40f;
  border: 1px solid rgba(241, 196, 15, 0.3);
}

.price-regular-strike {
  font-size: 12px;
  color: #888888;
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 400;
}
.price-promo-highlight {
  font-size: 18px;
  font-weight: 800;
  color: #e74c3c;
}

.decant-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #C4A45A;
  color: #000000;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 12px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.promo-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #e74c3c;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 12px;
  z-index: 2;
}

.admin-table-wrap {
  overflow-x: auto;
  max-height: 520px;
  overflow-y: auto;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}

.announcements-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ann-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
}

.hero-slides-admin-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
  gap: 20px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.hero-slide-card {
  background: #141414 !important;
  border: 1px solid rgba(196,164,90,0.35) !important;
  border-radius: 10px !important;
  padding: 16px !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.hero-slide-card img {
  width: 100% !important;
  height: 160px !important;
  object-fit: cover !important;
  border-radius: 6px !important;
  margin-bottom: 4px !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}

.supabase-info-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(196,164,90,0.3);
  border-radius: 10px;
  padding: 24px;
}

.supabase-info-card code {
  background: rgba(0,0,0,0.4);
  color: #C4A45A;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 12px;
}

/* ── ADMIN LOGIN & AUTHENTICATION ── */
.admin-login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  min-height: 380px;
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid rgba(196, 164, 90, 0.4);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(196, 164, 90, 0.1);
  backdrop-filter: blur(16px);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #C4A45A 0%, #8A6D2A 100%);
  color: #000;
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(196, 164, 90, 0.4);
}

.login-header h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.login-header p {
  font-size: 12px;
  color: #888888;
  margin-bottom: 24px;
}

.login-error {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #e74c3c;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  text-align: left;
}

.shake {
  animation: shakeKey 0.4s ease-in-out;
}

@keyframes shakeKey {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

/* ── TOAST NOTIFICATIONS ── */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-item {
  pointer-events: auto;
  min-width: 280px;
  max-width: 380px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  animation: toastIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.toast-item.success {
  background: rgba(18, 38, 25, 0.95);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #2ecc71;
}

.toast-item.error {
  background: rgba(40, 18, 18, 0.95);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #e74c3c;
}

.toast-item.info {
  background: rgba(20, 25, 35, 0.95);
  border: 1px solid rgba(196, 164, 90, 0.4);
  color: #C4A45A;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── ÁREA DO CLIENTE & HISTÓRICO DE PEDIDOS ── */
.admin-modal,
.account-modal-container {
  background: rgba(14, 14, 14, 0.96) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(196, 164, 90, 0.35) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(24px) !important;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.9), 0 0 30px rgba(196, 164, 90, 0.15) !important;
  max-width: 640px !important;
}

.account-modal-container .admin-body {
  background: transparent !important;
  padding: 24px 28px !important;
}

.account-modal-container .login-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

.user-badge {
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-size: 10px !important;
}

.user-auth-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.user-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 164, 90, 0.25);
  border-radius: 12px;
  padding: 18px 24px;
}

.user-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold3) 100%);
  color: var(--ink);
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(196, 164, 90, 0.3);
  flex-shrink: 0;
}

/* ── CLIENT ORDER CARDS ── */
.order-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.order-card:hover {
  border-color: rgba(196, 164, 90, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.order-card-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.order-code {
  font-family: monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.order-date {
  font-size: 11px;
  color: var(--txt3);
}

.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #DDD;
}

.order-item-name {
  font-weight: 500;
}

.order-item-sub {
  font-size: 11px;
  color: #888;
}

.order-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 10px;
}

/* STATUS BADGES */
.order-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-solicitado {
  background: rgba(241, 196, 15, 0.15);
  color: #f1c40f;
  border: 1px solid rgba(241, 196, 15, 0.4);
}

.status-confirmado {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.4);
}

.status-preparacao {
  background: rgba(155, 89, 182, 0.15);
  color: #9b59b6;
  border: 1px solid rgba(155, 89, 182, 0.4);
}

.status-enviado {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.4);
}

.status-entregue {
  background: rgba(26, 188, 156, 0.2);
  color: #1abc9c;
  border: 1px solid rgba(26, 188, 156, 0.5);
}

.status-cancelado {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.4);
}

/* ── ADMIN METRICS & SUMMARY ── */
.admin-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-metric-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 164, 90, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
}

.metric-val {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.metric-lbl {
  font-size: 11px;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}