.header-wrapper .top-bar .top-bar-content{
    display: flex;
    justify-content: flex-end;

}
.header-wrapper .top-bar .top-bar-content .top-nav{
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 0;
    margin-top: 0;
}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
    
}


.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .search-bar{
    width: 100%;
    max-width: 500px;
}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .search-bar form{
    display: flex;
    overflow: hidden;
    border-radius: 24px;

}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .search-bar form input{
    border: none;
    border-radius: 0;
    width: 100%;
    padding: 12px 25px;
}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .search-bar form .search-button{
    border: none;
    border-radius: 0;
}
.hidden {
    display: none !important;
}

.search-bar {
    position: relative;
    z-index: 20;
}
.search-bar form input,
.search-bar form .search-button {
    outline: none !important;
    box-shadow: none !important;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


.search-bar.search-has-results form{
    border-bottom-left-radius: 0 !important ;
    border-bottom-right-radius: 0 !important;
    border-bottom: none;
}
.search-bar.search-has-results form input {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}
/* Results styling to connect with input */
.search-bar .live-search-results, .mobile-search-bar .live-search-results {
    border-radius: 0 0 16px 16px;
    margin-top: 0;
    border-top: none;
    padding-top: 12px;
}
.search-bar .live-search-results , .mobile-search-bar .live-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 20;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: 60vh;
    overflow-y: auto;
    padding: 12px 16px;
}

.search-bar.search-has-results .live-search-results {
    display: block;
}

.search-bar .live-search-results .result-item,.mobile-search-bar .live-search-results .result-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #111;
}

.search-bar .live-search-results .result-item:last-child ,.mobile-search-bar .live-search-results .result-item:last-child {
    border-bottom: none;
}

.search-bar .live-search-results .result-item img ,.mobile-search-bar .live-search-results .result-item img {
    width: 40px;
    height: auto;
    border-radius: 4px;
}

.search-bar .live-search-results .result-title, .mobile-search-bar .live-search-results .result-title {
    font-weight: 600;
    font-size: 15px;
    font-family: "Archivo", sans-serif;
}

.search-bar .live-search-results .result-price ,.mobile-search-bar .live-search-results .result-price {
    font-size: 13px;
    color: #666;
    font-family: "Archivo", sans-serif;
}
.live-search-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.search-bar.search-has-results ~ .live-search-overlay {
    display: block;
}

.live-search-overlay.hidden {
    display: none;
}



.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .nav-actions{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .nav-actions .sign-in-wrapper .sign-in{
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 8px;
    gap: 14px;
    font-weight: 700;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .nav-actions .sign-in-wrapper{
    position: relative;
    cursor: pointer;
}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .nav-actions .sign-in-wrapper .sign-in-dropdown{
    display: none;
    transition: all 0.3s ease;
}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .nav-actions .sign-in-wrapper:hover .sign-in-dropdown{
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    box-shadow:0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    width: 100%;
    z-index: 10;
}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .nav-actions .sign-in-wrapper:hover .sign-in{
    border-bottom: 0;
    border-bottom-left-radius:0 ;
    border-bottom-right-radius: 0;
}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .nav-actions .sign-in-wrapper .sign-in-dropdown .sign-in-menu{
    list-style: none;
    padding: 0 18px;
    padding-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .nav-actions .sign-in-wrapper .sign-in .sign-in-arrow {
    display: flex;
}

.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .nav-actions .sign-in-wrapper .sign-in .sign-in-arrow svg{
    transition: all 0.3s ease;
}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .nav-actions .sign-in-wrapper:hover .sign-in .sign-in-arrow svg{
    transform: rotate(180deg);
}
.header-wrapper .main-nav .main-nav-content .main-nav-wrapper .nav-actions .cart{
    padding: 0;
    border: 0;
    background: transparent;
}
.header-wrapper .header-bottom-nav{
    position: relative;
}
.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav{
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
}
.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav >.menu-item .sub-nav-item .menu-icon{
    height: 30px;
    width: 30px;
}
.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav >.menu-item >.sub-menu-wrapper{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 100%;
    z-index: 9;
    padding-top: 50px;
    padding-bottom: 50px;
}
.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav >.menu-item >.sub-nav-item{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav >.menu-item >.sub-nav-item{
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
    width: fit-content;
}

.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav >.menu-item >.sub-nav-item:hover{
    color: #222222;
    border-bottom: 2px solid #D50032;

}
.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav >.menu-item:hover >.sub-menu-wrapper{
    display: block;
    overflow: hidden;
}
.header-wrapper .header-bottom-nav ul{
    list-style: none;
    padding: 0;
}
.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav >.menu-item >.sub-menu-wrapper .sub-menu-title >.sub-nav-item{
    font-weight: 700;
    /* disable cursor pointer */
    cursor: default;
    /*disable hover effect */
    color: #222222;
}
.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav >.menu-item >.sub-menu-wrapper >.sub-menu{
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
}
.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav >.menu-item.showroom-sub-menu >.sub-menu-wrapper >.sub-menu,.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav >.menu-item.sector-sub-menu >.sub-menu-wrapper >.sub-menu{
    gap: 10px;
}
.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav >.menu-item >.sub-menu-wrapper .sub-menu .sub-menu{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav >.menu-item >.sub-menu-wrapper .sub-menu-title {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.header-wrapper .header-bottom-nav .sub-nav-content .sub-nav .coffee-sub-menu .sub-menu{
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 100px;
}
.featured-product {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.featured-product-content {
    position: relative;
}

.featured-title {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    background-color: #fff;
}

.featured-product-link {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.featured-product-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* <- darker overlay */
    z-index: 1;
    border-radius: 8px;
}

.featured-product-cta {
    position: relative;
    z-index: 2;
}

.shop-range-btn {
    color: white;
    font-size: 16px;
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}



.arrow-icon {
    display: flex;
    background: #D50032;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
}

.featured-product-link:hover .arrow-icon {
    transform: translateX(3px);
}
.showroom-sub-menu .showroom-item-content {
    width: 460px;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
}

.showroom-sub-menu .showroom-item-content .showroom-item-overlay {
    height: 100%;
    position: absolute;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.showroom-sub-menu .showroom-item-content .showroom-item-link {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.showroom-sub-menu .showroom-item-content .showroom-item-text {
    color: #fff;
    display: flex;
    align-items: center;
    z-index: 10;
    margin-right: 20px;
    margin-bottom: 20px;
    gap: 10px;
}

.showroom-sub-menu .showroom-item-content .showroom-item-link .showroom-title {
    font-size: 16px;
    font-weight: 700;
    font-family: "Archivo", sans-serif;
}

.showroom-sub-menu .showroom-item-content .showroom-item-text:hover .arrow-icon {
    transform: translateX(3px);
}

.showroom-sub-menu .sub-menu-wrapper .last-item{
    display: flex;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    align-items: end;
    justify-content: end;
    width: 285px;
    padding: 20px;
    position: relative;
    
   


}
.showroom-sub-menu .sub-menu-wrapper .last-item a{
    color: white !important;
    display: flex;
    gap: 10px;
    align-items: center;
  
}
.showroom-sub-menu .sub-menu-wrapper .last-item a::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #D50032;
    border-radius: 50%;
    background-image: url('/wp-content/uploads/2025/06/arrow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    vertical-align: middle;
    margin-left: auto;
    transition: transform 0.3s ease;
}
.showroom-sub-menu .sub-menu-wrapper .last-item:hover a::after{
    transform: translateX(3px);
}
.sector-item-content {
    text-align: center;
    width: 190px;
    padding: 10px;
}
.sector-image-wrapper {
    height: 140px;
    overflow: hidden;
    border-radius: 8px;
}

.sector-image-wrapper img {
    display: block;
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.sector-item-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.sector-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.sector-item-content .arrow-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #D50032;
}
.sector-item-content:hover .arrow-icon {
    transform: translateX(3px);
}
.sector-item-content .arrow-icon  {
    transition: transform 0.3s ease;
}
.header-wrapper-mobile {
    display: none;
}
.header-wrapper-mobile .mobile-header {
    padding: 5px 0;
    background-color: #D50032;
    position: relative;

}
.header-wrapper-mobile .mobile-header .mobile-header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-wrapper-mobile .mobile-header .mobile-header-inner .mobile-logo img{
    max-height: 35px;
    max-width: 65px;
}
.header-wrapper-mobile .mobile-header .mobile-header-inner .mobile-hamburger,.header-wrapper-mobile .mobile-header .mobile-header-inner .mobile-search-toggle, .header-wrapper-mobile .mobile-header .mobile-header-inner .mobile-cart{
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.header-wrapper-mobile .mobile-header .mobile-header-inner .mobile-actions .mobile-search-toggle svg path{
    stroke: #fff;
}
.header-wrapper-mobile .mobile-header .mobile-header-inner .mobile-search-bar{
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 10;
    left: 0;
}
.header-wrapper-mobile .mobile-header .mobile-header-inner .mobile-search-bar form{
    display: flex;
    position: relative;
}
.header-wrapper-mobile .mobile-header .mobile-header-inner .mobile-search-bar form input{
    width: 100%;
    padding: 16px;
    border: none;
    outline: none;
    
}
.header-wrapper-mobile .mobile-header .mobile-header-inner .mobile-search-bar form .search-button{
    background-color: white;
    border: none;
    padding-right: 16px;
}
.header-wrapper-mobile .mobile-header .mobile-search-bar .live-search-results{
    display: block;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer{
    padding: 16px;
}
.header-wrapper-mobile .mobile-menu-overlay{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 20;
    background: white;
    overflow: scroll;
    top: 0;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-menu-close{
    background-color: transparent;
    font-size: 30px;
    text-align: end;
    width: 100%;
    border: none;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .menu-icon{
    width: 30px;
    height: 30px;
    
}

.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu >.menu-item >.sub-nav-item{ 
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
    padding-left: 20px;
    font-weight: 700;
    color: black;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu >.menu-item >.sub-menu-wrapper >.sub-menu >.sub-menu-title >a{
    font-weight: 700;
    color: black;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu >.menu-item >.sub-menu-wrapper >.sub-menu >.sub-menu-title {
    margin-bottom: 10px;
}

.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu >.menu-item >.sub-menu-wrapper{
    display: none;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu >.menu-item >.sub-menu-wrapper.active{
    display: block;
    padding-left: 20px;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .featured-product{
    display: none;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .showroom-sub-menu .showroom-item-content{
    background-image: none !important;
    width: fit-content;
    height: fit-content;

}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .showroom-sub-menu .showroom-item-overlay{
    display: none;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .showroom-sub-menu .showroom-item-link {
    display: block;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .showroom-sub-menu .showroom-item-link .showroom-title{
    color: black;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .showroom-sub-menu .showroom-item-link .arrow-icon{
    display: none;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .showroom-sub-menu .last-item{
    background-color: transparent;
    padding: 0;
    display: block;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .showroom-sub-menu .last-item a{
    color: black !important;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .showroom-sub-menu .last-item a::after {
    display: none;
}

.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .sector-sub-menu .sector-item-content {
    padding: 0;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .sector-sub-menu .sector-item-content .sector-image-wrapper{
    display: none;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .sector-sub-menu .sector-item-content .sector-item-text{
    display: block;
    text-align: left;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .sector-sub-menu .sector-item-content .sector-item-text .arrow-icon{
    display: none;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .sector-sub-menu .sector-item-content .sector-item-text .sector-title{
    font-family: "Archivo", sans-serif;
    font-weight: 700;
}

.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-main-menu .sub-menu-wrapper{
    margin-bottom: 20px;
}

.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-menu-signin {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-menu-signin .sign-in{
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 8px;
    gap: 14px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    justify-content: center;
    outline: 0;
    background: white;
    border: 1px solid #D5D7DA;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: all 0.3s ease;
    border-bottom: 0;
    
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-menu-signin .sign-in.not-active{
    border-radius: 8px !important;
    border: 1px solid #D5D7DA !important;
    
}

.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-menu-signin .sign-in-dropdown{
    width: 100%;
    text-align: center;
    border: 1px solid #D5D7DA;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: none;

}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-menu-top-menu {
    padding-top: 20px;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-menu-top-menu ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.header-wrapper-mobile .mobile-menu-overlay .mobile-menu-drawer .mobile-menu-top-menu ul li a{
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    color: black;
}
.floating-mini-cart,.floating-mini-cart-mobile {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 999;
    font-size: 14px;
    font-family: "Archivo", sans-serif;
}

.floating-mini-cart.hidden {
    display: none;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 20px;
}

.mini-cart-products {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.mini-cart-product {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.mini-cart-product-thumb {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.mini-cart-product-thumb img {
    width: 100%;
    height: auto;
}

.mini-cart-product-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #000;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
}

.mini-cart-product-details {
    margin-left: 10px;
    flex-grow: 1;
}

.mini-cart-product-title {
    font-weight: 500;
}

.mini-cart-product-price {
    font-weight: bold;
}

.mini-cart-totals {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.mini-cart-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.mini-cart-row.total {
    font-weight: bold;
    border-top: 1px solid #ccc;
    padding-top: 8px;
    margin-top: 8px;
}

.mini-cart-actions {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mini-cart-actions .button {
  background-color: transparent !important;
  border: 1px solid #D5D7DA !important;
  border-radius: 8px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 16px !important;
}




.view-cart-btn {
    display: block;
    background: #f5f5f5;
    color: #000;
    padding: 10px 0;
    border-radius: 6px;
    text-decoration: none;
    margin-bottom: 10px;
}

.continue-shopping {
    font-size: 13px;
    text-decoration: underline;
    color: #555;
}
@media screen and (max-width:1024px){
    .header-wrapper{
        display: none;
    }
    .header-wrapper-mobile {
        display: block;
    }

    .floating-mini-cart-mobile{
        width: 100%;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }


}