/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #584d6c;      /* Roxo acinzentado suave */
  --accent: #d44c6f;       /* Rose Gold - Rosa queimado moderno */
  --accent-light: #e8b4c2;  /* Rosa bem clarinho para hover/fundos */
  --accent-dark: #b33e5a;   /* Tom mais escuro para hover */
  --light-bg: #fdf8f7;      /* Fundo levemente rosado */
  --light: #faf0f5;        /* Rosa mais clarinho para cards/sumário */
  --dark: #2d2a35;         /* Quase preto suave para textos */
  --gray: #8a7f99;         /* Roxo acinzentado para textos secundários */
  --border: #eedde5;       /* Rosa bem clarinho para bordas */
  --radius: 16px;          /* Aumentei o raio para um ar mais suave */
  --shadow: 0 12px 30px -8px rgba(84, 74, 105, 0.15);
  --transition: all 0.3s ease;

  /* Background Pattern (opcional, para um toque delicado) */
  background-image: radial-gradient(circle at 10% 20%, rgba(212, 76, 111, 0.03) 0%, transparent 20%),
                    radial-gradient(circle at 90% 70%, rgba(88, 77, 108, 0.03) 0%, transparent 25%);
  background-attachment: fixed;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: #ffffff; /* Fundo branco limpo */
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; } /* Aumentei um pouco o padding lateral */

/* ===== TOPBAR ===== */
.topbar {
  background: var(--primary);
  color: #fff;
  padding: 8px 0;
  font-size: 12px;
  letter-spacing: 0.3px;
}
.topbar .container {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.topbar span { opacity: 0.9; }
.topbar i { margin-right: 5px; color: #ffd9e5; } /* Rosa clarinho no ícone */

/* ===== HEADER ===== */
.header {
  background: rgba(255, 255, 255, 0.85); /* Leve transparência */
  backdrop-filter: blur(10px); /* Efeito de vidro fosco moderno */
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}
.logo-text {
  font-family: 'Playfair Display', serif; /* Fonte mais elegante para o logo */
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-text::after {
  content: '✦'; /* Mudança para um asterisco delicado */
  color: var(--accent);
  font-size: 32px;
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}

.search-form {
  flex: 1;
  display: flex;
  max-width: 500px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition);
  background: #fff;
}
.search-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 76, 111, 0.2);
}
.search-form input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  background: transparent;
}
.search-form button {
  padding: 0 22px;
  background: var(--accent);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}
.search-form button:hover {
  background: var(--accent-dark);
}

.header-icons { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: var(--primary);
  transition: var(--transition);
  position: relative;
}
.icon-btn:hover {
  background: var(--light);
  color: var(--accent);
}
.cart-count {
  position: absolute;
  top: 0;
  right: 2px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--primary);
  border-radius: 0 0 20px 20px; /* Cantos arredondados */
  margin-top: -1px; /* Ajuste fino */
}
.navbar .container { display: flex; align-items: center; }
.nav-menu { display: flex; }
.nav-menu li a {
  display: block;
  padding: 14px 22px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--transition);
  border-radius: 30px; /* Para dar um efeito de pílula no hover */
  margin: 4px 0;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.nav-promo {
  color: #ffefc0 !important; /* Dourado claro */
  font-weight: 600 !important;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 14px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #fcf2f5 0%, #f9eaf0 40%, #f3e1ea 100%);
  border-radius: 0 0 40px 40px; /* Cantos arredondados na base */
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.3"><path fill="%23d44c6f" d="M45,-70.1C58.3,-63.2,68.9,-49.5,75.7,-34.1C82.5,-18.7,85.5,-1.6,81.2,13.8C76.9,29.2,65.3,42.9,52.4,54.1C39.5,65.3,25.4,74,9.3,78.3C-6.8,82.6,-24.9,82.5,-39.5,75.4C-54.1,68.3,-65.2,54.2,-73.6,38.5C-82,22.8,-87.7,5.5,-85.8,-11.3C-83.9,-28.1,-74.4,-44.3,-61.7,-55.3C-49,-66.3,-33.1,-72,-17.3,-74.1C-1.6,-76.2,14.1,-74.6,30.4,-70.1C46.7,-65.5,63.5,-58,45,-70.1Z" transform="translate(100 100)" /></svg>');
  background-repeat: no-repeat;
  background-position: 110% 20%;
  background-size: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 600px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.6);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--accent);
  font-style: italic; /* Dá um charme a mais */
}
.hero p {
  font-size: 18px;
  color: #5e5470;
  margin-bottom: 32px;
  opacity: 0.9;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 620px);
  gap: 36px;
  align-items: center;
}
.hero--with-media .hero-content {
  max-width: 100%;
}
.hero-media {
  position: relative;
  min-height: 520px;
}
.hero-media-shape {
  position: absolute;
  inset: 18px 0 18px 40px;
  border-radius: 45% 55% 52% 48% / 52% 42% 58% 48%;
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(212, 76, 111, 0.14);
}
.hero-media-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  aspect-ratio: 1 / 0.86;
  margin-left: auto;
}
.hero-media-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.hero-media-item.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 42% 58% 50% 50% / 52% 42% 58% 48%;
  background: transparent;
}
.hero-media-embed {
  background: transparent;
}
.hero-media-overlay {
  position: absolute;
  left: 7%;
  right: auto;
  bottom: 6%;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: min(74%, 430px);
  padding: 14px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(23, 20, 44, 0.08) 0%, rgba(23, 20, 44, 0.42) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 16px 34px -20px rgba(26, 22, 45, 0.38);
  color: #fff;
}
.hero-media-tag {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.hero-media-overlay h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 1.95vw, 34px);
  line-height: 1.02;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: balance;
}
.hero-media-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-media-meta strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-media-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.hero-media-meta a:hover {
  background: rgba(255,255,255,0.22);
}

@media (max-width: 1100px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-media {
    min-height: 0;
  }
  .hero-media-stage {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 16 / 11;
  }
  .hero-media-shape {
    inset: 16px 40px;
  }
}

@media (max-width: 767px) {
  .hero--with-media .hero-content {
    padding-bottom: 18px;
  }
  .hero-media-stage {
    aspect-ratio: 16 / 12;
  }
  .hero-media-shape {
    inset: 12px 10px;
  }
  .hero-media-overlay {
    left: 5%;
    width: min(82%, 360px);
    bottom: 5%;
    padding: 12px 14px;
    border-radius: 18px;
    gap: 8px;
  }
  .hero-media-overlay h3 {
    font-size: 22px;
  }
  .hero-media-meta strong {
    font-size: 17px;
  }
  .hero-media-meta a {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(212, 76, 111, 0.4);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 76, 111, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== SEÇÃO GERAL ===== */
.section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-header p {
  color: var(--gray);
  font-size: 16px;
  letter-spacing: 0.3px;
}
.section-header .line {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #f3b3c9);
  margin: 16px auto 0;
  border-radius: 10px;
}

/* ===== CATEGORIAS ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.cat-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.07); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(88, 77, 108, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.cat-card-overlay h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}
.cat-card-placeholder {
  background: linear-gradient(145deg, var(--light), #fce7f0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-icon { font-size: 48px; opacity: 0.5; color: var(--accent); }

/* ===== PRODUTOS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(212, 76, 111, 0.2);
  border-color: var(--accent-light);
}
.product-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--light-bg);
  isolation: isolate;
}
.product-card-media-link,
.product-card-media-stack {
  position: absolute;
  inset: 0;
  display: block;
}
.product-card-media-stack {
  overflow: hidden;
  background: var(--light-bg);
}
.product-card-media-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.35s ease, transform 0.55s ease;
  backface-visibility: hidden;
}
.product-card-media-layer.is-hover-media {
  opacity: 0;
  pointer-events: none;
}
.product-card-media-layer.is-hover-video {
  background: #111;
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card-media-layer.is-primary {
    opacity: 0;
  }
  .product-card.has-hover-media:hover .product-card-media-layer.is-hover-media {
    opacity: 1;
  }
  .product-card:hover .product-card-media-layer {
    transform: scale(1.03);
  }
}
@media (hover: none) {
  .product-card-media-layer.is-hover-media {
    display: none;
  }
}
.badge-promo {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}
.badge-novo {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-add-cart {
  position: absolute;
  bottom: -50px;
  left: 10px;
  right: 10px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 40px;
  transition: bottom 0.25s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 10px rgba(212, 76, 111, 0.4);
}
.product-card:hover .btn-add-cart { bottom: 15px; }
.product-card-body { padding: 16px; }
.product-card-cat {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.product-card-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
  line-height: 1.4;
}
.product-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.price-current {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}
.price-old {
  font-size: 13px;
  color: var(--gray);
  text-decoration: line-through;
}
.price-badge {
  font-size: 11px;
  background: #f2e2e9;
  color: var(--accent-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

/* ===== BANNER DESTAQUE ===== */
.banner-destaque {
  background: linear-gradient(145deg, var(--primary) 0%, #756b87 100%);
  padding: 70px 0;
  color: #fff;
  text-align: center;
  border-radius: 40px; /* Adicionando cantos arredondados */
  margin: 20px 24px; /* Espaçamento nas laterais */
}
.banner-destaque .container {
    max-width: 700px;
}
.banner-destaque h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.banner-destaque p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 28px;
}
.btn-branco {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-branco:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  background: var(--light);
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--light-bg);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.newsletter p {
  color: var(--gray);
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 60px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: #fff;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 24px;
  border: none;
  background: #fff;
  color: var(--dark);
  font-size: 15px;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--gray); }
.newsletter-form button {
  padding: 14px 32px;
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--accent-dark); }

/* ===== FOOTER ===== */
.footer {
  background: #25212e; /* Um tom mais escuro e suave que o primary */
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-family: 'Playfair Display', serif;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}
.footer-col ul li i {
  width: 20px;
  color: var(--accent-light);
  margin-right: 8px;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}
.payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.pay-badge {
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== CARRINHO DRAWER ===== */
.cart-drawer {
  position: fixed;
  right: -440px;
  top: 0;
  bottom: 0;
  width: 420px;
  background: #fff;
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: -10px 0 40px rgba(88, 77, 108, 0.2);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-drawer-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}
.cart-drawer-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.2s;
}
.cart-drawer-header button:hover { color: var(--accent); }
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
}
.btn-ver-carrinho {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-ver-carrinho:hover {
  background: var(--accent-dark);
  transform: scale(1.02);
}
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(88, 77, 108, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
}
.overlay.active { display: block; }

/* ===== PÁGINA DE CARRINHO ===== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  padding: 16px 12px;
  border-bottom: 2px solid var(--border);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  font-weight: 600;
}
.cart-table td {
  padding: 20px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-product-img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  border-radius: 8px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.qty-btn:hover {
  background: var(--light);
  border-color: var(--accent);
}
.qty-input {
  width: 55px;
  text-align: center;
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 8px;
  font-weight: 600;
}
.remove-btn {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 20px;
  transition: color 0.2s;
}
.remove-btn:hover { color: var(--accent); }
.cart-summary {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.cart-summary h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--dark);
}
.summary-total {
  font-size: 22px;
  font-weight: 800;
  border-top: 2px dashed var(--border);
  padding-top: 16px;
  margin-top: 10px;
  color: var(--accent);
}

/* ===== PÁGINA DE PRODUTO ===== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.product-images .main-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.product-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}
.product-price-area { margin: 25px 0; }
.product-price-area .price-new {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.product-price-area .price-inst {
  font-size: 14px;
  color: var(--gray);
  margin-top: 6px;
}
.variation-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--primary);
}
.variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.variation-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.variation-btn:hover,
.variation-btn.selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.btn-comprar {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 60px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.btn-comprar:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 76, 111, 0.3);
}
.btn-carrinho {
  width: 100%;
  padding: 16px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 60px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-carrinho:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== PÁGINA DE CHECKOUT ===== */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
}
.form-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.form-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  transition: var(--transition);
  font-family: inherit;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 76, 111, 0.15);
}

/* ===== ADMIN (mantendo a base, mas com cores suaves) ===== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow-y: auto;
}
.admin-logo { padding: 28px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
}
.admin-logo small { display: block; font-size: 11px; opacity: 0.5; margin-top: 4px; }
.admin-nav { padding: 16px 0; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: var(--transition);
  border-radius: 30px;
  margin: 2px 10px;
}
.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.admin-nav a i { width: 20px; text-align: center; }
.admin-nav .nav-section {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  padding: 20px 20px 8px;
}
.admin-main { margin-left: 260px; flex: 1; background: var(--light-bg); }
.admin-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-header h1 { font-size: 22px; font-weight: 700; color: var(--primary); }
.admin-content { padding: 28px; }

/* Cards de métricas */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.metric-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 18px;
}
.metric-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.metric-icon.blue { background: #e8e2f2; color: var(--primary); }
.metric-icon.green { background: #f2e2e9; color: var(--accent); }
.metric-icon.orange { background: #ffedd5; color: #c2410c; }
.metric-icon.red { background: #fee2e2; color: #b91c1c; }
.metric-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.metric-label { font-size: 13px; color: var(--gray); margin-top: 4px; }

/* Tabelas admin */
.admin-table-wrap {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.admin-table-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  background: #faf0f5;
  text-align: left;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.admin-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.admin-table tr:hover td { background: var(--light-bg); }
.status-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.status-pago { background: #dcfce7; color: #166534; }
.status-pendente { background: #fef9c3; color: #854d0e; }
.status-cancelado { background: #fee2e2; color: #991b1b; }
.status-enviado { background: #dbeafe; color: #1e40af; }
.btn-sm {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-edit { background: #e8e2f2; color: var(--primary); }
.btn-edit:hover { background: var(--primary); color: #fff; }
.btn-delete { background: #fee2e2; color: #b91c1c; }
.btn-delete:hover { background: #b91c1c; color: #fff; }
.btn-success { background: #f2e2e9; color: var(--accent); }
.btn-admin {
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-admin:hover { background: var(--accent-dark); }

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; }
  .search-form { order: 3; max-width: 100%; width: 100%; }
  .nav-menu { display: none; flex-direction: column; width: 100%; }
  .nav-menu.open { display: flex; }
  .menu-toggle { display: flex; align-items: center; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; width: 100%; }
  .admin-main { margin-left: 0; }
  .banner-destaque { border-radius: 0; margin: 0; } /* Ajuste para mobile */
}

/* ===== PÁGINAS INSTITUCIONAIS ===== */
.info-hero {
  background: linear-gradient(135deg, #fff7fa 0%, #f8eef4 100%);
  border-bottom: 1px solid rgba(88,77,108,0.08);
}
.info-hero-inner {
  padding: 54px 0 44px;
  max-width: 760px;
}
.info-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(212, 76, 111, 0.10);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.info-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 14px;
}
.info-hero p {
  font-size: 18px;
  line-height: 1.75;
  color: #756b86;
  max-width: 680px;
}
.info-page {
  padding: 56px 0 72px;
}
.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}
.info-card,
.info-side-card {
  background: #fff;
  border: 1px solid rgba(88,77,108,0.08);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(88,77,108,0.08);
}
.info-card {
  padding: 32px;
}
.info-card + .info-card {
  margin-top: 20px;
}
.info-card h2,
.info-side-card h3 {
  color: var(--primary);
  margin-bottom: 14px;
}
.info-card h2 {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
}
.info-card h3 {
  font-size: 20px;
  color: var(--primary);
  margin: 24px 0 10px;
}
.info-card p,
.info-card li,
.info-side-card p,
.info-side-card li {
  color: #5e5869;
  font-size: 16px;
  line-height: 1.8;
}
.info-card ul,
.info-card ol,
.info-side-card ul {
  padding-left: 22px;
}
.info-card li + li,
.info-side-card li + li {
  margin-top: 8px;
}
.info-side-stack {
  display: grid;
  gap: 18px;
}
.info-side-card {
  padding: 24px;
}
.info-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.info-mini-box {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff7fa 0%, #f7f1f5 100%);
  border: 1px solid rgba(212, 76, 111, 0.08);
}
.info-mini-box strong {
  display: block;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 8px;
}
.info-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: #fff;
}
.info-table th,
.info-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(88,77,108,0.10);
  text-align: left;
  font-size: 15px;
}
.info-table th {
  background: #faf3f7;
  color: var(--primary);
  font-weight: 700;
}
.info-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8f9fb;
  color: #65606d;
  font-size: 14px;
  line-height: 1.7;
}
.info-cta {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.info-cta:hover {
  background: var(--accent);
}
.info-divider {
  height: 1px;
  background: rgba(88,77,108,0.10);
  margin: 28px 0;
}
@media (max-width: 992px) {
  .info-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .info-page {
    padding: 40px 0 56px;
  }
  .info-card,
  .info-side-card {
    border-radius: 22px;
  }
  .info-card {
    padding: 24px 20px;
  }
  .info-highlight {
    grid-template-columns: 1fr;
  }
  .info-hero-inner {
    padding: 38px 0 30px;
  }
  .info-hero p {
    font-size: 16px;
  }
}

/* ===== HOTFIX RESTORE EXPLORE POR CATEGORIA ===== */
.cat-section {
  background: linear-gradient(180deg, #fff 0%, #fdf8f7 100%);
}
.cat-section-header {
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff0f4;
  border: 1px solid #f4d9e3;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.cat-card {
  background: #fff;
  border: 1px solid rgba(212, 76, 111, 0.10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px -28px rgba(88, 77, 108, 0.35);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 48px -26px rgba(212, 76, 111, 0.28);
  border-color: rgba(212, 76, 111, 0.22);
}
.cat-card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff0f4 0%, #f5e6ee 100%);
}
.cat-card-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.92) 100%);
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card:hover img {
  transform: scale(1.06);
}
.cat-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(212, 76, 111, 0.18), transparent 32%),
    linear-gradient(145deg, #fff4f7 0%, #f4e7ee 100%);
}
.cat-icon {
  font-size: 72px;
  line-height: 1;
  filter: drop-shadow(0 14px 20px rgba(212, 76, 111, 0.14));
}
.cat-card-body {
  padding: 22px 22px 24px;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff4f7;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 12px;
}
.cat-card p {
  color: #6b617d;
  font-size: 14px;
  min-height: 68px;
}
.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 14px;
}
.cat-card-link i {
  font-size: 12px;
  transition: transform 0.25s ease;
}
.cat-card:hover .cat-card-link i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .cat-section-header { margin-bottom: 34px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cat-card-media { height: 170px; }
  .cat-card-body { padding: 18px 16px 20px; }
  .cat-card h3 { font-size: 22px; }
  .cat-card p { min-height: auto; font-size: 13px; }
}

@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card-media { height: 220px; }
}

/* ===== HOTFIX CAT SECTION HEIGHT CUT ===== */
.cat-section {
  overflow: visible;
}
.cat-grid {
  align-items: stretch;
}
.cat-card {
  aspect-ratio: auto !important;
  height: auto !important;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.cat-card-media {
  flex: 0 0 230px;
}
.cat-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.cat-card p {
  min-height: 0 !important;
}
.cat-card-link {
  margin-top: auto;
}
@media (max-width: 768px) {
  .cat-card {
    min-height: 100%;
  }
  .cat-card-media {
    flex-basis: 170px;
  }
}
@media (max-width: 560px) {
  .cat-card-media {
    flex-basis: 220px;
  }
}


/* ===== HERO VIDEO FINAL TUNE ===== */
.hero {
  overflow: hidden;
}
.hero-shell {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 680px);
  gap: 28px;
  align-items: center;
}
.hero-media {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media-shape {
  inset: 32px 0 32px 12px;
  border-radius: 46% 54% 52% 48% / 52% 44% 56% 48%;
  background: rgba(233, 193, 207, 0.46);
  border: 1px solid rgba(212, 76, 111, 0.14);
  box-shadow: none;
}
.hero-media-stage {
  width: min(100%, 680px);
  aspect-ratio: 1 / 0.78;
  margin-left: auto;
  position: relative;
  overflow: hidden;
  border-radius: 46% 54% 52% 48% / 52% 44% 56% 48%;
  clip-path: ellipse(49% 43% at 50% 50%);
  background: rgba(248, 233, 238, 0.9);
}
.hero-media-item,
.hero-media-item.is-active {
  inset: 0;
}
.hero-media-video,
.hero-media-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 0;
  background: transparent;
  transform: scale(1.02);
}
.hero-media-overlay {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-media {
    min-height: 420px;
  }
  .hero-media-stage {
    width: min(100%, 760px);
    aspect-ratio: 1 / 0.82;
    margin: 0 auto;
  }
  .hero-media-shape {
    inset: 18px 18px 10px;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
  }
  .hero-shell {
    gap: 10px;
  }
  .hero-media {
    min-height: 260px;
    order: -1;
  }
  .hero-media-stage {
    width: calc(100% - 16px);
    aspect-ratio: 1 / 0.88;
    clip-path: ellipse(50% 44% at 50% 50%);
  }
  .hero-media-shape {
    inset: 12px 0 6px;
    border-radius: 50%;
  }
  .hero-media-video,
  .hero-media-embed {
    object-position: center 18%;
    transform: scale(1.04);
  }
}


/* ===== TEMA EDITORIAL NEUTRO | REFERÊNCIA PATOGÊ ===== */
:root {
  --theme-primary: #262320;
  --theme-accent: #8a6d5a;
  --theme-accent-light: #d7c7b8;
  --theme-accent-dark: #6b5344;
  --theme-surface: #f7f3ef;
  --theme-surface-2: #efe7df;
  --theme-text: #1b1917;
  --theme-muted: #7b736b;
  --theme-border: #e7ddd3;
  --theme-footer: #1d1b19;
  --theme-shadow: 0 18px 40px -28px rgba(38, 35, 32, 0.24);
}

body {
  color: var(--theme-text);
}

.topbar {
  background: #f3efe9;
  color: var(--theme-primary);
  border-bottom: 1px solid var(--theme-border);
}
.topbar span {
  opacity: 1;
}
.topbar i {
  color: var(--theme-accent);
}

.header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--theme-border);
  box-shadow: 0 12px 28px -24px rgba(38, 35, 32, 0.2);
}
.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-primary);
}
.logo-text::after {
  display: none;
}
.search-form {
  border-color: var(--theme-border);
}
.search-form:focus-within {
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 3px rgba(138, 109, 90, 0.14);
}
.search-form button {
  background: var(--theme-primary);
}
.search-form button:hover {
  background: var(--theme-accent-dark);
}
.header-icons,
.icon-btn {
  color: var(--theme-primary);
}
.icon-btn:hover {
  background: var(--theme-surface);
  color: var(--theme-accent-dark);
}
.cart-count {
  background: var(--theme-accent);
}

.navbar {
  background: #fff;
  border-radius: 0;
  border-top: 1px solid rgba(38, 35, 32, 0.04);
  border-bottom: 1px solid var(--theme-border);
  box-shadow: none;
}
.nav-menu li a {
  color: var(--theme-primary);
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  margin: 0;
  position: relative;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 9px;
  height: 1px;
  background: var(--theme-accent);
  opacity: 0.85;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  background: transparent;
  color: var(--theme-accent-dark);
}
.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  transform: scaleX(1);
}
.nav-promo {
  color: var(--theme-accent-dark) !important;
}
.menu-toggle {
  color: var(--theme-primary);
}

.hero {
  background: linear-gradient(145deg, #f8f5f1 0%, #f2ece6 55%, #ebe3da 100%);
}
.hero-bg {
  opacity: 0.42;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" opacity="0.3"><path fill="%23d7c7b8" d="M45,-70.1C58.3,-63.2,68.9,-49.5,75.7,-34.1C82.5,-18.7,85.5,-1.6,81.2,13.8C76.9,29.2,65.3,42.9,52.4,54.1C39.5,65.3,25.4,74,9.3,78.3C-6.8,82.6,-24.9,82.5,-39.5,75.4C-54.1,68.3,-65.2,54.2,-73.6,38.5C-82,22.8,-87.7,5.5,-85.8,-11.3C-83.9,-28.1,-74.4,-44.3,-61.7,-55.3C-49,-66.3,-33.1,-72,-17.3,-74.1C-1.6,-76.2,14.1,-74.6,30.4,-70.1C46.7,-65.5,63.5,-58,45,-70.1Z" transform="translate(100 100)" /></svg>');
  background-position: 108% 18%;
  background-size: 48%;
}
.hero-badge {
  background: rgba(255, 255, 255, 0.72);
  color: var(--theme-accent-dark);
  border-color: rgba(107, 83, 68, 0.12);
}
.hero h1,
.section-header h2,
.banner-destaque h2,
.newsletter h3,
.product-info h1,
.cart-summary h3,
.footer-col h4 {
  color: var(--theme-primary);
}
.hero h1 span {
  color: var(--theme-accent-dark);
}
.hero p,
.section-header p,
.product-card-cat,
.newsletter p,
.footer-col p,
.metric-label,
.cat-card p {
  color: var(--theme-muted);
}
.hero-media-shape {
  background: rgba(222, 210, 198, 0.58);
  border-color: rgba(138, 109, 90, 0.18);
}
.hero-media-stage {
  background: rgba(244, 238, 231, 0.94);
}

.btn-primary,
.btn-add-cart,
.newsletter-form button,
.btn-ver-carrinho,
.btn-comprar,
.btn-admin {
  background: var(--theme-primary);
}
.btn-primary:hover,
.btn-add-cart:hover,
.newsletter-form button:hover,
.btn-ver-carrinho:hover,
.btn-comprar:hover,
.btn-admin:hover {
  background: var(--theme-accent-dark);
}
.btn-primary,
.btn-add-cart {
  box-shadow: 0 10px 20px -14px rgba(38, 35, 32, 0.35);
}
.btn-outline {
  color: var(--theme-primary);
  border-color: var(--theme-primary);
}
.btn-outline:hover {
  background: var(--theme-primary);
  border-color: var(--theme-primary);
}
.btn-branco {
  color: var(--theme-primary);
}
.btn-branco:hover {
  background: #f4eee8;
}

.section-header .line {
  background: linear-gradient(90deg, var(--theme-accent), #d8c7b8);
}

.product-card,
.admin-table-wrap,
.metric-card,
.cart-summary,
.cart-drawer,
.product-images .main-img,
.cart-product-img {
  border-color: var(--theme-border);
}
.product-card {
  box-shadow: 0 10px 26px -22px rgba(38, 35, 32, 0.18);
}
.product-card:hover {
  border-color: rgba(138, 109, 90, 0.28);
  box-shadow: 0 20px 40px -24px rgba(38, 35, 32, 0.24);
}
.price-current,
.product-price-area .price-new,
.summary-total,
.metric-value,
.admin-header h1 {
  color: var(--theme-primary);
}
.price-badge,
.metric-icon.green,
.btn-success {
  background: var(--theme-surface-2);
  color: var(--theme-accent-dark);
}
.badge-promo {
  background: var(--theme-primary);
}
.badge-novo {
  background: var(--theme-accent-dark);
}
.product-card-img,
.product-card-media-stack,
.newsletter,
.cart-summary,
.metric-icon.blue,
.admin-table th,
.admin-table tr:hover td {
  background: var(--theme-surface);
}
.metric-icon.blue,
.btn-edit {
  color: var(--theme-primary);
}
.metric-icon.blue,
.btn-edit {
  background: #ece6df;
}
.admin-table th {
  color: var(--theme-primary);
}

.banner-destaque {
  background: linear-gradient(145deg, #262320 0%, #403a35 100%);
}
.newsletter {
  border-top-color: var(--theme-border);
  border-bottom-color: var(--theme-border);
}
.newsletter-form {
  border-color: var(--theme-border);
}

.footer {
  background: var(--theme-footer);
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.68);
}
.footer-col ul li a:hover,
.footer-col ul li i {
  color: #cfb49d;
}
.social-links a:hover {
  background: var(--theme-accent-dark);
}
.pay-badge {
  background: rgba(255, 255, 255, 0.12);
}

.cart-drawer {
  box-shadow: -14px 0 34px rgba(38, 35, 32, 0.16);
}
.cart-drawer-header h3 {
  color: var(--theme-primary);
}
.overlay {
  background: rgba(29, 27, 25, 0.32);
}
.info-divider {
  background: rgba(38, 35, 32, 0.1);
}

.cat-section {
  background: linear-gradient(180deg, #fff 0%, #f6f1eb 100%);
}
.section-kicker {
  background: #f4efe9;
  border-color: #e7ddd4;
  color: var(--theme-accent-dark);
}
.cat-card {
  border-color: rgba(138, 109, 90, 0.14);
  box-shadow: var(--theme-shadow);
}
.cat-card:hover {
  border-color: rgba(138, 109, 90, 0.26);
  box-shadow: 0 24px 44px -24px rgba(38, 35, 32, 0.22);
}
.cat-card-media {
  background: linear-gradient(145deg, #f8f5f1 0%, #efe7de 100%);
}
.cat-card-placeholder {
  background:
    radial-gradient(circle at top right, rgba(138, 109, 90, 0.16), transparent 32%),
    linear-gradient(145deg, #f8f5f1 0%, #efe7de 100%);
}
.cat-chip {
  background: #f4efe9;
  color: var(--theme-accent-dark);
}
.cat-card-link {
  color: var(--theme-accent-dark);
}

.status-pago { background: #edf6ef; color: #355d41; }
.status-pendente { background: #f7f0dd; color: #8a6730; }
.status-cancelado { background: #f7e6e5; color: #8d4540; }
.status-enviado { background: #e8eef7; color: #456083; }

@media (max-width: 768px) {
  .navbar {
    background: #fff;
  }
  .nav-menu {
    background: #fff;
    border-top: 1px solid var(--theme-border);
  }
  .nav-menu li a {
    border-bottom: 1px solid rgba(38, 35, 32, 0.05);
  }
  .nav-menu li a::after {
    display: none;
  }
}


/* ===== AJUSTES DE CONTRASTE | 2026-04-09 ===== */
.banner-destaque h2,
.banner-destaque p {
  color: #ffffff !important;
}
.banner-destaque h2 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}
.banner-destaque .btn-branco {
  background: #ffffff;
  color: var(--theme-primary);
}
.banner-destaque .btn-branco:hover {
  background: #f5f0ea;
  color: var(--theme-primary);
}

.footer {
  background: #181513;
  color: rgba(255, 255, 255, 0.82);
}
.footer-col h4 {
  color: #ffffff !important;
}
.footer-col p,
.footer-col ul li,
.footer-col ul li a,
.footer-bottom,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.76) !important;
}
.footer-col ul li a:hover {
  color: #e4c9b2 !important;
}
.footer-col ul li i {
  color: #d7b89b !important;
}
.footer .social-links a {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}
.footer .social-links a:hover {
  background: var(--theme-accent-dark);
  color: #ffffff;
}
.footer .pay-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.product-card-price .price-current,
.price-current,
.product-price-area .price-new {
  color: #7a5d4c !important;
}

/* ===== VITRINE EM VIDEO ===== */
.video-showcase-section {
  padding: 72px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(228, 201, 178, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,241,236,0.98));
}
.video-showcase-header {
  margin-bottom: 30px;
}
.video-showcase {
  --video-card-width: clamp(180px, 19vw, 242px);
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.video-showcase.is-single {
  justify-content: center;
}
.video-showcase.is-single .video-showcase-arrow {
  display: none;
}
.video-showcase.is-single .video-showcase-viewport {
  width: auto;
  overflow: visible;
  padding: 10px 0 0;
}
.video-showcase.is-single .video-showcase-track {
  width: auto;
  min-width: 0;
  padding: 0;
  justify-content: center;
}
.video-showcase.is-single .video-showcase-card {
  transform: none;
  opacity: 1;
  filter: none;
}
.video-showcase-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(122, 93, 76, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--theme-text);
  flex: 0 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 34px rgba(58, 42, 32, 0.10);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.video-showcase-arrow:hover {
  transform: translateY(-2px);
  background: var(--theme-accent-dark);
  color: #fff;
  border-color: var(--theme-accent-dark);
}
.video-showcase-arrow:disabled {
  opacity: .45;
  cursor: default;
  transform: none;
}
.video-showcase-viewport {
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  padding: 10px 0 20px;
  touch-action: pan-x;
}
.video-showcase-viewport::-webkit-scrollbar {
  display: none;
}
.video-showcase-track {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: max-content;
  min-width: 100%;
  padding: 8px max(16px, calc(50% - (var(--video-card-width) / 2)));
}
.video-showcase-card {
  width: var(--video-card-width);
  flex: 0 0 var(--video-card-width);
  position: relative;
  transform: scale(.86);
  transform-origin: center center;
  opacity: .64;
  filter: saturate(.82);
  transition: transform .32s ease, opacity .32s ease, filter .32s ease;
  scroll-snap-align: center;
}
.video-showcase-card.is-active {
  transform: scale(1);
  opacity: 1;
  filter: saturate(1);
  z-index: 2;
}
.video-showcase-media {
  display: block;
  text-decoration: none;
}
.video-showcase-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 255 / 436;
  background: #efe8df;
  box-shadow: 0 28px 44px rgba(51, 37, 28, 0.16);
}
.video-showcase-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 58%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
  z-index: 3;
}
.video-showcase-poster,
.video-showcase-video,
.video-showcase-embed,
.video-showcase-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-showcase-poster,
.video-showcase-video,
.video-showcase-embed iframe {
  object-fit: cover;
}
.video-showcase-poster {
  opacity: 1;
  transition: opacity .28s ease;
}
.video-showcase-video,
.video-showcase-embed {
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
  background: #111;
}
.video-showcase-card.is-active.is-media-ready .video-showcase-video,
.video-showcase-card.is-active.is-media-ready .video-showcase-embed {
  opacity: 1;
}
.video-showcase-card.is-active.is-media-ready .video-showcase-poster {
  opacity: 0;
}
.video-showcase-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.76);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.video-showcase-product {
  margin: 10px auto 0;
  width: calc(100% - 16px);
  min-height: 68px;
  border-radius: 16px;
  padding: 6px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(122, 93, 76, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--theme-text);
  box-shadow: 0 10px 24px rgba(58, 42, 32, 0.09);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.video-showcase-card.is-active .video-showcase-product {
  transform: translateY(0);
  box-shadow: 0 16px 30px rgba(58, 42, 32, 0.12);
  border-color: rgba(122, 93, 76, 0.20);
}
.video-showcase-product-thumb {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 54px;
  background: #efe8df;
}
.video-showcase-product-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.video-showcase-product-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-showcase-product-copy strong {
  font-size: 13px;
  line-height: 1.35;
  color: var(--theme-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-showcase-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.video-showcase-price-old {
  font-size: 11px;
  color: var(--theme-muted);
  text-decoration: line-through;
}
.video-showcase-price-current {
  font-size: 14px;
  font-weight: 800;
  color: #7a5d4c;
}
@media (max-width: 991px) {
  .video-showcase {
    gap: 8px;
  }
  .video-showcase-arrow {
    display: none;
  }
  .video-showcase-track {
    padding-inline: 22px;
  }
}
@media (max-width: 767px) {
  .video-showcase-section {
    padding: 58px 0;
  }
  .video-showcase {
    --video-card-width: min(76vw, 260px);
    gap: 0;
  }
  .video-showcase-viewport {
    padding: 6px 0 18px;
    scroll-snap-type: x mandatory;
  }
  .video-showcase-track {
    gap: 12px;
    min-width: max-content;
    padding: 8px calc(50vw - (var(--video-card-width) / 2)) 12px;
  }
  .video-showcase-card {
    transform: none;
    opacity: .72;
    filter: none;
  }
  .video-showcase-card.is-active {
    opacity: 1;
  }
  .video-showcase-frame {
    border-radius: 22px;
  }
  .video-showcase-badge {
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    font-size: 10px;
  }
  .video-showcase-product {
    width: 100%;
    min-height: 0;
    margin-top: 10px;
    padding: 8px;
    gap: 8px;
    border-radius: 14px;
  }
  .video-showcase-product-thumb {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 10px;
  }
  .video-showcase-product-copy strong {
    font-size: 12px;
  }
  .video-showcase-price-old {
    font-size: 10px;
  }
  .video-showcase-price-current {
    font-size: 13px;
  }
  .video-showcase.is-single .video-showcase-viewport {
    width: 100%;
    padding: 8px 0 0;
    overflow: visible;
  }
}
@media (max-width: 480px) {
  .video-showcase {
    --video-card-width: min(82vw, 280px);
  }
  .video-showcase-track {
    gap: 10px;
    padding-inline: calc(50vw - (var(--video-card-width) / 2));
  }
  .video-showcase-header h2 {
    font-size: 1.9rem;
  }
}



/* ===== CATEGORIA PREMIUM | 2026-04-10 ===== */
.cat-page-head {
  background:
    radial-gradient(circle at top right, rgba(138,109,90,.10), transparent 24%),
    linear-gradient(180deg, #fbf8f5 0%, #fff 100%);
  border-bottom: 1px solid var(--theme-border);
  padding: 18px 0 28px;
}
.cat-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--theme-muted);
}
.cat-breadcrumbs a { color: inherit; }
.cat-breadcrumbs strong { color: var(--theme-primary); }
.cat-head-shell {
  display: block;
}
.cat-head-shell--compact {
  max-width: 860px;
}
.cat-head-copy h1 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: .96;
  margin: 0 0 14px;
  color: var(--theme-primary);
}
.cat-eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 700;
  color: var(--theme-accent-dark);
}
.cat-description {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--theme-muted);
}
.cat-head-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.cat-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--theme-border);
  color: var(--theme-primary);
  font-size: 13px;
  box-shadow: 0 16px 28px -26px rgba(38,35,32,.28);
}
.cat-meta-pill strong {
  font-size: 14px;
  color: var(--theme-primary);
}
.cat-subcats-shell {
  margin-top: 22px;
  max-width: 860px;
}
.cat-subcats-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--theme-border);
  background: rgba(255,255,255,.95);
  color: var(--theme-primary);
  font-size: 14px;
  font-weight: 700;
  transition: all .2s ease;
}
.cat-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--theme-surface);
  color: var(--theme-accent-dark);
  font-size: 11px;
}
.cat-chip:hover,
.cat-chip.is-active {
  transform: translateY(-1px);
  background: var(--theme-primary);
  border-color: var(--theme-primary);
  color: #fff;
}
.cat-chip:hover span,
.cat-chip.is-active span {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.cat-page-section {
  padding: 28px 0 56px;
  background: linear-gradient(180deg, #fff 0%, #faf7f3 100%);
}
.cat-mobile-filter-toggle {
  display: none;
  width: 100%;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  border: 1px solid var(--theme-border);
  border-radius: 16px;
  background: #fff;
  color: var(--theme-primary);
  font-weight: 700;
  box-shadow: 0 18px 30px -28px rgba(38,35,32,.24);
}
.cat-layout {
  display: grid;
  grid-template-columns: 300px minmax(0,1fr);
  gap: 28px;
  align-items: start;
}
.cat-sidebar {
  position: sticky;
  top: 96px;
  z-index: 18;
}
.cat-filters-card {
  background: linear-gradient(180deg, #fff 0%, #fdf9f6 100%);
  border: 1px solid var(--theme-border);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 24px 42px -34px rgba(38,35,32,.24);
}
.cat-filters-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cat-filters-head h3 {
  margin: 0 0 4px;
  font-size: 20px;
  color: var(--theme-primary);
}
.cat-filters-head p {
  margin: 0;
  font-size: 13px;
  color: var(--theme-muted);
  line-height: 1.55;
}
.cat-clear-link {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--theme-accent-dark);
}
.cat-filter-group + .cat-filter-group {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--theme-border);
}
.cat-filter-group h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  color: var(--theme-primary);
}
.cat-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cat-filter-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(231,221,211,.92);
  background: #fff;
  color: var(--theme-primary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}
.cat-filter-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(138,109,90,.36);
}
.cat-filter-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.cat-filter-pill small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--theme-surface);
  color: var(--theme-accent-dark);
  font-size: 11px;
  font-weight: 700;
}
.cat-filter-pill:has(input:checked) {
  background: var(--theme-primary);
  border-color: var(--theme-primary);
  color: #fff;
  box-shadow: 0 18px 28px -24px rgba(38,35,32,.34);
}
.cat-filter-pill:has(input:checked) small {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.cat-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cat-price-grid label,
.cat-sort-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--theme-muted);
}
.cat-price-grid input,
.cat-sort-form select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--theme-border);
  background: #fff;
  color: var(--theme-primary);
}
.cat-helper-text {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--theme-muted);
}
.cat-filter-actions {
  margin-top: 20px;
}
.cat-filter-submit {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
}
.cat-content {
  min-width: 0;
}
.cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--theme-border);
  background: rgba(255,255,255,.95);
  box-shadow: 0 18px 30px -28px rgba(38,35,32,.18);
}
.cat-toolbar-copy {
  color: var(--theme-primary);
  font-size: 15px;
}
.cat-toolbar-copy strong {
  font-size: 18px;
}
.cat-sort-form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cat-sort-form select {
  min-width: 210px;
}
.cat-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.cat-active-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--theme-surface);
  color: var(--theme-accent-dark);
  font-size: 12px;
  font-weight: 800;
}
.cat-motion-panel {
  margin-bottom: 26px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--theme-border);
  background: linear-gradient(180deg, #fff 0%, #fbf7f3 100%);
  box-shadow: 0 24px 40px -34px rgba(38,35,32,.22);
}
.cat-motion-head {
  margin-bottom: 16px;
}
.cat-motion-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--theme-accent-dark);
  font-weight: 800;
}
.cat-motion-head h2 {
  margin: 0;
  font-size: 24px;
  color: var(--theme-primary);
}
.cat-motion-head p {
  margin: 0;
  max-width: 660px;
  color: var(--theme-muted);
  line-height: 1.6;
}
.cat-video-showcase-inline {
  padding-inline: 0;
}
.cat-video-showcase-inline .video-showcase-arrow {
  width: 42px;
  height: 42px;
}
.cat-video-showcase-inline .video-showcase-viewport {
  margin-inline: 10px;
}
.cat-video-showcase-inline .video-showcase-track {
  gap: 16px;
}
.cat-video-showcase-inline .video-showcase-card {
  width: min(330px, 82vw);
}
.cat-page-section .products-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.cat-product-card {
  border-radius: 26px;
}
.cat-product-card .product-card-img {
  background: linear-gradient(180deg, #f8f4ef 0%, #f2ece6 100%);
}
.cat-product-card .product-card-body {
  padding: 16px 16px 18px;
}
.cat-product-card .product-card-name {
  min-height: 48px;
  font-size: 16px;
  line-height: 1.45;
}
.cat-product-card .product-card-price {
  gap: 6px;
}
.cat-product-card .price-current {
  font-size: 22px;
}
.cat-empty-state {
  padding: 48px 24px;
  border-radius: 30px;
  border: 1px solid var(--theme-border);
  background: #fff;
  text-align: center;
}
.cat-empty-icon {
  margin-bottom: 14px;
  font-size: 52px;
}
.cat-empty-state h2 {
  margin-bottom: 8px;
  color: var(--theme-primary);
}
.cat-empty-state p {
  margin-bottom: 20px;
  color: var(--theme-muted);
}
.cat-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}
.cat-page-link,
.cat-page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--theme-border);
  background: #fff;
  color: var(--theme-primary);
  font-weight: 700;
}
.cat-page-link.is-active,
.cat-page-link:hover {
  background: var(--theme-primary);
  border-color: var(--theme-primary);
  color: #fff;
}
.video-showcase-product-copy small {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.64);
}
@media (max-width: 1100px) {
  .cat-layout {
    grid-template-columns: 1fr;
  }
  .cat-sidebar {
    position: static;
    display: none;
  }
  .cat-sidebar.is-open {
    display: block;
  }
  .cat-mobile-filter-toggle {
    display: inline-flex;
  }
}
@media (max-width: 768px) {
  .cat-page-head {
    padding-bottom: 22px;
  }
  .cat-head-copy h1 {
    font-size: 40px;
  }
  .cat-subcats-bar {
    gap: 12px;
  }
  .cat-chip {
    min-height: 42px;
    padding: 0 16px;
  }
  .cat-toolbar,
  .cat-sort-form {
    flex-direction: column;
    align-items: stretch;
  }
  .cat-sort-form select,
  .cat-sort-form label {
    width: 100%;
  }
  .cat-price-grid {
    grid-template-columns: 1fr;
  }
  .cat-motion-panel {
    padding: 18px;
  }
  .cat-video-showcase-inline .video-showcase-viewport {
    margin-inline: 0;
  }
}


/* ===== MENU PREMIUM | 2026-04-10 ===== */
.navbar .container {
  position: relative;
}
.nav-menu {
  width: 100%;
  align-items: center;
}
.nav-item {
  position: relative;
}
.nav-item-shell {
  display: flex;
  align-items: center;
}
.nav-main-link {
  display: block;
}
.nav-subtoggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-left: -10px;
  border: 0;
  background: transparent;
  color: var(--theme-primary);
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease;
}
.nav-subtoggle:hover {
  color: var(--theme-accent-dark);
}
.nav-item-has-mega:hover > .nav-item-shell .nav-subtoggle,
.nav-item-has-mega.is-open > .nav-item-shell .nav-subtoggle {
  transform: rotate(180deg);
}
.mega-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  width: min(1080px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid rgba(38, 35, 32, 0.08);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(22, 18, 15, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
  pointer-events: none;
  z-index: 50;
}
.mega-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 22px;
}
.nav-item:last-child .mega-menu,
.nav-item:nth-last-child(2) .mega-menu {
  left: auto;
  right: 0;
}
.nav-item-has-mega:hover > .mega-menu,
.nav-item-has-mega.is-open > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 769px) {
  .nav-item-has-mega {
    padding-bottom: 18px;
    margin-bottom: -18px;
  }
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(340px, 1fr);
  gap: 28px;
  padding: 28px;
}
.mega-menu-links-wrap {
  min-width: 0;
}
.mega-menu-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--theme-accent-dark);
  margin-bottom: 16px;
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}
.mega-menu-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(138, 109, 90, 0.16);
  background: #fff;
  color: var(--theme-primary);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.mega-link span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.mega-link small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: #f4efea;
  color: var(--theme-accent-dark);
  font-size: 12px;
  font-weight: 700;
}
.mega-link:hover {
  border-color: rgba(138, 109, 90, 0.34);
  box-shadow: 0 14px 26px rgba(38, 35, 32, 0.08);
  transform: translateY(-1px);
  background: #fffaf7;
}
.mega-link-all {
  justify-content: flex-start;
  margin-top: 18px;
  background: #faf6f1;
  border-style: dashed;
}
.mega-menu-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.mega-card {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background: #f4efe9;
  color: #fff;
}
.mega-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.mega-card:hover img {
  transform: scale(1.04);
}
.mega-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,17,15,0.06) 0%, rgba(20,17,15,0.16) 35%, rgba(20,17,15,0.64) 100%);
}
.mega-card-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mega-card-copy small,
.mega-card-copy em,
.mega-card-copy strong {
  color: #fff;
}
.mega-card-copy small {
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
}
.mega-card-copy strong {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}
.mega-card-copy em {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  opacity: 0.94;
}
.mega-menu a::after {
  display: none !important;
  content: none !important;
}
.mega-menu .mega-link,
.mega-menu .mega-card {
  margin: 0;
}
.mega-menu .mega-link {
  color: var(--theme-primary) !important;
  text-transform: none;
}
.mega-menu .mega-card {
  padding: 0;
}

@media (min-width: 769px) {
  .nav-item-has-mega > .nav-item-shell > .nav-main-link {
    padding-right: 8px;
  }
  .nav-subtoggle {
    display: inline-flex;
  }
}

@media (max-width: 1024px) {
  .mega-menu {
    width: min(940px, calc(100vw - 32px));
  }
  .mega-menu-inner {
    grid-template-columns: 1fr;
  }
  .mega-card {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    width: 100%;
  }
  .nav-item {
    width: 100%;
  }
  .nav-item-shell {
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid rgba(38, 35, 32, 0.05);
  }
  .nav-main-link {
    flex: 1;
  }
  .nav-subtoggle {
    display: inline-flex;
    margin-right: 6px;
  }
  .mega-menu {
    position: static;
    width: 100%;
    margin: 0 0 14px;
    border-radius: 0 0 18px 18px;
    box-shadow: none;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
  }
  .nav-item-has-mega:hover > .mega-menu {
    display: none;
  }
  .nav-item-has-mega.is-open > .mega-menu {
    display: block;
  }
  .mega-menu-inner {
    padding: 14px 0 14px;
    gap: 18px;
  }
  .mega-menu-grid,
  .mega-menu-featured {
    grid-template-columns: 1fr;
  }
  .mega-card {
    min-height: 220px;
  }
  .mega-link {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
  }
  .mega-link-all {
    padding-top: 14px;
    background: transparent;
  }
}
