/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* styles for the homepage slider */
.custom-slider-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    overflow: hidden;
}

.custom-slider {
    display: flex;
    justify-content: center;
    height: 550px !important;
    align-items: center;
}

.slide {
    position: absolute;
    height: auto;
    transition: all 0.5s ease-in-out;
    opacity: 0.5;
    transform: scale(0.8);
}

.slide img {
    width: 550px;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
}

.left-slide {
    transform: scale(0.8) translateX(-100%);
    opacity: 0.5;
    z-index: 1;
}

.center-slide {
    transform: scale(1) translateX(0);
    opacity: 1;
    z-index: 2;
}

.right-slide {
    transform: scale(0.8) translateX(100%);
    opacity: 0.5;
    z-index: 1;
}

.slider-navigation {
    position: absolute;
    top: -100px;
    right: 30px;
    display: flex;
    gap: 50px;
}

.slider-navigation .slider-prev,
.slider-navigation .slider-next {
    width: 72px;
    height: 72px;
    background-color: #151618;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    transition: background-color 0.3s;
    border: 2px solid #FFFFFF33;
}

.slider-navigation .slider-prev:hover,
.slider-navigation .slider-next:hover {
    color: #D4AF37;
}



/* category page filter drawer */
.custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    transition: opacity 0.3s ease;
}

.custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-overlay.active {
    display: block;
    opacity: 1;
}

.custom-drawer {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100%;
    background: #151618;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 9999999;
    overflow-y: auto;
    transition: left 0.3s ease;
}

.custom-drawer.open {
    left: 0;
}

.custom-drawer .drawer-content {
    padding: 20px;
    color: #F5F5F5;
}

.woof_text_search_container.woof_container.woof_container_woof_text.woof_fs_by_text {
    display: none;
}

.custom-drawer .close-drawer {
    background: none;
    border: none;
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 25px;
    cursor: pointer;
    color: #F5F5F5;
}

.filters-inside-drawer {
    padding-top: 20px;
}


/* product attribute style in single product page */
.product-attributes-title{
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #F5F5F5 !important;
    font-family: "Inter", Sans-serif !important;
}

.product-attribute-label{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #F5F5F5 !important;
    font-family: "Inter", Sans-serif !important;
}

.product-attribute-text{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #F5F5F5 !important;
    font-family: "Inter", Sans-serif !important;
}


/* styles for changing the layout buttons */
.two-column-grid{
    grid-template-columns: repeat(2, 1fr) !important;
}
.three-column-grid{
    grid-template-columns: repeat(3, 1fr) !important;
}
.four-column-grid{
    grid-template-columns: repeat(4, 1fr) !important;
}
.button-hidden{
    display: none !important;
}
.button-visible{
    display: block !important;
}

.archive-layout-change-buttons button {
    border: 0px;
    padding: 0px;
}

.archive-layout-change-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

button:focus, button:hover {
    color: unset;
    background-color: unset;
    text-decoration: none;
}


/* styles for single product matching products*/
.matching-items-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.matching-item-card {
    display: block;
    width: 30%;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.matching-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.matching-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.matching-item-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.matching-item-title {
    font-family: "Raleway", Sans-serif !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
}

.filter-header-drawer h3{
    font-family: "Raleway", Sans-serif !important;
    font-weight: 500 !important;
    font-size: 24px !important;
    line-height: 32px !important;
}

/* product archive page styling */
.elementor-products-grid.elementor-wc-products{
    min-width: 100% !important;
}

form.woocommerce-ordering {
    margin: 0px !important;
}

nav.woocommerce-pagination {
    display: block;
}

ul.page-numbers {
    display: flex !important;
    gap: 20px;
    border: 0px !important;
    align-items: center;
    justify-content: center;
}

ul.page-numbers li {
    padding: 5px !important;
    border: 1px solid #D3AF38 !important;
    border-radius: 10px;
}

ul.page-numbers li a.page-numbers {
    background-color: transparent !important;
    color: #FFFFFF !important;
    padding: 10px 15px !important;
    font-size: 18px !important;
    border-radius: 6px;
}

ul.page-numbers li a.page-numbers:hover {
    background-color: #D3AF38 !important;
    color: #000 !important;
    border-radius: 6px;
}

ul.page-numbers li span.page-numbers.current {
    background-color: #D3AF38 !important;
    color: #000 !important;
    padding: 10px 15px !important;
    font-size: 18px !important;
    border-radius: 6px;
}

select.orderby {
    appearance: none;
    border: none;
    background-color: #0D0D0D;
    color: #FFFFFF;
    font-family: "Poppins", Sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    /* width: 235px !important; */
    width: 100% !important;
}

select.orderby:focus-visible {
    border: 0px !important;
    outline: unset;
}

.select-wrapper {
    width: 55% !important;
}


.select-wrapper {
    position: relative;
}

svg.e-font-icon-svg.e-fas-chevron-down {
    width: 20px;
    height: auto;
    fill: #FFF;
}

span.chevron-icon {
    position: absolute;
    top: 10px;
    right: 0px;
    display: none;
}



/*----------------------- header search styles -----------------------------*/
.svg-search-container {
    position: relative;
    display: inline-block;
}

.svg-search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.svg-search-button:hover {
    transform: scale(1.1);
}

.search-input-wrapper {
    position: absolute;
    top: 0;
    right: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #4E4E50;
    padding: 10px;
    height: 50px;
    border: 0px solid #ddd;
    border-radius: 100px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.search-input {
    border: 1px solid #ddd;
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 4px;
    width: 200px;
}

.close-search-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    padding: 5px;
}

.search-input-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    width: 900px;
}


.elementor-location-header {
    z-index: 1111;
    position: relative;
}

.dayz-custom-search-input input{
    border-radius: 100px;
    background-color: #4E4E50;
    border: 0px;
}

.dayz-custom-search-input input::placeholder{
    color: #F5F5F5;
    font-family: "Inter", Sans-serif !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

button.close-search-button {
    border-radius: 100px;
    background-color: #D4AF37;
    padding: 5px 8px;
    color: #151618 !important;
}

button.svg-search-button svg g {
    fill: #ffffff00 !important;
}

.product-short-description{
    font-family: "Inter", Sans-serif !important;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #F5F5F5;
    display: none;
}

/* shop page product card styles */
.archive.tax-product_cat a.button.product_type_variable.add_to_cart_button {
    display: none !important;
}

.archive.tax-product_cat a.button.view-details {
    display: none !important;
}

.archive.tax-product_cat .single_variation_wrap {
    display: none !important;
}

.archive.tax-product_cat form.cart div.quantity {
    display: none !important;
}

.archive.tax-product_cat button.single_add_to_cart_button.button.alt {
    display: none !important;
}


table.variations th.label{
    display: none !important;
}
    
.value.woo-variation-items-wrapper{
    background-color: transparent;
}
    
ul.variable-items-wrapper.color-variable-items-wrapper.wvs-style-squared{
    display: flex;
    justify-content: center;
    margin-bottom: 0px;
}
    
ul.variable-items-wrapper.color-variable-items-wrapper li.variable-item.color-variable-item{
    padding: 0px;
    border-radius: 100px !important;
    width: 24px !important;
    height: 24px !important;
}
    
ul.variable-items-wrapper.color-variable-items-wrapper li.variable-item.color-variable-item .variable-item-contents span{
    border-radius: 100px !important;
}

td.value.woo-variation-items-wrapper {
    padding: 0px;
}

table.variations tbody tr:nth-child(2){
    display: none !important;
}

table.variations{
    margin: 0px !important;
}

form.variations_form{
    margin-bottom: 0px !important; 
}

.one-list-view{
    grid-template-columns: repeat(1, 1fr) !important;
}

.li-list-view{
    display: flex !important;
    gap: 50px !important;
}

.list-view-image{
    width: 600px !important;
    height: 450px !important;
    object-fit: cover !important;
}

.list-view-details{
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
}

.show-short-description{
    display: block !important;
}

.left-title{
    text-align: left !important;
}


.two-column-view-image{
    width: 100% !important;
    height: 450px !important;
    object-fit: cover !important;
}

.single_variation_wrap {
/*     display: none !important; */
}

/* responsive design */
@media screen and (max-width: 375px){
    .search-input-wrapper.active{
        width: 350px;
    }
    .search-input-wrapper{
        top: 0;
        right: -60px;
    }

    .slider-navigation {
        position: absolute;
        bottom: -60px !important;
        right: 95px !important;
        top: unset;
    }

    .custom-slider{
        height: 270px !important;
    }

    .slide img {
        width: 180px;
        height: 250px;
    }


}

@media screen and (max-width: 425px){
    .search-input-wrapper.active{
        width: 350px;
    }
    .search-input-wrapper{
        top: 0;
        right: -60px;
    }

    .slider-navigation {
        position: absolute;
        bottom: -60px !important;
        right: 105px !important;
        top: unset;
    }

    .custom-slider{
        height: 270px !important;
    }

    .slide img {
        width: 180px;
        height: 250px;
    }

}

@media screen and (max-width: 550px){
    .matching-items-container{
        flex-direction: column;
    }

    a.matching-item-card {
        width: 100%;
    }

    .matching-item-image {
        display: flex;
        justify-content: center;
    }

    .matching-item-image img{
        width: 100%;
        height: 160px;
    }
}

@media screen and (max-width: 767px){

    .slide.right-slide{
        transform: scale(0.8) translateX(50%) !important;
    }

    .slide.left-slide{
        transform: scale(0.8) translateX(-50%) !important;
    }

    .slider-navigation .slider-prev, .slider-navigation .slider-next{
        width: 55px;
        height: 55px;
    }

    ul.variable-items-wrapper.color-variable-items-wrapper li.variable-item.color-variable-item{
        width: 20px !important;
        height: 20px !important;
    }

    .grid-three-view-button{
        display: none;
    }

    .grid-four-view-button{
        display: none;
    }

    .two-column-view-image{
        height: 150px !important;
    }

    .list-view-image {
        width: 450px !important;
        height: 150px !important;
        object-fit: cover !important;
        margin: 0px !important;
    }

    .product-short-description{
        font-size: 10px;
        font-weight: 400;
        line-height: 16px;
    }

    .li-list-view{
        gap: 20px !important;
    }

    .elementor-3424 .elementor-element.elementor-element-9d7dacd.elementor-wc-products ul.products {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }

    select.orderby{
        width: 130px !important;
        padding: 0px 12px;
        font-size: 16px;
    }

    #filter-button svg{
        width: 16px;
    }

    ul.variable-items-wrapper.color-variable-items-wrapper.wvs-style-squared{
        justify-content: center !important;
    }

    .e-atc-qty-button-holder {
        justify-content: center !important;
    }

    .slide img {
        width: 250px;
        height: 350px;
    }

    .custom-slider{
        height: 380px !important;
    }
}

.one-list-view .product-buttons {
    display: flex !important;
    margin-top: 5px;
    order: 3;
}

ul.one-list-view .list-view-details a.woocommerce-LoopProduct-link.woocommerce-loop-product__link{
    display: flex !important;
    flex-direction: column;
}

ul.one-list-view h2.woocommerce-loop-product__title.left-title{
    order: 1;
}

ul.one-list-view span.price.left-title{
    order: 2;
}

ul.one-list-view .product-short-description.show-short-description{
    order: 4;
}

span.irs-bar {
    background-color: var(--e-global-color-3d73675) !important;
}

.irs--flat .irs-from, .irs--flat .irs-to, .irs--flat .irs-single{
    background-color: var(--e-global-color-3d73675) !important;
}

.irs--flat .irs-handle > i:first-child{
    background-color: var(--e-global-color-3d73675) !important;
}

.irs--flat .irs-handle > i:first-child{
    background-color: var(--e-global-color-3d73675) !important;
}

.mobile-slider-navigation .slider-navigation{
    display: none;
}

@media screen and (max-width: 620px){
    .slider-navigation.bigger-screen-slider-nav{
        display: none;
    }
    .mobile-slider-navigation .slider-navigation{
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        position: inherit;
    }

    .slider-header {
        width: 100% !important;
    }
}


button.slick-prev.slick-arrow, button.slick-next.slick-arrow {
    display: none !important;
}

/* Popover Styling */
.custom-popover {
    display: none;
    background: #2A2A2B;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
    width: 75%;
    text-align: center;
    border: 1px solid #D3AF38;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    left: 12%;
}

/* Popover Content */
.popover-content {
    position: relative;
}

/* Close Button */
.close-popover {
    position: absolute;
    top: -25px;
    right: -12px;
    cursor: pointer;
    font-size: 24px;
    display: none;
}

/* Popover Arrow */
.custom-popover::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #D3AF38 transparent;
}

.website-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin-bottom: 15px;
}

img.website-logo {
    width: 100px;
    height: 100%;
}

h3.website-name {
    font-family: "Poppins", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    color: #FFF;
    text-align: left;
}

.website-button img {
    width: 30px;
}

h3.dimension-title{
    font-family: "Raleway", Sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 25px;
}

.dimension-picture {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Color Variations Row */
.product-color-variations {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

/* Color Circle */
.color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #ddd;
    transition: transform 0.2s, border 0.2s;
}

/* Hover Effect */
.color-circle:hover {
    transform: scale(1.2);
    border: 2px solid #000;
}

.products.elementor-grid .product-buttons{
    display: none;
}

h2.woocommerce-loop-product__title {
    min-height: 70px;
}