.owhs-slider{position:relative;width:100%;height:500px;overflow:hidden;}
.owhs-track{position:relative;width:100%;height:100%;}
.owhs-slide{
    position:absolute;inset:0;
    background-size:cover;background-position:center;
    opacity:0;transition:opacity var(--owhs-trans-ms, 600ms) ease;
    pointer-events:none;
}
.owhs-slide.active{opacity:1;pointer-events:auto;}
.owhs-overlay{position:absolute;inset:0;z-index:1;}
.owhs-inner{
    position:relative;z-index:2;height:100%;
    display:flex;align-items:center;justify-content:space-between;
    padding:40px 60px;gap:30px;
}
.owhs-content{flex:1;min-width:0;}
.owhs-badge{
    display:inline-flex;align-items:center;gap:6px;
    font-size:12px;font-weight:600;letter-spacing:.04em;
    padding:5px 14px;border-radius:20px;
    background:rgba(255,255,255,.2);color:#fff;
    margin-bottom:16px;
}
.owhs-title{font-size:clamp(26px,4vw,52px);font-weight:700;line-height:1.2;color:#fff;margin:0 0 16px;}
.owhs-desc{font-size:15px;line-height:1.6;color:rgba(255,255,255,.85);margin:0 0 28px;}
.owhs-buttons{display:flex;flex-wrap:wrap;gap:12px;}
.owhs-btn{
    display:inline-flex;align-items:center;justify-content:center;
    padding:12px 24px;border-radius:6px;font-size:14px;font-weight:600;
    text-decoration:none;border:2px solid transparent;
    transition:opacity .2s,transform .2s;
}
.owhs-btn:hover{opacity:.85;transform:translateY(-1px);}
.owhs-btn-primary{background:#c8972a;color:#fff;}
.owhs-btn-secondary{background:transparent;color:#fff;border-color:#fff;}
.owhs-products{
    display:flex;flex-direction:column;gap:0;
    background:rgba(255,255,255,.95);border-radius:12px;
    padding:6px 8px;min-width:260px;max-width:300px;flex-shrink:0;
}
.owhs-product + .owhs-product{border-top:1px solid rgba(0,0,0,.07);}
.owhs-product{
    display:flex !important;align-items:flex-start !important;gap:12px;
    text-decoration:none;padding:8px 10px;
    border-radius:8px;transition:background .2s;
}
.owhs-product:hover{background:rgba(0,0,0,.04);}
.owhs-product-img-wrap{position:relative;flex-shrink:0;margin-top:2px;}
.owhs-product-img{width:56px;height:56px;object-fit:cover;border-radius:6px;display:block;}
.owhs-product-info{display:flex;flex-direction:column;gap:4px;min-width:0;padding-top:2px;}
.owhs-product-name{
    font-size:13px;font-weight:500;color:#333;line-height:1.35;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.owhs-product-prices{display:flex;align-items:center;gap:5px;flex-wrap:wrap;margin-top:2px;}
.owhs-product-price{font-size:14px;font-weight:700;color:#c8972a;}
.owhs-product-price--sale{color:#e8003d;}
.owhs-product-price-old{font-size:12px;font-weight:400;color:#999;text-decoration:line-through;}
.owhs-pbadge{
    position:absolute;top:2px;left:2px;
    font-size:10px;font-weight:700;line-height:1;
    padding:3px 5px;border-radius:4px;
    pointer-events:none;
}
.owhs-pbadge--sale{background:#e8003d;color:#fff;top:2px;left:2px;}
.owhs-pbadge--new{background:#222;color:#fff;top:2px;left:2px;}
.owhs-pbadge--sale ~ .owhs-pbadge--new{top:22px;left:2px;}
.owhs-products--cards{background:transparent;padding:0;border-radius:0;gap:8px;}
.owhs-products--cards .owhs-product{background:rgba(255,255,255,.95);border-radius:10px;padding:10px 12px;}
.owhs-products--cards .owhs-product+.owhs-product{border-top:none;}
.owhs-product--img-top,.owhs-product--img-bottom{flex-direction:column;align-items:flex-start !important;}
.owhs-product--img-top .owhs-product-img,.owhs-product--img-bottom .owhs-product-img{width:100%;height:80px;object-fit:cover;border-radius:6px;}
.owhs-product--img-right{flex-direction:row-reverse;}
.owhs-dots{
    position:absolute;bottom:18px;left:50%;transform:translateX(-50%);
    display:flex;gap:8px;z-index:10;
}
.owhs-dot{
    width:8px;height:8px;border-radius:50%;
    background:rgba(255,255,255,.5);border:none;cursor:pointer;padding:0;
    transition:background .3s,transform .3s;
}
.owhs-dot.active{background:#fff;transform:scale(1.3);}
.owhs-arrow{
    position:absolute;top:50%;transform:translateY(-50%);
    background:rgba(255,255,255,.2);color:#fff;
    border:none;border-radius:50%;width:44px;height:44px;
    font-size:26px;cursor:pointer;z-index:10;
    display:flex;align-items:center;justify-content:center;
    transition:background .2s;
}
.owhs-arrow:hover{background:rgba(255,255,255,.4);}
.owhs-arrow-prev{left:16px;}
.owhs-arrow-next{right:16px;}
@media(max-width:767px){
    .owhs-inner{
        flex-direction:column;align-items:flex-start !important;
        padding:24px 20px;justify-content:center;gap:20px;
        overflow-y:auto;
    }
    .owhs-content{width:100%;}
    .owhs-title{font-size:clamp(20px,6vw,32px);}
    .owhs-desc{font-size:14px;margin-bottom:20px;}
    .owhs-badge{font-size:11px;padding:4px 10px;margin-bottom:12px;}
    .owhs-buttons{flex-direction:column;gap:8px;width:100%;}
    .owhs-btn{width:100%;justify-content:center;padding:11px 20px;}
    .owhs-products{min-width:auto;max-width:100%;width:100%;}
}
