/* ML Catálogo Pro — Frontend CSS v1.0.9 */
:root{
    --mlcatp-primary:#155e6f;
    --mlcatp-secondary:#eaf5f7;
    --mlcatp-ink:#102a43;
    --mlcatp-muted:#52606d;
    --mlcatp-line:#e5e7eb;
    --mlcatp-radius:12px
}

/* Catalog */
.mlcatp-catalog{max-width:1200px;margin:0 auto;padding:0 16px}
.mlcatp-cat-filter{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:28px}
.mlcatp-cat-btn{display:inline-flex;align-items:center;padding:8px 18px;border:2px solid var(--mlcatp-line);border-radius:999px;color:var(--mlcatp-muted);text-decoration:none;font-weight:600;font-size:14px;transition:all .18s}
.mlcatp-cat-btn:hover,.mlcatp-cat-btn.active{border-color:var(--mlcatp-primary);background:var(--mlcatp-primary);color:#fff}
.mlcatp-product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:24px}

/* Product card */
.mlcatp-product-card{border:1px solid var(--mlcatp-line);border-radius:var(--mlcatp-radius);background:#fff;overflow:hidden;transition:box-shadow .2s,transform .2s;position:relative}
.mlcatp-product-card:hover{box-shadow:0 8px 30px rgba(21,94,111,.12);transform:translateY(-2px)}
.mlcatp-product-card.is-featured{border-color:var(--mlcatp-primary)}
.mlcatp-featured-badge{position:absolute;top:12px;left:12px;background:var(--mlcatp-primary);color:#fff;padding:3px 10px;border-radius:999px;font-size:11px;font-weight:700}
.mlcatp-product-image{width:100%;aspect-ratio:4/3;overflow:hidden;background:#f8fafc}
.mlcatp-product-image img{width:100%;height:100%;object-fit:contain;object-position:center center;display:block;background:#fff}
.mlcatp-product-image-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:48px;color:#d1d5db}
.mlcatp-product-info{padding:18px}
.mlcatp-product-title{margin:0 0 8px;color:var(--mlcatp-ink);font-size:17px;font-weight:700;line-height:1.3}
.mlcatp-product-desc{margin:0 0 12px;color:var(--mlcatp-muted);font-size:14px;line-height:1.5}
.mlcatp-price{display:block;color:var(--mlcatp-primary);font-size:16px;font-weight:700;margin-bottom:14px}
.mlcatp-price--quote{color:#6b7280}
.mlcatp-btn-solicitar{display:inline-flex;align-items:center;justify-content:center;width:100%;padding:12px;border-radius:999px;background:var(--mlcatp-primary);color:#fff;font-weight:700;text-decoration:none;font-size:15px;transition:background .18s}
.mlcatp-btn-solicitar:hover{background:#114b5a;color:#fff}
.mlcatp-empty{text-align:center;padding:60px 20px;color:var(--mlcatp-muted)}
.mlcatp-empty span{font-size:48px;display:block;margin-bottom:12px}

/* Order form */
.mlcatp-order-form-wrap{max-width:720px;margin:0 auto}
.mlcatp-form-title{color:var(--mlcatp-ink);font-size:26px;margin-bottom:20px}
.mlcatp-selected-product{display:flex;align-items:center;gap:14px;padding:14px;border:1px solid var(--mlcatp-line);border-radius:var(--mlcatp-radius);margin-bottom:24px;background:var(--mlcatp-secondary)}
.mlcatp-selected-product img{width:80px;height:60px;object-fit:cover;border-radius:8px}
.mlcatp-form-section{margin-bottom:24px;padding:20px;border:1px solid var(--mlcatp-line);border-radius:var(--mlcatp-radius)}
.mlcatp-form-section h3{margin:0 0 16px;color:var(--mlcatp-ink);font-size:16px;font-weight:700;border-bottom:1px solid var(--mlcatp-line);padding-bottom:10px}
.mlcatp-form-row{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.mlcatp-form-field{display:flex;flex-direction:column;gap:6px}
.mlcatp-form-field.mlcatp-full{grid-column:1/-1}
.mlcatp-form-field label{font-weight:600;font-size:14px;color:var(--mlcatp-ink)}
.mlcatp-form-field input,.mlcatp-form-field select,.mlcatp-form-field textarea{padding:10px 14px;border:1px solid var(--mlcatp-line);border-radius:8px;font-size:14px;color:var(--mlcatp-ink)}
.mlcatp-form-field input:focus,.mlcatp-form-field select:focus,.mlcatp-form-field textarea:focus{outline:none;border-color:var(--mlcatp-primary);box-shadow:0 0 0 3px rgba(21,94,111,.1)}
.mlcatp-form-field textarea{min-height:100px;resize:vertical}
.mlcatp-form-field small{color:var(--mlcatp-muted);font-size:12px}
.mlcatp-terms-box{padding:12px;background:#f8fafc;border:1px solid var(--mlcatp-line);border-radius:8px;font-size:13px;color:var(--mlcatp-muted);max-height:120px;overflow-y:auto;margin-bottom:12px}
.mlcatp-form-actions{display:flex;justify-content:center;margin-top:24px}
.mlcatp-submit-btn{padding:14px 40px;border-radius:999px;background:var(--mlcatp-primary);color:#fff;font-weight:700;font-size:16px;border:none;cursor:pointer;transition:background .18s}
.mlcatp-submit-btn:hover{background:#114b5a}
.mlcatp-success-msg{text-align:center;padding:40px 20px;background:var(--mlcatp-secondary);border-radius:var(--mlcatp-radius)}
.mlcatp-success-msg span{font-size:48px;display:block;margin-bottom:12px}
.mlcatp-success-msg p{color:var(--mlcatp-ink);font-size:18px;font-weight:600}

/* Single product */
.mlcatp-single-product{display:grid;grid-template-columns:1fr 1fr;gap:32px;max-width:1000px;margin:0 auto}
.mlcatp-sp-main-img{width:100%;border-radius:var(--mlcatp-radius);display:block}
.mlcatp-sp-gallery{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap}
.mlcatp-sp-gallery-thumb{width:72px;height:72px;object-fit:cover;border-radius:8px;cursor:pointer;border:2px solid transparent;transition:border-color .15s}
.mlcatp-sp-gallery-thumb:hover,.mlcatp-sp-gallery-thumb.active{border-color:var(--mlcatp-primary)}
.mlcatp-sp-title{font-size:26px;font-weight:700;color:var(--mlcatp-ink);margin:0 0 12px}
.mlcatp-sp-excerpt{color:var(--mlcatp-muted);font-size:15px;line-height:1.6;margin:0 0 16px}
.mlcatp-sp-price{font-size:22px;font-weight:700;color:var(--mlcatp-primary);margin-bottom:16px}
.mlcatp-sp-price--quote{color:#6b7280}
.mlcatp-sp-meta{display:flex;flex-direction:column;gap:8px;margin-bottom:18px;padding:14px;background:#f8fafc;border-radius:10px}
.mlcatp-sp-meta-item{font-size:14px;color:var(--mlcatp-ink)}
.mlcatp-sp-content{font-size:15px;line-height:1.7;color:var(--mlcatp-ink);margin-bottom:20px}
.mlcatp-sp-actions{display:flex;gap:12px;flex-wrap:wrap}
.mlcatp-btn-wa{display:inline-flex;align-items:center;justify-content:center;padding:12px 24px;border-radius:999px;background:#25d366;color:#fff;font-weight:700;text-decoration:none;font-size:15px}
.mlcatp-btn-wa:hover{background:#128c7e;color:#fff}

@media (max-width:700px){
    .mlcatp-product-grid{grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:14px}
    .mlcatp-form-row{grid-template-columns:1fr}
    .mlcatp-single-product{grid-template-columns:1fr}
    .mlcatp-btn-solicitar{font-size:14px}
}


/* Order received */
.mlcatp-order-received{max-width:620px;margin:20px auto;padding:34px 24px;border:1px solid var(--mlcatp-line);border-radius:18px;background:#fff;text-align:center;box-shadow:0 16px 45px rgba(16,42,67,.08)}
.mlcatp-order-received__icon{width:68px;height:68px;margin:0 auto 16px;border-radius:999px;background:var(--mlcatp-primary);color:#fff;display:flex;align-items:center;justify-content:center;font-size:34px;font-weight:900}
.mlcatp-order-received h2{margin:0 0 8px;color:var(--mlcatp-ink);font-size:28px;line-height:1.1}
.mlcatp-order-received p{margin:0 0 18px;color:var(--mlcatp-muted);font-size:16px;line-height:1.5}
.mlcatp-order-number-box{display:inline-flex;flex-direction:column;gap:4px;margin:4px auto 18px;padding:14px 22px;border-radius:14px;background:var(--mlcatp-secondary);border:1px solid var(--mlcatp-line)}
.mlcatp-order-number-box span{font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:var(--mlcatp-muted);font-weight:700}
.mlcatp-order-number-box strong{font-size:24px;color:var(--mlcatp-ink)}
.mlcatp-order-summary-card{display:grid;gap:10px;margin:0 auto 20px;padding:16px;border:1px solid var(--mlcatp-line);border-radius:14px;background:#f8fafc;text-align:left;color:var(--mlcatp-ink)}
.mlcatp-order-received__actions{display:flex;justify-content:center;gap:10px;flex-wrap:wrap}
.mlcatp-btn-outline{display:inline-flex;align-items:center;justify-content:center;padding:12px 24px;border-radius:999px;border:1px solid var(--mlcatp-line);background:#fff;color:var(--mlcatp-ink);font-weight:700;text-decoration:none;font-size:15px}
.mlcatp-btn-outline:hover{border-color:var(--mlcatp-primary);color:var(--mlcatp-primary)}

/* Mobile-first refinement */
@media (max-width:780px){
    .mlcatp-catalog{padding:0 14px;overflow:hidden}
    .mlcatp-cat-filter{flex-wrap:nowrap;overflow-x:auto;gap:10px;margin-left:-14px;margin-right:-14px;padding:2px 14px 14px;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch}
    .mlcatp-cat-filter::-webkit-scrollbar{display:none}
    .mlcatp-cat-btn{flex:0 0 auto;scroll-snap-align:start;padding:10px 16px;background:#fff;font-size:13px;box-shadow:0 5px 18px rgba(16,42,67,.06)}
    .mlcatp-product-grid{display:flex;overflow-x:auto;gap:14px;margin-left:-14px;margin-right:-14px;padding:2px 14px 18px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
    .mlcatp-product-grid::-webkit-scrollbar{display:none}
    .mlcatp-product-card{flex:0 0 78%;max-width:310px;scroll-snap-align:start;border-radius:18px}
    .mlcatp-product-image{aspect-ratio:4/3;background:#f7f7f7}
    .mlcatp-product-info{padding:14px}
    .mlcatp-product-title{font-size:16px;margin-bottom:6px}
    .mlcatp-product-desc{font-size:13px;line-height:1.45;margin-bottom:10px}
    .mlcatp-price{font-size:15px;margin-bottom:12px}
    .mlcatp-btn-solicitar,.mlcatp-submit-btn,.mlcatp-btn-wa,.mlcatp-btn-outline{min-height:46px;font-size:15px}
    .mlcatp-order-form-wrap{padding:0 14px}
    .mlcatp-form-title{font-size:24px;margin-bottom:16px}
    .mlcatp-selected-product{align-items:flex-start;border-radius:16px}
    .mlcatp-form-section{padding:16px;border-radius:18px;margin-bottom:16px;background:#fff}
    .mlcatp-form-field input,.mlcatp-form-field select,.mlcatp-form-field textarea{min-height:46px;font-size:16px;border-radius:12px}
    .mlcatp-form-field textarea{min-height:110px}
    .mlcatp-form-actions{position:sticky;bottom:10px;z-index:5;margin-top:18px;padding:10px;background:rgba(255,255,255,.92);backdrop-filter:blur(12px);border:1px solid var(--mlcatp-line);border-radius:999px;box-shadow:0 12px 35px rgba(16,42,67,.18)}
    .mlcatp-submit-btn{width:100%;padding:14px 24px}
    .mlcatp-single-product{padding:0 14px;gap:18px}
    .mlcatp-sp-title{font-size:24px}
    .mlcatp-sp-main-img{border-radius:18px}
    .mlcatp-sp-actions{position:sticky;bottom:10px;z-index:5;padding:10px;background:rgba(255,255,255,.92);backdrop-filter:blur(12px);border:1px solid var(--mlcatp-line);border-radius:999px;box-shadow:0 12px 35px rgba(16,42,67,.18)}
    .mlcatp-sp-actions a{flex:1;white-space:nowrap}
    .mlcatp-order-received{margin:12px 14px;padding:28px 18px;border-radius:20px}
    .mlcatp-order-received h2{font-size:25px}
    .mlcatp-order-number-box{width:100%;box-sizing:border-box}
    .mlcatp-order-received__actions{flex-direction:column}
}

/* v1.0.6 — produto detalhado, lightbox e carrinho de orçamento */
.mlcatp-product-title a{color:inherit;text-decoration:none}.mlcatp-card-actions{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-top:14px}.mlcatp-card-actions .mlcatp-btn-solicitar,.mlcatp-card-actions .mlcatp-btn-outline{flex:1 1 120px;text-align:center}.mlcatp-btn-outline{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:1px solid #d9e2ec;background:#fff;color:#102a43;border-radius:999px;padding:11px 16px;font-weight:800;text-decoration:none;cursor:pointer}.mlcatp-btn-outline:hover{border-color:var(--mlcatp-primary);color:var(--mlcatp-primary)}.mlcatp-card-order-link{display:block;margin-top:10px;font-size:12px;color:#52606d;text-align:center;text-decoration:none}.mlcatp-card-order-link:hover{color:var(--mlcatp-primary)}.mlcatp-floating-cart{position:sticky;top:20px;z-index:20;margin:0 0 16px auto;max-width:420px;background:#102a43;color:#fff;border-radius:999px;padding:10px 12px 10px 18px;display:flex;align-items:center;justify-content:space-between;gap:12px;box-shadow:0 16px 40px rgba(16,42,67,.18)}.mlcatp-floating-cart[hidden]{display:none!important}.mlcatp-floating-cart a{background:var(--mlcatp-primary);color:#fff;text-decoration:none;border-radius:999px;padding:9px 14px;font-weight:800}.mlcatp-single-product{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);gap:38px;align-items:start;max-width:1180px;margin:0 auto;padding:24px 0}.mlcatp-sp-images{min-width:0}.mlcatp-sp-main-btn{display:block;width:100%;border:0;background:#f8fafc;border-radius:28px;padding:0;overflow:hidden;cursor:zoom-in;box-shadow:0 18px 50px rgba(16,42,67,.10)}.mlcatp-sp-main-img{display:block;width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;object-position:center center;background:#fff}.mlcatp-sp-gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(74px,1fr));gap:10px;margin-top:12px}.mlcatp-sp-gallery-thumb{border:2px solid transparent;background:#f8fafc;border-radius:14px;padding:0;overflow:hidden;cursor:pointer}.mlcatp-sp-gallery-thumb.active,.mlcatp-sp-gallery-thumb:hover{border-color:var(--mlcatp-primary)}.mlcatp-sp-gallery-thumb img{width:100%;aspect-ratio:4/3;display:block;object-fit:cover;object-position:center center;background:#fff}.mlcatp-sp-info{background:#fff;border:1px solid #e5e7eb;border-radius:28px;padding:28px;box-shadow:0 18px 50px rgba(16,42,67,.08)}.mlcatp-sp-title{font-size:clamp(30px,4vw,52px);line-height:1.02;margin:0 0 12px;color:#102a43}.mlcatp-sp-excerpt{font-size:17px;color:#52606d;margin:0 0 18px}.mlcatp-sp-price{display:inline-flex;margin:0 0 18px;background:#ecfdf5;color:#047857;border-radius:999px;padding:8px 14px;font-weight:900}.mlcatp-sp-meta{display:grid;gap:10px;margin:10px 0 20px}.mlcatp-sp-meta-item{background:#f8fafc;border:1px solid #e5e7eb;border-radius:16px;padding:12px 14px;color:#334e68}.mlcatp-sp-content{color:#334e68;line-height:1.7;margin-top:18px}.mlcatp-sp-actions{display:flex;gap:10px;flex-wrap:wrap;margin:22px 0}.mlcatp-sp-actions>*{flex:1 1 160px;text-align:center}.mlcatp-lightbox{position:fixed;inset:0;background:rgba(0,0,0,.88);z-index:999999;display:flex;align-items:center;justify-content:center;padding:28px}.mlcatp-lightbox[hidden]{display:none!important}.mlcatp-lightbox img{width:min(1100px,94vw);aspect-ratio:4/3;max-height:88vh;object-fit:contain;background:#050505;border-radius:16px}.mlcatp-lightbox button{position:absolute;top:18px;right:22px;width:44px;height:44px;border:0;border-radius:50%;font-size:30px;line-height:1;background:#fff;color:#111;cursor:pointer}.mlcatp-lightbox-open{overflow:hidden}.mlcatp-cart-box{border:1px solid #e5e7eb;border-radius:22px;background:#fff;padding:16px;margin:18px 0;box-shadow:0 14px 40px rgba(16,42,67,.06)}.mlcatp-cart-box-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}.mlcatp-cart-box h3{margin:0;color:#102a43}.mlcatp-cart-clear{border:0;background:#f1f5f9;color:#334e68;border-radius:999px;padding:7px 12px;font-weight:800;cursor:pointer}.mlcatp-cart-empty{color:#64748b;background:#f8fafc;border-radius:16px;padding:14px}.mlcatp-cart-items{display:grid;gap:10px}.mlcatp-cart-item{display:grid;grid-template-columns:72px minmax(0,1fr) auto 34px;gap:10px;align-items:center;border:1px solid #e5e7eb;border-radius:16px;padding:10px;background:#fff}.mlcatp-cart-item img,.mlcatp-cart-img-placeholder{width:72px;height:54px;border-radius:12px;object-fit:cover;background:#f1f5f9;display:flex;align-items:center;justify-content:center}.mlcatp-cart-item-main strong{display:block;color:#102a43}.mlcatp-cart-item-main a{font-size:12px;color:var(--mlcatp-primary);text-decoration:none}.mlcatp-cart-qty{display:flex;align-items:center;border:1px solid #d9e2ec;border-radius:999px;overflow:hidden}.mlcatp-cart-qty button{width:30px;height:30px;border:0;background:#f8fafc;font-weight:900;cursor:pointer}.mlcatp-cart-qty input{width:42px;height:30px;border:0;text-align:center;font-weight:800}.mlcatp-cart-remove{width:32px;height:32px;border:0;background:#fee2e2;color:#dc2626;border-radius:50%;font-size:20px;line-height:1;cursor:pointer}.mlcatp-front-toast{position:fixed;left:50%;bottom:24px;transform:translate(-50%,20px);opacity:0;background:#102a43;color:#fff;border-radius:999px;padding:12px 18px;font-weight:800;z-index:999999;box-shadow:0 16px 40px rgba(0,0,0,.2);transition:.22s ease}.mlcatp-front-toast.is-visible{opacity:1;transform:translate(-50%,0)}
@media(max-width:760px){.mlcatp-single-product{display:block;padding:8px 0}.mlcatp-sp-info{border-radius:24px;padding:20px;margin-top:16px}.mlcatp-sp-gallery{display:flex;overflow-x:auto;padding-bottom:4px}.mlcatp-sp-gallery-thumb{min-width:76px}.mlcatp-sp-actions>*{flex-basis:100%}.mlcatp-floating-cart{position:fixed;left:12px;right:12px;bottom:12px;top:auto;max-width:none;margin:0;border-radius:18px}.mlcatp-cart-item{grid-template-columns:48px 1fr;position:relative}.mlcatp-cart-qty{grid-column:2}.mlcatp-cart-remove{position:absolute;right:8px;top:8px}.mlcatp-card-actions{display:grid;grid-template-columns:1fr}.mlcatp-front-toast{width:calc(100% - 32px);text-align:center;border-radius:18px;bottom:82px}}


/* v1.0.8 — horizontal-only product media. Site/catalog is not stories. */
.mlcatp-product-image,
.mlcatp-sp-main-img,
.mlcatp-sp-gallery-thumb img{aspect-ratio:4/3!important;}
.mlcatp-product-image img,
.mlcatp-sp-main-img,
.mlcatp-sp-gallery-thumb img,
.mlcatp-selected-product img,
.mlcatp-cart-item img{object-fit:cover!important;object-position:center center!important;}
.mlcatp-product-card{display:flex;flex-direction:column;}
.mlcatp-product-image{flex:0 0 auto;min-height:0!important;max-height:none!important;}
.mlcatp-product-info{flex:1 1 auto;}
@media(max-width:780px){.mlcatp-product-image{aspect-ratio:4/3!important}.mlcatp-product-card{flex-basis:82%;max-width:340px}.mlcatp-sp-main-img{aspect-ratio:4/3!important}.mlcatp-cart-item{grid-template-columns:72px 1fr}.mlcatp-cart-qty{grid-column:2}}


/* v1.0.9 — controle global de proporção das mídias pelo painel. Default: horizontal 4:3. */
.mlcatp-product-image,
.mlcatp-sp-main-img,
.mlcatp-sp-gallery-thumb img,
.mlcatp-selected-product img,
.mlcatp-cart-item img,
.mlcatp-cart-img-placeholder{
    aspect-ratio:var(--mlcatp-media-ratio, 4 / 3)!important;
}
.mlcatp-product-image,
.mlcatp-sp-main-btn{
    height:auto!important;
    min-height:0!important;
    max-height:none!important;
    overflow:hidden!important;
}
.mlcatp-product-image img,
.mlcatp-sp-main-img,
.mlcatp-sp-gallery-thumb img,
.mlcatp-selected-product img,
.mlcatp-cart-item img{
    width:100%!important;
    height:100%!important;
    object-fit:var(--mlcatp-media-fit, cover)!important;
    object-position:var(--mlcatp-media-position, center center)!important;
}
.mlcatp-product-card{
    height:auto!important;
    min-height:0!important;
    align-self:start!important;
}
.mlcatp-lightbox img{
    aspect-ratio:var(--mlcatp-media-ratio, 4 / 3)!important;
    object-fit:contain!important;
}
@media(max-width:780px){
    .mlcatp-product-image,
    .mlcatp-sp-main-img,
    .mlcatp-sp-gallery-thumb img{
        aspect-ratio:var(--mlcatp-media-ratio, 4 / 3)!important;
    }
}


/* v1.0.10 — cards simétricos com altura consistente */
.mlcatp-product-grid{align-items:stretch!important;}
.mlcatp-product-card{display:flex!important;flex-direction:column!important;height:100%!important;min-height:100%!important;}
.mlcatp-product-card > a.mlcatp-product-image{display:block;width:100%;}
.mlcatp-product-info{display:flex!important;flex-direction:column!important;flex:1 1 auto!important;height:100%!important;}
.mlcatp-product-title{min-height:2.7em;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;}
.mlcatp-product-desc{min-height:3.2em;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;}
.mlcatp-price{margin-bottom:14px!important;}
.mlcatp-card-actions{margin-top:auto!important;display:grid!important;grid-template-columns:1fr!important;gap:10px!important;align-items:stretch!important;}
.mlcatp-card-actions .mlcatp-btn-solicitar,.mlcatp-card-actions .mlcatp-btn-outline{width:100%!important;flex:1 1 auto!important;}
.mlcatp-card-order-link{margin-top:12px!important;}
@media(max-width:780px){
  .mlcatp-product-card{flex:0 0 82%!important;max-width:340px!important;height:auto!important;min-height:0!important;}
  .mlcatp-product-title{min-height:2.7em;}
  .mlcatp-product-desc{min-height:3.1em;}
}


/* v1.0.11 — galeria de vídeos do produto */
.mlcatp-sp-video-gallery{margin-top:22px}
.mlcatp-sp-video-gallery h2{font-size:22px;line-height:1.2;margin:0 0 12px;color:var(--mlcatp-ink)}
.mlcatp-video-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:12px}
.mlcatp-video-card{border:1px solid var(--mlcatp-line);border-radius:18px;background:#fff;min-height:112px;padding:16px;display:flex;flex-direction:column;align-items:flex-start;justify-content:space-between;gap:12px;cursor:pointer;box-shadow:0 10px 30px rgba(16,42,67,.06);text-align:left;color:var(--mlcatp-ink)}
.mlcatp-video-card:hover{border-color:var(--mlcatp-primary);transform:translateY(-1px)}
.mlcatp-video-play{width:42px;height:42px;border-radius:999px;background:var(--mlcatp-primary);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-size:17px;font-weight:900;box-shadow:0 10px 24px rgba(21,94,111,.22)}
.mlcatp-video-card strong{font-size:14px;line-height:1.25}
.mlcatp-video-lightbox{position:fixed;inset:0;background:rgba(0,0,0,.9);z-index:999999;display:flex;align-items:center;justify-content:center;padding:28px}
.mlcatp-video-lightbox[hidden]{display:none!important}
.mlcatp-video-lightbox button{position:absolute;top:18px;right:22px;width:44px;height:44px;border:0;border-radius:50%;font-size:30px;line-height:1;background:#fff;color:#111;cursor:pointer}
.mlcatp-video-stage{width:min(1100px,94vw);aspect-ratio:16/9;background:#050505;border-radius:18px;overflow:hidden;box-shadow:0 24px 80px rgba(0,0,0,.45)}
.mlcatp-video-stage iframe,.mlcatp-video-stage video{width:100%;height:100%;border:0;display:block;background:#050505}
@media(max-width:760px){.mlcatp-video-grid{grid-template-columns:1fr 1fr}.mlcatp-video-card{min-height:96px;padding:12px}.mlcatp-video-stage{width:94vw}}


/* v1.0.12 — cards de produto realmente simétricos */
.mlcatp-catalog .mlcatp-product-grid{
    align-items:stretch!important;
}
.mlcatp-catalog .mlcatp-product-card{
    height:100%!important;
    min-height:560px!important;
    display:flex!important;
    flex-direction:column!important;
    overflow:hidden!important;
}
.mlcatp-catalog .mlcatp-product-image{
    flex:0 0 auto!important;
}
.mlcatp-catalog .mlcatp-product-info{
    flex:1 1 auto!important;
    display:flex!important;
    flex-direction:column!important;
    min-height:0!important;
}
.mlcatp-catalog .mlcatp-product-title{
    min-height:64px!important;
    max-height:64px!important;
    margin-bottom:10px!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
}
.mlcatp-catalog .mlcatp-product-desc,
.mlcatp-catalog .mlcatp-product-excerpt,
.mlcatp-catalog .mlcatp-product-card p{
    min-height:48px!important;
    max-height:48px!important;
    line-height:1.45!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
    margin-bottom:14px!important;
}
.mlcatp-catalog .mlcatp-price{
    min-height:24px!important;
    margin-top:0!important;
    margin-bottom:18px!important;
}
.mlcatp-catalog .mlcatp-card-actions{
    margin-top:auto!important;
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:10px!important;
}
.mlcatp-catalog .mlcatp-card-actions .mlcatp-btn-outline,
.mlcatp-catalog .mlcatp-card-actions .mlcatp-btn-solicitar{
    width:100%!important;
    min-height:48px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
}
.mlcatp-catalog .mlcatp-card-order-link{
    min-height:20px!important;
    margin-top:10px!important;
    text-align:center!important;
}
@media(max-width:780px){
    .mlcatp-catalog .mlcatp-product-card{
        min-height:520px!important;
    }
    .mlcatp-catalog .mlcatp-product-title{
        min-height:58px!important;
        max-height:58px!important;
    }
    .mlcatp-catalog .mlcatp-product-desc,
    .mlcatp-catalog .mlcatp-product-excerpt,
    .mlcatp-catalog .mlcatp-product-card p{
        min-height:44px!important;
        max-height:44px!important;
    }
}


/* v1.0.13 — zoom tipo marketplace nas imagens */
.mlcatp-product-image,
.mlcatp-sp-main-btn{
    overflow:hidden!important;
    cursor:zoom-in!important;
}
.mlcatp-product-image img,
.mlcatp-sp-main-img{
    transition:transform .24s ease, transform-origin .08s linear!important;
    will-change:transform, transform-origin!important;
}
@media (hover:hover) and (pointer:fine){
    .mlcatp-product-image:hover img,
    .mlcatp-sp-main-btn:hover .mlcatp-sp-main-img{
        transform:scale(var(--mlcatp-zoom-scale, 1.9))!important;
    }
}
.mlcatp-product-image img.is-zooming,
.mlcatp-sp-main-img.is-zooming{
    transform:scale(var(--mlcatp-zoom-scale, 1.9))!important;
}

/* v1.0.20 — destaque visual da categoria filtrada */
.mlcatp-category-hero{display:grid;grid-template-columns:220px 1fr;gap:22px;align-items:center;margin:0 0 28px;padding:20px;border:1px solid var(--mlcatp-line);border-radius:24px;background:#fff;box-shadow:0 16px 45px rgba(16,24,40,.06)}
.mlcatp-category-hero img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:18px}
.mlcatp-category-hero span{display:inline-block;margin-bottom:6px;color:var(--mlcatp-primary);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.mlcatp-category-hero h2{margin:0 0 8px;color:var(--mlcatp-ink);font-size:clamp(26px,4vw,42px);line-height:1.05}
.mlcatp-category-hero p{margin:0;color:var(--mlcatp-muted);font-size:16px;line-height:1.55}
@media(max-width:760px){.mlcatp-category-hero{grid-template-columns:1fr}.mlcatp-category-hero img{max-height:220px}}


/* v1.0.23 — qualidade real das imagens dos cards */
.mlcatp-product-image{
    aspect-ratio:4/3!important;
    background:#fff!important;
}
.mlcatp-product-card .mlcatp-product-image img{
    width:100%!important;
    height:100%!important;
    object-fit:contain!important;
    object-position:center center!important;
    image-rendering:auto!important;
    transform:none;
}
.mlcatp-product-card:hover .mlcatp-product-image img{
    transform:none;
}
.mlcatp-product-card .mlcatp-product-image{
    display:flex;
    align-items:center;
    justify-content:center;
}
.mlcatp-selected-product img{
    object-fit:contain!important;
    background:#fff!important;
}
.mlcatp-sp-gallery-thumb img{
    object-fit:contain!important;
    background:#fff!important;
}


/* v1.0.24 — página de apresentação do catálogo */
.mlcatp-home-section{
    margin:0 0 42px;
}
.mlcatp-section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:18px;
    margin:0 0 18px;
}
.mlcatp-section-kicker{
    display:inline-block;
    margin:0 0 6px;
    color:var(--mlcatp-primary);
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.mlcatp-section-head h2{
    margin:0;
    color:var(--mlcatp-ink);
    font-size:clamp(26px,3vw,38px);
    line-height:1.05;
    letter-spacing:-.035em;
}
.mlcatp-featured-carousel{
    display:flex;
    gap:22px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    padding:4px 2px 18px;
    margin:0 -2px;
    scrollbar-width:thin;
}
.mlcatp-featured-slide{
    flex:0 0 min(290px,82vw);
    scroll-snap-align:start;
}
.mlcatp-featured-slide .mlcatp-product-card{
    height:100%;
}
.mlcatp-carousel-controls{
    display:flex;
    gap:8px;
    flex:0 0 auto;
}
.mlcatp-carousel-controls button{
    width:42px;
    height:42px;
    border-radius:999px;
    border:1px solid var(--mlcatp-line);
    background:#fff;
    color:var(--mlcatp-ink);
    font-size:26px;
    line-height:1;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 8px 22px rgba(16,24,40,.08);
}
.mlcatp-carousel-controls button:hover{
    border-color:var(--mlcatp-primary);
    color:#fff;
    background:var(--mlcatp-primary);
}
.mlcatp-category-card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(230px,1fr));
    gap:18px;
}
.mlcatp-category-card-link{
    text-decoration:none!important;
    color:inherit;
}
.mlcatp-category-card-block{
    height:100%;
    overflow:hidden;
    border:1px solid var(--mlcatp-line);
    border-radius:18px;
    background:#fff;
    box-shadow:0 12px 32px rgba(16,24,40,.06);
    transition:transform .18s, box-shadow .18s, border-color .18s;
}
.mlcatp-category-card-link:hover .mlcatp-category-card-block{
    transform:translateY(-3px);
    border-color:var(--mlcatp-primary);
    box-shadow:0 18px 42px rgba(21,94,111,.14);
}
.mlcatp-category-card-image{
    width:100%;
    aspect-ratio:4/3;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}
.mlcatp-category-card-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
}
.mlcatp-category-card-image span{
    font-size:42px;
    color:#cbd5e1;
}
.mlcatp-category-card-content{
    padding:16px 16px 18px;
}
.mlcatp-category-card-content h3{
    margin:0 0 6px;
    color:var(--mlcatp-ink);
    font-size:20px;
    line-height:1.15;
}
.mlcatp-category-card-content p{
    margin:0 0 10px;
    color:var(--mlcatp-muted);
    font-size:13px;
    line-height:1.45;
}
.mlcatp-category-card-content small{
    color:var(--mlcatp-primary);
    font-weight:800;
}
@media(max-width:760px){
    .mlcatp-section-head{
        align-items:flex-start;
        flex-direction:column;
    }
    .mlcatp-carousel-controls{
        display:none;
    }
    .mlcatp-category-card-grid{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }
    .mlcatp-category-card-content h3{
        font-size:16px;
    }
    .mlcatp-category-card-content p{
        display:none;
    }
}
@media(max-width:420px){
    .mlcatp-category-card-grid{
        grid-template-columns:1fr;
    }
}


/* v1.0.25 — aviso de marca registrada/pirataria */
.mlcatp-trademark-notice{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:0 0 24px;
    padding:14px 16px;
    border:1px solid var(--mlcatp-line);
    border-left:5px solid #a6ff00;
    border-radius:16px;
    background:#fff;
    color:var(--mlcatp-ink);
    box-shadow:0 10px 28px rgba(16,24,40,.05);
}
.mlcatp-trademark-notice strong{
    flex:0 0 auto;
    font-size:13px;
    line-height:1.35;
    font-weight:900;
}
.mlcatp-trademark-notice span{
    font-size:13px;
    line-height:1.45;
    color:var(--mlcatp-muted);
}
@media(max-width:760px){
    .mlcatp-trademark-notice{
        flex-direction:column;
        gap:4px;
    }
}


/* v1.0.26 — catálogo sem seção duplicada */
.mlcatp-featured-carousel-section + .mlcatp-home-categories{
    margin-top:34px;
}


/* v1.0.27 — página individual premium do produto */
.mlcatp-single-product--premium{
    display:grid!important;
    grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr)!important;
    gap:42px!important;
    max-width:1180px!important;
    margin:24px auto 56px!important;
    align-items:start!important;
}
.mlcatp-sp-media{
    min-width:0;
}
.mlcatp-sp-zoom-stage{
    position:relative;
    width:100%;
    aspect-ratio:4/3;
    overflow:hidden;
    border:1px solid var(--mlcatp-line);
    border-radius:22px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 18px 46px rgba(16,24,40,.08);
    cursor:zoom-in;
}
.mlcatp-sp-zoom-stage img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center center;
    display:block;
    transition:transform .16s ease;
    will-change:transform;
}
.mlcatp-sp-zoom-stage.is-zooming img{
    transition:none;
}
.mlcatp-sp-zoom-hint{
    position:absolute;
    left:16px;
    bottom:16px;
    padding:8px 11px;
    border-radius:999px;
    background:rgba(5,5,5,.78);
    color:#fff;
    font-size:12px;
    font-weight:800;
    pointer-events:none;
}
.mlcatp-sp-gallery{
    display:flex!important;
    gap:10px!important;
    margin-top:14px!important;
    flex-wrap:wrap!important;
}
.mlcatp-sp-gallery-thumb{
    width:82px!important;
    height:82px!important;
    padding:0!important;
    border:2px solid transparent!important;
    border-radius:12px!important;
    overflow:hidden!important;
    background:#fff!important;
    cursor:pointer!important;
    box-shadow:0 8px 20px rgba(16,24,40,.08);
}
.mlcatp-sp-gallery-thumb img{
    width:100%!important;
    height:100%!important;
    object-fit:contain!important;
    display:block!important;
}
.mlcatp-sp-gallery-thumb:hover,
.mlcatp-sp-gallery-thumb.active{
    border-color:var(--mlcatp-primary)!important;
}
.mlcatp-sp-info{
    position:sticky;
    top:96px;
    border:1px solid var(--mlcatp-line);
    border-radius:22px;
    background:#fff;
    padding:28px;
    box-shadow:0 18px 46px rgba(16,24,40,.08);
}
.mlcatp-sp-kicker{
    display:inline-flex;
    margin:0 0 10px;
    color:var(--mlcatp-primary);
    font-size:12px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.mlcatp-sp-title{
    font-size:clamp(32px,3.8vw,52px)!important;
    line-height:1!important;
    letter-spacing:-.045em;
    margin:0 0 12px!important;
}
.mlcatp-sp-excerpt{
    font-size:16px!important;
    line-height:1.55!important;
    color:var(--mlcatp-muted)!important;
}
.mlcatp-sp-price{
    display:inline-flex!important;
    margin:8px 0 18px!important;
    padding:10px 14px!important;
    border-radius:999px!important;
    background:var(--mlcatp-secondary)!important;
    color:var(--mlcatp-primary)!important;
    font-size:18px!important;
    font-weight:900!important;
}
.mlcatp-sp-meta{
    background:#f8fafc!important;
    border:1px solid var(--mlcatp-line)!important;
    border-radius:16px!important;
    padding:14px!important;
}
.mlcatp-sp-price-tiers{
    margin:18px 0;
    padding:16px;
    border:1px solid var(--mlcatp-line);
    border-radius:16px;
    background:#fff;
}
.mlcatp-sp-price-tiers h2{
    margin:0 0 12px;
    font-size:18px;
    line-height:1.2;
    color:var(--mlcatp-ink);
}
.mlcatp-sp-price-tier-list{
    display:grid;
    gap:8px;
}
.mlcatp-sp-price-tier{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    padding:10px 12px;
    border-radius:12px;
    background:#f8fafc;
}
.mlcatp-sp-price-tier span{
    color:var(--mlcatp-muted);
    font-weight:800;
}
.mlcatp-sp-price-tier strong{
    color:var(--mlcatp-ink);
    font-weight:900;
}
.mlcatp-sp-actions{
    display:grid!important;
    grid-template-columns:1fr 1fr;
    gap:12px!important;
    margin-top:18px;
}
.mlcatp-sp-actions .mlcatp-btn-solicitar,
.mlcatp-sp-actions .mlcatp-btn-outline{
    min-height:48px;
}
.mlcatp-sp-trust{
    display:grid;
    gap:6px;
    margin-top:16px;
    color:var(--mlcatp-muted);
    font-size:12px;
    font-weight:800;
}
.mlcatp-sp-trust span::before{
    content:"✓ ";
    color:var(--mlcatp-primary);
}
.mlcatp-sp-video-gallery{
    margin-top:26px;
    padding:18px;
    border:1px solid var(--mlcatp-line);
    border-radius:18px;
    background:#fff;
    box-shadow:0 12px 34px rgba(16,24,40,.06);
}
.mlcatp-sp-subhead span{
    display:block;
    color:var(--mlcatp-primary);
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
}
.mlcatp-sp-subhead h2{
    margin:4px 0 14px;
    font-size:22px;
    color:var(--mlcatp-ink);
}
.mlcatp-video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:12px;
}
.mlcatp-video-card{
    min-height:98px;
    border:1px solid var(--mlcatp-line);
    border-radius:16px;
    background:#050505;
    color:#fff;
    cursor:pointer;
    display:grid;
    place-items:center;
    gap:6px;
    padding:14px;
    text-align:center;
}
.mlcatp-video-play{
    display:grid;
    place-items:center;
    width:38px;
    height:38px;
    border-radius:999px;
    background:var(--mlcatp-primary);
    color:#050505;
    font-weight:900;
}
.mlcatp-video-lightbox{
    position:fixed;
    inset:0;
    z-index:99999;
    background:rgba(0,0,0,.82);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:28px;
}
.mlcatp-video-lightbox[hidden]{
    display:none!important;
}
.mlcatp-video-lightbox [data-mlcatp-video-close]{
    position:absolute;
    top:20px;
    right:20px;
    width:44px;
    height:44px;
    border:0;
    border-radius:999px;
    background:#fff;
    color:#050505;
    font-size:28px;
    cursor:pointer;
}
.mlcatp-video-stage{
    width:min(1080px,96vw);
    aspect-ratio:16/9;
    background:#000;
    border-radius:18px;
    overflow:hidden;
}
.mlcatp-video-stage iframe,
.mlcatp-video-stage video{
    width:100%;
    height:100%;
    border:0;
    display:block;
}
.mlcatp-single-product--premium .mlcatp-lightbox{
    display:none!important;
}
@media(max-width:900px){
    .mlcatp-single-product--premium{
        grid-template-columns:1fr!important;
        gap:24px!important;
    }
    .mlcatp-sp-info{
        position:static;
    }
}
@media(max-width:620px){
    .mlcatp-sp-info{
        padding:20px;
    }
    .mlcatp-sp-actions{
        grid-template-columns:1fr;
    }
    .mlcatp-sp-zoom-hint{
        display:none;
    }
    .mlcatp-sp-gallery-thumb{
        width:68px!important;
        height:68px!important;
    }
}


/* v1.0.28 — aviso antes do título da seção */
.mlcatp-featured-carousel-section > .mlcatp-trademark-notice{
    margin:0 0 18px!important;
}


/* v1.0.30 — quantidade mínima no carrinho */
.mlcatp-cart-min{
    display:block;
    margin-top:3px;
    color:#155e6f;
    font-size:11px;
    font-weight:800;
}


/* v1.0.31 — Cloudflare Turnstile */
.mlcatp-turnstile-wrap{
    margin:18px 0 8px;
    padding:14px;
    border:1px solid var(--mlcatp-line);
    border-radius:16px;
    background:#fff;
}
.mlcatp-turnstile-wrap label{
    display:block;
    margin:0 0 10px;
    color:var(--mlcatp-ink);
    font-size:13px;
    font-weight:900;
}





/* v1.0.35 — Turnstile somente no formulário Solicitar Pedido */
.mlcatp-order-form .mlcatp-turnstile-wrap,
.mlcatp-form .mlcatp-turnstile-wrap{
    margin:20px 0 16px;
}


/* v1.0.36 — Área do cliente */
.mlcatp-customer-area{
    max-width:920px;
    margin:24px auto;
    padding:24px;
    border:1px solid var(--mlcatp-line);
    border-radius:18px;
    background:#fff;
}
.mlcatp-customer-area h2{
    margin:0 0 16px;
    color:var(--mlcatp-ink);
}
.mlcatp-customer-orders{
    display:grid;
    gap:12px;
}
.mlcatp-customer-order-card{
    display:grid;
    grid-template-columns:1fr auto auto;
    align-items:center;
    gap:12px;
    padding:14px;
    border:1px solid var(--mlcatp-line);
    border-radius:14px;
    background:#f8fafc;
}
.mlcatp-customer-order-card strong,
.mlcatp-customer-order-card span{
    display:block;
}
.mlcatp-customer-order-card span{
    color:var(--mlcatp-muted);
    margin-top:3px;
}
@media(max-width:680px){
    .mlcatp-customer-order-card{
        grid-template-columns:1fr;
        align-items:start;
    }
}


/* v1.0.41 — preços comerciais + lightbox de galeria */
.mlcatp-sp-commercial-prices{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(130px,1fr));
    gap:10px;
    margin:0 0 18px;
}
.mlcatp-sp-commercial-prices div{
    border:1px solid var(--mlcatp-line);
    border-radius:14px;
    background:#f8fafc;
    padding:10px 12px;
}
.mlcatp-sp-commercial-prices span,
.mlcatp-sp-commercial-prices small{
    display:block;
    color:var(--mlcatp-muted);
    font-size:11px;
    font-weight:800;
}
.mlcatp-sp-commercial-prices strong{
    display:block;
    margin-top:3px;
    color:var(--mlcatp-ink);
    font-size:16px;
    font-weight:900;
}
.mlcatp-sp-open-gallery{
    position:absolute;
    right:16px;
    bottom:16px;
    padding:8px 12px;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,.92);
    color:#050505;
    font-size:12px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
}
.mlcatp-image-lightbox{
    position:fixed;
    inset:0;
    z-index:999999;
    background:rgba(0,0,0,.88);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:26px;
}
.mlcatp-image-lightbox[hidden]{display:none!important}
.mlcatp-image-lightbox img{
    max-width:min(1100px,92vw);
    max-height:86vh;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:18px;
    background:#fff;
}
.mlcatp-image-lightbox-close{
    position:absolute;
    top:18px;
    right:18px;
    width:44px;
    height:44px;
    border:0;
    border-radius:999px;
    background:#fff;
    color:#050505;
    font-size:28px;
    cursor:pointer;
}
.mlcatp-image-lightbox-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:64px;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,.86);
    color:#050505;
    font-size:42px;
    line-height:1;
    cursor:pointer;
}
.mlcatp-image-lightbox-arrow--prev{left:18px}
.mlcatp-image-lightbox-arrow--next{right:18px}
@media(max-width:700px){
    .mlcatp-image-lightbox{padding:14px}
    .mlcatp-image-lightbox img{max-width:96vw;max-height:78vh}
    .mlcatp-image-lightbox-arrow{width:38px;height:54px;font-size:34px}
}

.mlcatp-sp-price-tiers--quote p{margin:0;color:#155e6f;font-weight:800}

/* Cliente cadastrado / aprovação */
.mlcatp-customer-access{max-width:980px;margin:24px auto;padding:0 16px}.mlcatp-customer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}.mlcatp-customer-form,.mlcatp-customer-panel{background:#fff;border:1px solid rgba(15,23,42,.10);border-radius:18px;padding:22px;box-shadow:0 14px 35px rgba(15,23,42,.08)}.mlcatp-customer-form h2,.mlcatp-customer-panel h2{margin:0 0 14px}.mlcatp-customer-form label{display:block;font-weight:700;margin:12px 0 6px}.mlcatp-customer-form input{width:100%;height:46px;border:1px solid #d7dee8;border-radius:12px;padding:0 14px;background:#fff}.mlcatp-customer-message{margin:0 0 16px;padding:13px 16px;border-radius:14px;background:#eef9f4;color:#075b42;font-weight:700;border:1px solid rgba(7,91,66,.16)}

/* v1.1.24 — product gallery thumbs and main image are intentionally interactive */
.mlcatp-sp-gallery-thumb,.mlcatp-sp-open-gallery,.mlcatp-sp-zoom-stage{cursor:pointer;}
.mlcatp-sp-gallery-thumb.active{box-shadow:0 0 0 3px rgba(21,94,111,.24);}

/* v1.1.26 - Área do cliente unificada */
.mlcatp-customer-panel--dashboard{display:block}.mlcatp-customer-panel-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:20px}.mlcatp-customer-panel-head h2{margin:0 0 6px}.mlcatp-customer-dashboard-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:18px}.mlcatp-customer-mini-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.mlcatp-customer-orders{margin-top:22px;background:#fff;border:1px solid rgba(15,23,42,.10);border-radius:18px;padding:18px;box-shadow:0 14px 35px rgba(15,23,42,.06)}.mlcatp-customer-orders h3{margin:0 0 14px}.mlcatp-customer-orders-table{width:100%;border-collapse:collapse}.mlcatp-customer-orders-table th,.mlcatp-customer-orders-table td{padding:12px;border-bottom:1px solid rgba(15,23,42,.08);text-align:left;vertical-align:middle}.mlcatp-customer-orders-table th{font-size:12px;text-transform:uppercase;letter-spacing:.04em;color:#64748b}.mlcatp-customer-orders-table tr:last-child td{border-bottom:0}@media(max-width:760px){.mlcatp-customer-panel-head{display:block}.mlcatp-customer-dashboard-grid{grid-template-columns:1fr}.mlcatp-customer-mini-grid{grid-template-columns:1fr}.mlcatp-customer-orders{overflow-x:auto}.mlcatp-customer-orders-table{min-width:620px}}
