.ej-cart-fab[hidden],
.ej-cart-count[hidden],
.ej-cart-backdrop[hidden],
.ej-cart-empty[hidden],
.ej-cart-summary[hidden],
.ej-cart-checkout[hidden]{
  display:none!important;
}

.ej-cart-fab{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:100180;
  width:58px;
  height:58px;
  border:1px solid rgba(238,77,45,.18);
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,#fff7f3,#ffe5da);
  color:#d94326;
  box-shadow:0 14px 34px rgba(111,45,28,.20);
  cursor:pointer;
  transition:.2s transform,.2s box-shadow;
}
.ej-cart-fab:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(111,45,28,.25);
}
.ej-cart-fab svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.ej-cart-count{
  position:absolute;
  right:-4px;
  top:-6px;
  min-width:24px;
  height:24px;
  padding:0 6px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:#ee4d2d;
  color:#fff;
  border:3px solid #fff;
  font:800 12px/1 system-ui;
}
.ej-cart-backdrop{
  position:fixed;
  inset:0;
  z-index:100190;
  background:rgba(30,20,17,.46);
  backdrop-filter:blur(3px);
  opacity:0;
  transition:opacity .25s;
}
.ej-cart-backdrop.is-open{opacity:1}
.ej-cart-drawer{
  position:fixed;
  z-index:100200;
  right:0;
  top:0;
  width:min(440px,94vw);
  height:100dvh;
  max-height:100dvh;
  overflow:hidden;
  background:#fff;
  box-shadow:-24px 0 60px rgba(30,20,17,.22);
  transform:translateX(105%);
  transition:transform .3s cubic-bezier(.2,.8,.2,1);
  display:flex;
  flex-direction:column;
  color:#2f241f;
}
.ej-cart-drawer.is-open{transform:translateX(0)}
.ej-cart-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex:0 0 auto;
  padding:15px 18px 13px;
  border-bottom:1px solid #f0e4df;
}
.ej-cart-head-main{
  min-width:0;
  display:flex;
  align-items:center;
  gap:10px;
}
.ej-cart-back-top{
  width:38px;
  height:38px;
  flex:0 0 38px;
  display:grid;
  place-items:center;
  padding:0;
  border:1px solid #eaded9;
  border-radius:50%;
  background:#fff8f5;
  color:#6b4e43;
  cursor:pointer;
  transition:background .16s ease,border-color .16s ease,color .16s ease,transform .16s ease;
}
.ej-cart-back-top:hover{
  background:#fff0ea;
  border-color:#efc4b6;
  color:#d94326;
}
.ej-cart-back-top:active{transform:scale(.96)}
.ej-cart-back-top svg{
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.35;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.ej-cart-head h2{
  margin:0;
  color:#352720;
  font-family:"Arial Rounded MT Bold","Trebuchet MS",system-ui,-apple-system,sans-serif;
  font-size:19px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-.025em;
}
.ej-cart-close{
  width:42px;
  height:42px;
  border:1px solid #eaded9;
  border-radius:50%;
  background:#fff8f5;
  color:#3a2c26;
  font:300 30px/1 system-ui;
  cursor:pointer;
}
.ej-cart-items{
  min-height:0;
  overflow:auto;
  padding:12px 18px;
  flex:1 1 auto;
}
.ej-cart-item{
  display:grid;
  grid-template-columns:68px minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid #f2eae6;
}
.ej-cart-item img,
.ej-cart-item-placeholder{
  width:68px;
  height:78px;
  border-radius:10px;
  object-fit:cover;
  background:#fff4ee;
  display:grid;
  place-items:center;
}
.ej-cart-item-info{min-width:0}
.ej-cart-item-title{
  display:block;
  color:#2f241f;
  font:750 14px/1.35 system-ui;
  text-decoration:none;
}
.ej-cart-item-price{
  display:block;
  margin-top:7px;
  color:#d94326;
  font:850 15px/1 system-ui;
}
.ej-cart-remove{
  border:1px dashed #d9a99b;
  border-radius:999px;
  background:#fffaf8;
  color:#92513e;
  font:600 12px/1 system-ui;
  cursor:pointer;
  padding:8px 10px;
  transition:background .18s ease,border-color .18s ease,color .18s ease;
}
.ej-cart-remove:hover{background:#fff0ea;border-color:#ee4d2d;color:#c43e24}
.ej-cart-empty{
  margin:0;
  padding:30px;
  text-align:center;
  display:grid;
  gap:8px;
  color:#8a746b;
  font-family:system-ui;
}
.ej-cart-drawer.is-empty .ej-cart-items{display:none!important}
.ej-cart-drawer.is-empty .ej-cart-empty{
  flex:1 1 auto;
  min-height:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:24px 30px 72px;
}
.ej-cart-empty span{font-size:46px;line-height:1}
.ej-cart-empty strong{color:#3a2c26;font-size:17px}
.ej-cart-summary{
  flex:0 0 auto;
  max-height:72dvh;
  overflow-y:auto;
  overscroll-behavior:contain;
  padding:14px 18px calc(18px + env(safe-area-inset-bottom));
  border-top:1px solid #f0e4df;
  background:linear-gradient(180deg,#fff 0%,#fffaf7 100%);
  box-shadow:0 -10px 28px rgba(75,45,34,.07);
}
.ej-cart-summary-card{
  padding:14px 15px 13px;
  margin-bottom:12px;
  border:1px solid #f1d9cf;
  border-radius:16px;
  background:linear-gradient(145deg,#fffdfc,#fff5ef);
  box-shadow:0 8px 22px rgba(120,63,42,.07);
}
.ej-cart-summary-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.ej-cart-summary-eyebrow{
  color:#5a443b;
  font:800 13px/1.2 system-ui;
}
.ej-cart-summary-badge{
  flex:0 0 auto;
  padding:5px 8px;
  border-radius:999px;
  background:#fff0e9;
  color:#c43e24;
  border:1px solid #ffd4c5;
  font:750 10px/1 system-ui;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.ej-cart-total{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  margin:0;
}
.ej-cart-total-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.ej-cart-total-copy>span{
  color:#6f5c54;
  font:650 13px/1.2 system-ui;
}
.ej-cart-total-copy>small{
  color:#9a7c70;
  font:500 11px/1.25 system-ui;
}
.ej-cart-total strong{
  flex:0 0 auto;
  color:#ee4d2d;
  font:900 clamp(24px,7vw,31px)/1 system-ui;
  letter-spacing:-.04em;
}
.ej-cart-summary-benefits{
  display:grid;
  gap:5px;
  margin-top:11px;
  padding-top:10px;
  border-top:1px dashed #e7c8bc;
  color:#6f625c;
  font:550 11px/1.35 system-ui;
}
.ej-cart-checkout{
  width:100%;
  min-height:58px;
  padding:0 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:0;
  border-radius:14px;
  background:linear-gradient(135deg,#ff6a3d 0%,#ee4d2d 58%,#dc3d20 100%);
  color:#fff;
  font:850 15px/1.15 system-ui;
  cursor:pointer;
  box-shadow:0 11px 26px rgba(238,77,45,.30);
  text-shadow:0 1px 0 rgba(126,32,15,.12);
}
.ej-cart-checkout-lock{font-size:15px;line-height:1}
.ej-cart-checkout-label{min-width:0}
.ej-cart-checkout:hover{filter:brightness(.98)}
.ej-cart-checkout:disabled{opacity:.65;cursor:wait}
.ej-cart-secure{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:11px;
  color:#68717d;
  font:500 12px/1.35 system-ui;
  text-align:left;
}
.ej-cart-secure strong{font-weight:650;color:#4b5563}
.ej-cart-mp-icon{
  width:44px;
  height:31px;
  object-fit:contain;
  flex:0 0 44px;
  display:block;
}
.ej-cart-payment{
  width:100%;
  max-width:100%;
  overflow-wrap:anywhere;
  text-align:center;
  font:600 13px/1.45 system-ui;
}
.ej-cart-payment img{
  display:block;
  width:min(220px,72vw);
  max-width:100%;
  height:auto;
  margin:15px auto;
  border-radius:12px;
}
.ej-cart-payment textarea{
  box-sizing:border-box;
  display:block;
  width:100%;
  max-width:100%;
  height:72px;
  margin:10px 0;
  resize:vertical;
}
.ej-cart-add-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:calc(100% - 24px);
  min-height:40px;
  margin:0 12px 12px;
  padding:8px 10px;
  border:1px dashed #d7a897;
  border-radius:11px;
  background:rgba(255,250,247,.94);
  color:#784737;
  font:500 13px/1.2 system-ui;
  letter-spacing:.01em;
  cursor:pointer;
  box-shadow:none;
  transition:background .18s ease,border-color .18s ease,color .18s ease;
}
.ej-cart-add-btn:hover{background:#fff0e9;border-color:#ee4d2d;color:#b73c24}
.ej-cart-add-btn svg{
  width:18px;
  height:18px;
  flex:0 0 auto;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.ej-cart-drawer.is-paying .ej-cart-items,
.ej-cart-drawer.is-paying .ej-cart-empty{
  display:none!important;
}
.ej-cart-drawer.is-paying .ej-cart-summary{
  flex:1 1 auto;
  max-height:none;
}
.ej-cart-pulse{animation:ejCartPulse .45s ease}
@keyframes ejCartPulse{50%{transform:scale(1.14)}}
body.ej-cart-lock{overflow:hidden}

@media(max-width:768px){
  .ej-cart-fab{
    right:15px;
    bottom:82px;
    width:55px;
    height:55px;
  }
  .ej-cart-drawer{
    left:0;
    right:0;
    top:auto;
    bottom:0;
    width:100%;
    max-width:100%;
    height:min(94dvh,780px);
    max-height:94dvh;
    border-radius:22px 22px 0 0;
    transform:translateY(105%);
  }
  .ej-cart-drawer.is-open{transform:translateY(0)}
  .ej-cart-head{padding:16px 18px 13px}
  .ej-cart-items{padding-inline:15px}
  .ej-cart-summary{
    max-height:72dvh;
    padding:13px 14px max(18px,env(safe-area-inset-bottom));
  }
  .ej-cart-drawer.is-paying .ej-cart-summary{
    max-height:calc(94dvh - 68px);
  }
  .ej-cart-summary-card{padding:13px 13px 12px;border-radius:14px}
  .ej-cart-summary-benefits{font-size:10.5px}
  .ej-cart-checkout{min-height:58px;border-radius:13px;font-size:14px}
  .ej-cart-payment img{width:min(210px,64vw)}
  .ej-product-card>.ej-cart-add-btn,
  .ej-pix-related-card>.ej-cart-add-btn{
    display:flex!important;
    width:calc(100% - 12px);
    min-height:38px;
    margin:0 6px 7px;
    padding:7px 5px;
    gap:5px;
    border-radius:8px;
    font-size:11px;
  }
  .ej-product-card>.ej-cart-add-btn svg,
  .ej-pix-related-card>.ej-cart-add-btn svg{width:16px;height:16px}
  .ej-pd-pay,
  .ej-pix-produto-pagamento{display:none!important}
}


/* ========================================================================
 * PIX v1.6.9 — cópia Pix destacada + confirmação visual + mobile compacto
 * ======================================================================*/
.ej-cart-payment[hidden]{display:none!important}
.ej-cart-payment-title{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  margin:2px 0 6px;
}
.ej-cart-payment-ready{
  color:#7a6258;
  font:700 12px/1.2 system-ui;
}
.ej-cart-payment-title strong{
  color:#2f241f;
  font:850 15px/1.25 system-ui;
}
.ej-cart-pix-code-wrap{
  width:100%;
  margin:4px 0 11px;
  text-align:left;
}
.ej-cart-pix-code-label{
  display:block;
  margin:0 0 5px 2px;
  color:#7a6258;
  font:700 11px/1.2 system-ui;
}
.ej-cart-pix-code-row{
  display:flex;
  align-items:center;
  gap:7px;
  width:100%;
  min-width:0;
}
.ej-cart-pix-code-line{
  flex:1 1 auto;
  min-width:0;
  width:0;
  height:40px;
  border:1px solid #e3c7bc;
  border-radius:10px;
  background:#fff;
  color:#57443c;
  padding:0 10px;
  font:600 11px/1 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  outline:none;
  cursor:pointer;
}
.ej-cart-pix-code-line:hover{
  border-color:#ee4d2d;
  background:#fffaf7;
}
.ej-cart-pix-code-line:focus{
  border-color:#ee4d2d;
  box-shadow:0 0 0 3px rgba(238,77,45,.10);
}
.ej-cart-copy-compact{
  flex:0 0 auto;
  height:40px;
  padding:0 13px;
  border:2px solid #ee4d2d;
  border-radius:10px;
  background:#fff7f3;
  color:#c54126;
  font:900 12px/1 system-ui;
  cursor:pointer;
  box-shadow:0 3px 10px rgba(238,77,45,.10);
  transition:background .16s ease,border-color .16s ease,color .16s ease,transform .16s ease,box-shadow .16s ease;
}
.ej-cart-copy-compact:hover{
  background:#ee4d2d;
  color:#fff;
  box-shadow:0 5px 14px rgba(238,77,45,.18);
}
.ej-cart-copy-compact:active{transform:scale(.98)}
.ej-cart-copy-compact.is-copied{
  border-color:#16a34a;
  background:#ecfdf3;
  color:#15803d;
  box-shadow:0 4px 14px rgba(22,163,74,.14);
}
.ej-cart-copy-success{
  display:grid;
  grid-template-columns:50px minmax(0,1fr);
  align-items:center;
  gap:11px;
  width:100%;
  max-height:0;
  margin:0;
  padding:0 12px;
  overflow:hidden;
  border:0 solid #b7e6c4;
  border-radius:13px;
  background:#f0fdf4;
  color:#166534;
  opacity:0;
  transform:translateY(-5px);
  transition:max-height .24s ease,margin .24s ease,padding .24s ease,opacity .2s ease,transform .24s ease,border-width .1s ease;
}
.ej-cart-copy-success.is-visible{
  max-height:110px;
  margin:8px 0 0;
  padding:10px 12px;
  border-width:1px;
  opacity:1;
  transform:translateY(0);
}
.ej-cart-copy-success-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#22c55e;
  color:#fff;
  box-shadow:0 5px 14px rgba(34,197,94,.23);
}
.ej-cart-copy-success-icon svg{width:29px;height:29px;fill:currentColor}
.ej-cart-copy-success strong{display:block;font:900 14px/1.15 system-ui}
.ej-cart-copy-success small{display:block;margin-top:3px;color:#367a4c;font:650 11.5px/1.3 system-ui}
.ej-cart-payment-deadline{
  width:100%;
  padding:12px 13px;
  border:1px solid #f3d5c8;
  border-radius:14px;
  background:linear-gradient(145deg,#fffaf7,#fff3ed);
  text-align:left;
  box-shadow:0 7px 18px rgba(114,61,40,.06);
}
.ej-cart-payment-deadline-top{
  display:flex;
  align-items:center;
  gap:7px;
  color:#60483f;
  font:750 12px/1.2 system-ui;
}
.ej-cart-payment-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#f59e0b;
  box-shadow:0 0 0 4px rgba(245,158,11,.12);
}
.ej-cart-payment-clock{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:9px;
}
.ej-cart-payment-clock span{
  color:#8a6c60;
  font:650 11px/1.2 system-ui;
}
.ej-cart-payment-clock strong{
  min-width:94px;
  padding:7px 9px;
  border-radius:9px;
  background:#2b211d;
  color:#fff;
  text-align:center;
  font:850 18px/1 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  letter-spacing:.035em;
  box-shadow:0 5px 12px rgba(43,33,29,.17);
}
.ej-cart-payment-deadline small{
  display:block;
  margin-top:8px;
  color:#9a786b;
  font:500 10.5px/1.35 system-ui;
}
.ej-cart-payment-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  width:100%;
  margin-top:10px;
}
.ej-cart-payment-back,
.ej-cart-payment-cancel{
  min-height:42px;
  border-radius:11px;
  padding:8px 9px;
  font:750 11.5px/1.2 system-ui;
  cursor:pointer;
}
.ej-cart-payment-back{
  border:1px solid #e5d7d1;
  background:#fff;
  color:#654d43;
}
.ej-cart-payment-cancel{
  border:1px solid #f1c7bc;
  background:#fff7f4;
  color:#bd3e26;
}
.ej-cart-payment-back:hover{background:#fffaf7}
.ej-cart-payment-cancel:hover{background:#fff0eb;border-color:#e99e8c}
.ej-cart-payment-back:disabled,
.ej-cart-payment-cancel:disabled{opacity:.55;cursor:wait}
.ej-cart-payment-note{
  width:100%;
  margin-top:10px;
  padding:10px 12px;
  border-radius:11px;
  border:1px solid #e5d7d1;
  background:#fffaf7;
  color:#6c544a;
  font:650 11.5px/1.4 system-ui;
  text-align:left;
}
.ej-cart-payment-note.is-success{
  border-color:#bbdfc7;
  background:#f2fbf5;
  color:#27703f;
}

@media(max-width:767px){
  /* No celular, remove informações repetidas para deixar o QR/Pix mais alto e direto. */
  .ej-cart-summary-topline,
  .ej-cart-payment-title{display:none!important}
  .ej-cart-summary-card{padding-top:12px}
}

@media(max-width:420px){
  .ej-cart-payment-actions{grid-template-columns:1fr}
  .ej-cart-payment-back,.ej-cart-payment-cancel{min-height:40px}
  .ej-cart-pix-code-line{font-size:10.5px}
  .ej-cart-copy-compact{padding-inline:12px;min-width:96px}
  .ej-cart-payment-clock strong{font-size:17px;min-width:90px}
  .ej-cart-copy-success{grid-template-columns:46px minmax(0,1fr);gap:9px}
  .ej-cart-copy-success-icon{width:42px;height:42px}
  .ej-cart-copy-success-icon svg{width:27px;height:27px}
}


/* ========================================================================
 * PIX v1.6.11 — hierarquia visual: copiar PIX em destaque + prazo discreto
 * ======================================================================*/
.ej-cart-pix-code-wrap{
  margin:5px 0 12px;
}
.ej-cart-pix-code-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(132px,42%);
  gap:8px;
  align-items:stretch;
}
.ej-cart-pix-code-line{
  width:100%;
  height:48px;
  border-color:#e4d3cc;
  border-radius:12px;
  background:#fffdfc;
  padding-inline:11px;
  color:#5e4b43;
}
.ej-cart-copy-compact{
  min-width:0;
  height:48px;
  padding:0 14px;
  border:2px solid #d94326;
  border-radius:12px;
  background:linear-gradient(135deg,#ff7047 0%,#ee4d2d 60%,#dc3d20 100%);
  color:#fff;
  font:900 13.5px/1 system-ui,-apple-system,sans-serif;
  letter-spacing:.01em;
  box-shadow:0 9px 22px rgba(238,77,45,.29), inset 0 1px rgba(255,255,255,.18);
}
.ej-cart-copy-compact:hover{
  background:linear-gradient(135deg,#ff774f 0%,#f05434 60%,#df4124 100%);
  color:#fff;
  box-shadow:0 12px 26px rgba(238,77,45,.34), inset 0 1px rgba(255,255,255,.2);
  transform:translateY(-1px);
}
.ej-cart-copy-compact:active{transform:translateY(0) scale(.985)}
.ej-cart-copy-compact.is-copied{
  border-color:#159447;
  background:linear-gradient(135deg,#28b95d,#159447);
  color:#fff;
  box-shadow:0 9px 20px rgba(21,148,71,.24);
}

/* O prazo continua claro e funcional, mas deixa de competir com a ação de copiar. */
.ej-cart-payment-deadline{
  padding:8px 2px 3px;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.ej-cart-payment-deadline-top{
  gap:6px;
  color:#806f67;
  font:650 11px/1.2 system-ui,-apple-system,sans-serif;
}
.ej-cart-payment-dot{
  width:6px;
  height:6px;
  background:#c9a79a;
  box-shadow:none;
}
.ej-cart-payment-clock{
  margin-top:5px;
  justify-content:flex-start;
  gap:7px;
}
.ej-cart-payment-clock span{
  color:#9a8a83;
  font:550 10.5px/1.2 system-ui,-apple-system,sans-serif;
}
.ej-cart-payment-clock strong{
  min-width:0;
  padding:0;
  border-radius:0;
  background:transparent;
  color:#705e56;
  font:750 12px/1.15 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  letter-spacing:.025em;
  box-shadow:none;
}
.ej-cart-payment-deadline small{
  margin-top:4px;
  color:#a69791;
  font:500 9.5px/1.3 system-ui,-apple-system,sans-serif;
}

@media(max-width:768px){
  .ej-cart-head{padding:12px 14px 11px}
  .ej-cart-head-main{gap:9px}
  .ej-cart-back-top{width:36px;height:36px;flex-basis:36px}
  .ej-cart-back-top svg{width:20px;height:20px}
  .ej-cart-head h2{font-size:18px}
  .ej-cart-pix-code-row{grid-template-columns:minmax(0,1fr) 132px}
  .ej-cart-copy-compact{height:48px;font-size:13px}
}

@media(max-width:390px){
  .ej-cart-pix-code-row{grid-template-columns:minmax(0,1fr) 118px;gap:7px}
  .ej-cart-copy-compact{padding-inline:9px;font-size:12.5px}
}


/* ========================================================================
 * v1.6.11 — somente um feedback de cópia dentro do carrinho
 * O tema e o plugin Pix possuem toasts antigos para outros fluxos. Quando o
 * drawer do carrinho está aberto, eles não devem competir com o card moderno
 * verde de confirmação do PIX.
 * ======================================================================*/
body.ej-cart-lock .ej-copy-toast,
body.ej-cart-lock .ej-toast,
body.ej-cart-lock .ej-mp-pix-toast{
  display:none!important;
  opacity:0!important;
  visibility:hidden!important;
  pointer-events:none!important;
}


/* ========================================================================
 * v1.6.26 — acabamento do carrinho no desktop
 * ====================================================================== */
@media(min-width:769px){
  .ej-cart-fab{
    right:26px;
    bottom:26px;
    width:62px;
    height:62px;
    border:1px solid #f0b9aa;
    background:linear-gradient(145deg,#fff 0%,#fff3ee 100%);
    color:#dc472a;
    box-shadow:0 16px 34px rgba(111,45,28,.16),0 0 0 1px rgba(255,255,255,.7) inset;
  }
  .ej-cart-fab:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 42px rgba(111,45,28,.22);
  }
  .ej-cart-fab:focus-visible,
  .ej-cart-close:focus-visible,
  .ej-cart-back-top:focus-visible,
  .ej-cart-remove:focus-visible,
  .ej-cart-checkout:focus-visible,
  .ej-cart-add-btn:focus-visible{
    outline:3px solid rgba(37,99,235,.72);
    outline-offset:3px;
  }
  .ej-cart-count{ min-width:25px; height:25px; font-size:12px; box-shadow:0 4px 12px rgba(238,77,45,.22); }
  .ej-cart-drawer{
    width:min(460px,94vw);
    border-left:1px solid #e4e8ee;
    box-shadow:-26px 0 70px rgba(15,23,42,.20);
  }
  .ej-cart-head{ padding:17px 20px 15px; border-bottom-color:#e7ebf0; }
  .ej-cart-head h2{ color:#172033; font-size:20px; }
  .ej-cart-items{ padding:12px 20px; }
  .ej-cart-item{ padding:14px 0; border-bottom-color:#e9edf2; }
  .ej-cart-item-title{ color:#1d2939; font-weight:750; }
  .ej-cart-summary{ padding:16px 20px 20px; border-top-color:#e6eaf0; background:#fbfcfe; }
  .ej-cart-summary-card{ border-color:#ecd8d0; border-radius:18px; background:linear-gradient(145deg,#fff 0%,#fff8f5 100%); box-shadow:0 8px 22px rgba(15,23,42,.05); }
  .ej-cart-checkout{ min-height:56px; border-radius:14px; font-size:15px; }

  .ej-cart-add-btn{
    width:calc(100% - 28px);
    min-height:46px;
    margin:0 14px 14px;
    padding:10px 12px;
    border:1px dashed #d6a18f;
    border-radius:12px;
    background:#fff7f3;
    color:#9f3b26;
    font:750 13px/1.2 system-ui,-apple-system,"Segoe UI",sans-serif;
    box-shadow:0 4px 12px rgba(238,77,45,.045);
    transition:background .16s ease,border-color .16s ease,color .16s ease,box-shadow .16s ease,transform .16s ease;
  }
  .ej-cart-add-btn:hover{
    background:#fff0ea;
    border-color:#ee4d2d;
    color:#c63f24;
    box-shadow:0 8px 18px rgba(238,77,45,.11);
    transform:translateY(-1px);
  }
  .ej-cart-add-btn svg{ width:19px; height:19px; stroke-width:2; }
}

/* ========================================================================
 * v1.6.27 — tipografia moderna + contraste de bordas no carrinho desktop
 * ====================================================================== */
@media(min-width:769px){
  .ej-cart-drawer,
  .ej-cart-drawer button,
  .ej-cart-drawer input,
  .ej-cart-fab,
  .ej-cart-add-btn{
    font-family:var(--ej-font-ui,"Manrope","Segoe UI",sans-serif) !important;
  }
  .ej-cart-head h2,
  .ej-cart-item-title,
  .ej-cart-checkout{
    font-family:var(--ej-font-display,"Plus Jakarta Sans","Manrope",sans-serif) !important;
  }
  .ej-cart-head h2{ font-weight:800; letter-spacing:-.025em; }
  .ej-cart-item-title{ font-weight:700; letter-spacing:-.012em; }
  .ej-cart-checkout{ font-weight:800; letter-spacing:-.012em; }

  .ej-cart-fab{ border-color:#d99b89; }
  .ej-cart-drawer{ border-left-color:#bcc6d2; }
  .ej-cart-head{ border-bottom-color:#c7d0db; }
  .ej-cart-item{ border-bottom-color:#cbd3dc; }
  .ej-cart-summary{ border-top-color:#c5ced9; }
  .ej-cart-summary-card{ border-color:#d6aa9d; }
  .ej-cart-add-btn{ border-style:dashed; border-color:#d99e8d; }
}

