/* ========================================================================
   HSO SOLUTIONS — PRODUCT SECTIONS BUILDER CSS
   Dedicated namespace. Product designs intentionally use different
   structures instead of a single generic product-card treatment.
   ======================================================================== */
:root{
    --white:#fff;
    --success:#22c55e;

    /* Universal Decorative */
    --bg-decorative:rgba(var(--primary-rgb),.07);
    --bg-decorative-light:rgba(var(--primary-rgb),.05);

    /* Universal Overlay */
    --overlay:rgba(0,0,0,.58);
    --overlay-light:rgba(0,0,0,.45);
    --image-overlay:rgba(255,255,255,.82);
    --image-overlay-soft:rgba(255,255,255,.25);
    --image-bottom-overlay:rgba(27,27,27,.08);

    /* Universal Shadows */
    --shadow:0 8px 28px rgba(var(--primary-rgb),.08);
    --shadow-sm:0 4px 14px rgba(var(--primary-rgb),.06);
    --shadow-lg:0 18px 42px rgba(var(--primary-rgb),.15);

    /* Universal Radius */
    --radius:10px;
    --radius-md:12px;
    --radius-lg:16px;
    --radius-xl:20px;

    /* Universal Transition */
    --transition-fast:.2s ease;
    --transition:.35s ease;
    --transition-slow:.5s ease;

    /* Universal Effects */
    --hover-lift:-6px;
    --hover-scale:1.08;

    --max-width:1200px;

    --primary-color:#1f7a5b;
    --primary-hover:#17684c;
    --primary-rgb:31,122,91;

    --text-dark:#1b1b1b;
    --text-light:#636363;
    --text-muted:#8f8f8f;

    --background:#f7faf8;
    --extra-light:#eef6f2;
    --border-color:#dce7e1;

    --bg-gradient-start:#eef6f2;
    --bg-gradient-middle:#f7faf8;
    --bg-gradient-end:#e8f3ee;
    --bg-border:#dce7e1;

    --bg-shadow:0 14px 45px rgba(var(--primary-rgb),.10);

    /* Product Builder Layout */
    --ps-nav:88px;
    --ps-side:340px;
}

*{box-sizing:border-box}
html,body{
    margin:0;
    width:100%;
    min-height:100%;
    font-family:Inter,sans-serif;
    color:var(--text-dark);
    background:var(--background)
}
body{font-size:12px}
.ps-builder{
    min-height:100vh;
    display:flex;
    flex-direction:column
}

.ps-topbar{
    height:68px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 24px;
    background:var(--white);
    border-bottom:1px solid var(--border-color);
    gap:18px;
    position:sticky;
    top:0;
    z-index:50
}
.ps-brand{
    display:flex;
    align-items:center;
    gap:11px;
    font-weight:800;
    white-space:nowrap
}
.ps-brand-mark{
    width:42px;
    height:42px;
    border-radius:var(--radius);
    background:var(--primary-color);
    color:var(--white);
    display:grid;
    place-items:center;
    font-size:18px
}
.ps-preview-head{
    display:flex;
    align-items:center;
    gap:12px;
    margin-left:auto
}
.ps-preview-head h1{
    font-size:16px;
    margin:0
}
.ps-device{
    display:flex;
    gap:3px;
    padding:3px;
    border:1px solid var(--border-color);
    border-radius:var(--radius);
    background:var(--white)
}
.ps-device button{
    border:0;
    background:transparent;
    border-radius:7px;
    padding:7px 10px;
    color:var(--text-muted);
    cursor:pointer
}
.ps-device button.active{
    background:var(--extra-light);
    color:var(--primary-color)
}
.ps-top-actions{
    display:flex;
    gap:8px
}
.ps-btn{
    height:40px;
    padding:0 14px;
    border:1px solid var(--border-color);
    border-radius:9px;
    background:var(--white);
    font-weight:700;
    cursor:pointer
}
.ps-btn:hover{
    background:var(--bg-gradient-start)
}
.ps-btn.primary{
    background:var(--primary-color);
    border-color:var(--primary-color);
    color:var(--white)
}
.ps-btn.primary:hover{
    background:var(--primary-hover)
}

.ps-layout{
    display:grid;
    grid-template-columns:var(--ps-nav) var(--ps-side) minmax(0,1fr);
    min-height:calc(100vh - 68px)
}
.ps-sidebar{
    width:100%;
    background:var(--background);
    border-right:1px solid var(--border-color);
    padding:15px;
    overflow:auto;
    position:relative;
    z-index:30
}
.ps-section{
    background:var(--white);
    border:1px solid var(--border-color);
    border-radius:var(--radius);
    overflow:hidden;
    margin-bottom:14px
}
.ps-section-head{
    min-height:52px;
    padding:15px 16px;
    border-bottom:1px solid var(--border-color);
    display:flex;
    align-items:center;
    justify-content:space-between
}
.ps-section-head h3{
    margin:0;
    font-size:14px
}
.ps-section-body{padding:13px}
.ps-template-list{
    display:flex;
    flex-direction:column;
    gap:8px
}
.ps-saved-row,
.ps-add-section{
    width:100%;
    border:1px solid var(--border-color);
    background:var(--white);
    border-radius:var(--radius);
    min-height:52px;
    padding:10px;
    display:flex;
    align-items:center;
    gap:9px;
    cursor:pointer;
    text-align:left
}
.ps-saved-row:hover,
.ps-add-section:hover{
    border-color:var(--primary-color);
    background:var(--bg-gradient-start)
}
.ps-saved-row.active{
    border-color:var(--primary-color);
    background:var(--extra-light)
}
.ps-row-icon{
    width:30px;
    height:30px;
    border-radius:7px;
    background:var(--bg-decorative);
    display:grid;
    place-items:center;
    color:var(--primary-color);
    flex:0 0 30px
}
.ps-row-text{
    min-width:0;
    flex:1
}
.ps-row-text b{
    display:block;
    font-size:11px
}
.ps-row-text span{
    display:block;
    font-size:9px;
    color:var(--text-muted);
    margin-top:2px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap
}
.ps-row-actions{
    display:flex;
    gap:4px
}
.ps-icon-btn{
    width:30px;
    height:30px;
    border:1px solid var(--border-color);
    border-radius:8px;
    background:var(--white);
    cursor:pointer
}
.ps-icon-btn:hover{
    color:var(--primary-color);
    border-color:var(--primary-color)
}
.ps-add-section{
    justify-content:center;
    font-size:12px;
    font-weight:700;
    border-style:dashed;
    margin-top:10px
}
.ps-add-section .plus{
    font-size:19px;
    font-weight:400
}
.ps-hint{
    font-size:10px;
    color:var(--text-muted);
    line-height:1.5
}

.ps-workspace{
    min-width:0;
    padding:22px;
    overflow:hidden
}
.ps-canvas{
    height:calc(100vh - 112px);
    padding:25px;
    border-radius:var(--radius-lg);
    background:var(--extra-light);
    box-shadow:var(--shadow);
    overflow-y:auto;
    overflow-x:hidden;
    scrollbar-width:thin
}
.ps-preview-frame{
    width:100%;
    max-width:none;
    margin:0 auto;
    background:var(--white);
    border-radius:var(--radius);
    overflow:hidden;
    box-shadow:var(--bg-shadow)
}
.ps-preview-frame.mobile{
    width:390px;
    max-width:100%
}
.ps-preview-frame.mobile .hso-product-section-edit{
    display:none
}
.ps-preview-frame.mobile .hso-product-grid-list{
    grid-template-columns:repeat(2,minmax(0,1fr))
}
.ps-preview-frame.mobile .hso-product-carousel{
    --ps-slides:1.35
}
.ps-preview-frame.mobile .hso-featured-product-inner,
.ps-preview-frame.mobile .hso-product-editorial-shell,
.ps-preview-frame.mobile .hso-product-highlight-shell{
    grid-template-columns:1fr
}
.ps-preview-frame.mobile .hso-product-highlight-stack{
    grid-column:1
}
.ps-preview-frame.mobile .hso-product-hotspots-stage,
.ps-preview-frame.mobile .hso-product-lookbook-stage{
    min-height:480px
}

.ps-builder-empty,
.hso-product-builder-empty{
    padding:100px 20px;
    text-align:center;
    color:var(--text-muted);
    display:flex;
    flex-direction:column;
    gap:9px;
    align-items:center
}
.hso-product-builder-empty i{font-size:38px}
.hso-product-builder-empty strong{
    font-size:14px;
    color:var(--text-light)
}

.ps-drawer-overlay{
    position:fixed;
    inset:0;
    background:var(--overlay);
    z-index:100;
    display:none
}
.ps-drawer-overlay.open{display:block}
.ps-drawer{
    position:fixed;
    z-index:101;
    left:var(--drawer-left,428px);
    top:12vh;
    width:min(820px,calc(100vw - var(--drawer-left,428px) - 20px));
    height:76vh;
    background:var(--white);
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-lg);
    display:none;
    grid-template-columns:315px 1fr;
    overflow:hidden
}
.ps-drawer.open{display:grid}
.ps-drawer-list{
    border-right:1px solid var(--border-color);
    overflow:auto
}
.ps-drawer-head{
    padding:14px;
    border-bottom:1px solid var(--border-color);
    display:flex;
    gap:8px
}
.ps-search{
    height:38px;
    flex:1;
    border:1px solid var(--border-color);
    border-radius:9px;
    padding:0 11px;
    outline:0
}
.ps-drawer-close{
    width:38px;
    height:38px;
    border:1px solid var(--border-color);
    background:var(--white);
    border-radius:9px;
    cursor:pointer
}
.ps-drawer-cats{padding:10px}
.ps-section-option{
    width:100%;
    display:flex;
    align-items:center;
    gap:9px;
    border:0;
    background:var(--white);
    padding:11px 9px;
    border-radius:9px;
    cursor:pointer;
    text-align:left
}
.ps-section-option:hover{
    background:var(--extra-light)
}
.ps-option-icon{
    width:34px;
    height:34px;
    border:1px solid var(--border-color);
    border-radius:8px;
    display:grid;
    place-items:center;
    color:var(--primary-color);
    font-size:9px;
    font-weight:800;
    flex:0 0 34px
}
.ps-section-option b{
    display:block;
    font-size:11px
}
.ps-section-option small{
    display:block;
    font-size:9px;
    color:var(--text-muted);
    line-height:1.45;
    margin-top:3px
}
.ps-drawer-preview{
    background:var(--background);
    padding:20px;
    overflow:auto
}
.ps-drawer-preview-inner{
    min-height:100%;
    display:flex;
    align-items:center;
    justify-content:center
}
.ps-drawer-preview .hso-product-section-edit{
    display:none
}
.ps-empty-preview{
    padding:50px 20px;
    text-align:center;
    color:var(--text-muted)
}

.ps-modal{
    position:fixed;
    inset:0;
    z-index:200;
    background:var(--overlay);
    display:none;
    align-items:center;
    justify-content:center;
    padding:18px
}
.ps-modal.open{display:flex}
.ps-modal-card{
    width:680px;
    max-width:100%;
    max-height:92vh;
    background:var(--white);
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:var(--shadow-lg)
}
.ps-modal-head{
    padding:15px 18px;
    border-bottom:1px solid var(--border-color);
    display:flex;
    align-items:center;
    justify-content:space-between
}
.ps-modal-head h3{
    margin:0;
    font-size:15px
}
.ps-modal-body{
    padding:18px;
    overflow:auto;
    max-height:70vh
}
.ps-modal-foot{
    padding:14px 18px;
    border-top:1px solid var(--border-color);
    display:flex;
    justify-content:flex-end;
    gap:8px
}
.ps-field{margin-bottom:13px}
.ps-field label{
    display:block;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    color:var(--text-light);
    margin-bottom:6px
}
.ps-field input,
.ps-field textarea,
.ps-field select{
    width:100%;
    border:1px solid var(--border-color);
    border-radius:8px;
    padding:10px;
    outline:0;
    background:var(--white)
}
.ps-field textarea{
    min-height:80px;
    resize:vertical
}
.ps-field input:focus,
.ps-field textarea:focus,
.ps-field select:focus{
    border-color:var(--primary-color);
    box-shadow:0 0 0 3px rgba(var(--primary-rgb),.12)
}
.ps-grid2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px
}
.ps-editor-group{
    padding:14px 0;
    border-bottom:1px solid var(--border-color)
}
.ps-editor-group:first-child{padding-top:0}
.ps-editor-group:last-child{border-bottom:0}
.ps-editor-group-title{
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.6px;
    margin-bottom:12px
}
.ps-editor-checks{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px
}
.ps-switch-field{
    display:flex;
    align-items:center;
    gap:8px;
    padding:9px;
    border:1px solid var(--border-color);
    border-radius:9px;
    cursor:pointer
}
.ps-switch-field input{display:none}
.ps-switch{
    width:32px;
    height:18px;
    border-radius:20px;
    background:#ddd;
    position:relative;
    flex:0 0 32px
}
.ps-switch:after{
    content:"";
    position:absolute;
    width:14px;
    height:14px;
    border-radius:50%;
    background:var(--white);
    left:2px;
    top:2px;
    box-shadow:var(--shadow-sm);
    transition:var(--transition-fast)
}
.ps-switch-field input:checked + .ps-switch{
    background:var(--primary-color)
}
.ps-switch-field input:checked + .ps-switch:after{left:16px}
.ps-switch-field b{
    display:block;
    font-size:10px
}
.ps-switch-field small{
    display:block;
    color:var(--text-muted);
    font-size:8px;
    margin-top:2px
}

.ps-product-search-row{
    display:flex;
    gap:8px;
    align-items:center;
    margin-bottom:9px
}
.ps-product-search-row input{
    flex:1;
    border:1px solid var(--border-color);
    height:36px;
    border-radius:8px;
    padding:0 10px
}
.ps-product-search-row span{
    font-size:9px;
    color:var(--text-muted)
}
.ps-product-picker{
    max-height:300px;
    overflow:auto;
    border:1px solid var(--border-color);
    border-radius:var(--radius)
}
.ps-product-pick{
    display:grid;
    grid-template-columns:18px 48px 1fr;
    align-items:center;
    gap:8px;
    padding:8px;
    border-bottom:1px solid var(--border-color);
    cursor:pointer
}
.ps-product-pick:last-child{border-bottom:0}
.ps-product-pick:hover{
    background:var(--bg-gradient-start)
}
.ps-product-pick input{margin:0}
.ps-product-pick-image{
    width:48px;
    height:55px;
    display:block;
    overflow:hidden;
    background:var(--extra-light)
}
.ps-product-pick-image img{
    width:100%;
    height:100%;
    object-fit:cover
}
.ps-product-pick b{
    font-size:10px;
    display:block
}
.ps-product-pick small{
    font-size:8px;
    color:var(--text-muted);
    display:block;
    margin-top:3px
}
.ps-marker-row{
    border:1px solid var(--border-color);
    border-radius:var(--radius);
    padding:10px;
    margin-bottom:9px
}
.ps-marker-row>b{
    font-size:10px;
    display:block;
    margin-bottom:8px
}
.ps-remove-marker,
.ps-add-marker{
    border:1px solid var(--border-color);
    background:var(--white);
    border-radius:8px;
    padding:8px 10px;
    font-size:10px;
    font-weight:700;
    cursor:pointer
}
.ps-remove-marker:hover{
    color:#b33;
    border-color:#d99
}
.ps-add-marker{
    border-style:dashed;
    color:var(--primary-color)
}
.ps-toast{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:300;
    background:var(--text-dark);
    color:var(--white);
    border-radius:9px;
    padding:11px 15px;
    display:none
}
.ps-toast.show{display:block}

/* ========================================================================
   COMMON PRODUCT PRESENTATION PRIMITIVES
   ======================================================================== */

.hso-product-section-heading{margin:0}
.hso-product-section-heading h2{
    font-size:clamp(25px,3.4vw,48px);
    line-height:1.05;
    letter-spacing:-1.5px;
    margin:6px 0 10px;
    font-weight:700
}
.hso-product-section-heading p{
    margin:0;
    max-width:610px;
    color:var(--text-light);
    font-size:13px;
    line-height:1.7
}
.hso-product-section-eyebrow{
    display:block;
    color:var(--primary-color);
    font-size:9px;
    letter-spacing:2.3px;
    font-weight:800;
    text-transform:uppercase
}
.hso-product-section-edit{
    position:absolute;
    right:14px;
    top:14px;
    z-index:30;
    border:1px solid var(--border-color);
    background:var(--white);
    color:var(--text-dark);
    border-radius:8px;
    padding:8px 10px;
    opacity:0;
    cursor:pointer;
    box-shadow:var(--shadow-sm);
    transition:var(--transition-fast)
}
.hso-product-grid:hover .hso-product-section-edit,
.hso-product-carousel:hover .hso-product-section-edit,
.hso-featured-product:hover .hso-product-section-edit,
.hso-product-editorial:hover .hso-product-section-edit,
.hso-product-highlight:hover .hso-product-section-edit,
.hso-product-hotspots:hover .hso-product-section-edit,
.hso-recommended-products:hover .hso-product-section-edit,
.hso-product-lookbook:hover .hso-product-section-edit{
    opacity:1
}
.hso-product-badge{
    position:absolute;
    left:12px;
    top:12px;
    z-index:5;
    padding:6px 8px;
    background:var(--text-dark);
    color:var(--white);
    font-size:8px;
    letter-spacing:1px;
    text-transform:uppercase
}
.hso-product-rating{
    display:flex;
    align-items:center;
    gap:5px
}
.hso-product-rating-stars{
    display:inline-flex;
    gap:2px;
    color:#ddd
}
.hso-product-rating-stars .is-filled{
    color:var(--primary-color)
}
.hso-product-rating-stars i{font-size:8px}
.hso-product-rating-value{
    font-size:9px;
    color:var(--text-muted)
}
.hso-product-price{
    display:flex;
    align-items:baseline;
    gap:7px;
    min-height:18px
}
.hso-product-price-sale,
.hso-product-price-current{
    font-size:13px;
    font-weight:800
}
.hso-product-price-regular{
    font-size:9px;
    color:var(--text-muted)
}
.hso-product-actions{
    display:flex;
    align-items:center;
    gap:6px;
    flex-wrap:wrap
}
.hso-product-action{
    width:34px;
    height:34px;
    border:1px solid var(--border-color);
    background:var(--white);
    border-radius:8px;
    display:grid;
    place-items:center;
    cursor:pointer
}
.hso-product-action:hover{
    border-color:var(--primary-color);
    color:var(--primary-color)
}
.hso-product-cart{
    min-height:34px;
    border:1px solid var(--text-dark);
    background:var(--text-dark);
    color:var(--white);
    border-radius:8px;
    padding:0 12px;
    font-size:9px;
    font-weight:800;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px
}
.hso-product-cart:hover{
    background:var(--primary-color);
    border-color:var(--primary-color)
}
.hso-product-view{
    font-size:9px;
    font-weight:800;
    text-decoration:none;
    color:var(--text-dark);
    border-bottom:1px solid var(--text-dark);
    padding-bottom:3px
}
.hso-product-image-placeholder{
    width:100%;
    height:100%;
    min-height:120px;
    background:var(--extra-light);
    color:var(--text-muted);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    font-size:9px
}
.hso-product-image-placeholder i{font-size:22px}
.hso-product-empty{
    min-height:220px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:var(--text-muted);
    text-align:center;
    padding:30px
}
.hso-product-empty i{font-size:28px}
.hso-product-empty strong{
    font-size:12px;
    color:var(--text-light)
}
.hso-product-empty span{font-size:9px}

.hso-product-card{min-width:0}
.hso-product-card-media{
    position:relative;
    overflow:hidden;
    background:var(--extra-light);
    aspect-ratio:4/5
}
.hso-product-card-image-link,
.hso-product-card-image{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover
}
.hso-product-card-image{transition:transform var(--transition-slow)}
.hso-product-card-image-hover{
    position:absolute;
    inset:0;
    opacity:0;
    transition:var(--transition);
    background:var(--extra-light)
}
.hso-product-card-image-hover img{
    width:100%;
    height:100%;
    object-fit:cover
}
.hso-product-card:hover .hso-product-card-image{
    transform:scale(1.035)
}
.hso-product-card:hover .hso-product-card-image-hover{
    opacity:1
}
.hso-product-card-floating-actions{
    position:absolute;
    right:10px;
    top:10px;
    display:flex;
    flex-direction:column;
    gap:5px;
    opacity:0;
    transform:translateY(-5px);
    transition:var(--transition-fast)
}
.hso-product-card:hover .hso-product-card-floating-actions{
    opacity:1;
    transform:none
}
.hso-product-card-body{padding:12px 2px}
.hso-product-card-body .hso-product-rating{margin-bottom:5px}
.hso-product-card-title{
    display:block;
    color:var(--text-dark);
    text-decoration:none
}
.hso-product-card-title h3{
    margin:0 0 7px;
    font-size:12px;
    line-height:1.35;
    font-weight:700
}
.hso-product-card-body .hso-product-price{margin-bottom:10px}
.hso-product-card-body.center{text-align:center}
.hso-product-card-body.center .hso-product-actions{
    justify-content:center
}
.hso-product-card-body.right{text-align:right}
.hso-product-card-body.right .hso-product-actions{
    justify-content:flex-end
}

/* ========================================================================
   DESIGN 01 — PRODUCT GRID A
   ======================================================================== */

.hso-product-grid{
    position:relative;
    padding:78px 34px 70px;
    background:var(--white)
}
.hso-product-grid-inner{
    max-width:var(--max-width);
    margin:0 auto
}
.hso-product-grid .hso-product-section-heading{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    margin-bottom:38px
}
.hso-product-grid .hso-product-section-heading p{max-width:540px}
.hso-product-grid-list{
    display:grid;
    grid-template-columns:repeat(var(--ps-cols),minmax(0,1fr));
    gap:var(--ps-gap)
}
.hso-product-grid-footer{
    display:flex;
    justify-content:center;
    margin-top:36px
}
.hso-product-grid-button{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--text-dark);
    text-decoration:none;
    border-bottom:1px solid var(--text-dark);
    padding-bottom:7px;
    font-size:10px;
    font-weight:800;
    letter-spacing:.5px
}
.hso-product-grid-button:hover{
    color:var(--primary-color);
    border-color:var(--primary-color)
}

/* ========================================================================
   DESIGN 02 — PRODUCT CAROUSEL
   ======================================================================== */

.hso-product-carousel{
    position:relative;
    padding:70px 34px;
    background:var(--extra-light)
}
.hso-product-carousel-inner{
    max-width:var(--max-width);
    margin:0 auto
}
.hso-product-carousel-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:28px
}
.hso-product-carousel-nav{
    display:flex;
    gap:6px;
    flex:0 0 auto
}
.hso-product-carousel-nav button{
    width:42px;
    height:42px;
    border:1px solid var(--border-color);
    background:var(--white);
    border-radius:50%;
    cursor:pointer
}
.hso-product-carousel-nav button:hover{
    background:var(--text-dark);
    color:var(--white);
    border-color:var(--text-dark)
}
.hso-product-carousel-viewport{
    overflow:hidden;
    scroll-behavior:smooth
}
.hso-product-carousel-track{
    display:flex;
    gap:18px;
    overflow:visible
}
.hso-product-carousel .hso-product-card{
    flex:0 0 calc((100% - (var(--ps-slides) - 1)*18px)/var(--ps-slides))
}
.hso-product-carousel .hso-product-card-media{
    aspect-ratio:1/1.18
}
.hso-product-carousel .hso-product-card-body{
    padding:12px 1px
}
.hso-product-carousel-dots{
    display:flex;
    justify-content:center;
    gap:5px;
    margin-top:24px
}
.hso-product-carousel-dots button{
    width:22px;
    height:3px;
    border:0;
    background:var(--border-color);
    cursor:pointer
}
.hso-product-carousel-dots button:hover{
    background:var(--primary-color)
}

/* ========================================================================
   DESIGN 03 — FEATURED PRODUCT
   ======================================================================== */

.hso-featured-product{
    position:relative;
    padding:86px 40px;
    background:var(--white)
}
.hso-featured-product-inner{
    max-width:1120px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr);
    gap:75px;
    align-items:center
}
.hso-featured-product-inner.right{
    grid-template-columns:minmax(340px,.85fr) minmax(0,1.15fr)
}
.hso-featured-product-inner.right .hso-featured-product-gallery{
    order:2
}
.hso-featured-product-gallery{min-width:0}
.hso-featured-product-main{
    position:relative;
    background:var(--extra-light);
    aspect-ratio:1/1.08;
    overflow:hidden
}
.hso-featured-product-main .hso-product-badge{
    left:18px;
    top:18px
}
.hso-featured-product-image-link,
.hso-featured-product-image{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover
}
.hso-featured-product-image{
    transition:transform var(--transition-slow)
}
.hso-featured-product-main:hover .hso-featured-product-image{
    transform:scale(1.025)
}
.hso-featured-product-thumbs{
    display:flex;
    gap:8px;
    margin-top:10px
}
.hso-featured-product-thumbs button{
    width:72px;
    height:72px;
    border:1px solid var(--border-color);
    background:var(--white);
    padding:0;
    cursor:pointer;
    overflow:hidden
}
.hso-featured-product-thumbs img{
    width:100%;
    height:100%;
    object-fit:cover
}
.hso-featured-product-content{padding:10px 0}
.hso-featured-product-content .hso-product-section-heading{
    margin-bottom:28px
}
.hso-featured-product-sku{
    font-size:8px;
    letter-spacing:2px;
    color:var(--text-muted);
    margin:0 0 12px;
    text-transform:uppercase
}
.hso-featured-product-content h3{
    font-size:clamp(32px,4vw,60px);
    line-height:.98;
    letter-spacing:-2.5px;
    margin:0 0 17px;
    font-weight:500
}
.hso-featured-product-description{
    color:var(--text-light);
    font-size:13px;
    line-height:1.8;
    max-width:500px;
    margin:0 0 20px
}
.hso-featured-product-content .hso-product-rating{
    margin-bottom:10px
}
.hso-featured-product-content .hso-product-price{
    margin:10px 0
}
.hso-featured-product-discount{
    display:inline-flex;
    padding:6px 8px;
    background:var(--extra-light);
    color:var(--primary-color);
    font-size:8px;
    font-weight:800;
    letter-spacing:1px;
    margin:8px 0 22px
}
.hso-featured-product-cta-row{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin-top:18px
}
.hso-featured-product-cart{
    height:45px;
    padding:0 18px;
    border-radius:0
}
.hso-featured-product-view{
    height:45px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:0 15px;
    border:1px solid var(--border-color);
    text-decoration:none;
    color:var(--text-dark);
    font-size:9px;
    font-weight:800
}
.hso-featured-product-heart{
    width:45px;
    height:45px;
    border-radius:0
}

/* ========================================================================
   DESIGN 04 — PRODUCT EDITORIAL
   ======================================================================== */

.hso-product-editorial{
    position:relative;
    padding:100px 34px;
    background:var(--background);
    overflow:hidden
}
.hso-product-editorial-shell{
    max-width:var(--max-width);
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(270px,.7fr) minmax(0,1.3fr);
    gap:70px;
    align-items:start
}
.hso-product-editorial-copy{padding-top:50px}
.hso-product-editorial-copy.center{text-align:center}
.hso-product-editorial-copy.right{text-align:right}
.hso-product-editorial-copy .hso-product-section-heading h2{
    font-size:clamp(50px,6vw,84px);
    font-weight:400;
    letter-spacing:-4px;
    line-height:.92
}
.hso-product-editorial-copy .hso-product-section-heading p{
    font-size:13px;
    line-height:1.8
}
.hso-product-editorial-copy-rule{
    height:1px;
    background:var(--border-color);
    margin:34px 0
}
.hso-product-editorial-meta{
    display:flex;
    flex-direction:column;
    gap:8px;
    color:var(--text-muted);
    font-size:8px;
    letter-spacing:1.6px
}
.hso-product-editorial-cta{
    display:inline-flex;
    gap:15px;
    align-items:center;
    margin-top:35px;
    color:var(--text-dark);
    text-decoration:none;
    font-size:10px;
    font-weight:800
}
.hso-product-editorial-cta span{
    font-size:19px;
    color:var(--primary-color);
    transition:var(--transition-fast)
}
.hso-product-editorial-cta:hover span{
    transform:translate(4px,-3px)
}
.hso-product-editorial-visual{
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(180px,.7fr);
    gap:18px;
    align-items:end
}
.hso-product-editorial-lead{
    position:relative;
    background:var(--extra-light);
    aspect-ratio:.85/1;
    overflow:hidden
}
.hso-product-editorial-lead-img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:var(--transition-slow)
}
.hso-product-editorial-lead:hover .hso-product-editorial-lead-img{
    transform:scale(1.03)
}
.hso-product-editorial-caption{
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    padding:13px;
    background:var(--image-overlay);
    backdrop-filter:blur(8px);
    display:flex;
    justify-content:space-between;
    gap:10px;
    align-items:center
}
.hso-product-editorial-caption strong{font-size:10px}
.hso-product-editorial-caption .hso-product-price-sale,
.hso-product-editorial-caption .hso-product-price-current{
    font-size:10px
}
.hso-product-editorial-side{
    display:flex;
    flex-direction:column;
    gap:35px;
    padding-bottom:5px
}
.hso-product-editorial-side-item{
    display:grid;
    grid-template-columns:82px 1fr;
    gap:12px;
    align-items:end
}
.hso-product-editorial-side-img{
    width:82px;
    height:105px;
    object-fit:cover;
    display:block
}
.hso-product-editorial-side-item>div span{
    font-size:8px;
    color:var(--text-muted)
}
.hso-product-editorial-side-item h3{
    font-size:10px;
    line-height:1.4;
    margin:5px 0 7px
}

/* ========================================================================
   DESIGN 05 — PRODUCT HIGHLIGHT
   ======================================================================== */

.hso-product-highlight{
    position:relative;
    padding:88px 34px;
    background:var(--text-dark);
    color:var(--white);
    overflow:hidden
}
.hso-product-highlight:before{
    content:"";
    position:absolute;
    width:620px;
    height:620px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.08);
    right:-180px;
    top:-180px
}
.hso-product-highlight-shell{
    position:relative;
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(300px,.65fr) minmax(180px,.5fr);
    gap:34px;
    align-items:center
}
.hso-product-highlight-shell.image-right .hso-product-highlight-visual{order:3}
.hso-product-highlight-shell.image-right .hso-product-highlight-info{order:2}
.hso-product-highlight-shell.image-right .hso-product-highlight-stack{order:1}
.hso-product-highlight-visual{
    position:relative;
    aspect-ratio:1/1.12;
    background:var(--text-dark);
    overflow:hidden
}
.hso-product-highlight-main-image{
    width:100%;
    height:100%;
    display:block
}
.hso-product-highlight-main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:var(--transition-slow)
}
.hso-product-highlight-visual:hover .hso-product-highlight-main-image img{
    transform:scale(1.035)
}
.hso-product-highlight-visual .hso-product-badge{
    background:var(--white);
    color:var(--text-dark)
}
.hso-product-highlight-number{
    position:absolute;
    right:18px;
    bottom:15px;
    font-size:42px;
    font-weight:300;
    color:rgba(255,255,255,.75)
}
.hso-product-highlight-info{padding:15px}
.hso-product-highlight-info.center{text-align:center}
.hso-product-highlight-info.right{text-align:right}
.hso-product-highlight-info .hso-product-section-heading h2{
    color:var(--white)
}
.hso-product-highlight-info .hso-product-section-heading p{
    color:#9ca19d
}
.hso-product-highlight-label{
    display:inline-flex;
    padding:7px 9px;
    background:var(--primary-color);
    color:var(--white);
    font-size:8px;
    font-weight:800;
    letter-spacing:1.2px;
    margin:24px 0 15px
}
.hso-product-highlight-info h3{
    font-size:clamp(30px,4vw,57px);
    line-height:.96;
    letter-spacing:-2px;
    margin:0 0 15px;
    font-weight:500
}
.hso-product-highlight-info>p{
    color:#aaa;
    line-height:1.8;
    font-size:12px;
    margin:0 0 18px
}
.hso-product-highlight-info .hso-product-rating{
    margin-bottom:9px
}
.hso-product-highlight-info .hso-product-price{
    margin-bottom:25px
}
.hso-product-highlight-actions{
    display:flex;
    gap:8px
}
.hso-product-highlight-info.center .hso-product-highlight-actions{
    justify-content:center
}
.hso-product-highlight-info.right .hso-product-highlight-actions{
    justify-content:flex-end
}
.hso-product-highlight-cart{
    border-radius:0;
    height:44px;
    background:var(--white);
    color:var(--text-dark);
    border-color:var(--white)
}
.hso-product-highlight-cart:hover{
    background:var(--primary-color);
    color:var(--white);
    border-color:var(--primary-color)
}
.hso-product-highlight-wish{
    width:44px;
    height:44px;
    background:transparent;
    border:1px solid rgba(255,255,255,.25);
    color:var(--white)
}
.hso-product-highlight-stack{
    display:flex;
    flex-direction:column;
    gap:10px
}
.hso-product-highlight-mini{
    display:grid;
    grid-template-columns:18px 60px 1fr;
    gap:9px;
    align-items:center;
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:10px
}
.hso-product-highlight-mini>span{
    font-size:8px;
    color:#8d938f
}
.hso-product-highlight-mini-image{
    width:60px;
    height:74px;
    display:block;
    overflow:hidden
}
.hso-product-highlight-mini-img{
    width:100%;
    height:100%;
    object-fit:cover
}
.hso-product-highlight-mini h4{
    font-size:9px;
    line-height:1.4;
    margin:0 0 5px;
    font-weight:600
}
.hso-product-highlight-mini .hso-product-price-sale,
.hso-product-highlight-mini .hso-product-price-current{
    font-size:9px
}
.hso-product-highlight-mini .hso-product-price-regular{color:#777}

/* ========================================================================
   DESIGN 06 — PRODUCT HOTSPOTS
   ======================================================================== */

.hso-product-hotspots{
    position:relative;
    padding:80px 30px;
    background:var(--white)
}
.hso-product-hotspots-shell{
    max-width:1180px;
    margin:0 auto
}
.hso-product-hotspots .hso-product-section-heading{
    text-align:center;
    margin-bottom:32px
}
.hso-product-hotspots-stage{
    position:relative;
    min-height:650px;
    background:var(--extra-light);
    overflow:hidden
}
.hso-product-hotspots-stage>img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover
}
.hso-product-hotspots-placeholder{
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    color:var(--text-muted)
}
.hso-product-hotspots-points{
    position:absolute;
    inset:0
}
.hso-hotspot-point{
    position:absolute;
    transform:translate(-50%,-50%);
    width:30px;
    height:30px;
    border:0;
    background:transparent;
    padding:0;
    cursor:pointer;
    z-index:5
}
.hso-hotspot-point>span{
    position:absolute;
    inset:4px;
    border-radius:50%;
    background:var(--white);
    box-shadow:0 0 0 7px var(--image-overlay-soft);
    display:grid;
    place-items:center;
    font-size:8px;
    font-weight:800
}
.hso-hotspot-point>i{
    position:absolute;
    inset:-4px;
    border:1px solid rgba(255,255,255,.8);
    border-radius:50%;
    animation:psPulse 2.2s infinite
}
.hso-hotspot-popover{
    position:absolute;
    left:20px;
    top:25px;
    width:260px;
    background:var(--white);
    box-shadow:var(--shadow-lg);
    padding:9px;
    display:grid;
    grid-template-columns:74px 1fr;
    gap:10px;
    text-align:left;
    opacity:0;
    pointer-events:none;
    transform:translateY(8px);
    transition:var(--transition)
}
.hso-hotspot-point:hover .hso-hotspot-popover,
.hso-hotspot-point.is-active .hso-hotspot-popover{
    opacity:1;
    pointer-events:auto;
    transform:none
}
.hso-hotspot-popover-image{
    width:74px;
    height:92px;
    display:block
}
.hso-hotspot-popover-img{
    width:100%;
    height:100%;
    object-fit:cover
}
.hso-hotspot-popover small{
    display:block;
    font-size:7px;
    letter-spacing:1.3px;
    color:var(--primary-color);
    margin:5px 0
}
.hso-hotspot-popover strong{
    display:block;
    font-size:9px;
    line-height:1.35
}
.hso-hotspot-popover .hso-product-price{margin:5px 0}
.hso-hotspot-popover a{
    font-size:8px;
    font-weight:800;
    color:var(--text-dark);
    text-decoration:none
}
.hso-hotspot-hint{
    text-align:center;
    color:var(--text-muted);
    font-size:9px;
    margin-top:12px
}
@keyframes psPulse{
    0%,100%{transform:scale(.9);opacity:.3}
    50%{transform:scale(1.2);opacity:1}
}

/* ========================================================================
   DESIGN 07 — RECOMMENDED PRODUCTS
   ======================================================================== */

.hso-recommended-products{
    position:relative;
    padding:75px 34px;
    background:var(--white)
}
.hso-recommended-products-shell{
    max-width:1180px;
    margin:0 auto
}
.hso-recommended-products-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:32px
}
.hso-recommended-products-count{
    font-size:8px;
    color:var(--text-muted);
    letter-spacing:1.2px;
    text-transform:uppercase
}
.hso-recommended-products-list{
    display:grid;
    grid-template-columns:repeat(var(--ps-rec-cols),minmax(0,1fr));
    gap:34px 24px
}
.hso-recommended-products .hso-product-card-media{
    aspect-ratio:1/1.12;
    border-radius:2px
}
.hso-recommended-products .hso-product-card-body{
    padding:13px 4px
}
.hso-recommended-products .hso-product-card-title h3{
    font-size:11px
}
.hso-recommended-products .hso-product-cart{
    background:transparent;
    color:var(--text-dark);
    border-color:var(--border-color)
}
.hso-recommended-products .hso-product-cart:hover{
    background:var(--text-dark);
    color:var(--white);
    border-color:var(--text-dark)
}

/* ========================================================================
   DESIGN 08 — PRODUCT LOOKBOOK
   ======================================================================== */

.hso-product-lookbook{
    position:relative;
    padding:84px 28px;
    background:var(--extra-light)
}
.hso-product-lookbook-shell{
    max-width:1160px;
    margin:0 auto
}
.hso-product-lookbook-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:25px
}
.hso-product-lookbook-head>span{
    font-size:8px;
    letter-spacing:2px;
    color:var(--text-light)
}
.hso-product-lookbook-stage{
    position:relative;
    min-height:720px;
    background:var(--border-color);
    overflow:hidden
}
.hso-product-lookbook-stage>img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover
}
.hso-product-lookbook-placeholder{
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    color:var(--text-muted)
}
.hso-lookbook-points{
    position:absolute;
    inset:0
}
.hso-lookbook-point{
    position:absolute;
    transform:translate(-50%,-50%);
    border:0;
    background:transparent;
    padding:0;
    cursor:pointer;
    z-index:5
}
.hso-lookbook-point>span{
    display:grid;
    place-items:center;
    width:38px;
    height:38px;
    border:1px solid rgba(255,255,255,.9);
    background:rgba(20,20,20,.48);
    color:var(--white);
    border-radius:50%;
    font-size:8px;
    letter-spacing:1px;
    backdrop-filter:blur(5px)
}
.hso-lookbook-card{
    position:absolute;
    left:20px;
    top:25px;
    width:280px;
    background:var(--white);
    display:grid;
    grid-template-columns:92px 1fr;
    box-shadow:var(--shadow-lg);
    opacity:0;
    pointer-events:none;
    transform:translateY(9px);
    transition:var(--transition);
    text-align:left;
    padding:8px
}
.hso-lookbook-point:hover .hso-lookbook-card,
.hso-lookbook-point.is-active .hso-lookbook-card{
    opacity:1;
    pointer-events:auto;
    transform:none
}
.hso-lookbook-card>div{height:118px}
.hso-lookbook-card-img{
    width:100%;
    height:100%;
    object-fit:cover
}
.hso-lookbook-card section{padding:9px}
.hso-lookbook-card small{
    font-size:7px;
    letter-spacing:1.2px;
    color:var(--primary-color)
}
.hso-lookbook-card h3{
    font-size:10px;
    line-height:1.35;
    margin:6px 0
}
.hso-lookbook-card .hso-product-price{margin-bottom:8px}
.hso-lookbook-card a{
    font-size:8px;
    color:var(--text-dark);
    text-decoration:none;
    font-weight:800
}
.hso-lookbook-hint{
    text-align:center;
    color:var(--text-muted);
    font-size:9px;
    margin-top:12px
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

@media(max-width:1100px){
    :root{
        --ps-nav:76px;
        --ps-side:300px
    }

    .ps-workspace{padding:16px}
    .ps-canvas{padding:18px}

    .hso-product-grid-list{
        grid-template-columns:repeat(var(--ps-tablet-cols),minmax(0,1fr))
    }

    .hso-product-highlight-shell{
        grid-template-columns:minmax(0,1fr) minmax(300px,.75fr)
    }

    .hso-product-highlight-stack{
        grid-column:1 / -1;
        display:grid;
        grid-template-columns:repeat(3,1fr)
    }

    .hso-product-highlight-mini{
        border-top:0;
        border-left:1px solid rgba(255,255,255,.1);
        padding-left:10px
    }

    .hso-product-editorial-shell{gap:40px}
    .hso-product-lookbook-stage{min-height:620px}
}

@media(max-width:768px){
    .ps-topbar{
        height:auto;
        min-height:62px;
        padding:8px 12px;
        flex-wrap:wrap
    }

    .ps-preview-head{
        order:3;
        width:100%;
        justify-content:space-between;
        margin:0
    }

    .ps-top-actions{gap:5px}

    .ps-top-actions .ps-btn{
        font-size:9px;
        padding:0 9px
    }

    .ps-layout{
        display:flex;
        flex-direction:column
    }

    .ps-sidebar{
        width:100%;
        border-right:0;
        border-bottom:1px solid var(--border-color)
    }

    .ps-workspace{padding:10px}
    .ps-canvas{
        padding:7px;
        min-height:500px
    }

    .ps-drawer{
        left:8px!important;
        top:7vh;
        width:calc(100vw - 16px);
        height:86vh;
        grid-template-columns:1fr
    }

    .ps-drawer-preview{display:none}

    .ps-modal-card{max-height:96vh}
    .ps-modal-body{max-height:76vh}

    .ps-grid2,
    .ps-editor-checks{
        grid-template-columns:1fr
    }

    .hso-product-grid{padding:55px 16px}

    .hso-product-grid .hso-product-section-heading{
        margin-bottom:28px
    }

    .hso-product-grid-list{
        grid-template-columns:repeat(var(--ps-mobile-cols),minmax(0,1fr));
        gap:18px 10px
    }

    .hso-product-card-body{padding:10px 0}
    .hso-product-card-title h3{font-size:10px}

    .hso-product-cart span{display:none}

    .hso-product-cart{
        width:34px;
        padding:0
    }

    .hso-product-carousel{padding:50px 16px}

    .hso-product-carousel-head{
        align-items:center
    }

    .hso-product-carousel-track{
        gap:10px;
        overflow:visible
    }

    .hso-product-carousel .hso-product-card{
        flex-basis:calc((100% - 10px)/1.35)
    }

    .hso-product-carousel-viewport{
        overflow-x:auto;
        scrollbar-width:none
    }

    .hso-product-carousel-viewport::-webkit-scrollbar{
        display:none
    }

    .hso-featured-product{padding:55px 16px}

    .hso-featured-product-inner,
    .hso-featured-product-inner.right{
        grid-template-columns:1fr;
        gap:35px
    }

    .hso-featured-product-inner.right .hso-featured-product-gallery{
        order:0
    }

    .hso-featured-product-content h3{font-size:40px}

    .hso-product-editorial{padding:60px 16px}

    .hso-product-editorial-shell{
        grid-template-columns:1fr;
        gap:35px
    }

    .hso-product-editorial-copy{padding-top:0}

    .hso-product-editorial-copy .hso-product-section-heading h2{
        font-size:57px
    }

    .hso-product-editorial-visual{
        grid-template-columns:1fr
    }

    .hso-product-editorial-side{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:12px
    }

    .hso-product-editorial-side-item{
        grid-template-columns:58px 1fr
    }

    .hso-product-editorial-side-img{
        width:58px;
        height:78px
    }

    .hso-product-highlight{padding:60px 16px}

    .hso-product-highlight-shell,
    .hso-product-highlight-shell.image-right{
        grid-template-columns:1fr
    }

    .hso-product-highlight-shell.image-right .hso-product-highlight-visual,
    .hso-product-highlight-shell.image-right .hso-product-highlight-info,
    .hso-product-highlight-shell.image-right .hso-product-highlight-stack{
        order:initial
    }

    .hso-product-highlight-stack{
        grid-template-columns:1fr!important
    }

    .hso-product-highlight-info{padding:5px 0}
    .hso-product-highlight-info h3{font-size:43px}

    .hso-product-hotspots{padding:55px 12px}
    .hso-product-hotspots-stage{min-height:500px}

    .hso-hotspot-popover{
        position:fixed;
        left:50%!important;
        top:auto!important;
        bottom:15px;
        transform:translate(-50%,10px)!important;
        width:min(300px,calc(100vw - 30px));
        z-index:50
    }

    .hso-hotspot-point.is-active .hso-hotspot-popover{
        transform:translate(-50%,0)!important
    }

    .hso-recommended-products{padding:55px 16px}

    .hso-recommended-products-top{
        align-items:center
    }

    .hso-recommended-products-list{
        grid-template-columns:repeat(var(--ps-rec-mobile),minmax(0,1fr));
        gap:22px 10px
    }

    .hso-product-lookbook{padding:60px 12px}
    .hso-product-lookbook-stage{min-height:520px}

    .hso-lookbook-card{
        position:fixed;
        left:50%!important;
        top:auto!important;
        bottom:15px;
        width:min(300px,calc(100vw - 30px));
        transform:translate(-50%,10px)!important;
        z-index:50
    }

    .hso-lookbook-point.is-active .hso-lookbook-card{
        transform:translate(-50%,0)!important
    }
}

@media(max-width:480px){
    .ps-brand span{font-size:10px}

    .ps-brand-mark{
        width:36px;
        height:36px
    }

    .ps-preview-head h1{font-size:12px}

    .hso-product-section-heading h2{font-size:30px}
    .hso-product-section-heading p{font-size:11px}

    .hso-product-badge{
        font-size:7px;
        padding:5px 6px;
        left:7px;
        top:7px
    }

    .hso-product-card-floating-actions{
        opacity:1;
        transform:none;
        right:6px;
        top:6px
    }

    .hso-product-action{
        width:29px;
        height:29px
    }

    .hso-product-card-body .hso-product-rating-stars i{
        font-size:7px
    }

    .hso-product-card-title h3{font-size:9px}

    .hso-product-price-sale,
    .hso-product-price-current{
        font-size:10px
    }

    .hso-product-price-regular{font-size:8px}

    .hso-featured-product-content h3{font-size:35px}
    .hso-featured-product-description{font-size:11px}

    .hso-product-editorial-copy .hso-product-section-heading h2{
        font-size:48px
    }

    .hso-product-editorial-side{
        grid-template-columns:1fr
    }

    .hso-product-highlight-info h3{font-size:37px}
    .hso-product-hotspots-stage{min-height:430px}
    .hso-product-lookbook-stage{min-height:440px}
}

/* =========================================================
   HSO DESIGN 09
   CATEGORY SHOWCASE 2
========================================================= */

.hso-category-showcase-2{
    position:relative;
    width:100%;
    padding:70px 24px;
    background:#fff;
    overflow:hidden;
}

.hso-category-showcase-shell{
    width:min(100%,1400px);
    margin:0 auto;
}

.hso-category-showcase-categories{
    display:flex;
    flex-direction:column;
    gap:60px;
}

.hso-category-showcase-block{
    position:relative;
    min-width:0;
}

.hso-category-showcase-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:22px;
}

.hso-category-showcase-title-wrap{
    min-width:0;
}

.hso-category-showcase-title{
    margin:0;
    font-size:28px;
    line-height:1.2;
    font-weight:700;
    color:#111;
}

.hso-category-showcase-arrows{
    display:flex;
    align-items:center;
    gap:8px;
    flex-shrink:0;
}

.hso-category-showcase-arrow{
    width:42px;
    height:42px;

    border:1px solid #ddd;
    border-radius:50%;

    background:#fff;
    color:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.hso-category-showcase-arrow:hover{
    background:#111;
    color:#fff;
    border-color:#111;
    transform:translateY(-1px);
}

.hso-category-showcase-arrow:active{
    transform:scale(.95);
}


/* =========================================================
   HORIZONTAL SLIDER
========================================================= */

.hso-category-showcase-slider{
    width:100%;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-behavior:smooth;

    scrollbar-width:none;

    -webkit-overflow-scrolling:touch;

    cursor:grab;

    overscroll-behavior-x:contain;
}

.hso-category-showcase-slider::-webkit-scrollbar{
    display:none;
}

.hso-category-showcase-slider:active{
    cursor:grabbing;
}

.hso-category-showcase-track{
    display:flex;
    align-items:flex-start;

    gap:20px;

    width:max-content;

    min-width:100%;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.hso-category-showcase-card{
    flex:0 0 250px;

    width:250px;
    min-width:250px;

    overflow:hidden;
}

.hso-category-showcase-card-image{
    position:relative;

    width:100%;

    aspect-ratio:4 / 5;

    overflow:hidden;

    background:#f5f5f5;
}

.hso-category-showcase-image-link{
    display:block;

    width:100%;
    height:100%;

    text-decoration:none;
}

.hso-category-showcase-card-image img{
    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .45s ease;
}

.hso-category-showcase-card:hover
.hso-category-showcase-card-image img{
    transform:scale(1.04);
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.hso-category-showcase-placeholder{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-direction:column;

    gap:8px;

    color:#aaa;

    font-size:13px;
}

.hso-category-showcase-placeholder i{
    font-size:28px;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.hso-category-showcase-card-content{
    padding:14px 2px 0;
}

.hso-category-showcase-card-content h4{
    margin:0 0 7px;

    font-size:15px;
    line-height:1.45;

    font-weight:600;

    color:#111;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;
}


/* =========================================================
   PRICE
========================================================= */

.hso-category-showcase-card-content
.hso-product-price{
    margin-bottom:11px;
}


/* =========================================================
   VIEW BUTTON
========================================================= */

.hso-category-showcase-view{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-height:36px;

    padding:8px 16px;

    border:1px solid #111;

    background:#111;
    color:#fff;

    text-decoration:none;

    font-size:13px;
    font-weight:600;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.hso-category-showcase-view:hover{
    background:#fff;
    color:#111;
}


/* =========================================================
   CATEGORY FOOTER
========================================================= */

.hso-category-showcase-footer{
    margin-top:18px;

    display:flex;
    justify-content:flex-end;
}

.hso-category-showcase-category-link{
    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#111;

    text-decoration:none;

    font-size:14px;
    font-weight:600;
}

.hso-category-showcase-category-link:hover{
    text-decoration:underline;
}


/* =========================================================
   EMPTY PRODUCT STATE
========================================================= */

.hso-category-showcase-empty{
    min-width:250px;
    height:250px;

    display:flex;

    align-items:center;
    justify-content:center;

    flex-direction:column;

    gap:8px;

    color:#999;

    background:#f7f7f7;
}


/* =========================================================
   EMPTY MAIN STATE
========================================================= */

.hso-category-showcase-empty-main{
    min-height:260px;

    display:flex;

    align-items:center;
    justify-content:center;

    flex-direction:column;

    gap:10px;

    text-align:center;

    color:#888;
}

.hso-category-showcase-empty-main i{
    font-size:35px;
}

.hso-category-showcase-empty-main strong{
    color:#222;

    font-size:16px;
}

.hso-category-showcase-empty-main span{
    max-width:500px;

    font-size:14px;
    line-height:1.6;
}


/* =========================================================
   992px
========================================================= */

@media (max-width:992px){

    .hso-category-showcase-2{
        padding:55px 20px;
    }

    .hso-category-showcase-title{
        font-size:24px;
    }

    .hso-category-showcase-card{
        flex-basis:220px;
        width:220px;
        min-width:220px;
    }

    .hso-category-showcase-categories{
        gap:45px;
    }

}


/* =========================================================
   768px
========================================================= */

@media (max-width:768px){

    .hso-category-showcase-2{
        padding:45px 15px;
    }

    .hso-category-showcase-header{
        margin-bottom:16px;
    }

    .hso-category-showcase-title{
        font-size:21px;
    }

    .hso-category-showcase-arrow{
        width:36px;
        height:36px;
    }

    .hso-category-showcase-track{
        gap:12px;
    }

    .hso-category-showcase-card{
        flex-basis:180px;
        width:180px;
        min-width:180px;
    }

    .hso-category-showcase-card-content{
        padding-top:11px;
    }

    .hso-category-showcase-card-content h4{
        font-size:14px;
    }

    .hso-category-showcase-view{
        min-height:34px;

        padding:7px 13px;

        font-size:12px;
    }

    .hso-category-showcase-categories{
        gap:38px;
    }

}


/* =========================================================
   480px
========================================================= */

@media (max-width:480px){

    .hso-category-showcase-2{
        padding:35px 12px;
    }

    .hso-category-showcase-title{
        font-size:19px;
    }

    .hso-category-showcase-card{
        flex-basis:160px;
        width:160px;
        min-width:160px;
    }

    .hso-category-showcase-arrow{
        width:33px;
        height:33px;

        font-size:12px;
    }

    .hso-category-showcase-card-content h4{
        font-size:13px;
    }

}