:root{
    --voster-primary: #1a3a5c;
    --voster-primary-hover: #0e2a47;
    --voster-primary-soft: #2a4a6c;
    --voster-text: #595959;
    --voster-muted: #7f7f7f;
    --voster-border: #e6e6e6;
    --voster-bg-soft: #f5f5f5;
}

/* NUCLEAR: break out of every Astra wrapper for products pages */
body.post-type-archive-voster_product,
body.tax-product_cat,
body.page-products{
    overflow-x: hidden !important;
}
body.post-type-archive-voster_product,
body.tax-product_cat,
body.page-products,
body.post-type-archive-voster_product #page,
body.tax-product_cat #page,
body.page-products #page,
body.post-type-archive-voster_product .site,
body.tax-product_cat .site,
body.page-products .site,
body.post-type-archive-voster_product .site-content,
body.tax-product_cat .site-content,
body.page-products .site-content,
body.post-type-archive-voster_product .site-header,
body.tax-product_cat .site-header,
body.page-products .site-header,
body.post-type-archive-voster_product .ast-container,
body.tax-product_cat .ast-container,
body.page-products .ast-container,
body.post-type-archive-voster_product #primary,
body.tax-product_cat #primary,
body.page-products #primary,
body.post-type-archive-voster_product #main,
body.tax-product_cat #main,
body.page-products #main,
body.post-type-archive-voster_product .site-main,
body.tax-product_cat .site-main,
body.page-products .site-main{
    display: block !important;
    float: none !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
body.post-type-archive-voster_product #secondary,
body.tax-product_cat #secondary,
body.page-products #secondary,
body.post-type-archive-voster_product .ast-sidebar-layout,
body.tax-product_cat .ast-sidebar-layout,
body.page-products .ast-sidebar-layout{
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.voster-container{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    width: 100%;
}

.voster-breadcrumb-bar{
    background: var(--voster-bg-soft);
    border-bottom: 1px solid var(--voster-border);
}
.voster-breadcrumb{
    color: var(--voster-muted);
    font-size: 13px;
    line-height: 1.6;
    padding: 12px 0;
}
.voster-breadcrumb a{
    color: var(--voster-muted);
    text-decoration: none;
}
.voster-breadcrumb a:hover{ color: var(--voster-primary); }
.voster-breadcrumb-sep{ margin: 0 8px; color: #ccc; }

.voster-products-layout{
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
    padding: 24px 16px 48px;
    max-width: 1400px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    position: relative;
    left: auto;
    right: auto;
}
.voster-sidebar{ min-width: 0; }
.voster-products-main{ min-width: 0; }

.voster-widget{
    background: #fff;
    border: 1px solid var(--voster-border);
    margin-bottom: 18px;
}
.voster-widget-title{
    background: var(--voster-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 14px;
    margin: 0;
    line-height: 1.3;
}
.voster-widget-cats .voster-cats{
    list-style: none; margin: 0; padding: 0;
}
.voster-widget-cats .voster-cats li{
    border-bottom: 1px dashed var(--voster-border);
}
.voster-widget-cats .voster-cats li:last-child{ border-bottom: 0; }
.voster-widget-cats .voster-cats a{
    display: block;
    padding: 9px 14px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: background-color .2s, color .2s;
}
.voster-widget-cats .voster-cats a:hover,
.voster-widget-cats .voster-cats li.active a{
    background: #eef3f8;
    color: var(--voster-primary);
}

.voster-hot-list{
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.voster-hot-item{
    display: block;
    text-decoration: none;
    color: #333;
}
.voster-hot-img{
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--voster-bg-soft);
    margin-bottom: 6px;
}
.voster-hot-img img{
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.voster-hot-title{
    font-size: 12px;
    line-height: 1.3;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* New Hot Sale carousel (BRDECO style) */
.voster-widget-hot .voster-widget-title{
    background: #d72e1d;
    letter-spacing: 0.5px;
}
.voster-hot-carousel{
    position: relative;
    padding: 0;
    background: #fff;
    overflow: hidden;
}
.voster-hot-slides{
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
    overflow: hidden;
}
.voster-hot-slide{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #333;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.voster-hot-slide.active{
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.voster-hot-slide .voster-hot-img{
    flex: 1 1 auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    margin: 0;
}
.voster-hot-slide .voster-hot-img img{
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}
.voster-hot-slide .voster-hot-title{
    padding: 8px 6px;
    font-size: 12px;
    text-align: center;
    background: #fff;
    color: #444;
    border-top: 1px solid var(--voster-border);
}
.voster-hot-prev, .voster-hot-next{
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.55);
    border: 0;
    width: 26px;
    height: 40px;
    font-size: 24px;
    line-height: 1;
    color: #555;
    cursor: pointer;
    z-index: 3;
    padding: 0;
    border-radius: 2px;
    transition: background 0.2s;
}
.voster-hot-prev{ left: 4px; }
.voster-hot-next{ right: 4px; }
.voster-hot-prev:hover, .voster-hot-next:hover{
    background: rgba(255, 255, 255, 0.95);
    color: #d72e1d;
}
.voster-hot-dots{
    position: absolute;
    bottom: 38px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 3;
    padding: 0 8px;
}
.voster-hot-dot{
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}
.voster-hot-dot:hover{ background: #999; }
.voster-hot-dot.active{
    background: #d72e1d;
    transform: scale(1.2);
}

.voster-contact-list{
    list-style: none; margin: 0; padding: 12px 14px;
    font-size: 13px;
    color: #333;
}
.voster-contact-list li{
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    word-break: break-all;
}
.voster-contact-ico{
    color: var(--voster-primary);
    font-size: 14px;
}
.voster-contact-label{ color: var(--voster-muted); }
.voster-contact-list a{
    color: #333;
    text-decoration: none;
}
.voster-contact-list a:hover{ color: var(--voster-primary); }

.voster-products-header{
    border-bottom: 2px solid var(--voster-primary);
    margin-bottom: 18px;
    padding-bottom: 6px;
}
.voster-products-title{
    font-family: Arial, sans-serif;
    font-size: 22px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.voster-product-grid{
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.voster-product-card{
    background: #fff;
    border: 1px solid var(--voster-border);
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}
.voster-product-card:hover{
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.voster-product-img{
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
    position: relative;
}
.voster-product-img::before{
    content: 'VOSTER';
    position: absolute;
    top: 8px; left: 8px;
    color: rgba(26, 58, 92, 0.18);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
    pointer-events: none;
    z-index: 1;
}
.voster-product-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 14px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}
.voster-no-img{
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--voster-muted);
    font-size: 13px;
}
.voster-product-body{
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.voster-product-name{
    font-size: 15px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 8px;
}
.voster-product-name:hover{ color: var(--voster-primary); }
.voster-product-brief{
    color: var(--voster-text);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.voster-product-inquire{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--voster-primary);
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color .2s;
    margin-top: auto;
}
.voster-product-inquire:hover{ background: var(--voster-primary-hover); color: #fff; }
.voster-inquire-icon{ font-size: 13px; }

.voster-pagination{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.voster-paging{
    list-style: none;
    display: flex;
    gap: 6px;
    margin: 0; padding: 0;
}
.voster-paging li.voster-page a,
.voster-paging li.voster-page span{
    display: inline-block;
    min-width: 34px;
    height: 34px;
    line-height: 32px;
    text-align: center;
    border: 1px solid var(--voster-border);
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    padding: 0 8px;
}
.voster-paging li.voster-page a:hover{
    background: var(--voster-primary);
    color: #fff;
    border-color: var(--voster-primary);
}
.voster-paging li.voster-page.active span,
.voster-paging li.voster-page.active a{
    background: var(--voster-primary);
    color: #fff;
    border-color: var(--voster-primary);
}

.voster-no-products{
    text-align: center;
    padding: 60px 16px;
    color: var(--voster-muted);
    font-size: 14px;
}

.voster-recommend{
    background: #fff;
    border-top: 1px solid var(--voster-border);
    padding: 24px 0 36px;
    max-width: 1400px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
    position: relative;
}
.voster-recommend-title{
    background: var(--voster-primary);
    color: #fff;
    font-size: 16px;
    padding: 8px 16px;
    margin: 0 0 18px;
    font-weight: 600;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.voster-recommend .voster-container{
    padding: 0 16px;
}
.voster-recommend-list{
    list-style: none; margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.voster-recommend-item a{
    display: block;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 1px solid var(--voster-border);
    padding: 10px;
    text-align: center;
}
.voster-recommend-item img{
    max-width: 100%;
    height: 90px;
    object-fit: contain;
    margin-bottom: 6px;
}
.voster-recommend-name{
    font-size: 12px;
    line-height: 1.4;
    color: #333;
}

@media (max-width: 900px){
    .voster-products-layout{
        grid-template-columns: 1fr;
    }
    .voster-product-grid{ grid-template-columns: 1fr; }
    .voster-recommend-list{ grid-template-columns: repeat(2, 1fr); }
}

.voster-tabs .voster-tab-panel{ display: none; }
.voster-tabs .voster-tab-panel.active{ display: block; }

.voster-tab-panel{
    color: var(--voster-text);
    font-size: 14px;
    line-height: 1.7;
    word-wrap: break-word;
}
.voster-tab-panel p{ margin: 0 0 14px; }
.voster-tab-panel img{
    max-width: 100%; height: auto; display: block; margin: 12px auto;
}
.voster-tab-panel table{ width: 100%; border-collapse: collapse; margin: 16px 0; }
.voster-tab-panel table td,
.voster-tab-panel table th{
    border: 1px solid var(--voster-border);
    padding: 8px 12px; vertical-align: top; text-align: left;
}
.voster-tab-panel iframe{ max-width: 100%; }
.voster-tab-panel ul, .voster-tab-panel ol{ padding-left: 24px; margin: 0 0 14px; }
.voster-tab-panel .colorfield-color-swatch{
    width: 118px; height: 71px; display: inline-block;
    margin: 4px; border: 1px solid rgba(0,0,0,0.1);
}
.voster-tab-panel .sliderTable table{ width: 100%; }

/* ============== Product Detail Page ============== */
body.single-voster_product{
    overflow-x: hidden !important;
}
body.single-voster_product,
body.single-voster_product #page,
body.single-voster_product .site,
body.single-voster_product .site-content,
body.single-voster_product .ast-container,
body.single-voster_product #primary,
body.single-voster_product #main,
body.single-voster_product .site-main{
    display: block !important;
    float: none !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
body.single-voster_product #secondary,
body.single-voster_product .ast-sidebar-layout{
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.voster-pd-grid{
    display: grid;
    grid-template-columns: minmax(0, 460px) 1fr;
    gap: 32px;
    align-items: flex-start;
}
.voster-pd-main-img{
    background: #fff;
    border: 1px solid var(--voster-border);
    padding: 18px;
    box-sizing: border-box;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.voster-pd-main-img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.voster-pd-thumbs{
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.voster-pd-thumb{
    aspect-ratio: 1;
    border: 1px solid var(--voster-border);
    padding: 4px;
    box-sizing: border-box;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .15s;
}
.voster-pd-thumb:hover{ border-color: var(--voster-primary); }
.voster-pd-thumb.active{ outline: 2px solid var(--voster-primary); }
.voster-pd-thumb img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.voster-pd-title{
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0 0 12px;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.voster-pd-title > span:first-child{ flex: 1; }
.voster-pd-share-icons{
    display: inline-flex;
    gap: 6px;
    flex-shrink: 0;
}
.voster-pd-share-icons a{
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
}

.voster-pd-brief{
    font-size: 14px;
    line-height: 1.7;
    color: var(--voster-text);
    margin: 0 0 18px;
}

.voster-pd-features{
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.voster-pd-features li{
    text-align: center;
    background: #fff;
    border: 1px solid var(--voster-border);
    padding: 10px 6px;
    box-sizing: border-box;
}
.voster-pd-features li > div:first-child{
    font-size: 22px;
    line-height: 1;
    margin-bottom: 4px;
}
.voster-pd-features li > div:last-child{
    font-size: 10px;
    color: #555;
    font-weight: 600;
    letter-spacing: .3px;
    line-height: 1.2;
}

.voster-pd-qty-row{
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 0 18px;
}
.voster-pd-qty{
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--voster-border);
    background: #fff;
}
.voster-pd-qty button{
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: #555;
}
.voster-pd-qty input{
    width: 50px;
    height: 34px;
    border: 0;
    border-left: 1px solid var(--voster-border);
    border-right: 1px solid var(--voster-border);
    text-align: center;
    font-size: 14px;
    outline: 0;
    box-sizing: border-box;
}

.voster-pd-contact{
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}
.voster-pd-contact li{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    margin: 6px 0;
}
.voster-pd-contact a{
    color: #333;
    text-decoration: none;
}
.voster-pd-contact a:hover{ color: var(--voster-primary); }

.voster-pd-inquire{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--voster-primary);
    color: #fff;
    text-decoration: none;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    min-width: 200px;
    box-sizing: border-box;
    transition: background-color .2s;
}
.voster-pd-inquire:hover{
    background: var(--voster-primary-hover);
    color: #fff;
}

.voster-pd-tabs{
    margin-top: 40px;
    border: 1px solid var(--voster-border);
    background: #fff;
}
.voster-pd-tab-nav{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    background: #f5f5f5;
    border-bottom: 1px solid var(--voster-border);
}
.voster-pd-tab-btn{
    padding: 12px 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    border-right: 1px solid var(--voster-border);
    letter-spacing: .3px;
}
.voster-pd-tab-btn.active{
    background: #fff;
    color: var(--voster-primary);
}
.voster-pd-tab-cont{
    padding: 24px;
}
.voster-pd-tab-panel{
    color: var(--voster-text);
    font-size: 14px;
    line-height: 1.7;
}
.voster-pd-tab-panel p{ margin: 0 0 14px; }
.voster-pd-tab-panel img{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 12px auto;
}
.voster-pd-tab-panel table{
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}
.voster-pd-tab-panel table td,
.voster-pd-tab-panel table th{
    border: 1px solid var(--voster-border);
    padding: 8px 12px;
    vertical-align: top;
    text-align: left;
}

.voster-pd-specs{
    margin-top: 32px;
}
.voster-pd-specs > h3{
    font-size: 14px;
    color: var(--voster-primary);
    font-weight: 700;
    letter-spacing: .5px;
    margin: 0 0 10px;
    padding: 6px 0;
    border-bottom: 1px solid var(--voster-border);
}
.voster-pd-specs table{
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid var(--voster-border);
}
.voster-pd-specs table th{
    width: 200px;
    padding: 10px 14px;
    border: 1px solid var(--voster-border);
    background: #f7f9fb;
    text-align: left;
    font-weight: 500;
    color: #555;
    font-size: 13px;
    vertical-align: top;
}
.voster-pd-specs table td{
    padding: 10px 14px;
    border: 1px solid var(--voster-border);
    color: #333;
    font-size: 13px;
    vertical-align: top;
}

.voster-pd-cta{
    margin-top: 32px;
    background: #fff;
    border: 1px solid var(--voster-border);
    display: flex;
    align-items: center;
    padding: 18px 24px;
    gap: 24px;
    flex-wrap: wrap;
}
.voster-pd-cta-calc{
    display: flex;
    align-items: center;
    gap: 10px;
}
.voster-pd-cta-icon{ font-size: 22px; }
.voster-pd-cta-label{ font-size: 15px; color: #333; font-weight: 600; }
.voster-pd-cta-calc-btn{
    display: inline-block;
    padding: 8px 18px;
    background: transparent;
    color: var(--voster-primary);
    border: 1px solid var(--voster-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}
.voster-pd-cta-spacer{ flex: 1; }
.voster-pd-cta-contact{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}
.voster-pd-cta-circle{
    width: 32px;
    height: 32px;
    background: var(--voster-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.voster-pd-related{
    margin-top: 36px;
}
.voster-pd-related > h3{
    font-size: 14px;
    color: #333;
    font-weight: 700;
    background: #f0f0f0;
    padding: 10px 16px;
    margin: 0 0 16px;
    border-left: 4px solid var(--voster-primary);
}
.voster-pd-related-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.voster-pd-related-list li{
    background: #fff;
    border: 1px solid var(--voster-border);
    padding: 14px;
    box-sizing: border-box;
    text-align: center;
}
.voster-pd-related-list a{
    display: block;
    text-decoration: none;
    color: #333;
}
.voster-pd-related-img{
    aspect-ratio: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
}
.voster-pd-related-img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.voster-pd-related-name{
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

@media (max-width: 900px){
    .voster-pd-grid{ grid-template-columns: 1fr; }
    .voster-pd-features{ grid-template-columns: repeat(2, 1fr); }
    .voster-pd-related-list{ grid-template-columns: repeat(2, 1fr); }
}

/* =================================================================
   Inquire page (page-inquire.php)
   ================================================================= */

.voster-inquire-page{
    background: var(--voster-bg-soft);
    padding: 32px 0 56px;
    min-height: 60vh;
}
.voster-inquire-head{
    margin: 0 0 22px;
}
.voster-inquire-title{
    font-size: 28px;
    font-weight: 700;
    color: var(--voster-primary);
    margin: 0 0 8px;
    letter-spacing: .3px;
    line-height: 1.2;
}
.voster-inquire-sub{
    margin: 0;
    color: var(--voster-muted);
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.voster-inquire-product-chip{
    background: var(--voster-primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
}

.voster-inquire-grid{
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.voster-inquire-form{
    background: #fff;
    border: 1px solid var(--voster-border);
    padding: 24px;
    box-sizing: border-box;
}
.voster-field-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 14px;
}
.voster-field{
    display: block;
}
.voster-field-block{
    display: block;
    margin-bottom: 14px;
}
.voster-field-label{
    display: block;
    font-size: 12px;
    color: #555;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: .3px;
}
.voster-field-label em{
    color: #d72e1d;
    font-style: normal;
    margin-left: 2px;
}
.voster-inquire-form input[type="text"],
.voster-inquire-form input[type="email"],
.voster-inquire-form textarea{
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--voster-border);
    background: #fff;
    padding: 9px 12px;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    transition: border-color .15s, box-shadow .15s;
    font-family: inherit;
}
.voster-inquire-form input:focus,
.voster-inquire-form textarea:focus{
    outline: 0;
    border-color: var(--voster-primary);
    box-shadow: 0 0 0 2px rgba(26, 58, 92, .12);
}
.voster-inquire-form textarea{
    resize: vertical;
    min-height: 110px;
}

.voster-form-actions{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.voster-btn-primary{
    background: var(--voster-primary);
    color: #fff;
    border: 0;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background-color .15s, transform .15s;
    min-width: 180px;
}
.voster-btn-primary:hover{ background: var(--voster-primary-hover); }
.voster-btn-primary:disabled{
    background: #9aa6b1;
    cursor: not-allowed;
}
.voster-btn-primary.voster-btn-is-success{
    background: #2e7d32;
}
.voster-form-note{
    margin: 0;
    font-size: 12px;
    color: var(--voster-muted);
    flex: 1;
    min-width: 200px;
    line-height: 1.5;
}

.voster-form-feedback{
    margin-top: 16px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.5;
    border-left: 3px solid;
    background: #f7f7f7;
}
.voster-form-feedback-loading{ border-color: #1976d2; color: #0d3a72; background: #eef4fb; }
.voster-form-feedback-success{ border-color: #2e7d32; color: #1b5e20; background: #ecf6ed; }
.voster-form-feedback-error{   border-color: #d72e1d; color: #8a1c11; background: #fdecea; }

/* Right side: contact card */

.voster-inquire-side{ min-width: 0; }
.voster-contact-card{
    background: #fff;
    border: 1px solid var(--voster-border);
    padding: 18px 20px;
    box-sizing: border-box;
}
.voster-contact-card-title{
    font-size: 15px;
    font-weight: 700;
    color: var(--voster-primary);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--voster-border);
    letter-spacing: .3px;
}
.voster-contact-list{
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}
.voster-contact-item{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--voster-border);
}
.voster-contact-item:last-child{ border-bottom: 0; }
.voster-contact-ico{
    width: 28px;
    height: 28px;
    background: var(--voster-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    line-height: 1;
}
.voster-contact-body{
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.voster-contact-label{
    font-size: 11px;
    color: var(--voster-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
}
.voster-contact-value{
    font-size: 14px;
    color: #333;
    text-decoration: none;
    word-break: break-all;
}
.voster-contact-value:hover{ color: var(--voster-primary); text-decoration: underline; }

.voster-contact-qr{
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--voster-border);
    text-align: center;
}
.voster-contact-qr img{
    width: 160px;
    height: 160px;
    max-width: 100%;
    display: block;
    margin: 0 auto 6px;
    border: 1px solid var(--voster-border);
    background: #fff;
}
.voster-contact-qr-cap{
    font-size: 12px;
    color: var(--voster-muted);
}

.voster-inquire-company{
    margin: 14px 0 0;
    font-size: 12px;
    color: var(--voster-muted);
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 860px){
    .voster-inquire-grid{ grid-template-columns: 1fr; }
    .voster-field-row{ grid-template-columns: 1fr; gap: 12px; }
    .voster-inquire-title{ font-size: 24px; }
}

/* VOSTER-BEAUTIFY-2026-07-09 */
.voster-widget{
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(11,42,74,.08);
    border: 0;
    margin-bottom: 20px;
}
.voster-widget-title{
    background: #0b2a4a;
    color: #fff;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    border-bottom: 3px solid #c9a96e;
    margin: 0;
    line-height: 1.3;
}
.voster-widget-hot .voster-widget-title{
    background: #0b2a4a;
    border-bottom: 3px solid #c9a96e;
}

.voster-hot-carousel{
    padding: 14px 12px 12px;
    background: #fff;
}
.voster-hot-slides{
    border-radius: 6px;
    background: #f8f8f8;
}
.voster-hot-img{ background: #fafafa; }
.voster-hot-title{
    padding: 10px 6px 0;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-align: center;
}
.voster-hot-prev, .voster-hot-next{
    border-radius: 50%;
    width: 30px; height: 30px;
    line-height: 28px;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
    top: 38%;
    transition: all .2s;
}
.voster-hot-prev:hover, .voster-hot-next:hover{
    background: #0b2a4a;
    color: #fff;
}
.voster-hot-dots{ bottom: 42px; }
.voster-hot-dot{ transition: all .2s; }
.voster-hot-dot.active{
    background: #c9a96e;
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(201,169,110,.25);
}

.voster-widget-contact .voster-contact-list{
    list-style: none;
    margin: 0;
    padding: 14px 16px;
}
.voster-widget-contact .voster-contact-list li{
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e6e6e6;
    font-size: 13px;
    color: #333;
}
.voster-widget-contact .voster-contact-list li:last-child{ border-bottom: 0; }
.voster-contact-icon{
    width: 36px; height: 36px;
    background: #0b2a4a;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(11,42,74,.18);
}
.voster-contact-list a{
    color: #0b2a4a;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}
.voster-contact-list a:hover{ color: #c9a96e; }

/* VOSTER-RESPONSIVE-2026-07-09 */
/* Override inline styles using !important */

/* Tablet 1024 */
@media (max-width: 1024px) {
    .voster-products-layout{
        grid-template-columns: 240px 1fr !important;
        gap: 20px !important;
        padding: 20px 14px 36px !important;
    }
    .voster-pd-grid{
        grid-template-columns: minmax(0, 380px) 1fr !important;
        gap: 24px !important;
    }
}

/* Mobile 768 */
@media (max-width: 768px) {
    .voster-products-layout{
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 16px 12px 24px !important;
    }
    .voster-products-side{
        order: -1;
        margin-bottom: 16px;
    }
    .voster-product-grid{
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    /* Detail page */
    .voster-pd-grid{
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .voster-pd-main-img{ padding: 12px !important; }
    .voster-pd-thumbs{
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 6px !important;
    }
    .voster-pd-features{ display: none !important; }
    .voster-pd-title{
        font-size: 20px !important;
        line-height: 1.3 !important;
        flex-wrap: wrap !important;
    }
    .voster-pd-share-icons{
        flex-wrap: wrap !important;
    }

    /* Hot carousel */
    .voster-hot-prev, .voster-hot-next{
        width: 26px !important;
        height: 26px !important;
        line-height: 24px !important;
        font-size: 18px !important;
    }

    /* Widget */
    .voster-widget{ margin-bottom: 14px !important; }
    .voster-widget-title{
        padding: 10px 14px !important;
        font-size: 14px !important;
    }
}

/* Small mobile 480 */
    /* VOSTER-MOBILE-V2-2026-07-09 */
    /* Hide Hot Sale widget on mobile */
    .voster-widget-hot{ display: none !important; }
    /* Detail page tabs: vertical accordion */
    .voster-pd-tab-nav{
        flex-direction: column !important;
        background: #fff !important;
    }
    .voster-pd-tab-btn{
        width: 100% !important;
        box-sizing: border-box;
        border-right: 0 !important;
        border-bottom: 1px solid var(--voster-border) !important;
        text-align: left !important;
    }
    .voster-pd-tab-btn.active{
        background: var(--voster-primary) !important;
        color: #fff !important;
    }
    .voster-pd-tab-cont{ padding: 16px !important; }@media (max-width: 480px) {
    .voster-products-layout{
        padding: 12px 8px 20px !important;
    }
    .voster-pd-thumbs{
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .voster-pd-features{
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }
    .voster-pd-title{ font-size: 18px !important; }
    .voster-pd-share-icons a{
        width: 26px !important;
        height: 26px !important;
        font-size: 12px !important;
    }
    .voster-pd-main-img{ padding: 8px !important; }
}

/* VOSTER-CATS-COLLAPSE-2026-07-09 */
/* Mobile-only: collapse cats widget by default */
@media (max-width: 768px) {
    .voster-widget-contact{ display: none !important; }
    .voster-widget-cats .voster-cats-tree{ display: none; }
    .voster-widget-cats.expanded .voster-cats-tree{ display: block; }
    .voster-cats-widget-title{
        cursor: pointer;
        position: relative;
        user-select: none;
    }
    .voster-widget-cats .voster-cats-widget-title::after{
        content: '+';
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        line-height: 1;
        color: #fff;
    }
    .voster-widget-cats.expanded .voster-cats-widget-title::after{
        content: '-';
    }
}