:root{
  --dmv-bg1:#102a42;
  --dmv-bg2:#06111d;
  --dmv-card:#101a25;
  --dmv-card2:#152433;
  --dmv-gold:#caa34d;
  --dmv-gold2:#d9b35c;
  --dmv-text:#f2f2f2;
  --dmv-muted:#a5a5a5;
  --dmv-line:rgba(202,163,77,.25);
  --dmv-shadow:0 24px 70px rgba(0,0,0,.55);
}

.dmv-shell{
  min-height:100vh;
  background: radial-gradient(1200px 700px at 50% 0%, #0b2b3f 0%, var(--dmv-bg1) 40%, var(--dmv-bg2) 100%);
  padding: 18px 14px 60px;
  color:var(--dmv-text);
}

.dmv-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1200px;
  margin:0 auto 16px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  background: rgba(8,12,18,.55);
  backdrop-filter: blur(10px);
}

.dmv-brand{display:flex;gap:12px;align-items:center;}
.dmv-logo{width:42px;height:42px;border-radius:999px;object-fit:cover;box-shadow:0 0 0 2px rgba(202,163,77,.25);} 
.dmv-brand-title{font-weight:800;letter-spacing:.4px;color:var(--dmv-gold2);font-size:18px;line-height:1;}
.dmv-brand-sub{font-size:12px;color:var(--dmv-muted);margin-top:3px;}

.dmv-cart-btn{
  display:flex;align-items:center;gap:10px;
  border:1px solid var(--dmv-line);
  background: linear-gradient(180deg, rgba(202,163,77,.22), rgba(0,0,0,.6));
  color:var(--dmv-text);
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
}
.dmv-cart-btn:hover{filter:brightness(1.05);} 
.dmv-cart-count{background:rgba(202,163,77,.25);border:1px solid var(--dmv-line);padding:2px 8px;border-radius:999px;font-weight:700;}

.dmv-card{
  max-width:1400px;
  margin:0 auto;
  border-radius:22px;
  border:1px solid var(--dmv-line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(8,14,20,.72));
  box-shadow: var(--dmv-shadow);
  padding:18px;
}

.dmv-card-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:12px;}
.dmv-card h2{margin:0;color:var(--dmv-gold2);font-size:30px;letter-spacing:.4px;}
.dmv-card p{margin:6px 0 0;color:var(--dmv-muted);}

.dmv-badge{display:inline-block;padding:8px 10px;border:1px solid var(--dmv-line);border-radius:14px;background:rgba(0,0,0,.35);}

.dmv-filters{display:flex;gap:10px;align-items:center;flex:1 1 560px;flex-wrap:wrap;}
.dmv-search{flex:1;min-width:0;padding:12px 14px;border-radius:14px;border:1px solid rgba(202,163,77,.25);background:rgba(0,0,0,.5);color:var(--dmv-text);outline:none;}

.dmv-quick-access{margin-top:10px;display:flex;flex-direction:column;gap:8px;width:100%;}
.dmv-quick-access-title{font-size:12px;font-weight:900;letter-spacing:.5px;text-transform:uppercase;color:#f1d58a;}
.dmv-quick-access-row{display:flex;gap:10px;flex-wrap:wrap;align-items:center;}
.dmv-quick-btn{border:1px solid rgba(241,213,138,.6);background:linear-gradient(180deg,rgba(247,222,150,.24),rgba(170,118,20,.16));box-shadow:0 0 0 1px rgba(255,240,185,.08) inset,0 8px 18px rgba(0,0,0,.18);color:#fff7d6;padding:11px 14px;border-radius:999px;cursor:pointer;font-weight:900;font-size:13px;line-height:1;white-space:nowrap;}
.dmv-quick-btn.is-active{background:linear-gradient(180deg,#f4db96,#ddb04a);border-color:#ffe8aa;color:#1b2230;box-shadow:0 0 0 2px rgba(255,239,190,.22),0 10px 24px rgba(175,121,24,.28);}
.dmv-quick-access-hint{display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:800;color:#f1d58a;opacity:.96;padding:2px 6px 0;text-align:center;}

.dmv-btn{border:1px solid var(--dmv-line);background: linear-gradient(180deg, rgba(202,163,77,.30), rgba(0,0,0,.75));color:var(--dmv-text);padding:10px 14px;border-radius:14px;cursor:pointer;font-weight:700;}
.dmv-btn:hover{filter:brightness(1.05);} 
.dmv-btn:disabled{opacity:.45;cursor:not-allowed;}
.dmv-btn.ghost{background:rgba(0,0,0,.35);} 

.dmv-tags{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0 6px;}
.dmv-pill{border:1px solid rgba(202,163,77,.22);background:rgba(0,0,0,.35);color:var(--dmv-text);padding:8px 12px;border-radius:999px;cursor:pointer;font-weight:700;font-size:13px;}
.dmv-pill.is-active{background:rgba(202,163,77,.25);border-color:rgba(202,163,77,.45);} 

.dmv-count{color:var(--dmv-muted);font-size:13px;margin:10px 0 14px;}

.dmv-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;padding:4px;border-radius:16px;background:rgba(12,27,42,.22);} 

.dmv-item{border:1px solid rgba(202,163,77,.18);border-radius:18px;background: linear-gradient(180deg, rgba(20,32,46,.92), rgba(10,16,24,.92));overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,.28);} 
.dmv-img{aspect-ratio: 4/3;background-size:cover;background-position:center;background-color:#162636;}
.dmv-body{padding:12px 12px 14px;}
.dmv-title{font-weight:800;color:var(--dmv-gold2);font-size:15px;line-height:1.2;min-height:38px;}
.dmv-brandline{margin-top:4px;color:#d6d6d6;font-size:13px;}
.dmv-desc{margin-top:6px;color:var(--dmv-muted);font-size:13px;min-height:34px;}

.dmv-meta{display:flex;align-items:center;justify-content:space-between;margin-top:10px;gap:10px;}
.dmv-price{font-weight:900;font-size:16px;}
.dmv-stockbadge{font-size:12px;padding:6px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.10);background:rgba(0,0,0,.35);}
.dmv-stockbadge.ok{border-color:rgba(100,255,170,.25);} 
.dmv-stockbadge.no{border-color:rgba(255,90,90,.25);color:#ffb3b3;} 

.dmv-actions{display:flex;align-items:flex-start;justify-content:space-between;gap:10px;margin-top:12px;}
.dmv-qty{display:flex;align-items:center;gap:6px;}
.dmv-qty-btn{width:34px;height:34px;border-radius:10px;border:1px solid rgba(202,163,77,.20);background:rgba(0,0,0,.35);color:var(--dmv-text);cursor:pointer;font-weight:800;}
.dmv-qty-in{width:54px;height:34px;border-radius:10px;border:1px solid rgba(202,163,77,.20);background:rgba(0,0,0,.35);color:var(--dmv-text);text-align:center;}

.dmv-code{margin-top:10px;color:var(--dmv-muted);font-size:12px;}
.dmv-muted{color:var(--dmv-muted);} 
.dmv-small{font-size:12px;margin-top:8px;}

/* Modal */
.dmv-modal[hidden]{display:none;}
.dmv-modal{position:fixed;inset:0;z-index:9999;}
.dmv-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.65);} 
.dmv-modal-panel{position:absolute;right:0;top:0;height:100%;width:min(520px, 92vw);background:linear-gradient(180deg, rgba(10,14,20,.98), rgba(0,0,0,.98));border-left:1px solid var(--dmv-line);padding:14px;overflow:auto;}
.dmv-modal-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px;}
.dmv-modal-title{font-weight:900;font-size:18px;color:var(--dmv-gold2);} 
.dmv-x{border:1px solid rgba(202,163,77,.22);background:rgba(0,0,0,.35);color:var(--dmv-text);border-radius:12px;width:40px;height:40px;cursor:pointer;}

.dmv-cart{display:flex;flex-direction:column;gap:10px;}
.dmv-cart-item{display:flex;gap:10px;align-items:flex-start;border:1px solid rgba(202,163,77,.16);border-radius:16px;padding:10px;background:rgba(0,0,0,.35);} 
.dmv-cart-thumb{width:62px;height:62px;border-radius:14px;background-size:cover;background-position:center;flex:0 0 auto;border:1px solid rgba(255,255,255,.08);} 
.dmv-cart-name{font-weight:800;color:var(--dmv-gold2);line-height:1.2;}
.dmv-cart-sub{color:var(--dmv-muted);font-size:12px;margin-top:2px;}
.dmv-cart-main{min-width:0;flex:1 1 auto;}
.dmv-cart-right{margin-left:auto;text-align:right;}
.dmv-cart-price{font-weight:900;}
.dmv-cart-qtyrow{display:flex;gap:6px;align-items:center;justify-content:flex-end;margin-top:8px;}
.dmv-cart-qtyrow button{width:30px;height:30px;border-radius:10px;border:1px solid rgba(202,163,77,.20);background:rgba(0,0,0,.35);color:var(--dmv-text);cursor:pointer;font-weight:800;}
.dmv-cart-qtyrow .qty{min-width:22px;text-align:center;}
.dmv-cart-remove{margin-top:8px;border:none;background:none;color:#ffb3b3;cursor:pointer;font-size:12px;text-decoration:underline;}
.dmv-cart-line-sample-wrap{margin-top:8px;}
.dmv-cart-sample-btn{border:1px solid rgba(246,211,124,.72);background:linear-gradient(180deg,#f6d37c,#d7a83f);color:#1f2230;border-radius:12px;padding:8px 12px;font-size:12px;font-weight:900;cursor:pointer;}
.dmv-cart-sample-btn.is-active{background:linear-gradient(180deg,#fff2ba,#f6d37c);box-shadow:0 0 0 2px rgba(246,211,124,.22) inset;}

.dmv-cart-foot{margin-top:12px;border-top:1px solid rgba(202,163,77,.16);padding-top:12px;}
.dmv-total{font-size:16px;margin-bottom:10px;}
.dmv-transfer-note{margin:-2px 0 12px;padding:10px 12px;border-radius:12px;background:#f7f7f7;border:1px solid #e5e7eb;font-size:13px;line-height:1.45;color:#333;}
.dmv-manual-samples-offer{margin:10px 0 12px;padding:12px;border:1px solid rgba(202,163,77,.28);border-radius:14px;background:linear-gradient(180deg, rgba(202,163,77,.12), rgba(8,18,32,.5));}
.dmv-manual-samples-offer .dmv-btn{width:100%;justify-content:center;font-size:15px;padding:12px 14px;}
.dmv-manual-samples-text{margin-top:8px;color:#f5f1dd;font-size:13px;line-height:1.4;}
.dmv-form input,.dmv-form textarea{width:100%;margin:6px 0;padding:10px 12px;border-radius:14px;border:1px solid rgba(202,163,77,.20);background:rgba(0,0,0,.45);color:var(--dmv-text);outline:none;}
.dmv-min-warning{margin:10px 0;padding:10px 12px;border-radius:14px;border:1px solid rgba(255,90,90,.22);background:rgba(255,90,90,.08);color:#ffd2d2;}

/* Responsive */
@media (max-width: 1050px){
  .dmv-grid{grid-template-columns:repeat(3,1fr);} 
}
@media (max-width: 760px){
  .dmv-grid{grid-template-columns:repeat(2,1fr);} 
  .dmv-card{padding:14px;}
  .dmv-card h2{font-size:24px;}
  .dmv-topbar{padding:10px 12px;}
}
@media (max-width: 420px){
  .dmv-grid{grid-template-columns:1fr;} 
}


.dmv-head-help{font-size:13px;margin-top:4px;}
.dmv-actions-right{display:flex;flex-direction:column;gap:8px;align-items:stretch;min-width:140px}
.dmv-actions-right .dmv-btn{width:100%}

/* Producto detalle */
.dmv-detail-panel{width:min(760px, 96vw);left:50%;right:auto;transform:translateX(-50%);border-left:0;border:1px solid var(--dmv-line);height:min(94vh, 980px);top:3vh;border-radius:18px;padding:14px 14px 18px}
.dmv-detail-top{display:grid;grid-template-columns:180px 1fr;gap:14px;align-items:start;margin-bottom:14px}
.dmv-detail-img{width:100%;aspect-ratio:1/1;border-radius:16px;background:#152636 center/cover no-repeat;border:1px solid rgba(255,255,255,.08)}
.dmv-detail-name{font-size:20px;font-weight:900;color:var(--dmv-gold2);line-height:1.15}
.dmv-detail-brand{margin-top:5px;color:#ddd}
.dmv-detail-price{margin-top:10px;font-size:20px;font-weight:900}
.dmv-detail-stock{margin-top:4px;color:#9be3b5}
.dmv-detail-sections{display:grid;gap:10px}
.dmv-detail-block{border:1px solid rgba(202,163,77,.16);background:rgba(0,0,0,.28);border-radius:14px;padding:10px 12px}
.dmv-detail-block h4{margin:0 0 6px;font-size:13px;color:var(--dmv-gold2)}
.dmv-detail-block p{margin:0;color:#e8e8e8;font-size:13px;line-height:1.4}

.dmv-reviews{margin-top:14px;padding-top:12px;border-top:1px solid rgba(202,163,77,.16)}
.dmv-reviews-head{display:flex;align-items:center;justify-content:space-between;gap:10px}
.dmv-reviews h4{margin:0;color:var(--dmv-gold2);font-size:15px}
.dmv-reviews-summary{font-size:12px;color:var(--dmv-muted)}
.dmv-review-form{margin-top:10px;border:1px solid rgba(202,163,77,.15);border-radius:14px;padding:10px;background:rgba(0,0,0,.22)}
.dmv-review-grid{display:grid;grid-template-columns:1fr 180px;gap:8px}
.dmv-review-form input,.dmv-review-form select,.dmv-review-form textarea{width:100%;margin-top:8px;padding:10px 12px;border-radius:12px;border:1px solid rgba(202,163,77,.20);background:rgba(0,0,0,.45);color:var(--dmv-text);outline:none}
.dmv-review-grid input,.dmv-review-grid select{margin-top:0}
.dmv-review-actions{display:flex;align-items:center;gap:10px;margin-top:8px}
.dmv-review-list{display:flex;flex-direction:column;gap:8px;margin-top:10px}
.dmv-review-item{border:1px solid rgba(202,163,77,.12);background:rgba(0,0,0,.22);border-radius:12px;padding:10px}
.dmv-review-item-top{display:flex;align-items:center;justify-content:space-between;gap:8px}
.dmv-review-author{font-weight:700}
.dmv-review-stars{color:#f6cf6a}
.dmv-review-date{font-size:11px;color:var(--dmv-muted)}
.dmv-review-text{margin-top:6px;font-size:13px;color:#e7e7e7;white-space:pre-wrap}

body .site-footer,
body .wp-block-template-part[class*="footer"],
body footer.wp-block-template-part,
body .footer,
body .wp-block-template-part .site-footer{display:none !important;}

@media (max-width: 760px){
  .dmv-shell{padding:10px 6px 18px}
  .dmv-topbar{margin-bottom:10px;border-radius:14px}
  .dmv-card{padding:10px;border-radius:14px}
  .dmv-card-head{display:block}
  .dmv-card h2{font-size:18px}
  .dmv-head-help{display:none}
  .dmv-filters{display:grid;grid-template-columns:1fr 108px;gap:8px}
  .dmv-search{width:100%}
  .dmv-btn{padding:10px 10px}
  .dmv-actions{flex-direction:column;align-items:stretch}
  .dmv-actions-right{min-width:0}
  .dmv-detail-panel{width:96vw;top:2vh;height:96vh;border-radius:14px;padding:12px}
  .dmv-detail-top{grid-template-columns:1fr}
  .dmv-detail-img{max-width:260px;margin:0 auto}
  .dmv-review-grid{grid-template-columns:1fr}
}


/* Forzar ancho completo en la página del catálogo (evita espacios blancos del tema) */
.wp-site-blocks, .site, .site-content, main, .entry-content, .wp-block-post-content {max-width:100% !important;}
.entry-content, .wp-block-post-content {padding-left:0 !important; padding-right:0 !important; background:transparent !important;}



/* ===== v1.5.2 detalle perfume más completo + textos multilínea ===== */
.dmv-detail-panel{
  width:min(1120px, 97vw) !important;
  height:min(95vh, 980px) !important;
}
.dmv-detail-top{
  grid-template-columns:minmax(220px, 260px) 1fr !important;
  gap:18px !important;
  margin-bottom:16px !important;
}
.dmv-detail-img{
  background-size:contain !important;
  background-color:#f5f5f5 !important;
  border-radius:18px !important;
  min-height:220px;
}
.dmv-detail-name{font-size:24px !important; line-height:1.15;}
.dmv-detail-brand{font-size:18px !important; color:#d7d7d7 !important;}
.dmv-detail-price{font-size:24px !important;}
.dmv-detail-stock{font-size:16px !important;}
.dmv-detail-sections{gap:12px !important;}
.dmv-detail-block{
  border:1px solid rgba(202,163,77,.18) !important;
  background:rgba(0,0,0,.30) !important;
  border-radius:16px !important;
  padding:12px 14px !important;
}
.dmv-detail-block h4{
  font-size:14px !important;
  margin-bottom:8px !important;
  color:var(--dmv-gold2) !important;
}
.dmv-detail-block p{
  margin:0 !important;
  font-size:14px !important;
  line-height:1.55 !important;
  color:#f0f0f0 !important;
  white-space:pre-wrap;
}
.dmv-detail-block p ul{
  margin:0;
  padding-left:18px;
}
.dmv-detail-block p li{
  margin:0 0 4px;
}
@media (max-width: 980px){
  .dmv-detail-panel{width:96vw !important;}
  .dmv-detail-top{grid-template-columns:1fr !important;}
  .dmv-detail-img{max-width:320px; margin:0 auto;}
}


/* Fidelidad web / canje en carrito */
.dmv-loyalty-redeem-box{margin:10px 0 12px;padding:12px;border:1px solid rgba(202,163,77,.25);border-radius:14px;background:rgba(8,18,32,.55)}
.dmv-loyalty-redeem-head{display:flex;justify-content:space-between;gap:10px;align-items:center;color:#fff}
.dmv-loyalty-redeem-head span{font-weight:700;color:#8ef0b0}
.dmv-loyalty-redeem-sub{margin-top:4px;color:#cfd7e3;font-size:13px}
.dmv-loyalty-redeem-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.dmv-loyalty-redeem-actions .dmv-btn{padding:8px 12px}
.dmv-loyalty-redeem-preview{margin-top:8px;color:#f5f1dd;font-size:13px;line-height:1.4}
.dmv-loyalty-cart-msg{white-space:pre-line}


/* v1.8.0 paginación + audio descripción */
.dmv-pagination{display:flex;gap:8px;align-items:center;justify-content:center;flex-wrap:wrap;margin:14px 0 4px;}
.dmv-page-btn{border:1px solid rgba(202,163,77,.22);background:rgba(0,0,0,.35);color:var(--dmv-text);padding:8px 12px;border-radius:12px;cursor:pointer;font-weight:700;min-width:40px;text-align:center;}
.dmv-page-btn:hover{filter:brightness(1.05);}
.dmv-page-btn.is-active{background:rgba(202,163,77,.25);border-color:rgba(202,163,77,.45);}
.dmv-page-btn[disabled]{opacity:.45;cursor:not-allowed;}
.dmv-page-info{color:var(--dmv-muted);font-size:12px;padding:4px 6px;}
.dmv-scroll-top{position:fixed;right:14px;bottom:18px;z-index:9998;border:1px solid var(--dmv-line);background:linear-gradient(180deg, rgba(202,163,77,.35), rgba(0,0,0,.9));color:#fff;padding:10px 12px;border-radius:999px;cursor:pointer;font-weight:800;box-shadow:0 12px 26px rgba(0,0,0,.35);}
.dmv-scroll-top[hidden]{display:none !important;}
.dmv-desc-audio{color:#d9c893;font-weight:600;min-height:auto;}
.dmv-detail-audio-block audio{width:100%;margin-top:10px;}
.dmv-detail-audio-actions{display:flex;gap:10px;align-items:center;flex-wrap:wrap;}
.dmv-detail-audio-help{margin-bottom:10px !important;}
@media (max-width:760px){ .dmv-scroll-top{right:10px;bottom:14px;padding:10px 11px;} .dmv-page-btn{padding:8px 10px;min-width:36px;} }


/* planilla regalo descarga */
.dmv-loyalty-banner{display:flex;align-items:center;gap:10px;margin:8px 0 12px;padding:12px 14px;border-radius:16px;border:1px solid rgba(202,163,77,.45);background:linear-gradient(180deg, rgba(202,163,77,.20), rgba(10,25,42,.92));box-shadow:0 10px 24px rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,255,255,.03);}
.dmv-loyalty-banner-ico{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:999px;background:rgba(202,163,77,.20);border:1px solid rgba(202,163,77,.35);font-size:18px;flex:0 0 auto;}
.dmv-loyalty-banner-text{color:#f8edd1;font-size:14px;line-height:1.3;}
.dmv-loyalty-banner-text strong{color:#ffe29b;}
.dmv-gift-download{margin:8px 0 12px;}
.dmv-gift-link{display:flex;align-items:center;justify-content:center;gap:8px;padding:12px 14px;border-radius:14px;border:1px solid rgba(202,163,77,.28);background:linear-gradient(180deg, rgba(202,163,77,.14), rgba(5,15,28,.88));color:#f6e8b9 !important;font-weight:800;text-decoration:none !important;text-align:center;box-shadow:0 8px 20px rgba(0,0,0,.18);}
.dmv-gift-link:hover{filter:brightness(1.05);}

/* v1.8.2 mobile filtros + ocultar paginación superior */
.dmv-pagination[data-pagination-top]{display:none !important;}

@media (max-width:760px){
  .dmv-filters{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) minmax(90px,104px) !important;
    align-items:stretch !important;
    gap:8px !important;
  }
  .dmv-filters [data-search]{
    min-width:0 !important;
    width:100% !important;
  }
  .dmv-filters [data-clear]{
    width:100% !important;
    margin:0 !important;
    white-space:nowrap;
    padding-left:8px !important;
    padding-right:8px !important;
    font-size:13px;
  }
}

@media (max-width:420px){
  .dmv-filters{
    grid-template-columns:1fr !important;
  }
  .dmv-filters [data-clear]{
    width:100% !important;
  }
}


/* v1.9.1 mobile keyboard + planilla */
@media (max-width:760px){
  .dmv-loyalty-banner{padding:10px 10px;border-radius:14px;gap:8px;margin:6px 0 10px;}
  .dmv-loyalty-banner-ico{width:30px;height:30px;font-size:15px;}
  .dmv-loyalty-banner-text{font-size:12.5px;line-height:1.25;}
  .dmv-gift-link{padding:11px 10px;font-size:14px;line-height:1.25;}
}


/* v1.11.0 restaurar WhatsApp flotante */
.dmv-wa-float{position:fixed;right:14px;bottom:70px;z-index:9997;display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border-radius:999px;border:1px solid rgba(37,211,102,.45);background:linear-gradient(180deg, rgba(20,60,38,.96), rgba(7,30,18,.96));color:#dffbe9 !important;text-decoration:none !important;font-weight:800;box-shadow:0 12px 28px rgba(0,0,0,.35);max-width:min(92vw, 340px);}
.dmv-wa-float:hover{filter:brightness(1.06);}
.dmv-wa-float-ico{width:28px;height:28px;min-width:28px;border-radius:999px;display:flex;align-items:center;justify-content:center;background:#25d366;color:#fff;box-shadow:inset 0 0 0 1px rgba(255,255,255,.15);line-height:1;}
.dmv-wa-float-ico svg{display:block;width:18px;height:18px;}
.dmv-wa-float-text{display:flex;flex-direction:column;line-height:1.1;gap:2px;}
.dmv-wa-float-text strong{font-size:12.5px;font-weight:800;color:#eafff2;}
.dmv-wa-float-text small{font-size:11px;opacity:.92;color:#d5fbe4;}
@media (max-width:760px){
  .dmv-wa-float{display:flex !important;visibility:visible !important;opacity:1 !important;right:8px !important;left:auto !important;bottom:86px !important;padding:9px 10px;border-radius:16px;max-width:calc(100vw - 16px);gap:7px;white-space:normal;}
  .dmv-wa-float-ico{width:26px;height:26px;min-width:26px;display:flex !important;}
  .dmv-wa-float-text{display:flex !important;flex-direction:column !important;line-height:1.08;min-width:0;}
  .dmv-wa-float-text strong,.dmv-wa-float-text small{display:block !important;white-space:normal !important;}
  .dmv-wa-float-text strong{font-size:11.8px;}
  .dmv-wa-float-text small{font-size:10.4px;}
}


/* v1.15.1 mobile + mis pedidos + floating cart */
@media (max-width:760px){ .dmv-grid{grid-template-columns:1fr !important;} }
.dmv-cart-floating{position:fixed;right:14px;bottom:118px;z-index:9997;display:block}
.dmv-cart-floating-btn{display:flex;align-items:center;gap:12px;border:1px solid rgba(202,163,77,.22);background:linear-gradient(180deg, rgba(20,54,92,.95), rgba(8,26,48,.95));color:#fff;padding:12px 16px;border-radius:22px;box-shadow:0 10px 24px rgba(0,0,0,.3);cursor:pointer}
.dmv-cart-floating-ico{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:999px;background:rgba(255,255,255,.08)}
.dmv-cart-floating-text{display:flex;flex-direction:column;align-items:flex-start;line-height:1.15}.dmv-cart-floating-text strong{font-size:16px}.dmv-cart-floating-text small{font-size:12px;color:#e9eef6}
.dmv-wa-float{bottom:58px !important}
@media (max-width:760px){.dmv-cart-floating{right:10px;bottom:118px}.dmv-cart-floating-btn{padding:10px 14px;max-width:calc(100vw - 24px)}}
.dmv-orders-page{background:radial-gradient(1200px 700px at 50% 0%, #0b2b3f 0%, #061a2c 42%, #02101c 100%);padding:18px 12px 40px;min-height:100vh;max-width:none !important;width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}
.dmv-orders-shell{max-width:980px;margin:0 auto}.dmv-orders-back{display:flex;justify-content:center;margin:0 0 16px}.dmv-orders-card{border:1px solid rgba(202,163,77,.18);background:linear-gradient(180deg, rgba(15,43,72,.96), rgba(4,20,36,.96));border-radius:28px;padding:20px;box-shadow:0 18px 42px rgba(0,0,0,.28)}
.dmv-orders-head{display:grid;grid-template-columns:1fr 120px;gap:16px;align-items:center;margin-bottom:16px}.dmv-orders-head h2{margin:0 0 6px;color:#d9ad4e;font-size:28px}.dmv-orders-head p{margin:0;color:#dbe5f1;font-size:16px;line-height:1.4}.dmv-orders-logo{width:120px;height:120px;object-fit:cover;border-radius:22px;background:#fff;justify-self:end}
.dmv-orders-search{display:grid;grid-template-columns:120px minmax(0,1fr) 260px;gap:12px;align-items:center;border:1px solid rgba(202,163,77,.18);border-radius:24px;padding:18px;background:rgba(0,0,0,.18)}
.dmv-orders-prefix,.dmv-orders-search input{height:64px;border-radius:18px;border:1px solid rgba(202,163,77,.22);background:rgba(0,0,0,.35);color:#fff}.dmv-orders-prefix{display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:800}.dmv-orders-search input{padding:0 18px;font-size:22px;min-width:0}.dmv-orders-search .dmv-btn{height:64px;width:100%;font-size:18px}.dmv-orders-help{margin:10px 4px 16px;color:#b8c6d7}.dmv-orders-results{display:grid;gap:14px}
.dmv-order-card{border:1px solid rgba(202,163,77,.16);background:rgba(255,255,255,.03);border-radius:22px;padding:16px}.dmv-order-head{display:flex;justify-content:space-between;gap:12px;align-items:center}.dmv-order-title{font-size:30px;font-weight:900;color:#f0c45f}.dmv-order-sub{color:#d4dfeb;font-size:14px;margin-top:4px}.dmv-order-summary{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;color:#fff;margin-top:10px;font-weight:700}.dmv-order-detail{margin-top:14px;border-top:1px solid rgba(202,163,77,.16);padding-top:14px;display:grid;gap:10px}
.dmv-order-item{display:grid;grid-template-columns:88px minmax(0,1fr) 70px 110px 110px;gap:12px;align-items:center;border:1px solid rgba(202,163,77,.12);border-radius:18px;padding:10px;background:rgba(0,0,0,.18)}.dmv-order-item-img{width:88px;height:88px;background:#fff center/contain no-repeat;border-radius:16px}.dmv-order-item-name{font-size:20px;font-weight:800;color:#fff;line-height:1.18}.dmv-order-item-meta{font-size:12px;color:#d4dfeb;margin-top:6px}.dmv-order-item-qty,.dmv-order-item-unit,.dmv-order-item-total{font-weight:800;color:#f8e3aa;text-align:right}.dmv-order-grandtotal{display:flex;justify-content:space-between;align-items:center;padding:14px 16px;border-radius:18px;background:linear-gradient(180deg, rgba(202,163,77,.18), rgba(3,16,29,.88));color:#fff;font-size:22px}
body.page .entry-content:has(.dmv-orders-page),body.page .wp-block-post-content:has(.dmv-orders-page){max-width:100% !important;padding:0 !important;margin:0 !important}
body.page .entry-content > h1:first-child, body.page .wp-block-post-title{display:none !important}
@media (max-width:760px){.dmv-orders-page{padding:12px 0 28px}.dmv-orders-shell{max-width:none;margin:0}.dmv-orders-back{margin-bottom:10px}.dmv-orders-card{border-radius:0;padding:14px 12px 24px;border-left:0;border-right:0}.dmv-orders-head{grid-template-columns:1fr 92px;gap:12px}.dmv-orders-head h2{font-size:22px}.dmv-orders-head p{font-size:14px}.dmv-orders-logo{width:92px;height:92px;border-radius:18px}.dmv-orders-search{grid-template-columns:92px minmax(0,1fr);gap:10px;padding:12px;border-radius:18px}.dmv-orders-search .dmv-btn{grid-column:1/-1;height:56px}.dmv-orders-prefix,.dmv-orders-search input{height:56px;font-size:18px}.dmv-order-title{font-size:20px}.dmv-order-head{flex-direction:column;align-items:stretch}.dmv-order-item{grid-template-columns:70px minmax(0,1fr);padding:10px}.dmv-order-item-img{width:70px;height:70px}.dmv-order-item-name{font-size:16px}.dmv-order-item-qty,.dmv-order-item-unit,.dmv-order-item-total{text-align:left}.dmv-order-item-qty::before{content:'Cantidad: ';color:#b8c6d7;font-weight:400}.dmv-order-item-unit::before{content:'Unitario: ';color:#b8c6d7;font-weight:400}.dmv-order-item-total::before{content:'Total: ';color:#b8c6d7;font-weight:400}.dmv-order-grandtotal{font-size:18px}}


/* v1.15.2 fixes */
.dmv-top-actions{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.dmv-top-link{white-space:nowrap}
.dmv-checkout-form{display:grid;gap:10px}
.dmv-phone-row-checkout{display:grid;grid-template-columns:88px 1fr;gap:8px;align-items:center;margin:0}
.dmv-checkout-phone-prefix{height:56px;border-radius:18px;border:1px solid rgba(202,163,77,.22);background:rgba(0,0,0,.35);color:#fff;display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:800;padding:0 10px}
.dmv-phone-row-checkout-single input[data-customer-phone]{text-align:left}
.dmv-grid-2-checkout{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.dmv-shipping-box{border:1px solid rgba(202,163,77,.18);border-radius:18px;padding:14px;background:rgba(0,0,0,.18)}
.dmv-shipping-label{font-weight:800;color:#fff;margin-bottom:8px}.dmv-shipping-box label{display:inline-flex;gap:6px;align-items:center;margin-right:14px;color:#fff}

.dmv-address-map-box{border:1px solid rgba(202,163,77,.18);border-radius:18px;padding:12px;background:rgba(0,0,0,.18);display:grid;gap:8px}
.dmv-address-map-head{display:flex;justify-content:space-between;gap:10px;align-items:center;color:#fff}
.dmv-address-map-status{font-size:13px;color:#fff;font-weight:700}
.dmv-address-map-frame{border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,.08);background:#0f1724;min-height:230px}
.dmv-address-map-frame iframe{display:block;width:100%;height:230px;border:0}
.dmv-address-map-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.dmv-address-map-ok{color:#d6ffd8;font-weight:900;font-size:16px}
.dmv-btn.small{padding:12px 16px;border-radius:14px;font-size:13px;font-weight:900}
.dmv-cart-floating{display:block !important;visibility:visible !important;opacity:1 !important}
.dmv-orders-body,.dmv-orders-body .site,.dmv-orders-body .site-main,.dmv-orders-body .entry-content,.dmv-orders-body .wp-block-post-content,.dmv-orders-body main{background:radial-gradient(1200px 700px at 50% 0%, #0b2b3f 0%, #061a2c 42%, #02101c 100%) !important}
.dmv-orders-body .wp-block-post-title,.dmv-orders-body h1.entry-title{display:none !important}
@media (max-width:760px){
  .dmv-top-actions{width:100%;justify-content:flex-end}
  .dmv-top-link{order:1}
  .dmv-cart-btn{order:2}
  .dmv-grid-2-checkout{grid-template-columns:1fr 1fr}
  .dmv-orders-page{left:auto;right:auto;margin:0;width:100%;min-height:100vh;padding:0;background:transparent}
  .dmv-orders-shell{max-width:none;width:100%}
  .dmv-orders-card{width:100%;box-sizing:border-box;border-radius:0;padding:14px 12px 24px}
  .dmv-orders-back{padding:12px 12px 0;margin:0}
  .dmv-orders-search{grid-template-columns:92px minmax(0,1fr);padding:12px;box-sizing:border-box}
  .dmv-orders-search .dmv-btn{grid-column:1 / -1;width:100%;max-width:100%;box-sizing:border-box}
  .dmv-orders-help,.dmv-orders-results{padding-left:2px;padding-right:2px}
  .dmv-cart-floating{right:10px;bottom:138px;z-index:9998}
  .dmv-cart-floating-btn{padding:10px 14px;border-radius:20px}
  .dmv-wa-float{bottom:64px !important}
}


/* v1.15.9 real fixes */
.dmv-orders-page{left:auto !important;right:auto !important;margin:0 !important;width:100% !important;overflow-x:hidden !important;}
.dmv-orders-shell{max-width:980px !important;margin:0 auto !important;padding:0 12px !important;box-sizing:border-box !important;}
.dmv-orders-card{width:100%;box-sizing:border-box;}
@media (max-width:760px){
  .dmv-orders-shell{padding:0 !important;}
}
.dmv-checkout-modal .dmv-cart, .dmv-cart-modal .dmv-cart{padding-bottom:34px !important;}
.dmv-send{margin-top:18px !important;min-height:60px !important;font-size:18px !important;position:relative;z-index:2;}
.dmv-send-sheet-note{margin:8px 0 14px;text-align:center;font-size:13px;line-height:1.35;font-weight:700;color:#9ff0b8;}
[data-clear-cart]{margin-top:10px !important;min-height:56px !important;position:relative;z-index:2;}
.dmv-cart .dmv-small{padding-bottom:28px !important;display:block;}


/* v1.16.0 send whatsapp button green only */
.dmv-send{
  background: linear-gradient(180deg, rgba(38,166,91,.96), rgba(18,105,54,.98)) !important;
  border-color: rgba(95, 255, 160, .55) !important;
  color:#fff !important;
  box-shadow: 0 10px 24px rgba(18,105,54,.28), inset 0 1px 0 rgba(255,255,255,.18) !important;
}
.dmv-send:hover,.dmv-send:focus{
  filter: brightness(1.06) !important;
  box-shadow: 0 12px 28px rgba(18,105,54,.34), inset 0 1px 0 rgba(255,255,255,.22) !important;
}

.dmv-order-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end;align-items:center}
.dmv-order-sheet-box{margin-top:14px;border-top:1px solid rgba(202,163,77,.16);padding-top:14px;display:grid;gap:10px}
.dmv-order-sheet-head{color:#f0c45f;font-size:22px;font-weight:900}.dmv-order-sheet-help{color:#d4dfeb}
.dmv-order-sheet-tablewrap{overflow:auto;border:1px solid rgba(202,163,77,.12);border-radius:18px;background:rgba(0,0,0,.18)}
.dmv-order-sheet-table{width:100%;border-collapse:collapse;min-width:620px}.dmv-order-sheet-table th,.dmv-order-sheet-table td{padding:12px 14px;border-bottom:1px solid rgba(202,163,77,.1);color:#fff}.dmv-order-sheet-table th{color:#f8e3aa;text-align:left;background:rgba(255,255,255,.03)}.dmv-order-sheet-table .is-num{text-align:right}
@media (max-width:760px){.dmv-order-actions{justify-content:stretch}.dmv-order-actions .dmv-btn,.dmv-order-actions a.dmv-btn{width:100%;text-align:center}.dmv-order-sheet-head{font-size:18px}}


/* ===== Modo ventas: ocultar precios de forma persistente ===== */
.dmv-catalog-toolbar{display:flex;align-items:center;gap:14px;justify-content:space-between;flex-wrap:wrap;margin:10px 0 14px}
.dmv-sales-mode-bar{display:flex;align-items:center;gap:10px;flex-wrap:wrap;justify-content:flex-end;min-width:260px}
.dmv-start-profit-note{margin:-4px 0 10px;padding:10px 12px;border-radius:14px;border:1px solid rgba(202,163,77,.28);background:linear-gradient(135deg,rgba(202,163,77,.18),rgba(52,131,87,.18));color:#fff3c4;font-size:15px;font-weight:800;line-height:1.4}
.dmv-start-loyalty-note{margin:-2px 0 16px;padding:14px 16px;border-radius:16px;border:1px solid rgba(83,193,255,.36);background:linear-gradient(135deg,rgba(16,78,144,.38),rgba(28,125,88,.24));color:#eef8ff;font-size:15px;font-weight:800;line-height:1.5;box-shadow:0 10px 24px rgba(0,0,0,.14)}
.dmv-start-loyalty-note strong{color:#fff7bf}
.dmv-start-loyalty-note.is-points-refresh{animation:dmvPointsPulse .45s ease}
@keyframes dmvPointsPulse{0%{transform:scale(1);box-shadow:0 10px 24px rgba(0,0,0,.14)}50%{transform:scale(1.012);box-shadow:0 14px 28px rgba(83,193,255,.18)}100%{transform:scale(1);box-shadow:0 10px 24px rgba(0,0,0,.14)}}
.dmv-sales-mode-help{font-size:13px;color:#aab4c8}
body.dmv-sales-mode .dmv-price,
body.dmv-sales-mode .dmv-cart-price,
body.dmv-sales-mode .dmv-detail-price,
body.dmv-sales-mode .dmv-total,
body.dmv-sales-mode [data-cart-total],
body.dmv-sales-mode .dmv-loyalty-cart-msg,
body.dmv-sales-mode .dmv-loyalty-redeem-box,
body.dmv-sales-mode .dmv-order-item-unit,
body.dmv-sales-mode .dmv-order-item-total,
body.dmv-sales-mode .dmv-order-grandtotal{display:none !important;}
body.dmv-sales-mode .dmv-cart-floating-text small{display:none !important;}
body.dmv-sales-mode .dmv-cart-floating-text::after{content:'Modo ventas activo';display:block;font-size:12px;opacity:.9;}
body.dmv-sales-mode .dmv-cart-right::after{content:'Precio oculto';display:block;font-size:12px;color:#aab4c8;margin-top:4px;}
body.dmv-sales-mode [data-detail-stock]{margin-top:8px;}
@media (max-width:760px){
  .dmv-sales-mode-bar{margin-top:8px}
  .dmv-sales-mode-help{display:block;width:100%}
}


.dmv-inline-audio{width:100%;max-width:220px;border-radius:16px;background:rgba(0,0,0,.18)}
.dmv-inline-audio::-webkit-media-controls-panel{background:rgba(9,20,36,.92)}
@media (max-width: 720px){
  .dmv-inline-audio{max-width:none}
}


.dmv-community-strip{
  margin:0 auto 14px;
  max-width:1200px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px 18px;
  border-radius:22px;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(135deg, rgba(15,53,96,.96), rgba(6,24,46,.98));
  border:1px solid rgba(202,163,77,.22);
  box-shadow:0 18px 40px rgba(0,0,0,.24);
}
.dmv-community-strip:hover{filter:brightness(1.04)}
.dmv-community-strip-copy{display:flex;flex-direction:column;gap:4px;min-width:0}
.dmv-community-strip-kicker{font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#c8d9f2}
.dmv-community-strip strong{font-size:26px;line-height:1;color:#fff}
.dmv-community-strip small{font-size:14px;color:#d8e4f4}
.dmv-community-strip-badge{width:12px;height:12px;border-radius:999px;background:#ff3b30;box-shadow:0 0 0 4px rgba(255,59,48,.16);flex:0 0 auto}
.dmv-community-strip-arrow{margin-left:auto;font-size:28px;font-weight:800;color:#d9b35c;line-height:1}
.dmv-community-strip.has-new-community{border-color:rgba(255,59,48,.45)}

@media (max-width:760px){
  .dmv-community-strip{padding:14px 14px 15px;border-radius:18px;align-items:flex-start}
  .dmv-community-strip strong{font-size:22px}
  .dmv-community-strip small{font-size:13px;line-height:1.35}
  .dmv-community-strip-arrow{font-size:24px;padding-top:6px}
}


.dmv-shell-embedded{max-width:100%;padding:0;background:transparent;}
.dmv-shell-embedded .dmv-card{margin-top:0;}
.dmv-shell[data-show-audio="0"] .dmv-desc-audio{display:none;}

/* v1.8.2.5 orders page back to community + clean theme bleed */
.dmv-orders-page,
.dmv-orders-page *{box-sizing:border-box;}
.dmv-orders-page{position:relative;z-index:20;}
.dmv-orders-page::before{content:"";position:fixed;inset:0;background:radial-gradient(1200px 700px at 50% 0%, #0b2b3f 0%, #061a2c 42%, #02101c 100%);z-index:-1;}
body:has(.dmv-orders-page) .site-header,
body:has(.dmv-orders-page) .entry-header,
body:has(.dmv-orders-page) .wp-block-post-title,
body:has(.dmv-orders-page) .entry-title,
body:has(.dmv-orders-page) .site-title,
body:has(.dmv-orders-page) .site-branding,
body:has(.dmv-orders-page) .header-inner,
body:has(.dmv-orders-page) .header-navigation,
body:has(.dmv-orders-page) .wp-block-template-part,
body:has(.dmv-orders-page) .page-header{display:none !important;}
body:has(.dmv-orders-page) #page,
body:has(.dmv-orders-page) .site,
body:has(.dmv-orders-page) main,
body:has(.dmv-orders-page) .site-main,
body:has(.dmv-orders-page) .entry-content,
body:has(.dmv-orders-page) .wp-block-post-content{background:transparent !important;}


/* v1.17.14.6 clone visual de Comunidad para Web */
body.dmv-community-skin, body.dmv-community-skin html{background:#062850 !important;}
body.dmv-community-skin .entry-title,
body.dmv-community-skin .wp-block-post-title,
body.dmv-community-skin .page-title,
body.dmv-community-skin .page-header,
body.dmv-community-skin .archive-header{display:none !important;}
body.dmv-community-skin .entry-content,
body.dmv-community-skin .wp-block-post-content,
body.dmv-community-skin .is-layout-constrained,
body.dmv-community-skin .site-main,
body.dmv-community-skin main,
body.dmv-community-skin article,
body.dmv-community-skin .post,
body.dmv-community-skin .page,
body.dmv-community-skin .wp-site-blocks{max-width:none !important;}
body.dmv-community-skin .entry-content,
body.dmv-community-skin .wp-block-post-content{padding-left:0 !important;padding-right:0 !important;margin-left:0 !important;margin-right:0 !important;}
.dmv-community-page-shell{background:#062850 !important;width:100vw !important;max-width:100vw !important;margin-left:calc(50% - 50vw) !important;margin-right:calc(50% - 50vw) !important;overflow-x:hidden;padding:8px 0 18px !important;}
.dmv-community-page-shell .dmv-shell{background:transparent !important;padding:0 0 18px !important;min-height:0;}
.dmv-community-page-shell .dmv-topbar,
.dmv-community-page-shell .dmv-community-strip,
.dmv-community-page-shell .dmv-card{width:calc(100% - 24px) !important;max-width:none !important;margin-left:12px !important;margin-right:12px !important;border-radius:18px !important;}
.dmv-community-page-shell .dmv-topbar{margin-top:0 !important;margin-bottom:14px !important;padding:14px 16px !important;background:rgba(8,18,29,.82) !important;}
.dmv-community-page-shell .dmv-brand-title{font-size:18px !important;line-height:1.05 !important;}
.dmv-community-page-shell .dmv-brand-sub{font-size:12px !important;}
.dmv-community-page-shell .dmv-top-actions{display:flex;align-items:center;}
.dmv-community-page-shell .dmv-top-link{padding:14px 18px !important;border-radius:18px !important;white-space:nowrap;}
.dmv-community-page-shell .dmv-community-strip{padding:18px 18px 20px !important;background:linear-gradient(135deg,#0f3a7a 0%,#062850 100%) !important;}
.dmv-community-page-shell .dmv-card{padding:14px !important;background:linear-gradient(180deg, rgba(22,63,104,.90), rgba(9,28,53,.98)) !important;border-color:rgba(202,163,77,.28) !important;box-shadow:none !important;}
.dmv-community-page-shell .dmv-card-head{display:block !important;margin-bottom:10px !important;}
.dmv-community-page-shell .dmv-card h2{font-size:18px !important;line-height:1.1 !important;margin-bottom:8px !important;}
.dmv-community-page-shell .dmv-min{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px;}
.dmv-community-page-shell .dmv-badge{border-radius:18px !important;padding:12px 18px !important;font-size:17px !important;}
.dmv-community-page-shell .dmv-loyalty-banner,
.dmv-community-page-shell .dmv-gift-download,
.dmv-community-page-shell .dmv-filters,
.dmv-community-page-shell .dmv-sales-mode-bar,
.dmv-community-page-shell .dmv-tags,
.dmv-community-page-shell .dmv-count,
.dmv-community-page-shell .dmv-pagination{margin-left:8px !important;margin-right:8px !important;}
.dmv-community-page-shell .dmv-grid{padding:0 2px !important;background:transparent !important;gap:14px !important;}
.dmv-community-page-shell .dmv-item{border-radius:18px !important;overflow:hidden !important;}
.dmv-community-page-shell .dmv-img{aspect-ratio:4/3 !important;background-color:#fff !important;background-size:contain !important;background-repeat:no-repeat !important;background-position:center center !important;}
.dmv-community-page-shell .dmv-body{padding:14px 14px 16px !important;}
@media (max-width:760px){
  .dmv-community-page-shell .dmv-grid{grid-template-columns:1fr !important;}
  .dmv-community-page-shell .dmv-topbar,
  .dmv-community-page-shell .dmv-community-strip,
  .dmv-community-page-shell .dmv-card{width:calc(100% - 24px) !important;margin-left:12px !important;margin-right:12px !important;}
  .dmv-community-page-shell .dmv-shell{padding:0 0 18px !important;}
  .dmv-community-page-shell .dmv-filters{grid-template-columns:1fr !important;}
  .dmv-community-page-shell .dmv-btn[data-clear]{width:100% !important;}
  .dmv-community-page-shell .dmv-sales-mode-bar{display:block !important;}
  .dmv-community-page-shell .dmv-sales-mode-help{display:block !important;margin-top:10px !important;}
}


/* v1.17.14.10 mobile floats reposition final */
@media (max-width:760px){
  .dmv-wa-float{
    left:10px !important;
    right:auto !important;
    bottom:18px !important;
    width:56px !important;
    height:56px !important;
    min-width:56px !important;
    padding:0 !important;
    border-radius:999px !important;
    justify-content:center !important;
    align-items:center !important;
    gap:0 !important;
    max-width:none !important;
    overflow:hidden !important;
    z-index:9998 !important;
  }
  .dmv-wa-float-text,
  .dmv-wa-float strong,
  .dmv-wa-float small{display:none !important; width:0 !important; max-width:0 !important; opacity:0 !important; overflow:hidden !important;}
  .dmv-wa-float-ico{width:30px !important; height:30px !important; min-width:30px !important; margin:0 !important;}

  .dmv-cart-floating{
    right:10px !important;
    left:auto !important;
    bottom:18px !important;
    z-index:9998 !important;
  }
  .dmv-cart-floating-btn{
    padding:10px 14px !important;
    max-width:calc(100vw - 96px) !important;
    border-radius:20px !important;
  }
}

/* v1.17.14.11 mobile floats separated: wa left, cart center, subir right */
@media (max-width:760px){
  .dmv-wa-float{
    left:10px !important;
    right:auto !important;
    bottom:18px !important;
  }
  .dmv-cart-floating{
    left:50% !important;
    right:auto !important;
    transform:translateX(-50%) !important;
    bottom:18px !important;
    z-index:9998 !important;
  }
  .dmv-cart-floating-btn{
    max-width:calc(100vw - 160px) !important;
  }
  .dmv-scroll-top{
    right:10px !important;
    left:auto !important;
    bottom:18px !important;
    z-index:9998 !important;
  }
}


/* Pak Emprende integrado */
.dmv-pack-topbar{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin:12px 0 4px}

.dmv-choice-hero{display:grid;grid-template-columns:1fr 1fr;gap:12px;width:min(100%,980px);margin:0 auto 16px;box-sizing:border-box}
.dmv-choice-card{appearance:none;border:1px solid rgba(202,163,77,.28);border-radius:22px;padding:22px 20px;background:linear-gradient(180deg,rgba(32,45,74,.96),rgba(18,25,42,.96));color:#fff;text-align:center;display:grid;gap:8px;cursor:pointer;box-shadow:0 10px 24px rgba(0,0,0,.18);justify-items:center;align-content:center;min-height:220px;box-sizing:border-box}
.dmv-choice-card strong{font-size:22px;line-height:1.15;max-width:18ch}
.dmv-choice-card span{font-size:15px;color:#e7edf8;max-width:28ch}
.dmv-choice-card .dmv-choice-kicker{font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:#f6d37c;max-width:none}
.dmv-choice-card.is-pack{background:linear-gradient(180deg,rgba(58,41,17,.98),rgba(35,25,10,.98))}
.dmv-choice-card:hover{transform:translateY(-1px)}
[data-choice-root][data-choice-mode=""] [data-choice-hidden]{display:none!important}
[data-choice-root][data-choice-mode=""] .dmv-choice-hero{margin-bottom:0}
[data-choice-root][data-choice-mode="pack"] [data-mode-content="products"],
[data-choice-root][data-choice-mode="products"] [data-mode-content="pack"],
[data-choice-root][data-choice-mode=""] [data-mode-content]{display:none!important}
.dmv-mode-panel[hidden]{display:none!important}
.dmv-mode-switch{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 16px;border:1px solid rgba(202,163,77,.28);border-radius:20px;background:linear-gradient(180deg,rgba(20,29,47,.96),rgba(13,19,32,.96));box-shadow:0 10px 24px rgba(0,0,0,.12);margin:0 0 14px}
.dmv-mode-switch-copy{display:grid;gap:4px}
.dmv-mode-switch-copy strong{font-size:18px;line-height:1.15;color:#fff}
.dmv-mode-switch-copy span{font-size:13px;color:#d8dfeb}
.dmv-mode-switch-btn{appearance:none;border:0;border-radius:16px;padding:14px 16px;background:#f6d37c;color:#1d2232;font-weight:900;letter-spacing:.02em;cursor:pointer;min-height:54px;box-shadow:0 10px 20px rgba(246,211,124,.25)}
.dmv-mode-switch-btn.is-pack{background:#ffe09f}

[data-choice-root] .dmv-pack-topbar{display:none!important}
.dmv-pack-section{margin:12px 0 10px;padding:0;border:0;background:transparent}
.dmv-pack-section-head{margin:0 0 10px}
.dmv-pack-section-head h3{margin:0;font-size:22px;color:var(--dmv-gold2)}
.dmv-pack-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;padding:4px;border-radius:16px;background:rgba(12,27,42,.22);margin-bottom:14px}
.dmv-pack-card{overflow:hidden}
.dmv-pack-card-media{aspect-ratio:4/3;background-color:#162636}
.dmv-pack-card .dmv-title{min-height:unset}
.dmv-pack-card-desc{min-height:52px}
.dmv-pack-price-stack{display:flex;flex-direction:column;gap:4px}
.dmv-pack-price-real,.dmv-pack-detail-price-real{font-size:12px;color:var(--dmv-muted)}
.dmv-pack-save,.dmv-pack-detail-price-save{font-size:12px;color:#8ff0b0;font-weight:700}
.dmv-pack-detail-price-offer{font-size:14px;color:var(--dmv-text)}
.dmv-pack-card-actions{align-items:flex-end}
.dmv-pack-card .dmv-qty{max-width:128px}
.dmv-pack-detail{margin-top:12px;border-top:1px solid rgba(202,163,77,.16);padding-top:12px}
.dmv-pack-detail-prices{display:grid;gap:4px;margin-bottom:12px}
.dmv-pack-detail-row{display:flex;gap:10px;align-items:flex-start;padding:8px 0}
.dmv-pack-detail-row + .dmv-pack-detail-row{border-top:1px solid rgba(202,163,77,.1)}
.dmv-pack-detail-thumb{width:56px;height:56px;border-radius:12px;background:#12253a center/cover no-repeat;flex:0 0 auto;border:1px solid rgba(255,255,255,.08)}
.dmv-pack-detail-copy{min-width:0}
.dmv-pack-detail-name{font-weight:700;color:var(--dmv-text);line-height:1.25}
.dmv-pack-detail-meta{font-size:13px;color:var(--dmv-muted);margin-top:4px}
body.dmv-sales-mode .dmv-pack-price-real,
body.dmv-sales-mode .dmv-pack-save,
body.dmv-sales-mode .dmv-pack-detail-price-real,
body.dmv-sales-mode .dmv-pack-detail-price-offer,
body.dmv-sales-mode .dmv-pack-detail-price-save{display:none !important;}
@media (max-width:1100px){
  .dmv-pack-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:900px){
  .dmv-pack-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:700px){
  .dmv-pack-grid{grid-template-columns:1fr}
  .dmv-pack-card-actions{flex-direction:column;align-items:stretch}
  .dmv-pack-card-desc{min-height:unset}
}

.dmv-pack-add.is-active{background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(202,163,77,.42));border-color:rgba(255,255,255,.55);color:#fff}
.dmv-pack-samples-toggle{white-space:nowrap}
.dmv-pack-samples-toggle.is-active,
.dmv-pack-with-samples .dmv-pack-samples-toggle{background:rgba(202,163,77,.18);border-color:rgba(202,163,77,.55);color:var(--dmv-gold2)}
.dmv-pack-detail-samples{font-size:12px;color:#9ad3ff;font-weight:600}
.dmv-pack-with-samples{box-shadow:0 0 0 1px rgba(202,163,77,.45), 0 10px 24px rgba(0,0,0,.18)}


.dmv-meta-prices{align-items:flex-start;gap:14px}
.dmv-price-wrap{display:flex;flex-direction:column;gap:2px}
.dmv-price-label{font-size:11px;line-height:1.2;opacity:.9}
.dmv-price-label-detail{color:#cfcfcf}

.dmv-price-mayorista-highlight{display:inline-flex;flex-direction:column;gap:4px;margin:8px 0 8px;padding:10px 12px;border-radius:16px;background:linear-gradient(180deg,rgba(255,231,166,.18),rgba(255,214,102,.08));border:1px solid rgba(247,212,123,.42);box-shadow:0 8px 18px rgba(247,212,123,.12), inset 0 1px 0 rgba(255,255,255,.08)}
.dmv-price-mayorista-kicker{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:900;letter-spacing:.02em;color:#ffe7a6;text-transform:uppercase}
.dmv-price-label-mayorista{color:#f7d47b;margin-top:2px}
.dmv-price-label-real{color:#cfcfcf;margin-top:2px}
.dmv-price-detail{font-size:14px;font-weight:700;color:#dcdcdc}
.dmv-price-real{font-size:16px;font-weight:700;color:#d9d9d9;text-decoration:line-through;text-decoration-thickness:2px;text-decoration-color:rgba(255,255,255,.42);opacity:.92}
.dmv-price-mayorista{font-size:22px;font-weight:900;color:#fff;text-shadow:0 4px 14px rgba(247,212,123,.16)}
.dmv-price-save{margin-top:4px;font-size:13px;color:#9fe0b1;font-weight:900}
.dmv-catalog-badges{display:flex;flex-wrap:wrap;gap:6px;margin:0 0 8px}
.dmv-cat-badge{display:inline-flex;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;font-size:12px;font-weight:800;line-height:1;border:1px solid rgba(255,255,255,.12);box-shadow:0 8px 18px rgba(0,0,0,.18)}
.dmv-cat-badge.hot{background:linear-gradient(135deg,#ff7b42,#e73a3a);color:#fff}
.dmv-cat-badge.rec{background:linear-gradient(135deg,#1f6fff,#0d3b8f);color:#fff}
.dmv-cat-badge.new{background:rgba(255,255,255,.92);color:#0b326f;border-color:rgba(11,50,111,.14);box-shadow:0 8px 18px rgba(7,22,44,.12)}
body.dmv-sales-mode .dmv-price-label{display:none}
@media (max-width:768px){.dmv-price-mayorista{font-size:16px}.dmv-price-detail{font-size:13px}}

.dmv-guide-panel{margin:14px 0 16px;padding:16px;border:1px solid rgba(202,163,77,.18);border-radius:18px;background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));box-shadow:0 12px 28px rgba(0,0,0,.14)}
.dmv-guide-copy h3{margin:0 0 6px;color:var(--dmv-gold2);font-size:24px}
.dmv-guide-copy p{margin:0;color:var(--dmv-muted);font-size:15px;line-height:1.45}
.dmv-guide-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:14px}
.dmv-guide-btn{display:flex;align-items:center;justify-content:center;text-align:center;min-height:58px;padding:14px 16px;border-radius:16px;border:1px solid rgba(255,255,255,.10);background:rgba(10,23,35,.72);color:#fff;font-weight:800;font-size:15px;line-height:1.3;text-decoration:none;box-shadow:0 10px 20px rgba(0,0,0,.18)}
.dmv-guide-btn.is-primary{background:linear-gradient(135deg,#caa34d,#9c7420);color:#111}
.dmv-guide-btn.is-link{background:rgba(27,57,92,.86)}
.dmv-guide-steps{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.dmv-guide-steps span{display:inline-flex;align-items:center;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);font-size:12px;color:var(--dmv-text);font-weight:700}
.dmv-profit-hint{margin-top:6px;font-size:12px;color:#9fe0b1;font-weight:700}
@media (max-width: 767px){
  .dmv-guide-panel{padding:14px;border-radius:16px}
  .dmv-guide-copy h3{font-size:22px}
  .dmv-guide-grid{grid-template-columns:1fr}
  .dmv-guide-btn{min-height:56px;font-size:16px}
  .dmv-guide-steps{display:grid;grid-template-columns:1fr;gap:6px}
}

.dmv-profit-ref{margin-top:4px;font-size:18px;color:#9fe0b1;font-weight:800}

.dmv-start-panel{margin:14px 0 16px;padding:16px;border-radius:22px;border:1px solid rgba(202,163,77,.22);background:linear-gradient(180deg,rgba(14,31,51,.94),rgba(8,19,33,.88));box-shadow:0 14px 30px rgba(0,0,0,.18)}
.dmv-start-title{font-size:22px;font-weight:900;color:var(--dmv-gold2);margin-bottom:6px}
.dmv-start-copy{font-size:14px;line-height:1.45;color:rgba(255,255,255,.84);margin-bottom:12px}
.dmv-start-budget-title{font-size:14px;font-weight:800;color:#fff;margin-bottom:10px}
.dmv-start-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.dmv-start-btn{display:flex;align-items:center;justify-content:center;text-align:center;min-height:58px;padding:14px 12px;border-radius:18px;border:1px solid rgba(255,255,255,.12);background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));color:#fff;font-weight:900;font-size:15px;box-shadow:0 10px 22px rgba(0,0,0,.16)}
.dmv-start-btn.is-budget{background:linear-gradient(135deg,#e0b44e,#b88622);color:#0f1721;border-color:rgba(255,255,255,.28)}
.dmv-start-btn.is-pack-link{background:linear-gradient(135deg,#12345f,#1f5ca8);color:#fff}
.dmv-start-btn.is-community-link{text-decoration:none;background:linear-gradient(135deg,#0f3e6c,#2b7bb7);color:#fff}
.dmv-start-btn.is-active{background:linear-gradient(135deg,#e0b44e,#b88622);color:#0f1721;border-color:rgba(255,255,255,.28)}
.dmv-pack-wizard{display:grid;gap:12px;margin-top:4px}
.dmv-pack-step{display:grid;gap:8px}
.dmv-pack-step-title{font-size:13px;font-weight:800;color:#f5e3a9;text-transform:uppercase;letter-spacing:.04em}
.dmv-pack-budget-row{display:grid;gap:8px}
.dmv-pack-budget-input{width:100%;min-height:54px;border-radius:16px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.06);color:#fff;padding:0 14px;font-size:18px;font-weight:800}
.dmv-pack-budget-help{font-size:12px;color:#cfd7e3}
@media (max-width:767px){.dmv-start-grid{grid-template-columns:1fr}.dmv-start-title{font-size:20px}.dmv-start-btn{min-height:56px;font-size:15px}.dmv-choice-hero{grid-template-columns:1fr;width:min(100%,100%);margin:0 auto 14px}.dmv-choice-card{min-height:0;padding:20px 18px}.dmv-choice-card strong{font-size:20px;max-width:none}.dmv-choice-card span{max-width:none}.dmv-mode-switch{flex-direction:column;align-items:stretch;padding:14px}.dmv-mode-switch-btn{width:100%}.dmv-mode-switch-copy strong{font-size:17px}}
@media (max-width:900px){.dmv-catalog-toolbar{display:block}.dmv-sales-mode-bar{justify-content:flex-start;margin-top:8px}.dmv-filters{margin-top:0}}


.dmv-pack-samples-toggle,.dmv-pack-detail-samples{display:none!important}
.dmv-manual-samples-offer{background:linear-gradient(180deg,rgba(246,211,124,.28),rgba(78,54,12,.56));border-color:rgba(246,211,124,.82);box-shadow:0 10px 24px rgba(246,211,124,.18)}
.dmv-manual-samples-offer .dmv-btn{background:linear-gradient(180deg,#f6d37c,#d7a83f);color:#1f2230;border-color:#f7e1a6;font-weight:900}
.dmv-manual-samples-text{color:#fff5cc;font-weight:700}

@media (max-width:760px){.dmv-quick-access-row{flex-wrap:nowrap;overflow:auto;padding:2px 2px 6px;-webkit-overflow-scrolling:touch;scrollbar-width:none}.dmv-quick-access-row::-webkit-scrollbar{display:none}.dmv-quick-btn{white-space:nowrap;flex:0 0 auto}.dmv-quick-access-hint{display:flex}}
@media (min-width:761px){.dmv-quick-access-hint{display:none}}
