/*==================================
    SAB BE SPECIAL
==================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;

}

body{
background:#fff;
color:#222;
}

.container{
width:95%;
max-width:1600px;
margin:auto;
}

/*======================
HEADER
=======================*/

.top-header{

background:#fff;

padding:22px 0;

}

.header-flex{

display:flex;

align-items:center;

justify-content:space-between;

gap:35px;

}

.logo img{

width:130px;

display:block;

}

/*======================
SEARCH
=======================*/

.search-box{

flex:1;

}

.search-box form{

display:flex;

}

.search-box input{

width:100%;

height:58px;

border:2px solid #c79b2d;

border-right:none;

padding:0 25px;

font-size:16px;

outline:none;

border-radius:40px 0 0 40px;

}

.search-box button{

width:72px;

border:none;

background:#c79b2d;

color:#fff;

font-size:22px;

cursor:pointer;

border-radius:0 40px 40px 0;

}

/*======================
RIGHT HEADER
=======================*/

.right-header{

display:flex;

align-items:center;

gap:18px;

}

.btn-gold{

display:flex;

align-items:center;

gap:10px;

padding:14px 22px;

border:2px solid #c79b2d;

border-radius:8px;

text-decoration:none;

color:#b8860b;

font-size:15px;

font-weight:600;

transition:.3s;

}

.btn-gold:hover{

background:#c79b2d;

color:#fff;

}

.call-box{

display:flex;

align-items:center;

gap:10px;

}

.call-box small{

display:block;

font-size:13px;

}

.call-box strong{

font-size:16px;

}

.account{

display:flex;

align-items:center;

gap:8px;

font-size:16px;

font-weight:600;

}

/*======================
MENU
=======================*/

.main-nav{

background:#111;

border-bottom:3px solid #c79b2d;

}

.menu{

display:flex;

list-style:none;

}

.menu li{

flex:1;

border-right:1px solid rgba(255,255,255,.12);

}

.menu li:last-child{

border-right:none;

}

.menu li a{

height:72px;

display:flex;

align-items:center;

justify-content:center;

gap:10px;

color:#fff;

text-decoration:none;

font-size:16px;

font-weight:500;

transition:.3s;

padding:0 10px;

text-align:center;

}

.menu li a:hover{

background:#c79b2d;

}

/*======================
HERO
=======================*/

.hero-section{

height:650px;

background:#fff;

}

/*======================
RESPONSIVE
=======================*/

@media(max-width:1200px){

.header-flex{

flex-wrap:wrap;

}

.search-box{

order:3;

width:100%;

}

.right-header{

flex-wrap:wrap;

}

.menu{

flex-wrap:wrap;

}

.menu li{

width:50%;

flex:none;

}

}

@media(max-width:768px){

.logo img{

width:100px;

}

.search-box input{

height:50px;

}

.search-box button{

width:60px;

}

.menu{

display:block;

}

.menu li{

width:100%;

border-right:none;

border-bottom:1px solid rgba(255,255,255,.1);

}

.menu li a{

height:60px;

}

.btn-gold{

padding:10px 15px;

font-size:14px;

}

.call-box{

display:none;

}

.account{

display:none;

}
/*=========================
HERO SECTION
==========================*/

.hero-section{
    height:700px;
    background:url("../images/banner.jpg") center center/cover no-repeat;
    position:relative;
}

.hero-overlay{
    width:100%;
    height:100%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:600px;
    margin-left:100px;
}

.hero-content h1{
    font-size:54px;
    font-weight:700;
    color:#222;
    line-height:65px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    color:#444;
    line-height:32px;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    background:#c79b2d;
    color:#fff;
    text-decoration:none;
    padding:18px 40px;
    border-radius:40px;
    font-size:18px;
    font-weight:600;
}

.hero-btn:hover{
    background:#a87e20;
}

.welcome-section{
    padding:80px 0;
    text-align:center;
}

.welcome-section h2{
    font-size:42px;
    margin-bottom:15px;
}

.welcome-section p{
    font-size:18px;
    color:#666;
}

}/* =================================
   CORPORATE ENQUIRY FORM
================================= */

.corporate-form {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px 35px;
    box-sizing: border-box;
}

/* 2 COLUMN GRID */
.corporate-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
    margin-bottom: 22px;
}

/* FIELD */
.corporate-field {
    width: 100%;
}

/* INPUT + SELECT */
.corporate-form input[type="text"],
.corporate-form input[type="email"],
.corporate-form input[type="tel"],
.corporate-form select {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    box-sizing: border-box;

    border: 1px solid #ddd;
    border-radius: 5px;

    background: #fff;
    color: #333;

    font-size: 15px;
    font-family: inherit;

    outline: none;
    transition: all .25s ease;
}

/* PLACEHOLDER */
.corporate-form input::placeholder {
    color: #777;
    opacity: 1;
}

/* SELECT */
.corporate-form select {
    color: #555;
    cursor: pointer;
}

/* FOCUS */
.corporate-form input:focus,
.corporate-form select:focus {
    border-color: #d49a20;
    box-shadow: 0 0 0 2px rgba(212,154,32,.10);
}

/* SUBMIT AREA */
.corporate-submit {
    text-align: left;
    margin-top: 0;
}

/* BUTTON */
.corporate-submit input[type="submit"] {
    width: 220px;
    height: 50px;

    padding: 0 30px;

    border: none;
    border-radius: 5px;

    background: #d49a20;
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: all .25s ease;
}

/* HOVER */
.corporate-submit input[type="submit"]:hover {
    background: #bd8616;
}

/* CF7 DEFAULT */
.corporate-form p {
    margin: 0;
}

.corporate-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 4px;
}

.corporate-form .wpcf7-response-output {
    margin: 15px 0 0 !important;
    padding: 10px 15px !important;
    border-radius: 5px;
}


/* =================================
   TABLET
================================= */

@media (max-width: 1024px) {

    .corporate-form {
        max-width: 900px;
    }

}


/* =================================
   MOBILE
================================= */

@media (max-width: 767px) {

    .corporate-form {
        width: 100%;
        padding: 5px 15px 25px;
    }

    .corporate-row-2 {
        grid-template-columns: 1fr;
        gap: 13px;
        margin-bottom: 15px;
    }

    .corporate-form input[type="text"],
    .corporate-form input[type="email"],
    .corporate-form input[type="tel"],
    .corporate-form select {
        height: 48px;
    }

    .corporate-submit {
        margin-top: 20px;
    }

    .corporate-submit input[type="submit"] {
        width: 100%;
    }
}

.sss-account{color:#d6a526;}.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    float: left;
    margin: 0px 2.8% 0.992em 0;
    padding: 0;
    position: relative;
    width: 22.05%;
    margin-left: 0;
}.woocommerce .products ul, .woocommerce ul.products {
    margin: 0;}ul.products li.last, .woocommerce-page ul.products li.last {
    margin-right: 0 !important;
}
ul.products.columns-4 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 35px 30px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

ul.products.columns-4::before,
ul.products.columns-4::after {
    display: none !important;
    content: none !important;
}

ul.products.columns-4 > li.product {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
}
.donload_bt{padding-top:10px;}.donload_bt a{color: #fff !important;
    padding: 5px 20px !important;
    text-transform: capitalize;background: #C29318 !important;
   
    border-radius: 10px;
    width: 70%;
    margin: auto !important;
   
    text-align: center;}
    .elementor-53 .elementor-element.elementor-element-92f9efb .wpr-nav-menu .wpr-menu-item:hover, .elementor-53 .elementor-element.elementor-element-92f9efb .wpr-nav-menu > .menu-item-has-children:hover > .wpr-sub-icon, .elementor-53 .elementor-element.elementor-element-92f9efb .wpr-nav-menu .wpr-menu-item.wpr-active-menu-item, .elementor-53 .elementor-element.elementor-element-92f9efb .wpr-nav-menu > .menu-item-has-children.current_page_item > .wpr-sub-icon,.wpr-nav-menu li a:hover{color: #C29318 !important; border-color: #C29318 !important;}.elementor-53 .elementor-element.elementor-element-92f9efb.wpr-pointer-line-fx .wpr-menu-item:before, .elementor-53 .elementor-element.elementor-element-92f9efb.wpr-pointer-line-fx .wpr-menu-item:after{background-color:#C29318 !important;}
    .sss-account-wrap {
    position: relative;
    display: inline-block;
    z-index: 999999;
}

/* Dropdown */
.sss-account-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 210px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    padding: 6px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    z-index: 999999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

/* Show on hover */
.sss-account-wrap:hover .sss-account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Each menu item */
.sss-account-dropdown a {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    gap: 12px;

    color: #333333;
    background: #ffffff;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 500;

    transition: all 0.2s ease;
}

/* Icon */
.sss-account-dropdown a i {
    width: 18px;
    font-size: 14px;
    text-align: center;
    color: #777777;
    transition: 0.2s ease;
}

/* Hover */
.sss-account-dropdown a:hover {
    background: #C29318 !important;
    color: #ffffff !important;
}

/* Hover icon */
.sss-account-dropdown a:hover i {
    color: #ffffff !important;
}/* =========================================
   SSS - My Account Page
========================================= */

.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Left Account Menu */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 240px;
    flex: 0 0 240px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
    border-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 14px 18px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s ease;
}

/* Active + Hover */
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: #C29318;
    color: #fff !important;
}

/* Right Content */
.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    min-width: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
}

/* Dashboard Heading */
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
    color: #333;
    margin-top: 0;
}

/* Links */
.woocommerce-account .woocommerce-MyAccount-content a {
    color: #C29318;
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
    color: #9d7610;
}

/* Buttons */
.woocommerce-account .woocommerce-MyAccount-content button,
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content a.button {
    background: #C29318 !important;
    color: #fff !important;
    border: 0;
    border-radius: 4px;
    padding: 11px 20px;
    font-weight: 500;
}

.woocommerce-account .woocommerce-MyAccount-content button:hover,
.woocommerce-account .woocommerce-MyAccount-content .button:hover,
.woocommerce-account .woocommerce-MyAccount-content a.button:hover {
    background: #a77d12 !important;
    color: #fff !important;
}

/* Form Fields */
.woocommerce-account .woocommerce-MyAccount-content input,
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-MyAccount-content textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 11px 12px;
    min-height: 42px;
    box-sizing: border-box;
}

.woocommerce-account .woocommerce-MyAccount-content input:focus,
.woocommerce-account .woocommerce-MyAccount-content select:focus,
.woocommerce-account .woocommerce-MyAccount-content textarea:focus {
    border-color: #C29318;
    outline: none;
}

/* Notices */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info {
    border-top-color: #C29318;
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .woocommerce-account .woocommerce {
        display: block;
        margin: 25px auto;
        padding: 0 15px;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
        margin-bottom: 20px;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 20px 15px;
    }

}
/* =========================================
   SSS SINGLE PRODUCT
========================================= */

.sss-single-product {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.sss-product-main {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 50px;
    align-items: start;
}

/* =========================
   PRODUCT GALLERY
========================= */

.sss-product-gallery {
    position: relative;
}

.sss-product-gallery .woocommerce-product-gallery {
    width: 100% !important;
    margin: 0 !important;
}

.sss-product-gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.sss-product-gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;    border-radius: 10px;border:1px solid #D09B2E;
}

.woocommerce div.product div.images .flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    width: 80px;
    margin: 0;
}

.woocommerce div.product div.images .flex-control-thumbs img {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 3px;
    transition: .2s;
}

.woocommerce div.product div.images .flex-control-thumbs img:hover {
    border-color: #C29318;
}


/* =========================
   PRODUCT DETAILS
========================= */

.sss-product-details {
    padding-top: 5px;
}

.sss-product-details .product_title {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 600;
    color: #222;
    margin: 0 0 15px;
}

.sss-product-details .price {
    font-size: 24px;
    font-weight: 600;
    color: #C29318;
    margin: 15px 0 20px;
}

.sss-product-details .woocommerce-product-details__short-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}


/* =========================
   RATING
========================= */

.sss-product-details .woocommerce-product-rating {
    margin-bottom: 15px;
}

.sss-product-details .star-rating {
    color: #C29318;
}


/* =========================
   ENQUIRY BUTTON
========================= */

.sss-enquiry-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    min-height: 52px;

    background: #C29318;
    border: 1px solid #C29318;
    border-radius: 5px;

    color: #fff !important;
    text-decoration: none !important;

    font-size: 16px;
    font-weight: 600;

    transition: all .25s ease;
}

.sss-enquiry-button:hover {
    background: #fff;
    color: #C29318 !important;
}

.sss-enquiry-button i {
    font-size: 17px;
}


/* =========================
   VARIATIONS
========================= */

.sss-product-details table.variations {
    width: 100%;
    margin-bottom: 20px;
}

.sss-product-details table.variations td,
.sss-product-details table.variations th {
    padding: 8px 0;
}

.sss-product-details table.variations select {
    width: 100%;
    min-height: 44px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}


/* =========================
   PRODUCT META
========================= */

.sss-product-details .product_meta {
    border-top: 1px solid #eee;
    margin-top: 25px;
    padding-top: 18px;
    font-size: 13px;
    color: #666;
}

.sss-product-details .product_meta a {
    color: #C29318;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .sss-single-product {
        margin: 20px auto;
        padding: 0 15px;
    }

    .sss-product-main {
        display: block;
    }

    .sss-product-gallery {
        margin-bottom: 30px;
    }

    .sss-product-details .product_title {
        font-size: 23px;
    }

    .sss-product-details .price {
        font-size: 21px;
    }

    .woocommerce div.product div.images .flex-control-thumbs li {
        width: 65px;
    }

}
.single-product #secondary,
.single-product .widget-area,
.single-product aside.sidebar,
.single-product .sidebar {
    display: none !important;
}

.single-product .content-area {
    width: 100% !important;
    max-width: 100% !important;
}
.sss-main-image {
    border-radius: 12px;
    overflow: hidden;
}

.sss-main-image img {
    border-radius: 12px;
}

.sss-thumb {
    border-radius: 8px;
    overflow: hidden;
}

.sss-thumb img {
    border-radius: 6px;
}
#sidebar{display:none;}.sss-single-product .sss-main-image {
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid #eee;
}

.sss-single-product .sss-main-image img,
.sss-single-product .sss-product-main-img {
    display: block !important;
    width: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
}

/* Thumbnails */
.sss-single-product .sss-thumb {
    border-radius: 10px !important;
    overflow: hidden !important;
}

.sss-single-product .sss-thumb img {
    display: block !important;
    border-radius: 8px !important;
}
/* =========================================
   SSS CATEGORY PAGE
========================================= */

.sss-category-page {
    max-width: 1250px;
    margin: 0 auto;
    padding: 25px 20px 60px;
}


/* =========================
   BREADCRUMB
========================= */

.sss-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;

    font-size: 13px;
    color: #777;
}

.sss-breadcrumb a {
    color: #333;
    text-decoration: none;
}

.sss-breadcrumb a:hover {
    color: #C29318;
}

.sss-breadcrumb span:last-child {
    color: #C29318;
}


/* =========================
   MAIN LAYOUT
========================= */

.sss-category-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 35px;
    align-items: start;
}


/* =========================
   LEFT CATEGORY
========================= */

.sss-category-sidebar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.sss-category-sidebar h3 {
    margin: 0;
    padding: 16px 18px;

    font-size: 17px;
    font-weight: 600;

    color: #fff;
    background: #C29318;
}

.sss-category-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sss-category-sidebar li {
    margin: 0;
    border-bottom: 1px solid #eee;
}

.sss-category-sidebar li:last-child {
    border-bottom: none;
}

.sss-category-sidebar li a {
    display: block;
    padding: 12px 16px;

    color: #333;
    font-size: 14px;
    text-decoration: none;

    transition: all .2s ease;
}

.sss-category-sidebar li a:hover {
    background: #faf5e8;
    color: #C29318;
}

.sss-category-sidebar li.active a {
    background: #C29318;
    color: #fff !important;
}


/* =========================
   RIGHT HEADING
========================= */

.sss-category-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 25px;
}

.sss-category-heading h1 {
    margin: 0 0 8px;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;

    color: #222;
}

.sss-category-description {
    max-width: 700px;

    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.sss-product-count {
    white-space: nowrap;

    color: #777;
    font-size: 13px;
}


/* =========================
   PRODUCT GRID
========================= */

.sss-category-products ul.products {
    display: grid !important;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;

    margin: 0 !important;
    padding: 0 !important;
}

.sss-category-products ul.products::before,
.sss-category-products ul.products::after {
    display: none !important;
}

.sss-category-products ul.products li.product {
    width: auto !important;
    margin: 0 !important;

    background: #fff;

    border: 1px solid #eee;
    border-radius: 10px;

    overflow: hidden;

    padding-bottom: 15px;

    transition: all .25s ease;
}

.sss-category-products ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}


/* PRODUCT IMAGE */

.sss-category-products ul.products li.product img {
    width: 100%;
    height: 260px;

    object-fit: contain;

    margin: 0 !important;

    padding: 10px;

    box-sizing: border-box;
}


/* PRODUCT TITLE */

.sss-category-products ul.products li.product .woocommerce-loop-product__title {
    padding: 5px 15px 0;

    font-size: 15px;
    font-weight: 500;

    color: #333;
}


/* PRICE */

.sss-category-products ul.products li.product .price {
    padding: 0 15px;

    color: #C29318;
    font-size: 15px;
    font-weight: 600;
}


/* BUTTON */

.sss-category-products ul.products li.product .button {
    margin: 8px 15px 0;

    background: #C29318 !important;
    color: #fff !important;

    border-radius: 4px;

    font-size: 13px;

    padding: 10px 15px;
}

.sss-category-products ul.products li.product .button:hover {
    background: #a77d12 !important;
}


/* =========================
   PAGINATION
========================= */

.sss-pagination {
    margin-top: 35px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .sss-category-page {
        padding: 20px 15px 40px;
    }

    .sss-category-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sss-category-sidebar {
        width: 100%;
    }

    .sss-category-sidebar ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .sss-category-sidebar li {
        border-right: 1px solid #eee;
    }

    .sss-category-heading {
        display: block;
    }

    .sss-category-heading h1 {
        font-size: 24px;
    }

    .sss-product-count {
        margin-top: 10px;
    }

    .sss-category-products ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .sss-category-products ul.products li.product img {
        height: 180px;
    }

    .sss-category-products ul.products li.product .woocommerce-loop-product__title {
        font-size: 13px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .sss-category-products ul.products li.product .price {
        padding-left: 10px;
        padding-right: 10px;
    }

}/* ==============================
   CATEGORY SIDEBAR
============================== */

.sss-category-sidebar {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.sss-category-sidebar h3 {
    margin: 0;
    padding: 16px 18px;
    background: #C29318;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}


/* MAIN CATEGORY */

.sss-category-list,
.sss-sub-category {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sss-main-category {
    border-bottom: 1px solid #eee;
}

.sss-main-category > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 13px 16px;

    color: #222;
    background: #fff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none !important;

    transition: .2s ease;
}

.sss-main-category > a:hover,
.sss-main-category.active > a {
    background: #C29318;
    color: #fff !important;
}


/* SUB CATEGORY */

.sss-sub-category {
    background: #fafafa;
    padding: 4px 0 7px;
}

.sss-sub-category li {
    margin: 0;
}

.sss-sub-category li a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 9px 15px 9px 32px;

    color: #555;

    font-size: 13px;
    font-weight: 400;

    text-decoration: none !important;

    position: relative;

    transition: .2s ease;
}


/* Small line before subcategory */

.sss-sub-category li a:before {
    content: "›";

    position: absolute;
    left: 18px;

    color: #C29318;
    font-size: 16px;
}


/* SUB HOVER */

.sss-sub-category li a:hover,
.sss-sub-category li.active a {
    color: #C29318 !important;
    background: #f8f2e3;
}


/* COUNT */

.sss-cat-count {
    font-size: 11px;
    color: #999;
}

.sss-main-category > a:hover .sss-cat-count,
.sss-main-category.active > a .sss-cat-count {
    color: #fff;
}

.sss-sub-category li a:hover .sss-cat-count,
.sss-sub-category li.active a .sss-cat-count {
    color: #C29318;
}
/* =====================================
   ONLY SELECTED CATEGORY IS GOLD
===================================== */

/* Selected MAIN category */
.sss-category-sidebar
.sss-main-category.active > a {
    background: #C29318 !important;
    color: #fff !important;
}


/* Subcategories of selected main category
   should remain NORMAL */
.sss-category-sidebar
.sss-main-category.active
.sss-sub-category li:not(.active) a {
    background: #fafafa !important;
    color: #555 !important;
}


/* Selected SUBCATEGORY only */
.sss-category-sidebar
.sss-sub-category li.active > a {
    background: #C29318 !important;
    color: #fff !important;
}


/* Selected subcategory arrow */
.sss-category-sidebar
.sss-sub-category li.active > a:before {
    color: #fff !important;
}


/* Normal subcategory */
.sss-category-sidebar
.sss-sub-category li:not(.active) > a {
    background: #fafafa !important;
    color: #555 !important;
}


/* Hover */
.sss-category-sidebar
.sss-sub-category li:not(.active) > a:hover {
    background: #f8f2e3 !important;
    color: #C29318 !important;
}.sss-category-sidebar .sss-sub-category {
    padding-left: 15px !important;
}

.sss-category-sidebar .sss-sub-category li a {
    padding-left: 32px !important;
}
.shopengine-wishlist,.shopengine-comparison.badge,.shopengine-icon-quick_view_1::before{display:none;}.sss-product-description{font-size: 14px;
    line-height: 20px;
    text-align: justify;
    padding-bottom: 20px;}/* ================================
   SSS CONTACT FORM 7
================================ */

.sss-contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Inputs */

.sss-contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.sss-contact-form input[type="text"],
.sss-contact-form input[type="tel"],
.sss-contact-form input[type="email"],
.sss-contact-form input[type="number"] {
    width: 100%;
    height: 38px;
    padding: 0 13px;
    border: 1px solid #d7dce2;
    border-radius: 6px;
    background: #fff;
    color: #333;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    outline: none;
}

/* Placeholder */

.sss-contact-form input::placeholder {
    color: #52647a;
    opacity: 1;
}

/* Focus */

.sss-contact-form input:focus {
    border-color: #D09B2E;
    box-shadow: none;
}

/* Submit Button */

.sss-contact-form input[type="submit"].sss-submit {
   
    height: 39px;
    padding: 0 15px;
    border: none;
    border-radius: 6px;
    background:#D09B2E;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sss-contact-form input[type="submit"].sss-submit:hover {
    background: #D09B2E;
}

/* CF7 Validation */

.sss-contact-form .wpcf7-not-valid {
    border-color: #dc3232 !important;
}

.sss-contact-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 4px;
}

/* Success/Error message */

.sss-contact-form .wpcf7-response-output {
    margin: 15px 0 0;
    padding: 8px 10px;
    font-size: 13px;
}

/* Remove extra paragraph spacing */

.sss-contact-form p {
    margin: 0;
}

/* Mobile */

@media (max-width: 600px) {

    .sss-contact-form {
        gap: 18px;
    }

    .sss-contact-form input[type="text"],
    .sss-contact-form input[type="tel"],
    .sss-contact-form input[type="email"],
    .sss-contact-form input[type="number"] {
        height: 42px;
    }

    .sss-contact-form input[type="submit"].sss-submit {
        height: 42px;
    }
}
.pum-theme-590 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close{background-color:#D09B2E !important;}
.wpr-menu-item:after{background-color:#D09B2E !important;}
.onsale{display:none;}
.wpr-sub-mega-menu{/*left:-200px !important;*/ top:39px;width:200px !important;}
#menu-item-44 .wpr-sub-mega-menu{width:600px !important;}/* =========================================
   PRODUCT DESCRIPTION ACCORDION
========================================= */

.sss-description-accordion {
    width: 100%;
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
}

/* Header */

.sss-accordion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f6f7f8;
    padding: 14px 18px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

/* Icon */

.sss-accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    font-size: 14px;
}

/* Title */

.sss-accordion-title {
    flex: 1;
}

/* Arrow */

.sss-accordion-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* Content */

.sss-accordion-content {
    display: none;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-top: none;
    line-height: 1.7;
    font-size: 15px;
    color: #333;
}

/* Open */

.sss-description-accordion.active .sss-accordion-content {
    display: block;
}

.sss-description-accordion.active .sss-accordion-arrow {
    transform: rotate(180deg);
}

.sss-description-accordion.active .sss-accordion-header {
    background: #f1f2f3;
}
.sss-meta-item a{color:#C29318 !important;}
.woocommerce div.product div.images .woocommerce-product-gallery__trigger{z-index:9;}.related h2{display:none;}
.woocommerce ul.products li.product .button{    background: #D09B2E;
    color: #fff;}

/* =====================================================
   YOU MAY ALSO LIKE / RELATED PRODUCTS
===================================================== */

.sss-related-products {

    width: 100%;
    max-width: 1400px;

    margin: 60px auto 0;

    padding: 0 30px 60px;

    box-sizing: border-box;

    overflow: hidden;
}


/* =====================================================
   TITLE
===================================================== */

.sss-related-title {

    margin-bottom: 25px;

}

.sss-related-title h2 {

    margin: 0;

    font-size: 28px;

    font-weight: 600;

    line-height: 1.3;

}


/* =====================================================
   CAROUSEL ROW
===================================================== */

.sss-related-products ul.products {

    display: flex !important;

    flex-wrap: nowrap !important;

    gap: 25px !important;

    width: 100%;

    margin: 0 !important;

    padding: 0 0 10px !important;

    overflow-x: auto;

    overflow-y: hidden;

    scroll-behavior: smooth;

    scrollbar-width: none;

    -ms-overflow-style: none;

}


/* Chrome / Edge / Safari scrollbar */

.sss-related-products ul.products::-webkit-scrollbar {

    display: none;

}


/* Remove WooCommerce clearfix */

.sss-related-products ul.products::before,
.sss-related-products ul.products::after {

    display: none !important;

}


/* =====================================================
   PRODUCT CARD
===================================================== */

.sss-related-products ul.products li.product {

    flex: 0 0 calc(25% - 18.75px) !important;

    width: calc(25% - 18.75px) !important;

    min-width: 0;

    margin: 0 !important;

    padding: 12px !important;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 14px;

    overflow: hidden;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


/* =====================================================
   CARD HOVER
===================================================== */

.sss-related-products ul.products li.product:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.sss-related-products ul.products li.product img {

    width: 100% !important;

    height: 280px !important;

    object-fit: cover;

    display: block;

    margin: 0 auto 12px !important;

    padding: 0 !important;

    border-radius: 12px !important;

}


/* =====================================================
   PRODUCT TITLE
===================================================== */

.sss-related-products
ul.products
li.product
.woocommerce-loop-product__title {

    display: block;

    margin: 10px 0 8px !important;

    padding: 0 !important;

    text-align: center !important;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 600;

}


/* =====================================================
   PRICE
===================================================== */

.sss-related-products
ul.products
li.product
.price {

    display: block;

    margin: 0 auto !important;

    padding: 0 !important;

    text-align: center !important;

    font-size: 16px;color: #000;

}


/* =====================================================
   SALE PRICE
===================================================== */

.sss-related-products
ul.products
li.product
.price del {

    margin-right: 5px;

}


/* =====================================================
   RATING
===================================================== */

.sss-related-products
ul.products
li.product
.star-rating {

    margin: 8px auto !important;

}


/* =====================================================
   ADD TO CART - CENTER
===================================================== */

.sss-related-products
ul.products
li.product
.add_to_cart_button {

    display: inline-block;

    margin: 10px auto 5px;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {


    .sss-related-products {

        margin-top: 40px;

        padding: 0 15px 40px;

    }


    .sss-related-title {

        margin-bottom: 18px;

    }


    .sss-related-title h2 {

        font-size: 22px;

    }


    .sss-related-products ul.products {

        gap: 15px !important;

    }


    .sss-related-products
    ul.products
    li.product {

        flex: 0 0 calc(50% - 7.5px) !important;

        width: calc(50% - 7.5px) !important;

        padding: 8px !important;

        border-radius: 12px;

    }


    .sss-related-products
    ul.products
    li.product
    img {

        height: 180px !important;

        border-radius: 10px !important;

    }


    .sss-related-products
    ul.products
    li.product
    .woocommerce-loop-product__title {

        font-size: 14px;

    }


    .sss-related-products
    ul.products
    li.product
    .price {

        font-size: 14px;

    }

}
#primary{padding-top:140px;}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .sss-related-products
    ul.products
    li.product
    img {

        height: 150px !important;

    }

}