
*,
*::before,
*::after{box-sizing:border-box}
html,body{margin:0;padding:0;min-height:100%}
body.cxt-boutique-page{
    --bg:#f6f3ef;
    --card:#fff;
    --text:#211e1c;
    --muted:#766f69;
    --line:#e5ddd6;
    --accent:#7867a8;
    --accent2:#665590;
    --green:#2f7948;
    --danger:#9e3939;
    background:var(--bg);
    color:var(--text);
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    -webkit-font-smoothing:antialiased;
}
a{color:inherit}
.cxt-store-shell,
.cxt-cart-shell{
    width:min(1280px,calc(100% - 32px));
    margin:0 auto;
    padding:44px 0 70px;
}
.cxt-store-head,
.cxt-cart-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:28px;
}
.cxt-store-kicker{
    display:block;
    margin-bottom:7px;
    color:var(--accent);
    font-size:11px;
    font-weight:900;
    letter-spacing:.14em;
}
.cxt-store-head h1,
.cxt-cart-head h1{
    margin:0;
    font-size:clamp(38px,6vw,68px);
    line-height:.95;
    letter-spacing:-.055em;
}
.cxt-store-head p{
    max-width:650px;
    margin:12px 0 0;
    color:var(--muted);
    font-size:16px;
}
.cxt-cart-link,
.cxt-main-btn,
.cxt-secondary-btn,
.cxt-product-actions a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 16px;
    border-radius:10px;
    text-decoration:none;
    font-weight:850;
    cursor:pointer;
}
.cxt-cart-link,
.cxt-main-btn,
.cxt-product-actions .primary{
    border:0;
    background:var(--accent);
    color:#fff;
}
.cxt-cart-link:hover,
.cxt-main-btn:hover,
.cxt-product-actions .primary:hover{background:var(--accent2)}
.cxt-secondary-btn,
.cxt-product-actions .secondary{
    border:1px solid var(--line);
    background:#fff;
    color:var(--text);
}
.cxt-product-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:17px;
}
.cxt-product-card{
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:17px;
    background:#fff;
    box-shadow:0 10px 35px rgba(44,34,27,.045);
}
.cxt-product-card>img{
    width:100%;
    aspect-ratio:16/11;
    object-fit:cover;
    display:block;
}
.cxt-product-body{padding:18px}
.cxt-product-body h2{
    margin:8px 0 10px;
    font-size:20px;
}
.cxt-product-badge{
    display:inline-flex;
    padding:5px 8px;
    border-radius:999px;
    background:#f0ebf7;
    color:#5e4b84;
    font-size:10px;
    font-weight:900;
}
.cxt-product-badge.vip{
    background:#ebf6ee;
    color:#2e7644;
}
.cxt-product-price{
    display:block;
    margin-bottom:16px;
    font-size:22px;
}
.cxt-product-actions{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}
.cxt-store-empty{
    padding:42px;
    border:1px dashed #d5ccc4;
    border-radius:15px;
    background:#fff;
    text-align:center;
    color:var(--muted);
}
.cxt-store-empty strong{display:block;color:var(--text);font-size:19px;margin-bottom:9px}
.cxt-store-empty a{color:var(--accent);font-weight:800;text-decoration:none}
.cxt-cart-head{
    align-items:center;
}
.cxt-cart-head>a{
    color:var(--muted);
    text-decoration:none;
    font-weight:700;
}
.cxt-store-notice,
.cxt-vip-banner{
    margin-bottom:16px;
    padding:14px 16px;
    border-radius:11px;
}
.cxt-store-notice.success{
    border:1px solid #c9e5d0;
    background:#edf8f0;
    color:#2e7042;
}
.cxt-store-notice.error{
    border:1px solid #efc6c6;
    background:#fff0f0;
    color:#893131;
}
.cxt-store-notice.neutral{
    border:1px solid var(--line);
    background:#fff;
    color:var(--muted);
}
.cxt-store-notice strong{display:block;margin-bottom:4px}
.cxt-vip-banner{
    display:flex;
    justify-content:space-between;
    gap:15px;
    border:1px solid #d9caef;
    background:#f3eef9;
    color:#554176;
}
.cxt-vip-banner span{color:#75678c}
.cxt-cart-layout{
    display:grid;
    grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);
    gap:18px;
    align-items:start;
}
.cxt-cart-products,
.cxt-cart-summary{
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
    box-shadow:0 8px 30px rgba(45,36,29,.035);
}
.cxt-cart-products{padding:18px}
.cxt-cart-item{
    display:grid;
    grid-template-columns:90px minmax(0,1fr) auto;
    gap:15px;
    align-items:center;
    padding:15px 0;
    border-bottom:1px solid var(--line);
}
.cxt-cart-item:first-child{padding-top:0}
.cxt-cart-item img{
    width:90px;
    height:75px;
    border-radius:10px;
    object-fit:cover;
}
.cxt-cart-item-main>strong{display:block;font-size:16px;margin-bottom:6px}
.cxt-cart-price{
    display:flex;
    gap:8px;
    align-items:center;
    margin-top:9px;
}
.cxt-cart-price del{color:var(--muted);font-size:12px}
.cxt-cart-controls{
    display:grid;
    gap:8px;
    justify-items:end;
}
.cxt-cart-controls label{
    display:flex;
    align-items:center;
    gap:6px;
    color:var(--muted);
    font-size:12px;
}
.cxt-cart-controls input{
    width:65px;
    min-height:36px;
    border:1px solid #d1c9c2;
    border-radius:8px;
}
.cxt-cart-controls a{
    color:var(--danger);
    text-decoration:none;
    font-size:12px;
    font-weight:750;
}
.cxt-secondary-btn{margin-top:16px}
.cxt-cart-summary{
    position:sticky;
    top:20px;
    padding:22px;
}
.cxt-cart-summary h2{margin:0 0 17px}
.cxt-summary-row{
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding:9px 0;
    color:var(--muted);
}
.cxt-summary-row strong{color:var(--text)}
.cxt-summary-row.discount,
.cxt-summary-row.discount strong{color:var(--green)}
.cxt-summary-total{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin:8px 0 20px;
    padding-top:14px;
    border-top:1px solid var(--line);
    font-size:20px;
}
.cxt-checkout-form{
    display:grid;
    gap:12px;
}
.cxt-checkout-form label{
    display:grid;
    gap:6px;
}
.cxt-checkout-form label>span{
    font-size:12px;
    font-weight:800;
}
.cxt-checkout-form input{
    width:100%;
    min-height:45px;
    padding:9px 11px;
    border:1px solid #d1c9c2;
    border-radius:9px;
}
.cxt-checkout-form small,
.cxt-payment-note{
    color:var(--muted);
    font-size:11px;
    line-height:1.45;
}
.cxt-payment-note{margin:12px 0 0}
@media(max-width:950px){
    .cxt-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .cxt-cart-layout{grid-template-columns:1fr}
    .cxt-cart-summary{position:static}
}
@media(max-width:650px){
    .cxt-store-shell,.cxt-cart-shell{width:min(100% - 20px,1280px);padding-top:24px}
    .cxt-store-head,.cxt-cart-head{display:block}
    .cxt-store-head h1,.cxt-cart-head h1{font-size:44px}
    .cxt-cart-link{margin-top:16px}
    .cxt-product-grid{grid-template-columns:1fr}
    .cxt-cart-item{grid-template-columns:68px minmax(0,1fr)}
    .cxt-cart-item img{width:68px;height:62px}
    .cxt-cart-controls{grid-column:1/-1;display:flex;justify-content:space-between;width:100%}
    .cxt-vip-banner{display:block}
    .cxt-vip-banner span{display:block;margin-top:4px}
}
