/* ============================================================
   CADMIEL STOREFRONT — DESIGN SYSTEM (Eli & Ana Locações)
   ------------------------------------------------------------
   Visual de referência: storefront premium (terracota #C57665,
   dourado #D9A44A, creme #FAF6F5, Great Vibes + Playfair Display
   + Montserrat). Todo o CSS é escopado sob `body.cdm-storefront`
   e aplicado por cima do tema/Elementor SEM tocar no banco.

   Nada é destrutivo: qualquer regra pode ser sobrescrita depois
   via Elementor (CSS custom / classes). Se um elemento não
   existir, basta o usuário criar a seção no Elementor e colar a
   classe cdm-* correspondente.

   CLASSES UTILITÁRIAS (colar no Elementor):
     .cdm-cursive          texto cursivo (Great Vibes)
     .cdm-section-title    título de seção com filetes ornamentais
     .cdm-btn / .cdm-btn-outline   botões sólido / contorno
     .cdm-badge            etiqueta de produto
     .cdm-installments     linha "EM ATÉ 3X DE R$ ..."
     .cdm-hero             banner principal (bg + kicker/title/sub/cta)
       .cdm-hero-kicker  .cdm-hero-title  .cdm-hero-sub  .cdm-hero-cta
     .cdm-perks            barra de diferenciais (5 itens)
       .cdm-perk  .cdm-perk-icon  .cdm-perk-title  .cdm-perk-sub
     .cdm-cat-circles      grid de categorias circulares
       .cdm-cat-circle  .cdm-cat-circle img  .cdm-cat-more
     .cdm-banner-card      card de ação (imagem + overlay + cta)
       .cdm-banner-title  .cdm-banner-sub
     .cdm-stats            contadores de estatística
       .cdm-stat  .cdm-stat-number  .cdm-stat-label
     .cdm-gallery          galeria de inspiração (fotos quadradas)
     .cdm-testimonials     depoimentos
       .cdm-testimonial  .cdm-stars  .cdm-quote  .cdm-avatar
     .cdm-wa-cta           card gigante de WhatsApp
   ============================================================ */

/* 1. VARIÁVEIS DO TEMA */
body.cdm-storefront {
  --color-primary: #C57665;
  --color-primary-hover: #9E5547;
  --color-secondary: #FAF6F5;
  --color-bg-light: #F8F8F8;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1EB85A;
  --color-text-main: #2A2A2A;
  --color-text-muted: #666666;
  --color-gold: #D9A44A;
  --color-white: #FFFFFF;
  --font-heading-cursive: 'Great Vibes', 'Alex Brush', cursive;
  --font-heading-serif: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', 'Poppins', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-round: 50%;
  --shadow-subtle: 0 4px 15px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 8px 28px rgba(0, 0, 0, 0.08);
}

/* 2. TIPOGRAFIA GLOBAL */
body.cdm-storefront,
body.cdm-storefront button,
body.cdm-storefront input,
body.cdm-storefront select,
body.cdm-storefront textarea,
body.cdm-storefront .elementor-widget-text-editor,
body.cdm-storefront .elementor-button {
  font-family: var(--font-body);
}

body.cdm-storefront h1,
body.cdm-storefront h2,
body.cdm-storefront h3,
body.cdm-storefront .elementor-widget-heading .elementor-heading-title,
body.cdm-storefront .woocommerce h1,
body.cdm-storefront .woocommerce h2,
body.cdm-storefront .woocommerce h3 {
  font-family: var(--font-heading-serif);
  color: var(--color-text-main);
  font-weight: 600;
}

body.cdm-storefront .elementor-widget-heading .elementor-heading-title {
  letter-spacing: 0.2px;
}

body.cdm-storefront a {
  color: var(--color-primary);
  transition: color 0.2s ease;
}
body.cdm-storefront a:hover { color: var(--color-primary-hover); }

/* 2.1 FOCO VISÍVEL (WCAG 2.4.7) — navegação por teclado */
body.cdm-storefront a:focus-visible,
body.cdm-storefront button:focus-visible,
body.cdm-storefront input:focus-visible,
body.cdm-storefront select:focus-visible,
body.cdm-storefront textarea:focus-visible,
body.cdm-storefront [tabindex]:focus-visible,
body.cdm-storefront .cdm-btn:focus-visible,
body.cdm-storefront .cdm-btn-outline:focus-visible,
body.cdm-storefront .cdm-wa-float:focus-visible,
body.cdm-storefront .cdm-whatsapp-btn:focus-visible,
body.cdm-storefront .cdm-cat-tile:focus-visible,
body.cdm-storefront .cdm-banner-card:focus-visible,
body.cdm-storefront .cdm-promo:focus-visible,
body.cdm-storefront .cdm-gallery-item:focus-visible {
  outline: 3px solid #9E5547 !important;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(158, 85, 71, 0.22);
}

/* 3. CLASSES UTILITÁRIAS (Elementor) */
body.cdm-storefront .cdm-cursive {
  font-family: var(--font-heading-cursive) !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
}

body.cdm-storefront .cdm-section-title {
  position: relative;
  font-family: var(--font-heading-serif) !important;
  font-weight: 700 !important;
  color: var(--color-text-main) !important;
  letter-spacing: 1px;
}
body.cdm-storefront .cdm-section-title::after {
  content: '';
  display: block;
  width: 72px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  border-radius: 2px;
}

/* 4. CABEÇALHO (template HFE `elementor-210`) */
/* 4.1 TOPBAR — fundo terracota, conteúdo branco (fiel à referência) */
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 {
  background: linear-gradient(90deg, #C57665 0%, #B56A5A 55%, #9E5547 100%);
  padding: 5px 4%;
  position: relative;
  z-index: 6;
}
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-widget-text-editor {
  color: #FFFFFF;
  font-size: 10px;
  line-height: 1.15;
  letter-spacing: 0.3px;
}
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-icon-list-icon,
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-icon-list-icon i,
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-icon-list-icon svg {
  color: #FFFFFF;
  fill: #FFFFFF;
}
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-icon-list-item a {
  color: #FDE9E4;
  font-size: 10px;
}
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-icon-list-item a:hover { color: #FFFFFF; text-decoration: underline; }
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 > .e-con-inner,
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .e-con {
  padding: 0 !important;
  min-height: 0 !important;
}
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-social-icon {
  font-size: 12px;
}

/* logo circular sobre a topbar */
body.cdm-storefront .elementor-210 .hfe-site-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.cdm-storefront .elementor-210 .hfe-site-logo-container img {
  max-height: 92px;
  width: auto;
  object-fit: contain;
}

/* ações do usuário (Olá Visitante / Carrinho) — branco, duas linhas */
body.cdm-storefront .elementor-210 .elementor-element-f10c0a8,
body.cdm-storefront .elementor-210 .elementor-element-72a60d3 {
  font-family: var(--font-body);
}
body.cdm-storefront .elementor-210 .elementor-element-f10c0a8 .elementor-widget-text-editor,
body.cdm-storefront .elementor-210 .elementor-element-72a60d3 .elementor-widget-text-editor {
  font-size: 12px;
  line-height: 1.5;
  color: #FFFFFF;
}
body.cdm-storefront .elementor-210 .elementor-element-f10c0a8 a,
body.cdm-storefront .elementor-210 .elementor-element-72a60d3 a {
  color: #FFFFFF;
  font-weight: 600;
}
body.cdm-storefront .elementor-210 .elementor-element-f10c0a8 a:hover,
body.cdm-storefront .elementor-210 .elementor-element-72a60d3 a:hover { color: #FFE9E2; }

/* redes sociais (ícones de círculo) — brancos */
body.cdm-storefront .elementor-210 .elementor-social-icon {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}
body.cdm-storefront .elementor-210 .elementor-social-icon:hover {
  background: #FFFFFF;
  color: var(--color-primary);
}

/* 4.1b topbar em linha única — contatos lado a lado */
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1,
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 > .e-con-inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 20px !important;
}
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .e-con,
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-column,
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-widget {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  flex-wrap: wrap;
  width: auto !important;
  margin: 0 !important;
}
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-icon-list-item {
  padding: 0 !important;
}
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
}
/* alinhamento vertical uniforme da topbar: linha única + base consistente */
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-widget,
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-widget-container,
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-widget-text-editor,
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-icon-list-item {
  white-space: nowrap;
  line-height: 1;
}
body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 p { margin: 0 !important; }

/* 4.2 FAIXA DA TAGLINE + BUSCA — faixa branca limpa (área do header) */
body.cdm-storefront .elementor-210 .elementor-element-4551c61 {
  background: var(--color-white);
  border-bottom: 1px solid #F0E4DF;
  padding: 30px 4% 32px;
  margin-top: 0 !important;
}
body.cdm-storefront .elementor-210 .elementor-element-4551c61 .elementor-widget-text-editor {
  color: var(--color-text-main);
  font-family: var(--font-heading-serif);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  line-height: 1.4;
}

/* 4.3 Busca (pílula) */
body.cdm-storefront .elementor-210 .elementor-element-a030456 .dgwt-wcas-search-wrapp {
  max-width: 640px;
  margin: 18px auto 0;
}
body.cdm-storefront .dgwt-wcas-search-wrapp input.dgwt-wcas-search-input,
body.cdm-storefront .search-form .search-field,
body.cdm-storefront .woocommerce-product-search input[type="search"] {
  border-radius: 30px;
  border: 1px solid #EDE7E3;
  padding-left: 20px;
  padding-right: 46px;
  font-family: var(--font-body);
  font-size: 13px;
  background: var(--color-white);
}
body.cdm-storefront .dgwt-wcas-sf-wrapp { position: relative; }
body.cdm-storefront .dgwt-wcas-search-submit { border-radius: 0 30px 30px 0; }

/* 4.4 Menu de navegação + barra de categorias — fundo branco */
body.cdm-storefront .elementor-210 .elementor-element-e1865c2 {
  background: var(--color-white);
  padding: 4px 4% 14px;
}
body.cdm-storefront .hfe-menu-item,
body.cdm-storefront .hfe-nav-menu .menu-item a,
body.cdm-storefront .ast-builder-menu a {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 13px;
  font-weight: 600;
  color: #3A3A3A;
}
body.cdm-storefront .hfe-nav-menu .menu-item a:hover,
body.cdm-storefront .hfe-nav-menu .menu-item.current-menu-item a {
  color: var(--color-primary) !important;
}

/* barra de categorias (diretório em 4 colunas) */
body.cdm-storefront .elementor-210 .elementor-element-68324fd {
  background: var(--color-secondary);
  border-top: 2px solid #F0E4DF;
  border-bottom: 1px solid #F0E4DF;
  border-radius: var(--radius-md);
  margin-top: 14px;
  padding: 18px 22px;
}
body.cdm-storefront .elementor-210 .elementor-element-68324fd .elementor-icon-list-item a {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
body.cdm-storefront .elementor-210 .elementor-element-68324fd .elementor-icon-list-item a:hover {
  color: var(--color-primary);
}
body.cdm-storefront .elementor-210 .elementor-element-68324fd .elementor-icon-list-item:first-child a {
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

/* 4.5 MENU DE CATEGORIAS VISUAL (círculos) — gerado via JS */
body.cdm-storefront .cdm-cat-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 14px;
  padding: 6px 0 2px;
}
body.cdm-storefront .cdm-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 96px;
  text-align: center;
  text-decoration: none;
}
body.cdm-storefront .cdm-cat-circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  background: linear-gradient(145deg, #FFFFFF 0%, #F5EDE9 100%);
  border: 2px solid #EBDCD5;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
body.cdm-storefront .cdm-cat-tile:hover .cdm-cat-circle {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card);
}
body.cdm-storefront .cdm-cat-name {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-text-main);
}
body.cdm-storefront .cdm-cat-tile:hover .cdm-cat-name { color: var(--color-primary); }
/* tile "Ver Todos" */
body.cdm-storefront .cdm-cat-tile.cdm-cat-all .cdm-cat-circle {
  color: #FFFFFF;
  font-size: 30px;
  background: linear-gradient(145deg, var(--color-primary) 0%, #D49082 100%);
  border-color: transparent;
}
body.cdm-storefront .cdm-cat-tile.cdm-cat-all:hover .cdm-cat-circle {
  background: var(--color-primary-hover);
}
/* cabeçalho "NOSSAS CATEGORIAS" + ornamento */
body.cdm-storefront .cdm-cat-head {
  text-align: center;
  margin: 4px 0 20px;
}
body.cdm-storefront .cdm-cat-title {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-main);
  margin: 0 0 2px;
}
body.cdm-storefront .cdm-cat-orn {
  color: var(--color-primary);
  font-size: 14px;
  line-height: 1;
}

/* 5. BOTÕES GLOBAIS (WooCommerce / Elementor) */
body.cdm-storefront .woocommerce a.button,
body.cdm-storefront .woocommerce button.button,
body.cdm-storefront .woocommerce input.button,
body.cdm-storefront .woocommerce #respond input#submit,
body.cdm-storefront a.elementor-button,
body.cdm-storefront .elementor-button,
body.cdm-storefront .wp-block-button__link {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  border: none;
  padding: 12px 22px;
  box-shadow: none;
  transition: background-color 0.25s ease, transform 0.15s ease;
}
body.cdm-storefront .woocommerce a.button:hover,
body.cdm-storefront .woocommerce button.button:hover,
body.cdm-storefront .woocommerce input.button:hover,
body.cdm-storefront a.elementor-button:hover,
body.cdm-storefront .elementor-button:hover {
  background-color: var(--color-primary-hover) !important;
  color: var(--color-white) !important;
}

/* botões utilitários */
body.cdm-storefront .cdm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.5px;
  font-size: 12px; font-weight: 600; text-decoration: none; cursor: pointer;
  background-color: var(--color-primary); color: var(--color-white);
  border-radius: var(--radius-sm); padding: 12px 22px; border: 1px solid transparent;
  transition: background-color 0.25s ease, transform 0.15s ease;
}
body.cdm-storefront .cdm-btn:hover { background-color: var(--color-primary-hover); color: var(--color-white); transform: translateY(-1px); }
body.cdm-storefront .cdm-btn-outline {
  background-color: transparent; color: var(--color-primary); border: 1px solid var(--color-primary);
}
body.cdm-storefront .cdm-btn-outline:hover { background-color: var(--color-primary); color: var(--color-white); }
body.cdm-storefront .cdm-btn--white { background-color: var(--color-white); color: var(--color-primary); }
body.cdm-storefront .cdm-btn--white:hover { background-color: #F3ECE8; color: var(--color-primary-hover); }
body.cdm-storefront .cdm-btn--cream { background-color: #F4EDE8; color: var(--color-primary); }
body.cdm-storefront .cdm-btn--cream:hover { background-color: var(--color-primary); color: var(--color-white); }
body.cdm-storefront .cdm-btn--sm { padding: 9px 16px; font-size: 11px; }

/* 6. TÍTULOS DE PÁGINA / SEÇÃO (divider do Elementor) */
body.cdm-storefront .elementor-widget-divider .elementor-divider__text {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-main);
}
body.cdm-storefront .elementor-widget-divider .elementor-divider-separator {
  border-top-color: var(--color-primary) !important;
  border-bottom-color: var(--color-primary) !important;
}
body.cdm-storefront .elementor-widget-divider .elementor-divider-separator::before,
body.cdm-storefront .elementor-widget-divider .elementor-divider-separator::after {
  border-color: var(--color-gold) !important;
}

/* 7. CARDS DE PRODUTO (ShopEngine / WooCommerce) */
body.cdm-storefront .shopengine-single-product-item,
body.cdm-storefront ul.products li.product {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 14px;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.cdm-storefront .product-list-grid { align-items: stretch; }
/* imagens uniformes nos grids WooCommerce (relacionados, catálogo) */
body.cdm-storefront ul.products li.product .woocommerce-loop-product__link,
body.cdm-storefront ul.products li.product > a:not(.button):not(.added_to_cart) {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
body.cdm-storefront ul.products li.product .woocommerce-loop-product__link img,
body.cdm-storefront ul.products li.product > a:not(.button):not(.added_to_cart) img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
body.cdm-storefront .shopengine-single-product-item:hover,
body.cdm-storefront ul.products li.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

/* ordem das seções do card */
body.cdm-storefront .shopengine-single-product-item .product-thumb   { order: 1; position: relative; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 10px; aspect-ratio: 4 / 5; width: 100%; }
body.cdm-storefront .shopengine-single-product-item .product-thumb a { display: block; width: 100%; height: 100%; }
body.cdm-storefront .shopengine-single-product-item .product-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
body.cdm-storefront .shopengine-single-product-item .product-category{ order: 2; margin-top: 2px; min-height: 15px; }
body.cdm-storefront .shopengine-single-product-item .product-title   { order: 3; margin: 8px 0 2px; font-size: 15px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: calc(1.45em * 2); }
body.cdm-storefront .shopengine-single-product-item .product-rating  { order: 4; min-height: 18px; }
body.cdm-storefront .shopengine-single-product-item .product-price   { order: 5; margin: 6px 0 0; }
body.cdm-storefront .shopengine-single-product-item .overlay-add-to-cart { order: 6; margin-top: auto; }

/* placeholder para imagens ausentes/quebradas (mantém o card alinhado) */
body.cdm-storefront .shopengine-single-product-item .product-thumb.cdm-thumb-empty,
body.cdm-storefront ul.products li.product.cdm-thumb-empty,
body.cdm-storefront.single-product .woocommerce-product-gallery__image.cdm-thumb-empty,
body.cdm-storefront.single-product .shopengine-product-image.cdm-thumb-empty {
  background: linear-gradient(135deg, #FBF6F3 0%, #F1E4DE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
body.cdm-storefront .shopengine-single-product-item .product-thumb.cdm-thumb-empty::before,
body.cdm-storefront ul.products li.product.cdm-thumb-empty::before,
body.cdm-storefront.single-product .woocommerce-product-gallery__image.cdm-thumb-empty::before,
body.cdm-storefront.single-product .shopengine-product-image.cdm-thumb-empty::before {
  content: '';
  width: 46px;
  height: 46px;
  opacity: 0.5;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23C67A6B"><path d="M4 5h3l2-2h6l2 2h3a2 2 0 012 2v12a2 2 0 01-2 2H4a2 2 0 01-2-2V7a2 2 0 012-2zm8 11a4 4 0 100-8 4 4 0 000 8zm0-2a2 2 0 110-4 2 2 0 010 4z"/></svg>') no-repeat center / contain;
}
body.cdm-storefront .shopengine-single-product-item .product-thumb.cdm-thumb-empty img,
body.cdm-storefront ul.products li.product.cdm-thumb-empty img,
body.cdm-storefront.single-product .woocommerce-product-gallery__image.cdm-thumb-empty img,
body.cdm-storefront.single-product .shopengine-product-image.cdm-thumb-empty img {
  display: none !important;
}

body.cdm-storefront .shopengine-single-product-item .product-title a,
body.cdm-storefront ul.products li.product .woocommerce-loop-product__title a {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-text-main);
  font-size: 15px;
  text-decoration: none;
}
body.cdm-storefront .shopengine-single-product-item .product-title a:hover { color: var(--color-primary); }

body.cdm-storefront .shopengine-single-product-item .product-category a {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-text-muted);
}
body.cdm-storefront .shopengine-single-product-item .product-rating .star-rating { color: #FFC107; }
body.cdm-storefront .shopengine-single-product-item .rating-count { color: var(--color-text-muted); font-size: 11px; }

/* preço (color com !important para vencer o Elementor page CSS) */
body.cdm-storefront .shopengine-single-product-item .product-price .price,
body.cdm-storefront ul.products li.product .price,
body.cdm-storefront .woocommerce div.product p.price {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-primary) !important;
}
body.cdm-storefront .shopengine-single-product-item .product-price .amount,
body.cdm-storefront .woocommerce-Price-amount { color: inherit; }

/* preço do produto único (ShopEngine) */
body.cdm-storefront .shopengine-product-price .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary) !important;
}

/* selos/badges no canto superior esquerdo */
body.cdm-storefront .product-tag-sale-badge.position-top-right,
body.cdm-storefront .woocommerce span.onsale {
  top: 10px !important;
  right: auto !important;
  left: 10px !important;
}
body.cdm-storefront .product-tag-sale-badge ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
body.cdm-storefront .product-tag-sale-badge li span,
body.cdm-storefront .product-tag-sale-badge .se-badge,
body.cdm-storefront .woocommerce span.onsale {
  display: inline-block;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: var(--color-white);
}
body.cdm-storefront .woocommerce span.onsale { background: #D64545; }

/* rodapé do card: LOCAÇÃO + WhatsApp */
body.cdm-storefront .shopengine-single-product-item .overlay-add-to-cart {
  position: static !important;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #F0EDEB;
  display: flex !important;
  align-items: center;
  gap: 8px;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  width: auto !important;
  flex-direction: row !important;
  justify-content: stretch !important;
}
/* esconde ações auxiliares do overlay (wishlist / quickview / comparison) */
body.cdm-storefront .shopengine-single-product-item .overlay-add-to-cart .se-btn,
body.cdm-storefront .shopengine-single-product-item .overlay-add-to-cart .badge,
body.cdm-storefront .shopengine-single-product-item .overlay-add-to-cart .shopengine-icon-add_to_favourite_1,
body.cdm-storefront .shopengine-single-product-item .overlay-add-to-cart .shopengine-icon-quick_view_1,
body.cdm-storefront .shopengine-single-product-item .overlay-add-to-cart .shopengine-icon-product_compare_1 {
  display: none !important;
}
body.cdm-storefront .shopengine-single-product-item .overlay-add-to-cart .button.cdm-locacao,
body.cdm-storefront .shopengine-single-product-item .overlay-add-to-cart a.button:not(.cdm-whatsapp-btn) {
  flex: 1;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  transition: all 0.2s ease;
}
body.cdm-storefront .shopengine-single-product-item .overlay-add-to-cart .button.cdm-locacao:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
body.cdm-storefront .shopengine-single-product-item .cdm-whatsapp-btn {
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--color-whatsapp) !important;
  border-radius: var(--radius-sm) !important;
  border: none !important;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.2s ease;
}
body.cdm-storefront .shopengine-single-product-item .cdm-whatsapp-btn:hover {
  transform: scale(1.06);
  opacity: 0.92;
}
body.cdm-storefront .shopengine-single-product-item .cdm-whatsapp-btn svg { width: 20px; height: 20px; fill: #fff; }

/* parcelamento "EM ATÉ 3X DE R$ ..." (inserido via JS) */
body.cdm-storefront .cdm-installments,
body.cdm-storefront .woocommerce .wc-price-suffix,
body.cdm-storefront .woocommerce .price-suffix {
  display: block;
  font-size: 11px;
  color: #8A8A8A;
  margin-top: 3px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* 8. PÁGINA DE PRODUTO (single) */
body.cdm-storefront .shopengine-product-title h1,
body.cdm-storefront .shopengine-product-title h2,
body.cdm-storefront .woocommerce div.product .product_title {
  font-family: var(--font-heading-serif) !important;
  font-weight: 700 !important;
  font-size: 30px !important;
  color: var(--color-text-main) !important;
}
body.cdm-storefront .woocommerce div.product p.price {
  font-size: 26px;
}
body.cdm-storefront .woocommerce div.product form.cart .button {
  padding: 14px 30px;
  font-size: 13px;
}
body.cdm-storefront .woocommerce-breadcrumb {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
}
body.cdm-storefront .woocommerce-breadcrumb a { color: var(--color-primary); }
body.cdm-storefront .woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 0 0 0 0;
}
body.cdm-storefront .woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent;
  border: none;
  border-radius: 0;
}
body.cdm-storefront .woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  padding: 12px 20px;
}
body.cdm-storefront .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--color-secondary);
  border: 1px solid #F0E4DF;
  border-bottom-color: var(--color-secondary);
}
body.cdm-storefront .woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--color-primary); }
body.cdm-storefront .woocommerce div.product .woocommerce-tabs .panel {
  border: 1px solid #F0E4DF;
  border-top: none;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-subtle);
}
body.cdm-storefront .related.products > h2,
body.cdm-storefront .upsells.products > h2 {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 22px;
  color: var(--color-text-main);
  position: relative;
  padding-bottom: 12px;
}
body.cdm-storefront .related.products > h2::after,
body.cdm-storefront .upsells.products > h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
}

/* 8.1 CARRINHO */
body.cdm-storefront.woocommerce-cart table.shop_table {
  border: 1px solid #EAEAEA;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-subtle);
}
body.cdm-storefront.woocommerce-cart table.shop_table th {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  background: var(--color-secondary);
}
body.cdm-storefront.woocommerce-cart table.shop_table td { padding: 14px 12px; }
body.cdm-storefront.woocommerce-cart .cart_totals {
  border: 1px solid #EAEAEA;
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-subtle);
}
body.cdm-storefront.woocommerce-cart .cart_totals h2 {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 18px;
}
body.cdm-storefront.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  font-size: 13px;
  padding: 14px 22px;
}

/* 8.2 CHECKOUT */
body.cdm-storefront.woocommerce-checkout #customer_details .col-1,
body.cdm-storefront.woocommerce-checkout #customer_details .col-2,
body.cdm-storefront.woocommerce-checkout #order_review_heading,
body.cdm-storefront.woocommerce-checkout #order_review {
  border: 1px solid #EAEAEA;
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--color-white);
  box-shadow: var(--shadow-subtle);
}
body.cdm-storefront.woocommerce-checkout h3 {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 16px;
}
body.cdm-storefront.woocommerce table.shop_table th { color: var(--color-text-muted); }

/* 9. MINHA CONTA */
body.cdm-storefront.woocommerce-account .woocommerce-MyAccount-content {
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-subtle);
}
body.cdm-storefront.woocommerce-account .woocommerce form.login,
body.cdm-storefront.woocommerce-account .woocommerce form.register {
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-subtle);
}
body.cdm-storefront.woocommerce-account .woocommerce form.login h2,
body.cdm-storefront.woocommerce-account .woocommerce form.register h2 {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 20px;
  color: var(--color-text-main);
}
body.cdm-storefront.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none; margin: 0; padding: 0;
}
body.cdm-storefront.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 11px 16px;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
body.cdm-storefront.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: #F0E4DF;
}
body.cdm-storefront.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--color-primary);
  background: var(--color-bg-light);
}
body.cdm-storefront.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-form {
  font-family: var(--font-body);
}
body.cdm-storefront.woocommerce-account input[type="text"],
body.cdm-storefront.woocommerce-account input[type="email"],
body.cdm-storefront.woocommerce-account input[type="password"],
body.cdm-storefront.woocommerce-account input[type="tel"],
body.cdm-storefront.woocommerce-account input[type="number"],
body.cdm-storefront.woocommerce-account select,
body.cdm-storefront.woocommerce form .form-row input.input-text,
body.cdm-storefront.woocommerce form .form-row select {
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  background: var(--color-white);
}
body.cdm-storefront.woocommerce form .form-row input.input-text:focus,
body.cdm-storefront.woocommerce-account input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 118, 101, 0.12);
}
body.cdm-storefront.woocommerce-account .woocommerce form.login,
body.cdm-storefront.woocommerce-account .woocommerce form.register {
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
}

/* 10. RODAPÉ */
/* Títulos de seção do catálogo ("TODOS OS PRODUTOS", "Visto Recentemente") — 
   mesma linguagem visual das seções da home (serif, centralizado, espaçado). */
body.cdm-storefront .elementor-element-a798645,
body.cdm-storefront .elementor-element-d025ef {
  margin-top: 42px;
  margin-bottom: 6px;
}
body.cdm-storefront .elementor-element-a798645 .elementor-heading-title,
body.cdm-storefront .elementor-element-d025ef .elementor-heading-title {
  font-family: var(--font-heading-serif) !important;
  font-weight: 700 !important;
  font-size: 24px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--color-text-main) !important;
  text-align: center !important;
}

/* Oculta qualquer coluna órfã de carrinho/conta que sobrar na topbar */
@supports selector(:has(a)) {
  body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .e-con:has(a[href*="carrinho"], a[href*="minha-conta"], .elementor-widget-site-logo),
  body.cdm-storefront .elementor-210 .elementor-element-55ac2e1 .elementor-column:has(a[href*="carrinho"], a[href*="minha-conta"], .elementor-widget-site-logo) {
    display: none !important;
  }
}
body.cdm-storefront .ehf-footer .elementor-374 .elementor-element-313e086,
body.cdm-storefront footer .elementor-374 .elementor-element-313e086 {
  border-top: 3px solid var(--color-primary);
  background: var(--color-white) !important;
  padding: 28px 4%;
  margin-top: 30px;
}
body.cdm-storefront .ehf-footer .elementor-widget-heading .elementor-heading-title,
body.cdm-storefront footer .elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

/* 11. WHATSAPP FLUTUANTE (canto inferior direito) */
body.cdm-storefront .cdm-wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99990;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  animation: cdmWaPulse 2.6s ease-out infinite;
  transition: transform 0.2s ease, background 0.2s ease;
}
body.cdm-storefront .cdm-wa-float:hover {
  background: var(--color-whatsapp-dark);
  transform: scale(1.06);
  color: #fff;
}
body.cdm-storefront .cdm-wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes cdmWaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* botões de voltar ao topo sobem para não cobrir o WhatsApp */
body.cdm-storefront .ast-scroll-top-icon { bottom: 94px; }
body.cdm-storefront .hfe-scroll-to-top-button { bottom: 94px; }

/* Em desktop/tablet o canto inferior direito também abriga a barra de
   acessibilidade (pojo-a11y). Sobe o WhatsApp (e o voltar-ao-topo) para
   não ficar sobreposto/cortado. No celular a posição compacta permanece. */
@media (min-width: 768px) {
  body.cdm-storefront .cdm-wa-float { bottom: 118px; }
  body.cdm-storefront .ast-scroll-top-icon,
  body.cdm-storefront .hfe-scroll-to-top-button { bottom: 182px; }
}

/* 12. ITEM DE MENU FESTIVO ("indicamos...") */
body.cdm-storefront li.cdm-nav-indicamos > a.hfe-menu-item,
body.cdm-storefront li.cdm-nav-indicamos > a {
  position: relative;
  font-weight: 700 !important;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), #C57665, #E3B1A0, var(--color-primary));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-primary);
  animation: cdmMenuParty 7s ease-in-out infinite;
}
body.cdm-storefront li.cdm-nav-indicamos > a.hfe-menu-item::after,
body.cdm-storefront li.cdm-nav-indicamos > a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -4px;
  width: 60%; height: 2px;
  transform: translateX(-50%);
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), #E3B1A0);
  background-size: 200% 100%;
  animation: cdmMenuParty 7s ease-in-out infinite;
}
@keyframes cdmMenuParty {
  0%   { background-position: 0% 0; }
  50%  { background-position: 100% 0; }
  100% { background-position: 0% 0; }
}

/* 13. PÁGINA "INDICAMOS..." */
body.cdm-storefront .page-id-2476 .elementor-heading-title,
body.cdm-storefront .cdm-cursive { font-family: var(--font-heading-cursive) !important; }

/* ============================================================
   14. COMPONENTES DE PÁGINA (Elementor)
   Colar a classe da seção/container e usar os filhos com as
   classes cdm-* abaixo.
   ============================================================ */

/* 14.1 HERO — banner principal */
body.cdm-storefront .cdm-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 80px 6%;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}
body.cdm-storefront .cdm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(40, 20, 15, 0.15), rgba(40, 20, 15, 0.45));
  z-index: 1;
}
body.cdm-storefront .cdm-hero > * { position: relative; z-index: 2; }
body.cdm-storefront .cdm-hero-kicker {
  display: block;
  font-family: var(--font-heading-cursive);
  font-size: 44px;
  line-height: 1.1;
  color: #FFF7F3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}
body.cdm-storefront .cdm-hero-title {
  display: block;
  margin: 6px 0 0;
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 54px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.25);
}
body.cdm-storefront .cdm-hero-sub {
  display: block;
  margin: 18px auto 0;
  max-width: 620px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #F6EAE6;
}
body.cdm-storefront .cdm-hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
body.cdm-storefront .cdm-hero-cta .cdm-btn { padding: 14px 30px; }

/* 14.2 DIFERENCIAIS — barra de benefícios */
body.cdm-storefront .cdm-perks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  background: var(--color-white);
  border: 1px solid #F0E4DF;
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
body.cdm-storefront .cdm-perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
body.cdm-storefront .cdm-perk-icon {
  color: var(--color-primary);
  font-size: 30px;
  line-height: 1;
}
body.cdm-storefront .cdm-perk-icon img { width: 44px; height: 44px; object-fit: contain; }
body.cdm-storefront .cdm-perk-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
body.cdm-storefront .cdm-perk-sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-muted);
}

/* 14.3 CATEGORIAS — círculos */
body.cdm-storefront .cdm-cat-circles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 22px 16px;
  justify-items: center;
}
body.cdm-storefront .cdm-cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  text-decoration: none;
}
body.cdm-storefront .cdm-cat-circle img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body.cdm-storefront .cdm-cat-circle:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
body.cdm-storefront .cdm-cat-circle span,
body.cdm-storefront .cdm-cat-circle .elementor-heading-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-text-main);
}
body.cdm-storefront .cdm-cat-circle:hover span { color: var(--color-primary); }
/* círculo "Por Tema" — vazio de imagem */
body.cdm-storefront .cdm-cat-more img {
  border-style: dashed;
  border-color: var(--color-primary);
  background: var(--color-secondary);
}

/* 14.4 BANNERS DE AÇÃO — cards com imagem + overlay */
body.cdm-storefront .cdm-banner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 320px;
  padding: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
body.cdm-storefront .cdm-banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(40, 20, 15, 0.6));
}
body.cdm-storefront .cdm-banner-card > * { position: relative; z-index: 2; }
body.cdm-storefront .cdm-banner-title {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
body.cdm-storefront .cdm-banner-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: #F3E7E2;
  margin: 0 0 16px;
}
body.cdm-storefront .cdm-banner-card .cdm-btn { margin-top: 2px; }

/* 14.5 CONTADORES / ESTATÍSTICAS */
body.cdm-storefront .cdm-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 34px 22px;
  box-shadow: var(--shadow-subtle);
}
body.cdm-storefront .cdm-stat-number {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 42px;
  color: var(--color-primary);
  line-height: 1;
}
body.cdm-storefront .cdm-stat-label {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
}

/* 14.6 GALERIA DE INSPIRAÇÃO */
body.cdm-storefront .cdm-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
body.cdm-storefront .cdm-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body.cdm-storefront .cdm-gallery img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

/* 14.7 DEPOIMENTOS */
body.cdm-storefront .cdm-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
body.cdm-storefront .cdm-testimonial {
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-subtle);
}
body.cdm-storefront .cdm-testimonial .cdm-stars {
  color: var(--color-gold);
  font-size: 16px;
  letter-spacing: 3px;
}
body.cdm-storefront .cdm-testimonial .cdm-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-text-main);
  margin: 0;
}
body.cdm-storefront .cdm-testimonial .cdm-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
body.cdm-storefront .cdm-testimonial .cdm-avatar img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-subtle);
}
body.cdm-storefront .cdm-testimonial .cdm-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text-main);
}
body.cdm-storefront .cdm-testimonial .cdm-event {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-muted);
}

/* 14.8 CTA WHATSAPP — card gigante */
body.cdm-storefront .cdm-wa-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  background: #FBF6F2;
  border: 1px solid #F0E4DF;
  border-radius: var(--radius-md);
  padding: 44px 28px;
}
body.cdm-storefront .cdm-wa-cta .cdm-wa-cta-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
body.cdm-storefront .cdm-wa-cta .cdm-wa-cta-icon svg { width: 46px; height: 46px; fill: var(--color-whatsapp); }
body.cdm-storefront .cdm-wa-cta .cdm-wa-cta-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text-main);
}
body.cdm-storefront .cdm-wa-cta .cdm-wa-cta-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
}

/* 14.9 PASSOS / COMO FUNCIONA — componente de etapas */
body.cdm-storefront .cdm-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
  counter-reset: cdmStep;
}
body.cdm-storefront .cdm-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid #F0E4DF;
  border-radius: var(--radius-md);
  padding: 30px 18px 24px;
  box-shadow: var(--shadow-subtle);
  counter-increment: cdmStep;
}
body.cdm-storefront .cdm-step::before {
  content: counter(cdmStep);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 15px;
  color: #FFFFFF;
  background: linear-gradient(145deg, var(--color-primary), var(--color-gold));
  box-shadow: 0 4px 10px rgba(197, 118, 101, 0.35);
}
body.cdm-storefront .cdm-step-icon { color: var(--color-primary); font-size: 28px; line-height: 1; }
body.cdm-storefront .cdm-step-icon img { width: 44px; height: 44px; object-fit: contain; }
body.cdm-storefront .cdm-step-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-main);
}
body.cdm-storefront .cdm-step-desc {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

/* 14.10 LISTAS / ÍCONES em páginas internas */
body.cdm-storefront .elementor-icon-list-item .elementor-icon-list-icon i,
body.cdm-storefront .elementor-icon-list-item .elementor-icon-list-icon svg {
  color: var(--color-primary);
  fill: var(--color-primary);
}
body.cdm-storefront .elementor-icon-list-item .elementor-icon-list-text {
  font-family: var(--font-body);
  color: var(--color-text-main);
}

/* 15. SEÇÕES DA HOME — injetadas via JS (controle pela aba "Loja")
   Estrutura: .cdm-cmp (seção full-width) > .cdm-wrap-content (centra) > componente.
   Cada bloco se auto-exibe/oculta conforme configurado. ========================= */

/* 15.1 Estrutura das seções */
body.cdm-storefront .cdm-cmp { padding: 64px 28px; }
body.cdm-storefront .cdm-wrap-content { max-width: 1200px; margin: 0 auto; width: 100%; }
body.cdm-storefront .cdm-cmp-title {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-main);
  text-align: center;
  margin: 0 0 8px;
}
body.cdm-storefront .cdm-title-orn {
  display: block;
  margin: 0 auto 34px;
  width: 120px; height: 12px;
  color: var(--color-primary);
}

/* 15.2 HERO principal */
body.cdm-storefront .cdm-hero {
  background-image: linear-gradient(135deg, #D49082 0%, #C57665 55%, #9E5547 100%);
  background-size: cover;
}
body.cdm-storefront .cdm-hero .cdm-wrap-content { width: 100%; }
body.cdm-storefront .cdm-hero-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 46px 44px;
  max-width: 620px;
  box-shadow: 0 18px 50px rgba(40, 20, 15, 0.2);
}
body.cdm-storefront .cdm-hero::before {
  background: linear-gradient(180deg, rgba(40, 20, 15, 0.18), rgba(40, 20, 15, 0.5));
}
body.cdm-storefront .cdm-hero-kicker { color: var(--color-primary); text-shadow: none; }
body.cdm-storefront .cdm-hero-title { color: var(--color-text-main); text-shadow: none; }
body.cdm-storefront .cdm-hero-sub { color: var(--color-text-muted); }
body.cdm-storefront .cdm-hero-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .32; z-index: 1; pointer-events: none;
}
body.cdm-storefront .cdm-hero-blob1 { width: 460px; height: 460px; top: -140px; left: -120px; background: #F0D3C7; }
body.cdm-storefront .cdm-hero-blob2 { width: 420px; height: 420px; bottom: -140px; right: -120px; background: var(--color-gold); }
body.cdm-storefront .cdm-hero-cta .cdm-btn { padding: 14px 30px; }
body.cdm-storefront .cdm-hero-cta .cdm-btn--white { box-shadow: 0 4px 16px rgba(40, 20, 15, 0.25); }

/* 15.3 Diferenciais e banners triplos */
body.cdm-storefront .cdm-diff { background: var(--color-white); padding: 40px 28px; border-bottom: 1px solid #F0E4DF; }
body.cdm-storefront .cdm-banners { background: #FBF8F6; }
body.cdm-storefront .cdm-banners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
body.cdm-storefront .cdm-banners-grid .cdm-banner-card { min-height: 300px; }

/* 15.4 Banners duplos (promos) */
body.cdm-storefront .cdm-promos { background: var(--color-white); }
body.cdm-storefront .cdm-promos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
body.cdm-storefront .cdm-promo { border-radius: var(--radius-md); overflow: hidden; min-height: 250px; }
body.cdm-storefront .cdm-promo-left {
  position: relative;
  display: flex; align-items: flex-end;
  padding: 34px;
  background-size: cover; background-position: center;
}
body.cdm-storefront .cdm-promo-left::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(40, 20, 15, 0.62));
}
body.cdm-storefront .cdm-promo-left > * { position: relative; z-index: 2; }
body.cdm-storefront .cdm-promo-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
body.cdm-storefront .cdm-promo-script {
  font-family: var(--font-heading-cursive);
  font-size: 30px; line-height: 1.1; color: #FFF6F2;
}
body.cdm-storefront .cdm-promo-title {
  font-family: var(--font-heading-serif);
  font-weight: 700; font-size: 26px; text-transform: uppercase; letter-spacing: 1px;
  color: #FFF; margin: 0 0 12px; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
body.cdm-storefront .cdm-promo-right {
  position: relative;
  display: flex; align-items: center; gap: 26px;
  padding: 34px;
  background: var(--color-secondary);
  border: 1px solid #F0E4DF;
}
body.cdm-storefront .cdm-promo-wa {
  flex-shrink: 0; width: 92px; height: 92px; border-radius: 50%;
  background: rgba(37, 211, 102, 0.16);
  display: flex; align-items: center; justify-content: center;
}
body.cdm-storefront .cdm-promo-wa svg { width: 50px; height: 50px; fill: var(--color-whatsapp); }
body.cdm-storefront .cdm-promo-rbody { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
body.cdm-storefront .cdm-promo-rlabel {
  font-family: var(--font-heading-cursive);
  font-size: 22px; color: var(--color-primary);
}
body.cdm-storefront .cdm-promo-rtitle {
  font-family: var(--font-body);
  font-weight: 700; font-size: 15px; line-height: 1.4; color: var(--color-text-main); margin: 0;
}

/* 15.5 Estatísticas */
body.cdm-storefront .cdm-stats-wrap { background: var(--color-secondary); }
body.cdm-storefront .cdm-stat { padding: 0 26px; border-right: 1px solid #F0E4DF; }
body.cdm-storefront .cdm-stat:last-child { border-right: none; }
body.cdm-storefront .cdm-stats { gap: 0; }

/* 15.6 Galeria */
body.cdm-storefront .cdm-gallery-wrap { background: var(--color-white); }
body.cdm-storefront .cdm-gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background-size: cover; background-position: center;
  background-image: linear-gradient(150deg, #F9F5F2 0%, #EFE1DB 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body.cdm-storefront .cdm-gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
body.cdm-storefront .cdm-gallery-ph { color: var(--color-primary); opacity: 0.55; }
body.cdm-storefront .cdm-gallery-item .cdm-gallery-ph svg { width: 34px; height: 34px; }
body.cdm-storefront .cdm-gallery-item[style*="background-image"] .cdm-gallery-ph { display: none; }

/* 15.7 Depoimentos */
body.cdm-storefront .cdm-testi-wrap { background: var(--color-white); }
body.cdm-storefront .cdm-testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
body.cdm-storefront .cdm-testi-dots span {
  width: 9px; height: 9px; border-radius: 50%; background: #D9C9C2; cursor: pointer;
}
body.cdm-storefront .cdm-testi-dots span.on { background: var(--color-primary); transform: scale(1.25); }
body.cdm-storefront .cdm-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background-size: cover; background-position: center;
  background-image: linear-gradient(135deg, var(--color-primary), #D49082);
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-subtle);
}
body.cdm-storefront .cdm-avatar-initials {
  font-family: var(--font-heading-serif);
  font-weight: 700; font-size: 20px; color: #FFF;
}

/* 15.8 Faixa de vantagens do rodapé */
body.cdm-storefront .cdm-foot-wrap { background: var(--color-secondary); border-top: 1px solid #F0E4DF; }
body.cdm-storefront .cdm-foot-benefits { padding: 28px 20px; }
body.cdm-storefront .cdm-foot-benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
body.cdm-storefront .cdm-foot-benefit {
  display: flex; align-items: center; gap: 14px; justify-content: center;
}
body.cdm-storefront .cdm-foot-benefit-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: #FFF; border: 1px solid #F0E4DF;
  display: flex; align-items: center; justify-content: center; color: var(--color-primary);
}
body.cdm-storefront .cdm-foot-benefit-icon svg { width: 22px; height: 22px; }
body.cdm-storefront .cdm-foot-benefit-title {
  font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--color-text-main);
}
body.cdm-storefront .cdm-foot-benefit-sub {
  font-family: var(--font-body); font-size: 11px; color: var(--color-text-muted);
}

/* 15.9 Rodapé rico (colunas: marca + Institucional + Informações + Categorias + Contato) */
body.cdm-storefront .cdm-foot-benefits { border-bottom: 1px solid #F0E4DF; }
body.cdm-storefront .cdm-footer-main { background: var(--color-secondary); padding: 46px 28px; }
body.cdm-storefront .cdm-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 30px;
  text-align: left;
  align-items: start;
}
body.cdm-storefront .cdm-fcol h4 {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-main);
  margin: 0 0 14px;
}
body.cdm-storefront .cdm-fcol ul { list-style: none; margin: 0; padding: 0; }
body.cdm-storefront .cdm-fcol ul li { margin-bottom: 9px; }
body.cdm-storefront .cdm-fcol ul a {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
body.cdm-storefront .cdm-fcol ul a:hover { color: var(--color-primary); }
body.cdm-storefront .cdm-fbrand {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 10px;
}
body.cdm-storefront .cdm-fcol-brand p {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}
body.cdm-storefront .cdm-fcol-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  color: var(--color-text-muted);
}
body.cdm-storefront .cdm-fcol-contact ul a { display: flex; align-items: center; gap: 8px; }
body.cdm-storefront .cdm-fci { flex-shrink: 0; display: inline-flex; color: var(--color-primary); }
body.cdm-storefront .cdm-fci svg { width: 15px; height: 15px; }

/* Ícones de linha dentro dos componentes */
body.cdm-storefront .cdm-ih { display: inline-flex; }
body.cdm-storefront .cdm-perk-icon svg,
body.cdm-storefront .cdm-step-icon svg,
body.cdm-storefront .cdm-foot-benefit-icon svg { width: 26px; height: 26px; }

/* Responsivo das seções da home */
@media (max-width: 1024px) {
  body.cdm-storefront .cdm-banners-grid { grid-template-columns: repeat(2, 1fr); }
  body.cdm-storefront .cdm-promos-grid { grid-template-columns: 1fr; }
  body.cdm-storefront .cdm-foot-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  body.cdm-storefront .cdm-cmp-title { font-size: 24px; }
  body.cdm-storefront .cdm-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body.cdm-storefront .cdm-banners-grid { grid-template-columns: 1fr; }
  body.cdm-storefront .cdm-hero { min-height: 420px; padding: 56px 18px; }
  body.cdm-storefront .cdm-hero-kicker { font-size: 32px; }
  body.cdm-storefront .cdm-hero-title { font-size: 30px; }
  body.cdm-storefront .cdm-promo-right { flex-direction: column; text-align: center; }
  body.cdm-storefront .cdm-promo-rbody { align-items: center; }
  body.cdm-storefront .cdm-foot-benefits-grid { grid-template-columns: 1fr 1fr; }
  body.cdm-storefront .cdm-footer-grid { grid-template-columns: 1fr; }
  body.cdm-storefront .cdm-hero-inner { padding: 36px 24px; }
}

/* 4.6 Faixa única do header (logo | busca | conta | carrinho) */
body.cdm-storefront .cdm-hbar-row {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
body.cdm-storefront .cdm-hbar-tagline {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 12px;
}
body.cdm-storefront .cdm-hbar-tagline .cdm-tl-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 6px 14px;
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold), #C57665, #E3B1A0, var(--color-primary));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-primary);
  animation: cdmMenuParty 7s ease-in-out infinite;
}
body.cdm-storefront .cdm-tlw {
  display: inline-block;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
body.cdm-storefront .cdm-hbar-logo { flex: 0 0 auto; }
body.cdm-storefront .cdm-hbar-logo a { display: inline-block; max-width: 230px; }
body.cdm-storefront .cdm-hbar-logo img { max-width: 230px; width: auto; max-height: 84px; height: auto; object-fit: contain; }
body.cdm-storefront .cdm-hbar-logo .cdm-logo-fallback {
  font-family: var(--font-cursive, 'Great Vibes', cursive);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--color-primary, #C57665);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color .2s;
}
body.cdm-storefront .cdm-hbar-logo .cdm-logo-fallback:hover { color: var(--color-gold, #D9A44A); }
body.cdm-storefront .cdm-hbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
body.cdm-storefront .cdm-hbar-search { flex: 1 1 auto; min-width: 0; }
body.cdm-storefront .cdm-hbar-search .dgwt-wcas-search-wrapp { max-width: none; width: 100%; margin: 0; }
body.cdm-storefront .cdm-hbar-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
body.cdm-storefront .cdm-hbar-action {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
  color: var(--color-text-main);
  text-decoration: none;
}
body.cdm-storefront .cdm-hbar-action:hover { color: var(--color-primary); }
body.cdm-storefront .cdm-hbar-ic { display: inline-flex; width: 26px; height: 26px; color: currentColor; }
body.cdm-storefront .cdm-hbar-ic svg { width: 26px; height: 26px; }
body.cdm-storefront .cdm-hbar-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
body.cdm-storefront .cdm-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
body.cdm-storefront .cdm-count-hidden { display: none; }

/* 16. RESPONSIVO */
@media (max-width: 1024px) {
  body.cdm-storefront .cdm-perks { grid-template-columns: repeat(3, 1fr); }
  body.cdm-storefront .cdm-gallery { grid-template-columns: repeat(3, 1fr); }
  body.cdm-storefront .cdm-hero { min-height: 460px; padding: 60px 5%; }
  body.cdm-storefront .cdm-hero-title { font-size: 40px; }
}
@media (max-width: 782px) {
  body.cdm-storefront .shopengine-single-product-item { padding: 10px; }
  body.cdm-storefront .shopengine-single-product-item .product-price .price { font-size: 16px; }
  body.cdm-storefront .elementor-210 .elementor-element-4551c61 { padding: 20px 4%; }
  body.cdm-storefront .elementor-210 .elementor-element-4551c61 .elementor-widget-text-editor { font-size: 18px; letter-spacing: 1px; }
  body.cdm-storefront .cdm-perks { grid-template-columns: repeat(2, 1fr); }
  body.cdm-storefront .cdm-cat-circle img { width: 108px; height: 108px; }
  body.cdm-storefront .cdm-hero { min-height: 400px; }
  body.cdm-storefront .cdm-hero-kicker { font-size: 34px; }
  body.cdm-storefront .cdm-hero-title { font-size: 32px; }
  body.cdm-storefront .cdm-hbar-tagline { font-size: 15px !important; letter-spacing: 1px !important; margin-bottom: 14px; }
  body.cdm-storefront .cdm-tl-inner { font-size: 20px; }
  body.cdm-storefront .cdm-hbar-row { flex-wrap: wrap; gap: 16px; justify-content: center; }
  body.cdm-storefront .cdm-hbar-logo { flex: 1 1 100%; text-align: center; order: 1; }
  body.cdm-storefront .cdm-hbar-logo img { max-height: 64px; }
  body.cdm-storefront .cdm-hbar-search { flex: 1 1 100%; order: 3; }
  body.cdm-storefront .cdm-hbar-actions { flex: 1 1 100%; justify-content: center; order: 2; }
  body.cdm-storefront .cdm-stats { grid-template-columns: 1fr; }
  body.cdm-storefront .cdm-gallery { grid-template-columns: repeat(2, 1fr); }
  body.cdm-storefront .cdm-wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  body.cdm-storefront .cdm-wa-float svg { width: 28px; height: 28px; }
  body.cdm-storefront .ast-scroll-top-icon,
  body.cdm-storefront .hfe-scroll-to-top-button { bottom: 82px; }
}
@media (max-width: 480px) {
  body.cdm-storefront .cdm-tl-inner { font-size: 17px; }
  body.cdm-storefront .cdm-hbar-tagline .cdm-tl-inner { gap: 4px 8px; }
}

/* ============================================================
   16. PÁGINA "INSPIRAÇÕES" — [cdm_inspiracoes]
   Visual alinhado à home (serif + cursiva + gradientes quentes)
   ============================================================ */
body.cdm-storefront .cdm-insp {
  padding: 54px 28px 76px;
  background: var(--color-white);
}
body.cdm-storefront .cdm-insp-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}
body.cdm-storefront .cdm-insp-script {
  font-family: var(--font-heading-cursive);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 6px;
}
body.cdm-storefront .cdm-insp-title {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-main);
  margin: 0;
}
body.cdm-storefront .cdm-insp-orn {
  position: relative;
  display: block;
  width: 150px; height: 11px;
  margin: 16px auto 0;
}
body.cdm-storefront .cdm-insp-orn::before {
  content: '';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}
body.cdm-storefront .cdm-insp-orn::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 9px; height: 9px;
  background: var(--color-gold);
  border-radius: 1px;
}
body.cdm-storefront .cdm-insp-sub {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 10px auto 0;
  max-width: 560px;
}

body.cdm-storefront .cdm-insp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
body.cdm-storefront .cdm-insp-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
body.cdm-storefront .cdm-insp-scene {
  grid-column: span 2;
  grid-row: span 2;
}
body.cdm-storefront .cdm-insp-product {
  grid-column: span 1;
  grid-row: span 1;
}
body.cdm-storefront .cdm-insp-item:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
body.cdm-storefront .cdm-insp-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}
body.cdm-storefront .cdm-insp-item:hover img { transform: scale(1.045); }
body.cdm-storefront .cdm-insp-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(40, 20, 15, 0.68));
  color: #FFFFFF;
  font-family: var(--font-heading-serif);
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}
body.cdm-storefront .cdm-insp-cap a { color: #FFFFFF; text-decoration: none; }
body.cdm-storefront .cdm-insp-cap a:hover { text-decoration: underline; }
body.cdm-storefront .cdm-insp-product-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(197, 118, 101, 0.9);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}
body.cdm-storefront .cdm-insp-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--color-text-muted);
  border: 2px dashed #E5DED8;
  border-radius: 14px;
}
body.cdm-storefront .cdm-insp-cta {
  text-align: center;
  margin-top: 52px;
}
body.cdm-storefront .cdm-insp-cta p {
  font-family: var(--font-heading-cursive);
  font-weight: 400;
  font-size: 30px;
  color: var(--color-text-main);
  margin: 0 0 16px;
}
body.cdm-storefront .cdm-insp-cta .cdm-btn {
  background-image: linear-gradient(135deg, var(--color-primary) 0%, #D49082 100%);
  padding: 14px 30px;
  font-size: 12px;
  box-shadow: 0 6px 18px rgba(197, 118, 101, 0.35);
}
body.cdm-storefront .cdm-insp-cta .cdm-btn:hover { background-image: linear-gradient(135deg, #B56A5A 0%, #C57665 100%); }

/* Lightbox */
body.cdm-storefront .cdm-lb {
  position: fixed; inset: 0;
  background: rgba(30, 14, 10, 0.88);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 4vw;
  cursor: zoom-out;
}
body.cdm-storefront .cdm-lb img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  animation: cdmLbIn 0.25s ease;
}
body.cdm-storefront .cdm-lb-close {
  position: absolute; top: 18px; right: 22px;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF; font-size: 20px; cursor: pointer;
}
@keyframes cdmLbIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@media (max-width: 1024px) {
  body.cdm-storefront .cdm-insp-grid { grid-template-columns: repeat(2, 1fr); }
  body.cdm-storefront .cdm-insp-scene { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 600px) {
  body.cdm-storefront .cdm-insp { padding: 40px 16px 60px; }
  body.cdm-storefront .cdm-insp-script { font-size: 26px; }
  body.cdm-storefront .cdm-insp-title { font-size: 30px; letter-spacing: 2px; }
  body.cdm-storefront .cdm-insp-grid { grid-template-columns: 1fr; gap: 12px; }
  body.cdm-storefront .cdm-insp-scene { grid-column: span 1; }
  body.cdm-storefront .cdm-insp-item { border-radius: 10px; }
}

/* ============================================================
   17. PÁGINA "INDICAMOS" — [cdm_indicamos]
   Contatos/empresas em ordem alfabética, visual da home.
   ============================================================ */
body.cdm-storefront .cdm-indica {
  padding: 54px 28px 20px;
  background: var(--color-white);
}
body.cdm-storefront .cdm-indica-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}
body.cdm-storefront .cdm-indica-script {
  font-family: var(--font-heading-cursive);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 6px;
}
body.cdm-storefront .cdm-indica-title {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-main);
  margin: 0;
}
body.cdm-storefront .cdm-indica-orn {
  position: relative;
  display: block;
  width: 150px; height: 11px;
  margin: 16px auto 0;
}
body.cdm-storefront .cdm-indica-orn::before {
  content: '';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}
body.cdm-storefront .cdm-indica-orn::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 9px; height: 9px;
  background: var(--color-gold);
  border-radius: 1px;
}
body.cdm-storefront .cdm-indica-sub {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 10px auto 0;
  max-width: 560px;
}
body.cdm-storefront .cdm-indica-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
body.cdm-storefront .cdm-indica-card {
  background: #FFFDFC;
  border: 1px solid #F0E4DF;
  border-radius: 14px;
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
body.cdm-storefront .cdm-indica-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
body.cdm-storefront .cdm-indica-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
body.cdm-storefront .cdm-indica-badge {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
  background-image: linear-gradient(135deg, var(--color-primary) 0%, #D49082 100%);
}
body.cdm-storefront .cdm-indica-titles h3 {
  font-family: var(--font-heading-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0 0 3px;
}
body.cdm-storefront .cdm-indica-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-primary);
  background: #FBE9E4;
  border-radius: 30px;
  padding: 3px 10px;
}
body.cdm-storefront .cdm-indica-note {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
body.cdm-storefront .cdm-indica-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.cdm-storefront .cdm-indica-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 13.5px;
  line-height: 1.4;
}
body.cdm-storefront .cdm-indica-meta li i svg { width: 15px; height: 15px; color: var(--color-primary); flex: 0 0 auto; }
body.cdm-storefront .cdm-indica-actions { margin-top: auto; padding-top: 6px; }
body.cdm-storefront .cdm-indica-wa,
body.cdm-storefront .cdm-indica-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
body.cdm-storefront .cdm-indica-wa {
  background-image: linear-gradient(135deg, #25D366 0%, #1EB85A 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}
body.cdm-storefront .cdm-indica-wa:hover { transform: translateY(-1px); }
body.cdm-storefront .cdm-indica-call {
  background: #FBF3F0;
  color: var(--color-primary);
  border: 1px solid #EAD9D1;
}
body.cdm-storefront .cdm-indica-call:hover { background: var(--color-primary); color: #FFFFFF; }
@media (max-width: 600px) {
  body.cdm-storefront .cdm-indica { padding: 40px 16px 16px; }
  body.cdm-storefront .cdm-indica-script { font-size: 26px; }
  body.cdm-storefront .cdm-indica-title { font-size: 30px; letter-spacing: 2px; }
  body.cdm-storefront .cdm-indica-grid { grid-template-columns: 1fr; }
}

/* 18. HERO PADRÃO DAS PÁGINAS INTERNAS */
body.cdm-storefront .cdm-page-hero {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, #D49082 0%, #C57665 55%, #9E5547 100%);
  padding: 64px 24px 56px;
  display: flex; align-items: center; justify-content: center;
}
body.cdm-storefront .cdm-page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(40, 20, 15, 0.12), rgba(40, 20, 15, 0.42));
}
body.cdm-storefront .cdm-ph-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 680px;
}
body.cdm-storefront .cdm-ph-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.93);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 42px 40px;
  box-shadow: 0 18px 50px rgba(40, 20, 15, 0.22);
}
body.cdm-storefront .cdm-ph-script {
  font-family: var(--font-heading-cursive);
  font-weight: 400;
  font-size: 32px; line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 4px;
}
body.cdm-storefront .cdm-ph-title {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-main);
  margin: 0;
}
body.cdm-storefront .cdm-ph-orn {
  position: relative;
  display: block;
  width: 150px; height: 11px;
  margin: 16px 0 0;
}
body.cdm-storefront .cdm-ph-orn::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}
body.cdm-storefront .cdm-ph-orn::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 9px; height: 9px;
  background: var(--color-gold);
  border-radius: 1px;
}
body.cdm-storefront .cdm-ph-sub {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-size: 15px; line-height: 1.6;
  margin: 12px 0 0;
}
@media (max-width: 782px) {
  body.cdm-storefront .cdm-page-hero { padding: 44px 18px 40px; }
  body.cdm-storefront .cdm-ph-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  body.cdm-storefront .cdm-ph-card { padding: 28px 18px; }
  body.cdm-storefront .cdm-ph-script { font-size: 26px; }
  body.cdm-storefront .cdm-ph-title { font-size: 24px; letter-spacing: 2px; }
}

/* 19. MINHA CONTA (WooCommerce My Account) */
body.cdm-storefront .woocommerce-account .woocommerce {
  width: 100%; max-width: 940px; margin: 34px auto; padding: 0 20px;
}
body.cdm-storefront #customer_login {
  background: var(--color-white);
  border: 1px solid #F0E4DF;
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 30px 26px;
}
body.cdm-storefront #customer_login .col-1,
body.cdm-storefront #customer_login .col-2 {
  padding: 16px 14px;
  margin: 0;
}
body.cdm-storefront #customer_login h2 {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
  text-align: center;
  margin: 0 0 18px;
  font-size: 26px;
}
body.cdm-storefront .woocommerce form.login,
body.cdm-storefront .woocommerce form.register {
  grid-template-columns: 1fr;
  border: none; margin: 0;
}
body.cdm-storefront .woocommerce form .form-row { margin: 0 0 16px; }
body.cdm-storefront .woocommerce label { font-weight: 600; }
body.cdm-storefront .woocommerce input.input-text,
body.cdm-storefront .woocommerce input[type="text"],
body.cdm-storefront .woocommerce input[type="password"],
body.cdm-storefront .woocommerce input[type="email"] {
  min-height: 46px;
  border: 1px solid #EAD9D1;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  background: #FDFAF8;
}
body.cdm-storefront .woocommerce input:focus {
  border-color: var(--color-primary);
  outline: none; box-shadow: 0 0 0 3px rgba(197, 118, 101, 0.18);
}
body.cdm-storefront .woocommerce button.button,
body.cdm-storefront .woocommerce-button,
body.cdm-storefront .woocommerce button.button[type="submit"] {
  background-image: linear-gradient(135deg, #C57665 0%, #B56A5A 100%);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  min-height: 46px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 12px 22px;
}
body.cdm-storefront .woocommerce button.button:hover {
  background-image: linear-gradient(135deg, #B56A5A 0%, #9E5547 100%);
  color: #fff;
}
body.cdm-storefront .woocommerce .lost_password a { color: var(--color-primary); font-size: 13px; }
body.cdm-storefront .woocommerce-MyAccount-navigation ul {
  display: flex; flex-wrap: wrap; gap: 10px;
  list-style: none; margin: 0 0 24px; padding: 14px;
  background: #FBF8F6; border-radius: 12px; border: 1px solid #F0E4DF;
}
body.cdm-storefront .woocommerce-MyAccount-navigation ul li { margin: 0; }
body.cdm-storefront .woocommerce-MyAccount-navigation ul li a {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid #EAD9D1;
  font-size: 13.5px; font-weight: 600;
  color: #5A4A44;
  text-decoration: none;
  background: #fff;
  transition: all 0.15s ease;
}
body.cdm-storefront .woocommerce-MyAccount-navigation ul li.is-active a,
body.cdm-storefront .woocommerce-MyAccount-navigation ul li a:hover {
  background-image: linear-gradient(135deg, #C57665 0%, #B56A5A 100%);
  color: #fff; border-color: transparent;
}
body.cdm-storefront .woocommerce-MyAccount-content {
  background: var(--color-white);
  border: 1px solid #F0E4DF;
  border-radius: 14px;
  padding: 26px;
  box-shadow: var(--shadow-card);
}
body.cdm-storefront .woocommerce-MyAccount-content h2,
body.cdm-storefront .woocommerce-MyAccount-content h3 {
  font-family: var(--font-heading-serif);
  color: var(--color-primary);
  letter-spacing: 0.5px;
}
body.cdm-storefront .woocommerce-account .addresses .edit a {
  color: var(--color-primary); font-weight: 600;
}

/* 20. COMO FUNCIONA (passo a passo) */
body.cdm-storefront .cdm-how {
  background: var(--color-white);
  padding: 56px 24px 48px;
}
body.cdm-storefront .cdm-how-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
body.cdm-storefront .cdm-how-script {
  font-family: var(--font-heading-cursive);
  font-weight: 400;
  font-size: 34px; line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 4px;
}
body.cdm-storefront .cdm-how-title {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-main);
  margin: 0;
}
body.cdm-storefront .cdm-how-orn {
  position: relative;
  display: block;
  width: 150px; height: 11px;
  margin: 16px auto 0;
}
body.cdm-storefront .cdm-how-orn::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}
body.cdm-storefront .cdm-how-orn::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 9px; height: 9px;
  background: var(--color-gold);
  border-radius: 1px;
}
body.cdm-storefront .cdm-how-sub {
  color: var(--color-text-muted);
  font-size: 15px; line-height: 1.6;
  margin: 14px 0 0;
}
body.cdm-storefront .cdm-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
body.cdm-storefront .cdm-how-card {
  position: relative;
  background: #FBF8F6;
  border: 1px solid #F0E4DF;
  border-radius: 12px;
  padding: 28px 22px 26px;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
body.cdm-storefront .cdm-how-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
body.cdm-storefront .cdm-how-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-round);
  background-image: linear-gradient(135deg, #C57665 0%, #B56A5A 100%);
  color: #FFFFFF;
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 14px;
}
body.cdm-storefront .cdm-how-card-title {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: var(--color-text-main);
  margin: 0 0 8px;
}
body.cdm-storefront .cdm-how-card-text {
  color: var(--color-text-muted);
  font-size: 13.5px; line-height: 1.65;
  margin: 0;
}
body.cdm-storefront .cdm-how-cta {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 40px auto 0;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  background-image: linear-gradient(135deg, #25D366 0%, #1EB85A 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
body.cdm-storefront .cdm-how-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.4);
  color: #fff;
}
/* Conteúdo existente (FAQ) da página Como Funciona ganha um card leve */
body.cdm-storefront .elementor-element-f59d146 {
  background: #FBF8F6;
  border-radius: 18px;
  margin: 40px auto 0;
  max-width: 860px;
  padding: 34px 28px 6px;
}
body.cdm-storefront .elementor-element-f59d146 .elementor-heading-title {
  font-family: var(--font-heading-serif);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-primary);
}
/* FAQ: cada pergunta/resposta em um cartão alinhado */
body.cdm-storefront .elementor-element-939b543 {
  background: #FBF8F6;
  border-radius: 18px;
  margin: 0 auto 40px;
  max-width: 860px;
  padding: 28px 28px 40px;
}
body.cdm-storefront .elementor-element-939b543 .elementor-widget-text-editor {
  max-width: 100%;
  margin: 0;
}
body.cdm-storefront .elementor-element-939b543 p {
  color: var(--color-text-main);
  line-height: 1.7;
  font-size: 14.5px;
  background: #FFFFFF;
  border-left: 3px solid var(--color-primary);
  border-radius: 8px;
  box-shadow: var(--shadow-subtle);
  padding: 13px 16px 13px 20px;
  margin: 0 0 10px;
}
body.cdm-storefront .elementor-element-939b543 p:last-child { margin-bottom: 0; }
@media (max-width: 980px) {
  body.cdm-storefront .cdm-how-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  body.cdm-storefront .cdm-how { padding: 44px 16px 36px; }
  body.cdm-storefront .cdm-how-script { font-size: 26px; }
  body.cdm-storefront .cdm-how-title { font-size: 30px; letter-spacing: 2px; }
  body.cdm-storefront .cdm-how-grid { grid-template-columns: 1fr; }
}

/* 20.1 FAQ "Como Funciona o Aluguel" — acordeão no padrão Cadmiel */
body.cdm-storefront .cdm-faq {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 20px 64px;
}
body.cdm-storefront .cdm-faq-head { text-align: center; margin-bottom: 34px; }
body.cdm-storefront .cdm-faq-script {
  font-family: var(--font-hand, 'Great Vibes');
  font-size: 30px;
  color: var(--color-accent, #D9A44A);
  margin: 0 0 2px;
}
body.cdm-storefront .cdm-faq-title {
  font-family: var(--font-heading-serif);
  font-size: 34px;
  letter-spacing: 2px;
  color: var(--color-primary, #C57665);
  margin: 0 0 12px;
}
body.cdm-storefront .cdm-faq-orn {
  display: block;
  width: 64px;
  height: 3px;
  margin: 0 auto 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent, #D9A44A), transparent);
}
body.cdm-storefront .cdm-faq-sub {
  color: var(--color-text-muted, #8a7d74);
  font-size: 14.5px;
  max-width: 520px;
  margin: 0 auto;
}
body.cdm-storefront .cdm-faq-list { display: flex; flex-direction: column; gap: 12px; }
body.cdm-storefront .cdm-faq-item {
  background: #FFFFFF;
  border: 1px solid #f0e6df;
  border-radius: 14px;
  box-shadow: var(--shadow-subtle, 0 6px 18px rgba(60, 40, 30, 0.06));
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
body.cdm-storefront .cdm-faq-item.cdm-faq-open {
  border-color: #e6cfc6;
  box-shadow: 0 12px 30px rgba(60, 40, 30, 0.12);
}
body.cdm-storefront .cdm-faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--color-text-main, #3d2c24);
}
body.cdm-storefront .cdm-faq-num {
  flex: none;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #F7ECE6 0%, #F0DED5 100%);
  color: var(--color-primary, #C57665);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.25s ease, color 0.25s ease;
}
body.cdm-storefront .cdm-faq-item.cdm-faq-open .cdm-faq-num {
  background: linear-gradient(135deg, #C57665 0%, #B56A5A 100%);
  color: #fff;
}
body.cdm-storefront .cdm-faq-qtext {
  flex: 1;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.4;
}
body.cdm-storefront .cdm-faq-chev {
  flex: none;
  width: 20px;
  height: 20px;
  color: #b9a89e;
  transition: transform 0.3s ease, color 0.3s ease;
}
body.cdm-storefront .cdm-faq-item.cdm-faq-open .cdm-faq-chev {
  transform: rotate(180deg);
  color: var(--color-primary, #C57665);
}
body.cdm-storefront .cdm-faq-chev svg { width: 100%; height: 100%; display: block; }
body.cdm-storefront .cdm-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
body.cdm-storefront .cdm-faq-item.cdm-faq-open .cdm-faq-a { max-height: 600px; }
body.cdm-storefront .cdm-faq-a-inner {
  padding: 0 22px 22px 72px;
  color: var(--color-text-muted, #6b5d54);
  font-size: 14.5px;
  line-height: 1.75;
}
@media (max-width: 480px) {
  body.cdm-storefront .cdm-faq { padding: 44px 16px 52px; }
  body.cdm-storefront .cdm-faq-title { font-size: 28px; }
  body.cdm-storefront .cdm-faq-a-inner { padding-left: 22px; }
}

/* 21. REFINOS — produto / carrinho / checkout */
/* Seção 8 já estiliza; aqui finalizamos (título duplicado, botões em gradiente,
   carrinho vazio, campos e botão de checkout). */
body.cdm-storefront.woocommerce.single-product .product_title { display: none; }

body.cdm-storefront.woocommerce div.product form.cart .button,
body.cdm-storefront .single_add_to_cart_button {
  background-image: linear-gradient(135deg, #C57665 0%, #B56A5A 100%);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.4px;
  box-shadow: 0 6px 16px rgba(197, 118, 101, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
body.cdm-storefront.woocommerce div.product form.cart .button:hover,
body.cdm-storefront .single_add_to_cart_button:hover {
  background-image: linear-gradient(135deg, #B56A5A 0%, #9E5547 100%);
  transform: translateY(-1px);
  color: #fff;
}
body.cdm-storefront .woocommerce div.product .woocommerce-product-gallery {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #F0E4DF;
}
body.cdm-storefront .woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs img {
  border-radius: var(--radius-sm);
  border: 1px solid #F0E4DF;
}
body.cdm-storefront .woocommerce div.product .summary { padding-left: 14px; }

/* ======================================================================
 *  PRODUCT GRID — Remove zoom, add rounded borders, toggle open/close
 * ====================================================================== */

/* Remove automatic zoom on product image hover */
body.cdm-storefront .shopengine-single-product-item .product-thumb img,
body.cdm-storefront ul.products li.product img,
body.cdm-storefront .shopengine-single-product-item .product-thumb a,
body.cdm-storefront ul.products li.product a.woocommerce-LoopProduct-link {
  transition: opacity 0.2s ease, border-radius 0.2s ease !important;
  transform: none !important;
}

/* Disable scale transform on hover for product images */
body.cdm-storefront .shopengine-single-product-item:hover .product-thumb img,
body.cdm-storefront ul.products li.product:hover img,
body.cdm-storefront .shopengine-single-product-item:hover .product-thumb a img,
body.cdm-storefront ul.products li.product:hover a img {
  transform: none !important;
  opacity: 0.9;
}

/* Rounded borders for product images in grid */
body.cdm-storefront .shopengine-single-product-item .product-thumb,
body.cdm-storefront ul.products li.product .woocommerce-LoopProduct-link,
body.cdm-storefront .shopengine-single-product-item .product-thumb a {
  border-radius: var(--radius-md) !important;
  overflow: hidden;
}

/* Product card toggle (open/close) */
body.cdm-storefront .shopengine-single-product-item,
body.cdm-storefront ul.products li.product {
  position: relative;
}

body.cdm-storefront .shopengine-single-product-item .product-toggle,
body.cdm-storefront ul.products li.product .product-toggle {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
body.cdm-storefront .shopengine-single-product-item:hover .product-toggle,
body.cdm-storefront ul.products li.product:hover .product-toggle {
  opacity: 1;
  transform: translateY(0);
}
body.cdm-storefront .shopengine-single-product-item .product-toggle svg,
body.cdm-storefront ul.products li.product .product-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-text-main);
  stroke-width: 2;
}
body.cdm-storefront .shopengine-single-product-item .product-toggle[aria-expanded="true"] svg,
body.cdm-storefront ul.products li.product .product-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Collapsed state - hide details, show only image + toggle */
body.cdm-storefront .shopengine-single-product-item.cdm-collapsed .product-category,
body.cdm-storefront .shopengine-single-product-item.cdm-collapsed .product-title,
body.cdm-storefront .shopengine-single-product-item.cdm-collapsed .product-rating,
body.cdm-storefront .shopengine-single-product-item.cdm-collapsed .product-price,
body.cdm-storefront .shopengine-single-product-item.cdm-collapsed .overlay-add-to-cart,
body.cdm-storefront ul.products li.product.cdm-collapsed .woocommerce-loop-category__title,
body.cdm-storefront ul.products li.product.cdm-collapsed .woocommerce-loop-product__title,
body.cdm-storefront ul.products li.product.cdm-collapsed .star-rating,
body.cdm-storefront ul.products li.product.cdm-collapsed .price,
body.cdm-storefront ul.products li.product.cdm-collapsed .overlay-add-to-cart {
  display: none !important;
}
body.cdm-storefront .shopengine-single-product-item.cdm-collapsed,
body.cdm-storefront ul.products li.product.cdm-collapsed {
  padding-bottom: 12px;
}

/* Carrinho vazio */
body.cdm-storefront.woocommerce-cart .cart-empty {
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  background: #FBF8F6;
  padding: 44px 24px;
  font-family: var(--font-heading-serif);
  font-size: 22px;
  color: var(--color-text-main);
  margin-top: 24px;
}
body.cdm-storefront.woocommerce-cart .return-to-shop {
  text-align: center;
  margin: 20px 0 40px;
}
body.cdm-storefront.woocommerce-cart .return-to-shop a,
body.cdm-storefront.woocommerce-cart p.return-to-shop a.button,
body.cdm-storefront.woocommerce-cart .wc-backward {
  display: inline-block;
  background-image: linear-gradient(135deg, #C57665 0%, #B56A5A 100%);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 13px 26px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
body.cdm-storefront.woocommerce-cart .wc-backward:hover { color: #fff; }

/* Totais e finalizar no carrinho */
body.cdm-storefront.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background-image: linear-gradient(135deg, #C57665 0%, #B56A5A 100%);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  font-weight: 600;
  letter-spacing: 0.4px;
}
body.cdm-storefront.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background-image: linear-gradient(135deg, #B56A5A 0%, #9E5547 100%);
  color: #fff;
}
body.cdm-storefront.woocommerce-cart .coupon .button,
body.cdm-storefront .woocommerce table.shop_table .button {
  background-image: linear-gradient(135deg, #C57665 0%, #B56A5A 100%);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
}

/* Checkout: campos e botão "Finalizar compra" */
body.cdm-storefront .woocommerce-checkout input.input-text,
body.cdm-storefront .woocommerce-checkout select,
body.cdm-storefront .woocommerce-checkout textarea,
body.cdm-storefront .woocommerce-checkout .select2-container .select2-selection--single {
  min-height: 46px;
  border-radius: var(--radius-sm);
  border-color: #EAD9D1;
  background: #FDFAF8;
}
body.cdm-storefront .woocommerce-checkout #place_order {
  background-image: linear-gradient(135deg, #25D366 0%, #1EB85A 100%);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 15px 28px;
  width: 100%;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}
body.cdm-storefront .woocommerce-checkout #place_order:hover {
  background-image: linear-gradient(135deg, #1EB85A 0%, #18a24e 100%);
  color: #fff;
}

/* 22. TEMAS / DATAS COMEMORATIVAS — efeitos sutis por feriado */
body.cdm-storefront .cdm-layer {
  position: fixed; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 99998;
}
body.cdm-storefront .cdm-p { position: absolute; top: -6vh; line-height: 1; will-change: transform; }
/* Animação própria de cada evento (todas diferentes) */
@keyframes cdmSnow {
  0%   { transform: translate(0, -6vh); opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translate(22px, 108vh); opacity: 0; }
}
@keyframes cdmConfettiFall {
  0%   { transform: translate(0, -6vh) rotate(0deg); }
  30%  { transform: translate(26px, 28vh) rotate(120deg); }
  70%  { transform: translate(-18px, 66vh) rotate(300deg); }
  100% { transform: translate(10px, 108vh) rotate(540deg); }
}
@keyframes cdmFlutter {
  0%   { transform: translate(0, -6vh) rotate(0deg); }
  25%  { transform: translate(34px, 26vh) rotate(40deg); }
  50%  { transform: translate(-28px, 54vh) rotate(-35deg); }
  75%  { transform: translate(20px, 82vh) rotate(30deg); }
  100% { transform: translate(-6px, 108vh) rotate(0deg); }
}
@keyframes cdmBob {
  0%   { transform: translateY(-6vh) scaleY(1); }
  30%  { transform: translateY(30vh) scaleY(.92); }
  55%  { transform: translateY(52vh) scaleY(1.06); }
  80%  { transform: translateY(78vh) scaleY(.96); }
  100% { transform: translateY(108vh) scaleY(1); }
}
@keyframes cdmSwayFall {
  0%   { transform: translate(0, -6vh) rotate(-8deg); }
  50%  { transform: translate(16px, 55vh) rotate(8deg); }
  100% { transform: translate(-10px, 108vh) rotate(-8deg); }
}
@keyframes cdmRisePulse {
  0%   { transform: translateY(110vh) scale(.5); opacity: 0; }
  12%  { opacity: .9; transform: translateY(90vh) scale(1); }
  60%  { opacity: .8; }
  100% { transform: translateY(-8vh) scale(1); opacity: 0; }
}
@keyframes cdmRiseSway {
  0%   { transform: translateY(110vh) translateX(0) rotate(-6deg); opacity: 0; }
  15%  { opacity: .9; }
  50%  { transform: translateY(52vh) translateX(-16px) rotate(4deg); }
  85%  { opacity: .8; }
  100% { transform: translateY(-8vh) translateX(12px) rotate(-4deg); opacity: 0; }
}
@keyframes cdmSwing {
  0%   { transform: translate(0, -6vh) rotate(-24deg); }
  30%  { transform: translate(18px, 30vh) rotate(24deg); }
  60%  { transform: translate(-14px, 62vh) rotate(-18deg); }
  100% { transform: translate(8px, 108vh) rotate(14deg); }
}
@keyframes cdmKiteDrift {
  0%   { transform: translateY(110vh) translateX(-14px) rotate(-14deg); opacity: 0; }
  20%  { opacity: .95; }
  50%  { transform: translateY(52vh) translateX(20px) rotate(10deg); }
  80%  { opacity: .9; }
  100% { transform: translateY(-8vh) translateX(-10px) rotate(-8deg); opacity: 0; }
}
@keyframes cdmRiseTwinkle {
  0%   { transform: translateY(110vh) scale(.3); opacity: 0; }
  18%  { opacity: .9; transform: scale(1); }
  55%  { opacity: .7; transform: scale(.7); }
  100% { transform: translateY(-8vh) scale(1); opacity: 0; }
}
@keyframes cdmRiseDrift {
  0%   { transform: translateY(110vh) translateX(0) scale(.7); opacity: 0; }
  20%  { opacity: .8; }
  50%  { transform: translateY(55vh) translateX(20px) scale(1); }
  100% { transform: translateY(-8vh) translateX(-14px) scale(.9); opacity: 0; }
}
@keyframes cdmTwinkleFall {
  0%   { transform: translate(0, -6vh) scale(.6); opacity: 0; }
  20%  { opacity: 1; transform: scale(1); }
  80%  { opacity: .8; transform: scale(.8); }
  100% { transform: translate(14px, 108vh) scale(1); opacity: 0; }
}
@keyframes cdmPetalDrift {
  0%   { transform: translate(0, -6vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  55%  { transform: translate(26px, 55vh) rotate(160deg); }
  100% { transform: translate(-20px, 108vh) rotate(320deg); opacity: 0; }
}
@keyframes cdmRise {
  0%   { transform: translateY(110vh) scale(.4); opacity: 0; }
  15%  { opacity: .8; }
  85%  { opacity: .8; }
  100% { transform: translateY(-8vh) scale(1); opacity: 0; }
}
/* Morcego: voo horizontal cruzando a tela */
@keyframes cdmBat {
  0%   { transform: translateX(110vw) scaleX(1) translateY(0); opacity: 0; }
  8%   { opacity: .85; }
  50%  { transform: translateX(40vw) scaleX(1) translateY(-18px); }
  92%  { opacity: .85; }
  100% { transform: translateX(-30vw) scaleX(1) translateY(0); opacity: 0; }
}
@keyframes cdmHop {
  0%   { transform: translateX(105vw) translateY(0) scale(.9); opacity: 0; }
  8%   { opacity: 1; }
  50%  { transform: translateX(45vw) translateY(-42vh) scale(1); }
  92%  { opacity: 1; }
  100% { transform: translateX(-15vw) translateY(0) scale(.95); opacity: 0; }
}
@keyframes cdmDove {
  0%   { transform: translateX(108vw) translateY(0) rotate(-3deg); opacity: 0; }
  10%  { opacity: .9; }
  50%  { transform: translateX(45vw) translateY(-14vh) rotate(3deg); }
  90%  { opacity: .9; }
  100% { transform: translateX(-20vw) translateY(0) rotate(-2deg); opacity: 0; }
}
body.cdm-storefront .cdm-layer-snow .cdm-p      { animation-name: cdmSnow; }
body.cdm-storefront .cdm-layer-confetti .cdm-p  { animation-name: cdmConfettiFall; }
body.cdm-storefront .cdm-layer-masks .cdm-p     { animation-name: cdmFlutter; }
body.cdm-storefront .cdm-layer-eggs .cdm-p      { animation-name: cdmBob; }
body.cdm-storefront .cdm-layer-flowers .cdm-p   { animation-name: cdmSwayFall; }
body.cdm-storefront .cdm-layer-cupid .cdm-p     { animation-name: cdmRisePulse; }
body.cdm-storefront .cdm-layer-junina .cdm-p    { animation-name: cdmRiseSway; }
body.cdm-storefront .cdm-layer-balloons .cdm-p  { animation-name: cdmRiseSway; }
body.cdm-storefront .cdm-layer-ties .cdm-p      { animation-name: cdmSwing; }
body.cdm-storefront .cdm-layer-kites .cdm-p     { animation-name: cdmKiteDrift; }
body.cdm-storefront .cdm-layer-sparkles .cdm-p  { animation-name: cdmRiseTwinkle; }
body.cdm-storefront .cdm-layer-bubbles .cdm-p   { animation-name: cdmRiseDrift; }
body.cdm-storefront .cdm-layer-stars .cdm-p     { animation-name: cdmTwinkleFall; }
body.cdm-storefront .cdm-layer-petals .cdm-p    { animation-name: cdmPetalDrift; }
body.cdm-storefront .cdm-layer-hearts .cdm-p,
body.cdm-storefront .cdm-layer-embers .cdm-p    { animation-name: cdmRise; }
body.cdm-storefront .cdm-layer-bats .cdm-p      { animation-name: cdmBat; }
body.cdm-storefront .cdm-p-bunny                { animation-name: cdmHop; }
body.cdm-storefront .cdm-p-dove                 { animation-name: cdmDove; }
body.cdm-storefront .cdm-layer .cdm-p {
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
/* Iluminação mesclada (fogos, neve, brilhos, brasas) */
body.cdm-storefront .cdm-layer-fireworks,
body.cdm-storefront .cdm-layer-snow,
body.cdm-storefront .cdm-layer-sparkles,
body.cdm-storefront .cdm-layer-embers,
body.cdm-storefront .cdm-layer-petals,
body.cdm-storefront .cdm-layer-stars,
body.cdm-storefront .cdm-layer-ties {
  mix-blend-mode: screen;
}
body.cdm-storefront .cdm-p-snow { text-shadow: 0 0 6px rgba(255,255,255,0.9); }
body.cdm-storefront .cdm-p-embers { text-shadow: 0 0 8px rgba(235,150,60,0.8); }
body.cdm-storefront .cdm-p-stars { text-shadow: 0 0 8px rgba(255,225,150,0.9); }
/* Ovos de Páscoa pastéis */
body.cdm-storefront .cdm-egg {
  display: inline-block;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background-image: linear-gradient(160deg, #ffd9a0 0%, #ffb1c9 55%, #b3dccc 100%);
  box-shadow: inset -3px -4px 6px rgba(255,255,255,0.5);
}
/* Gravata (Dia dos Pais) desenhada em CSS */
body.cdm-storefront .cdm-tie {
  display: inline-block;
  clip-path: polygon(20% 0, 80% 0, 62% 22%, 62% 55%, 78% 62%, 62% 78%, 62% 100%, 38% 100%, 38% 78%, 22% 62%, 38% 55%, 38% 22%);
  box-shadow: inset -2px -3px 4px rgba(0,0,0,0.22);
}
/* Fogueira junina + bandeirinhas */
body.cdm-storefront .cdm-jf-flags {
  position: absolute; top: 10px; left: 0; right: 0; height: 26px;
  background-image: linear-gradient(45deg, transparent 46%, #C57665 46%, #C57665 54%, transparent 54%),
                    linear-gradient(-45deg, transparent 46%, #D9A44A 46%, #D9A44A 54%, transparent 54%);
  background-size: 44px 100%;
  opacity: .5;
}
body.cdm-storefront .cdm-jf-fire {
  position: absolute; bottom: 18px; left: 50%;
  width: 64px; height: 84px;
  margin-left: -32px;
}
body.cdm-storefront .cdm-jf-fire::before,
body.cdm-storefront .cdm-jf-fire::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  width: 22px; height: 30px;
  border-radius: 50% 50% 46% 46% / 62% 62% 38% 38%;
  background: radial-gradient(circle at 50% 62%, #FFE08A 0%, #F4A261 52%, rgba(244,162,97,0) 78%);
  transform-origin: 50% 100%;
  filter: blur(.4px);
  animation: cdmFlame 0.7s ease-in-out infinite alternate;
}
body.cdm-storefront .cdm-jf-fire::after {
  width: 32px; height: 46px;
  background: radial-gradient(circle at 50% 62%, #FFD166 0%, #F4A261 58%, rgba(244,162,97,0) 82%);
  animation-duration: 0.95s;
  animation-delay: -0.3s;
  opacity: .85;
}
@keyframes cdmFlame {
  from { transform: translateX(-50%) scaleY(0.86) rotate(-3deg); }
  to   { transform: translateX(-50%) scaleY(1.08) rotate(3deg); }
}
/* Fogo de artifício (rajada) */
body.cdm-storefront .cdm-p-fw {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  animation-name: cdmBurst;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes cdmBurst {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--bx), var(--by)) scale(.12); opacity: 0; }
}
/* Neve acumulada sobre o hero/cartões (só no tema Natal) */
body.cdm-storefront.cdm-theme-natal .cdm-hero-inner,
body.cdm-storefront.cdm-theme-natal .cdm-ph-card,
body.cdm-storefront.cdm-theme-natal .cdm-banner-card,
body.cdm-storefront.cdm-theme-natal .cdm-how-card,
body.cdm-storefront.cdm-theme-natal .ast-article-single,
body.cdm-storefront.cdm-theme-natal .elementor-widget-container > .elementor-widget-heading {
  position: relative;
  border-top: 9px solid rgba(255,255,255,0.92);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -2px 12px rgba(255,255,255,0.6), 0 16px 44px rgba(30,20,14,0.18);
}
body.cdm-storefront.cdm-theme-natal .cdm-hero-inner::after,
body.cdm-storefront.cdm-theme-natal .cdm-ph-card::after {
  content: '';
  position: absolute;
  top: -3px; left: 12%; right: 12%;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  filter: blur(1px);
}
/* Caixinhas de confete soltas sem desrespeitar animação de fall */
body.cdm-storefront .cdm-p-confetti { background-size: cover; border-radius: 2px; }

/* ============================================================
   RESPONSIVE FIXES — Touch targets, breakpoints, overflow
   ============================================================ */

/* Prevent horizontal overflow on small screens */
body.cdm-storefront { overflow-x: hidden; }

/* Touch targets: ensure minimum 44x44px */
body.cdm-storefront .cdm-testi-dots span {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.cdm-storefront .cdm-testi-dots span::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: inherit;
}
body.cdm-storefront .cdm-testi-dots span.on::after {
  background: var(--color-primary);
}

/* Testimonial carousel: prevent horizontal scroll */
body.cdm-storefront .cdm-testimonials {
  overflow: visible;
}
body.cdm-storefront .cdm-testimonial {
  min-width: 0;
}

/* Product grid: ensure no overflow */
body.cdm-storefront .cdm-prod-card {
  min-width: 0;
  overflow: hidden;
}

/* 768px breakpoint: intermediate tablets */
@media (max-width: 768px) {
  body.cdm-storefront .cdm-perks { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 20px 16px; }
  body.cdm-storefront .cdm-banners-grid { grid-template-columns: 1fr; }
  body.cdm-storefront .cdm-foot-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  body.cdm-storefront .cdm-gallery { grid-template-columns: repeat(2, 1fr); }
  body.cdm-storefront .cdm-insp { padding: 36px 16px 54px; }
  body.cdm-storefront .cdm-insp-title { font-size: 28px; }
  body.cdm-storefront .cdm-insp-head { margin-bottom: 28px; }
  body.cdm-storefront .cdm-faq-num { width: 38px; height: 38px; font-size: 13px; }
  body.cdm-storefront .cdm-testimonial { padding: 20px; }
}

/* 480px breakpoint: phones */
@media (max-width: 480px) {
  body.cdm-storefront .cdm-perks { grid-template-columns: 1fr; gap: 12px; padding: 16px 14px; }
  body.cdm-storefront .cdm-banners-grid { gap: 14px; }
  body.cdm-storefront .cdm-gallery { grid-template-columns: 1fr; }
  body.cdm-storefront .cdm-testimonials { grid-template-columns: 1fr; }
  body.cdm-storefront .cdm-hero { min-height: 70vh; }
  body.cdm-storefront .cdm-hero-tagline { font-size: 28px; }
  body.cdm-storefront .cdm-hero-sub { font-size: 14px; }
  body.cdm-storefront .cdm-insp { padding: 28px 14px 44px; }
  body.cdm-storefront .cdm-insp-title { font-size: 24px; }
  body.cdm-storefront .cdm-insp-script { font-size: 26px; }
  body.cdm-storefront .cdm-faq-q { padding: 14px 16px; min-height: 48px; }
  body.cdm-storefront .cdm-faq-num { width: 40px; height: 40px; font-size: 13px; }
  body.cdm-storefront .cdm-faq-qtext { font-size: 14px; }
  body.cdm-storefront .cdm-prod-card { border-radius: 12px; }
  body.cdm-storefront .cdm-btn { min-height: 48px; padding: 12px 24px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  body.cdm-storefront .cdm-layer { display: none; }
  body.cdm-storefront * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* === INDICAMOS COLUMNS === */
body.cdm-storefront .cdm-indica-columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
body.cdm-storefront .cdm-indica-column {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}
body.cdm-storefront .cdm-indica-col-title {
  margin: 0;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--color-primary, #C57665);
}
body.cdm-storefront .cdm-indica-col-items {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 400px;
  overflow-y: auto;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-card {
  padding: 10px 12px;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  transition: border-color .2s, box-shadow .2s;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-card:hover {
  border-color: var(--color-primary, #C57665);
  box-shadow: 0 2px 8px rgba(197,118,101,.12);
}
body.cdm-storefront .cdm-indica-column .cdm-indica-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary, #C57665);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-titles h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-meta {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-meta li {
  font-size: 11px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-meta li svg {
  width: 12px;
  height: 12px;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-actions {
  margin-top: 6px;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-wa,
body.cdm-storefront .cdm-indica-column .cdm-indica-call {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-wa {
  background: #25D366;
  color: #fff;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-wa:hover {
  background: #1da851;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-call {
  background: #f1f5f9;
  color: #1e293b;
}
body.cdm-storefront .cdm-indica-column .cdm-indica-call:hover {
  background: #e2e8f0;
}
@media (max-width: 640px) {
  body.cdm-storefront .cdm-indica-columns { grid-template-columns: 1fr; }
}

/* === HIDDEN STOCK DISPLAY (client-facing) === */
body.cdm-storefront .stock,
body.cdm-storefront .in-stock,
body.cdm-storefront .out-of-stock,
body.cdm-storefront .availability,
body.cdm-storefront .stock.product-stock,
body.cdm-storefront .woocommerce-product-availability {
  display: none !important;
}

/* === REMOVE EXPAND/COLLAPSE BUTTON === */
body.cdm-storefront .product-toggle,
body.cdm-storefront .cdm-collapsed .woocommerce-product-details__short-description,
body.cdm-storefront .cdm-collapsed .product_meta,
body.cdm-storefront .cdm-collapsed .woocommerce-product-details__short-description + * {
  display: none !important;
}

/* === STORE POLICIES → RENTAL INFO === */
body.cdm-storefront .woocommerce-tabs .woocommerce-Tabs-panel--reviews::before,
body.cdm-storefront .woocommerce-Tabs-panel--reviews::after { display: none; }
body.cdm-storefront .wc-tab-title { display: none; }
body.cdm-storefront .woocommerce-Tabs-panel h2 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  color: var(--color-primary, #C57665);
}

/* === BUTTON CLIPPING FIX === */
body.cdm-storefront .cdm-btn,
body.cdm-storefront .button,
body.cdm-storefront .wc-proceed-to-checkout a,
body.cdm-storefront .woocommerce-form-login .button,
body.cdm-storefront .woocommerce-form-coupon .button {
  overflow: visible !important;
  min-height: 44px;
  white-space: nowrap;
}
body.cdm-storefront .cdm-btn { box-sizing: border-box; }

/* === PRODUCT CARD OVERFLOW FIX === */
body.cdm-storefront li.product,
body.cdm-storefront .shopengine-single-product-item {
  overflow: visible;
}

/* === WhatsApp FLOAT BUTTON === */
body.cdm-storefront .cdm-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
body.cdm-storefront .cdm-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}
body.cdm-storefront .cdm-wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
@media (max-width: 640px) {
  body.cdm-storefront .cdm-wa-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  body.cdm-storefront .cdm-wa-float svg { width: 24px; height: 24px; }
}
