/*
Theme Name: SrebroStudio
Text Domain: SrebroStudio
Version 1.0
Description: Theme for the SrebroStudio Webshop
Tags: Responsive
Author: Matej Obratov
Author URI: https://srebrostudio.com
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 100%;
} 
body{
    background-color: black;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

a{
    text-decoration: none;
}


.logo{
    float: left;
}

.navbar_upper_marg{
    width: 100%;
}

.custom-logo-link img{
    padding-top: 5px;
    height: 100px !important;
    width: auto !important;
}



.navbar_upper{
    background: black;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
}

.user_activ{
    display: flex;
    margin-right: 10px;
    padding: 15px;
    gap: 10px;
}
.active_icon{
    color: white;
    display: flex;
    align-items: center;
    margin:0 5px;
    padding: 5px ;
    gap: 5px;
    transition: all 0.3s ease-in-out;
    
}

.active_icon:hover{
    background-color: #59afff;
    color: black;
    margin:0 5px;
    padding: 5px;
    border-radius: 15px ;
}


.active_icon div{
    text-align: center;
}

.navbar_lower {
    width:100%;
    justify-content: space-between;
    background-color: black;
    display: flex;
    padding: 20px 10px;
    border-top:1px solid #555;
}

.menu-toggle-open{
    display: none;
    color: white;
}


.navbar_lower nav ul li{
    margin: auto;
}

nav {
    flex: 1;
    text-align: center;
}

.navbar_lower nav ul{
    display: flex;
    background-color: black;

}

nav ul li{
    display: inline-block;
    font-size: 105%;
}

nav ul li a, .navbar_text{
    font-weight: bolder;
    padding: 5px;
    color: white;
}
.menu_main_lower_nav ul li a:hover{
    font-weight: bolder;
    color:black;
    background-color: #59afff;
    padding: 5px;
    border-radius: 7px;
    transition: 0.5s;
}

.woocommerce-MyAccount-navigation ul li:hover{
    color:black;
    background-color: #59afff;
    padding: 5px;
    border-radius: 7px;
    transition: 0.5s;
}

.container-content {
    margin: auto;
    max-width: 1500px;
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 20px;
}

.container {
    margin: auto;
    position: relative;
}

.row{
    align-items: center;
    margin-top: 20px;
    border-radius: 15px;
    background:#ffffff;
}

.row-about{
    align-items: center;
    text-align: left;
    margin-top: 20px;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid white ;
    margin-bottom: 20px;
}

.row-about h2{
    font-size: 250%;
    color:#555;
    padding-bottom: 20px;
    font-size: 200%;
    font-weight: bolder;
}

.row-content{
    align-items: center;
    margin-top: 20px;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    background:#ffffff;
    height: 360px;
}

.front-page-box{
    display: flex;
    align-items: stretch;
}

.welcome-box{
    flex: 1;
    max-width: 50%;
    padding: 10px;
    margin: auto 20px 10% 20px;
}

.welcome-box * {
    color: white;
    opacity: 0;
    transform: translateY(-20px);
    animation-fill-mode: backwards;
}

.welcome-box h2{
    font-size: 20px;
    animation: slideFadeIn 0.8s ease forwards 0.5s;

}

.welcome-box-subtext{
    font-size: 25px;
    font-weight:200;
    margin-top: 30px;
    margin-bottom: 40px;
    animation: slideFadeIn 0.8s ease forwards 1s;

}

.welcome-box p:nth-child(3),.welcome-box p:nth-child(4),.welcome-box p:nth-child(5) {
    margin: 10px 0px;
    font-size: larger;
    animation: slideFadeIn 0.8s ease forwards 1.5s;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider{
    flex: 0 0 auto;
    height: 700px;
    overflow: hidden;
}

.slide{
    width: auto;
    height: 100%;
    opacity: 0;
    animation: vidFadeIn 1s ease forwards 0.5s;
}

@keyframes vidFadeIn{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

.search_bar { 
    flex-grow: 1 !important; /* Allows the search bar to expand */
    margin-right: 5%;
}

.search-content h1{
    padding: 20px;
    font-size: 120%;
    width: 100%;
    background-color: white;
}

.search-content .product-grid .product-item{
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.search-content .product-grid .product-item a div img{
    display: block;
    padding-top: 5px;
    height: auto !important;
    width: 100% !important;
    max-width: 300px;
    align-items: center;
    margin: auto;
}

.search-content .product-grid .product-item a h2{
    padding: 10px;
    color: #2c2525;
}

.search-content .product-grid .product-item a .product-price{
    text-align: center;
    font-size: larger;
    font-weight: bolder;
    color: black;
}


.search-content .product-grid .product-item .add-to-cart{
    margin-top: auto !important;
    height: 40px;
    background-color: #59afff !important;
    margin-top: auto !important;
    line-height: 40px !important;
    font-weight: bolder !important;
    text-align: center;
}

.search-content .product-grid .product-item .add-to-cart:hover{
    transition: all 0.3s ease-out !important;
    margin-top: auto !important;
    height: 40px;
    background-color: #1f86e6 !important;
    color: #2c2525;
    font-weight: bolder;
}

.search-content .product-grid .product-item .add-to-cart a{
    color: #2c2525 !important;
}


.separator{
    border: 1px solid #555;
}

.info{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "info_1 info_2 info_3 info_4";
    margin-top: 20px;
    border-radius: 15px;
    background:#ffffff;
}

.info-block{
    padding: 20px;
    align-items: center;
    display: flex;
    margin: auto;
}

.info-block:nth-child(1){
    grid-area: info_1;
}

.info-block:nth-child(2){
    grid-area: info_2;
}

.info-block:nth-child(3){
    grid-area: info_3;
}

.info-block:nth-child(4){
    grid-area: info_4;
}



.home-info-text{
    padding: 10px;
    max-width: 200px;
}

.featured{
    overflow: hidden;
    text-align: left;
    margin-top: 20px;
    background:#0D0D0D;
    border: 1px solid #555;
}
.home-box-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:10px 15px;
    background-color:#0D0D0D ;
    border-bottom: 1px solid #555;
}

.home-box-head-name {
    color:white;
    font-size: 25px;
    font-weight: bolder;
    display: flex;
    align-items: center;
}

.home-box-head-name img{
    height: 50px;
    width: auto;
    border: 1px solid white;
    border-radius: 10px;
    padding: 2px;
    margin-right: 10px;
    background-color: rgb(241, 239, 239);
}

.home-box-head-button{
    font-size: 19px;
    border-radius: 15px;
    font-weight: bolder;
    padding:10px 15px;
    background-color: #59afff;
    display: flex;
}

.home-box-head-button p{
       color: black;
}


.home-box-items{
    padding:20px 20px;
}

.home-box-items .woocommerce ul li{
    padding-top: 10px !important;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;

}

.print-page{
    display: flex;
    margin: auto;
    max-width: 1500px;
    padding: 0px 25px;
    margin-bottom: 20px;
}

.print-desc-box{
    width: 50%;
}

.print-desc{
    padding: 10px;
    padding-left: 20px;
}

.print-desc * {
    color: white;
}

.print-desc h1{
    font-size: 200%;
    padding: 10px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInPrint 0.8s ease forwards 0.5s;
    font-weight: bolder;
}

.print-desc h2{
    font-size: 150%;
    padding: 10px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInPrint 0.8s ease forwards 1s;

}

.print-p{
    padding: 10px;
    padding-left: 5px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInPrint 0.8s ease forwards 1.5s;
}

.print-desc p{
    font-size: 110%;
    padding: 5px;
}

@keyframes fadeInPrint{
    from{
        opacity: 0;
        transform: translateY(-20px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

.print-order-buttons{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.print-order-button{
    position: relative;
    padding: 10px;
    color: rgb(255, 255, 255);
    background-color: #59afff;
    border-radius: 10px;
    overflow: hidden;
    font-weight: bolder;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.print-order-button::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #3498db;
    z-index: 0;
    transition: width 0.5s ease-in-out;
    border-radius: 10px;
}

.print-order-button span{
    position: relative;
    z-index: 1;
}

.print-order-button:hover{
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.print-order-button:hover span{
    color: black;
}

.print-order-button:hover::before{
    width: 100%;
}

.printing{
    width: 50%;
    padding: 10px;
}

.printing img {
    width: 100%;
    height: auto;
    max-height: 480px;
}

.print-how{
    margin: 25px;
}

.print-how h1{
    color: white;
    text-align: center;
}

.woocommerce-LoopProduct-link h2{
    padding-left: 10px !important;
    padding-right: 10px !important;

}

.home-box-items .woocommerce ul li h2{
    padding: 10px !important;
    color: #2c2525;
    text-align: center;
}

.home-box-items .woocommerce ul li span{
    text-align: center;
}

.home-box-items .woocommerce ul li span span bdi{
    color: #2c2525;
    font-weight: bolder;
    font-size: 140% !important;
}

.home-box-items .woocommerce .product .add_to_cart_button{
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
}


.home-box-items .woocommerce .product .add_to_cart_button:hover{
    transition: all 0.3s ease-out !important;
    margin-top: auto !important;
    height: 40px;
    background-color: #1f86e6 !important;
    color: #2c2525;
    font-weight: bolder;
}

.home-box-items div .products{
    margin: 0 !important;
}

.related ul li{
    display: block !important;
}

.woocommerce-breadcrumb{
    margin-top: 10px !important;
}

.product_meta .posted_in{
    display: none !important;
}

.woocommerce-Tabs-panel--description{
    padding-left: 20px !important;
}

.woocommerce-Reviews{
    padding-left: 20px !important;
}

.content{
    margin-top: 50px;
    margin-bottom: 50px;
}

.product-template-default{
    background: rgb(255, 255, 255);
}

.entry-summary{
    padding-top: 3%;
}

.product_title{
    font-size: larger;

}

button.single_add_to_cart_button{
    background-color: #59afff !important;
    width: 40%;
    color: black !important;
}

button.single_add_to_cart_button:active{
    background-color:#638af4 !important;
}




.product_categories{
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background-color: white;
    box-sizing: border-box;
    border-bottom: 1px solid grey;
    flex-wrap: wrap;
    gap: 20px;
}

.page-name-tag{
    background-color: black;
    text-align: center;
    font-size: 150%;
    padding: 10px;
    padding-top: 20px;
    color: #59afff;
    border-bottom: 1px solid #59afff;
}

#dragon-ball{
    background-image: url(Assets/images/dbz-filter.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
}

#one-piece{
    background-image: url(Assets/images/op-filter.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;

}

.Product_icons_block{
    vertical-align: middle;
    width:30%;
    border:2px solid black;
    border-radius: 15px;
    min-width: 300px;
    min-height: 150px;
    border: 2px solid black;

}

.page-content{
    display: flex;
}

.sidebar{
    position:relative;
    display: inline-block;
    padding:10px 20px;
    width: 240px;
    min-width: 240px;
    background-color: white;
    border-right: 1px solid grey;
}

/*filtering*/
.filter-hr{
    margin: auto;
    border-top: 1px solid black;
    width: 100%;
}

.drop-main{
    padding-top: 10px;
    background: none;
    border: none;
    font-weight: bolder;
    padding-bottom: 10px;
}

.button-center{
    text-align: center;
}

.drop-main:hover ,.drop-main:focus{
    color: #555;
}

.dropdown-content{
    height: fit-content;
    display: block;
    z-index: 1;
    overflow: hidden;
    padding-left: 20px;
}

.dropdown-content div:last-child{
    padding-bottom: 10px;
}

.drop-main .dropdown-content.change {
    display: block;
}
/*filtering end*/


/*contact*/

.contact-block{
    align-items: center;
    text-align: center;
    margin-top: 20px;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(55px);
    border: 1px solid white ;
    margin-bottom: 20px;

}

.contact-block h2{
    font-size: 250%;
    color: white;
    padding-bottom: 20px;
}

.follow-element{
    display: flex;
    background-color: #ffffff;
    padding:10px 30px;
    margin: 10px;
    border-radius: 30px;
}

.contact-block a{
    text-align: center;
    color: black;
    font-weight: bolder;
}

.contact-block .row-text{
    color: white;
    padding-top: 10px;
    
}

.contact-block .row-text2{
    color: white;
    padding-top: 30px;
}

/*about*/

.row-about .row-text{
    color: black;
    padding-top: 10px;
    font-size: 110%;
    line-height: 160%;
}

.row-about .sign{
    margin-left: auto;
    margin-right: 100px;  
}

/*cart*/

.wp-block-woocommerce-cart{
    overflow: hidden !important;
    border-radius: 20px !important;
    margin: 40px !important;
    padding-top: 20px !important;
    background-color: white !important;
}

.wc-block-components-button{
    border-radius: 10px !important;
    background-color: #59afff !important;
    width: 60% !important;
    color: black !important;
}

.wc-block-components-button:hover{
    background-color:#638af4 !important;
    transition: background-color 0.3s ease !important; 
    
}

.wc-block-components-button:active{
    background-color:#638af4 !important;
}

/*checkout*/
.wp-block-woocommerce-checkout{
    padding: 20px !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    margin: 40px !important;
    padding-top: 20px !important;
    background-color: white !important;
}

.wc-block-grid__product a div .attachment-woocommerce_thumbnail{
    max-width: 300px;
}

.wp-block-woocommerce-cart-totals-block{
    height: min-content !important;
}

/*Pagination*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.pagination a, 
.pagination span {
    margin: 0;
    padding: 8px 12px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
    border-radius: 4px;
    background-color: white;
}

.pagination a:hover, 
.pagination .current {
    background-color: #333;
    color: #fff;
    border-color: #333;
    cursor: pointer;
}

.pagination .prev, 
.pagination .next {
    font-weight: bold;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/*account logged in*/
.logged-in .woocommerce{ 
    margin: 20px;
    overflow: hidden !important;
    display: flex;
}

.logged-in .woocommerce .woocommerce-MyAccount-navigation{
    width: 20% ;
    background-color: white;
    border-right:1px solid #555 ;
}

.logged-in .woocommerce .woocommerce-MyAccount-navigation ul{
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
    align-items: center; 
}

.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li{
    margin: 20px 0;
    display: block;
    width: 100%;
    padding:5px 0;
}



.logged-in .woocommerce .woocommerce-MyAccount-content{

    width: 80% !important;
    min-height: 100% !important;
    background-color: white !important;
    padding: 10px !important;
}

.logged-in .woocommerce .woocommerce-MyAccount-content p{
    padding-left: 10px !important;
}

.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm{
    padding-left: 10px !important;

}

.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm legend{
    font-size: 110% !important;
    font-weight: bolder !important;
}

.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm p{
    padding-top: 20px !important;
    padding-bottom: 10px !important;
}

.woocommerce-Button{
    border-radius: 10px !important;
    background-color: #59afff !important;
    color: black !important;
}


.logged-in .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row{
    padding: 10px !important;
}

.show-password-input {
    position: absolute !important;
    right: 10px !important ;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
}

.password-input {
    display: flex; 
    align-items: center;
    position: relative !important;
}

.woocommerce-Addresses{
    padding: 10px !important;
}

.woocommerce-Addresses h2{
    margin-bottom: 10px !important;
}

.edit{
    margin: 20px 0 !important;
    float: none !important;
}

.woocommerce-Addresses address{
    padding: 10px ;
    border: 1px solid #555;
    margin-top: 10px;
}

/*logged out*/

.u-column1 .woocommerce-form {
    margin-left: 40px !important;
    margin-right: 0 !important;
}

.u-column2 .woocommerce-form{
    margin-right: 40px !important;
    margin-left: 0 !important;
}

.page-id-9 .woocommerce h2{
    margin-top: 20px;
    font-size: 22px;
    text-align: center;
}

.page-id-9 .woocommerce .woocommerce-form-login {
    background-color: white;
    margin: 0 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: space-between; /* Push elements apart */
    height: 100%; /* Ensure the form takes full height */
    padding-bottom: 20px; /* Prevent button from sticking to the edge */
}

.page-id-9 .woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    border-radius: 10px !important;
    background-color: #59afff !important;
    color: black !important;
    display: block;
    width: 150px;
    margin: auto;
    margin-top: auto; /* Push button to the bottom */
}


.page-id-9 .woocommerce .woocommerce-form-register {
    background-color: white;
    margin: 0 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column; /* Arrange children vertically */
    justify-content: space-between; /* Push items to top & bottom */
    height: 100%; /* Ensure full height for proper alignment */
    padding-bottom: 20px; /* Prevent button from sticking to the edge */
}

.page-id-9 .woocommerce .woocommerce-form-register .form-row {
    margin-bottom: 26px;
    display: flex;
    flex-wrap: wrap;
}

.page-id-9 .woocommerce .woocommerce-form-register .form-row:last-child {
    margin-top: auto; /* Push last form-row (button row) to the bottom */
    display: flex;
    justify-content: center; /* Center the button */
}

.page-id-9 .woocommerce .woocommerce-form-register .form-row .woocommerce-Button {
    width: 150px;
    margin: auto;
}

.col-2 .woocommerce-form .woocommerce-form-row{
    text-align: center;
}

.woocommerce-form__label-for-checkbox{
    float: right;
}

.col-1 form .form-row:nth-child(3){
    display: flex;
    flex-direction: column;
    text-align: center;
}

.lost_reset_password{
    margin: 50px 20px;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.lost_reset_password p:nth-child(1) {
    float: left;
}

.lost_reset_password p:nth-child(2) {
    margin: auto !important;
    float: none !important;
}

/*terms and conditions*/

.row-terms{
    align-items: center;
    text-align: left;
    margin-top: 20px;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid white ;
}

.row-terms h2{
    font-size: 250%;
    color:#555;
    padding-bottom: 20px;
    font-size: 200%;
    font-weight: bolder;
}

.row-terms h3{
    font-size: 150%;
    margin-right: auto;
    padding: 20px;
}

.row-terms p{
    margin-right: auto;
    padding: 20px;
}

.row-terms span{
    font-weight: bolder;
    font-size: larger;
}

/*return/cancellation policy*/

.row-returns{
    align-items: center;
    text-align: left;
    margin-top: 20px;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid white ;
}

.row-returns h2{
    font-size: 250%;
    color:#555;
    padding-bottom: 20px;
    font-size: 200%;
    font-weight: bolder;
}

.row-returns h3{
    font-size: 150%;
    margin-right: auto;
    padding: 20px;
}

.row-returns p{
    margin-right: auto;
    padding: 20px;
}

.row-returns span{
    font-weight: bolder;
    font-size: larger;
}

/*footer*/

.follow-element i{
    padding-right: 40px;
}

.follow-element p{
    text-align: center;
    margin: auto;
}

.column-2{
    flex-basis: 50%;
    min-width: 300px;
}

.column-2 img{
    max-width: 100%;
    padding: 50px 0;    
}
.Subtext-Wel_panel{
    font-size: 120%;
}

.footer{
    box-sizing: border-box;
    background:black;
}

.footer-row-1{
    padding:30px 50px;
    display: flex;
    justify-content: space-around;
}

.f-row1-logo{
    padding: 10px;
    text-align: center;
    font-size: 20px;
}

.f-row1-logo p{
    color: white ;
    font-weight: bolder;
}

.f-row1-logo p span{
    color: #59afff;
}

.f-row1-logo-image a img{
    overflow: hidden;
    border-radius: 15px;
    padding: 0;

}

.f-row1-logo-image{
    display: flex;
    justify-content: center;
}

.f-row1-logo-socials-icons{
    display: flex;
    margin: 0 10px;
    justify-content: center;
}

.f-row1-logo-socials{
    padding: 10px;
}

.f-row1-logo-socials a{
    color: #59afff;
}

.f-row1-menu{
    padding: 10px;
}

.f-row1-menu h2{
    font-size: 20px;
    color: #59afff;
}

.f-row1-menu div i{
    color: #59afff;
}

.mail-bold{
    font-weight: bolder;
    font-size: larger;
}

.tnp-field{
    text-align: center !important;
}

.tnp-field label{
    font-weight: bolder !important;
    font-size: 19px !important;
}

.tnp-field .tnp-submit{
    margin-top: 10px !important;
    background-color: white!important;
    color: black !important;
    width: 100% !important;
    font-weight: bolder ;
    border: 1px solid white !important;
}

.tnp-field .tnp-submit:hover{
    margin-top: 10px !important;
    background-color:#638af4!important;
    color: black !important;
    width: 100% !important;
    font-weight: bolder ;
    border: 1px solid black !important;
    cursor: pointer;
}


.f-row1-menu div{
    margin-top: 8px;
}

.f-row1-menu div a{
    color: white;
}

.f-row1-support{
    padding: 10px;
    color: #59afff;
}
.f-row1-support h2{
    font-size: 20px;
}

.f-row1-support div{
    margin-top: 8px;
}

.f-row1-support div a{
    color: white;
}

.footer-sep{
    width: 100px;
    border: 1px solid black;
}
.f-row1-contact{
    padding: 10px;
}

.f-row1-contact h2{
    font-size: 20px;
    color: #59afff;
}

.f-row1-contact h2, .f-row1-contact p{
    padding-bottom: 2px;
}

.f-row1-contact p{
    color: white;
}

.footer-row-2{
    padding: 25px;
}

.f-row2-text{
    text-align: center;
}

.f-row2-text h1{
    font-size: 27px;
    color: #59afff;
}

.f-row2-text p{
    font-size: 20px;
    color: white;
}

.f-row2-email{
    text-align: center;
}

.f-row2-email .input{
    margin:15px auto;
    border: none;
    width: 500px;
    border-radius: 5px;
}

.f-row2-email .input input{
    height: 45px;
}

#mailpoet_form_1 {
    margin: 0 auto;
    text-align: center;

}

.mailpoet_form{
    display: flex;
    flex-direction: column;
}

.mailpoet_form .mailpoet_paragraph #form_email_1{
    margin: auto !important;
}

input.parsley-success{
    color: black;
}

.f-row2-email .last .mailpoet_submit{
    font-weight: bolder;
    background-color: #ffb932;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    width: 500px !important;
    height: 50px;
    margin-bottom: 20px;
}

.footer-row-2 p{
    text-align: center;
    color: white;
}

.footer-row-2 p a{
    color:white;
    text-decoration: underline;
}

.footer-row-3{
    color: black;
    padding: 5px;
    font-size: 14px;
    text-align: center;
    background-color:white;
}

.menu-toggle-close{
    display: none;
    color: white;
    background-color: black;
}

.search_bar_mobile{
    display: none;
    margin-left: 0;
    background-color: #0D0D0D;
    margin-right: 0;
    box-sizing: border-box;
}

.search-button{
    display: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.search-button:hover{
    background-color: #59afff;
    color: black;
    border-radius: 15px;
}

.footer-menu-dropdown{
    display: flex;
}

.footer-menu-dropdown_1{
    display: flex;
}

.footer-menu-dropdown i{
    display: none;
}

.footer-menu-dropdown_1 i{
    display: none;
}

.page-filters-mobile .prod-filter-button{
    display: none;
}


.wc-block-grid{
    margin:10px !important;
    padding: 10px;
    border: 1px solid #59afff;
    border-radius: 20px;
}

.wc-block-grid__product-title{
    color: #555 !important;
}

.woocommerce-product-gallery__image .wp-post-image{
    max-width: 530px;
    height: auto;
}

#sidebar{
    display: none !important;
}




.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Auto-adjust columns */
    grid-gap: 20px;
    margin-top: 20px;
    margin: 20px;
}

/* Grid items */
.product-grid-item {
    max-width: 300px;
    background: white;
    text-align: center;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-grid-item li{
    display: flex;
    flex-direction: column;
    list-style: none;
}

.product .add_to_cart_button{
    margin-top: auto !important;
    height: 40px;
    background-color: #59afff !important;
    color: #2c2525 !important;
    margin-top: auto !important;
    line-height: 40px !important;
    font-weight: bolder !important;
}

.product .add_to_cart_button:hover{
    transition: all 0.3s ease-out;
    margin-top: auto !important;
    height: 40px;
    background-color: #1f86e6;
    color: #2c2525;
    margin-top: auto;
    line-height: 40px;
    font-weight: bolder;
}

.product-grid-item a img{
    padding-top: 5px;
    max-width: 100%;
    height: auto;
}

.product-grid-item a h2{
    min-height:116.67px;
    color: #555;
}


.product-grid-item a .price .amount{
    color: #2c2525;
    font-size: 120%;
    font-weight: bolder;
}

/* Hover effect */
.product-grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wp-block-woocommerce-cart-cross-sells-block{
    padding: 20px;
    width: 100%;
}

.mariou-link{
    color: black;
    cursor: default;
}

/*responsive*/

@media only screen and (max-width: 1024px) {

    .container-content{
        padding:0;

    }

    .row-content{
        border-radius: 0;
        text-align: center;
        padding: 10px;

    }

    .navbar_lower{
        padding: 10px;
    }

    .menu-toggle-open{
        padding-left: 10px;
        float: left;
        display: block;
        display: block;
        cursor: pointer;
        z-index: 2;
    }

    .menu-toggle-open i{
        padding: 10px;
    }

    .menu-toggle-open i:hover{
        font-weight: bolder;
        color:black;
        background-color: #59afff;
        border-radius: 7px;
        transition: 0.5s;
        padding: 10px;
    }

    .menu-toggle-close{
        display: block;
        display: block;
        cursor: pointer;
        z-index: 2;
    }
    .menu-toggle-close i{
        padding: 10px;
    }
    .menu-toggle-close i:hover{
        font-weight: bolder;
        color:black;
        background-color: #59afff;
        border-radius: 7px;
        transition: 0.5s;
        padding: 10px;
    }

    .menu_main_lower_nav{
        display: block;
        background-color: black;
        position: absolute;
        left: 0;
        width: 100%;
        z-index: 1;
        transition: all 0.3s ease-in-out;
        margin-left: 0;
        height: 0;
        overflow: hidden;
    }

    .menu_main_lower_nav ul{
        flex-direction: column;
    }

    .menu_main_lower_nav ul li{
        padding: 10px 0;
    }

    .navbar_upper{
        padding-left: 10px;
        padding-right: 0;
    }

    .search_bar{
        display: none;
    }

    .search_bar_mobile{
        display: block;
        height: 0; /*68*/
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        border-bottom: none;
    }

    .search_bar_mobile .asl_w_container{
        margin:auto;
        padding:10px 0;
        width: 90%;
    }

    .search-button{
        display: block;
        margin-left: auto;
        padding: 10px;
    }

    .info{
        margin: 10px;
        display:grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas: "info_1 info_2" "info_3 info_4";
    }

    .info-block:nth-child(1),.info-block:nth-child(2){
        border-bottom:1px solid #555;
    }

    .user_activ{
        display: flex;
        align-items: center;
        padding: 5px;
        margin-right: 0;
        padding-left: 15px;
    }

    .active_icon{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .active_icon div p:first-child{
        display: none;
    }

    .account-username{
        display: none;
    }

    .wp-block-woocommerce-cart{
        margin: 20px !important;
    }
    .wp-block-woocommerce-checkout{
        margin: 20px !important;
    }

    .footer-row-1{
        display: flex;
        flex-direction: column;
    }

    .mailpoet_form{
        width: 100% !important;
        margin: auto !important;
        text-align: center !important;
    }

    .mailpoet_paragraph_last{
        width: 100% !important;
    }

    .footer-menu-dropdown i{
        display: block;
        margin-left: auto;
        padding: 5px;
    }
    
    .footer-menu-dropdown_1 i{
        display: block;
        margin-left: auto;
        padding: 5px;
    }

    .footer-sep{
        display: none;
    }

    .footer-dropdown-nav{
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }

    .footer-dropdown-support{
        height: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }

    .f-row1-support{
        border-bottom: 1px solid #555;
    }

    .f-row1-menu{
        margin-top: 10px;
        border-bottom: 1px solid #555;
    }

    .column-2 h2{
        font-size: 30px;
        margin: 0;
    }

    .Subtext-Wel_panel{
        display: none;
    }

    .button_new_product{
        display: none;
    }

    .featured{
    border-left: none;
    border-right: none;
    }

   
    /*displays and holders*/

    .sidebar{
        width: 0;
        height: 100%;
        overflow: hidden;
        padding: 0;
        min-width: 0;
        position: absolute;
        z-index: 100;
        transition: all 0.3s ease-in-out;
    }

    .page-filters-mobile{
        background-color: white;
        border-bottom: 1px solid #555;
    }

    .page-filters-mobile .prod-filter-button{
        display: block;
        margin-right: auto;
    }

    .prod-filter-button i{
        padding: 10px;
    }

    .Product_icons_block a{
        font-size: 15px;
        margin-bottom: auto;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr); /* 2 columns */
    }

    /*account*/

    .woocommerce-account .woocommerce{
        margin: 0;
        border-radius: 0 !important;
    }

    .woocommerce-MyAccount-navigation{
        text-align: center;
        width: fit-content;
    }

    .woocommerce-MyAccount-navigation-link{
        margin: 0 !important;
        padding: 10px 5px !important;
    }

    
    

}

@media only screen and (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        margin: 7px;
    }

    .navbar_upper{
        padding-left: 5px;
    }

    .front-page-box{
        flex-direction: column;
    }

    .slider{
        width: auto;
        height: 100%;
        margin-top: 10px;
    }

    .slide{
    width: 100%;
    height: auto;
    }

    .welcome-box{
        max-width: 100%;
        justify-content: center;
        margin: 20px;
    }

    .welcome-box h2{
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .welcome-box-subtext{
        font-size: 20px;
        margin: 0;
    }

    .welcome-box p:nth-child(3),.welcome-box p:nth-child(4),.welcome-box p:nth-child(5){
        display: none;
    }

    .info{
        display:grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        grid-template-areas: "info_1" "info_2" "info_3" "info_4";
    }

    .info-block:nth-child(3){
        border-bottom: 1px solid #555;
    }

    .wp-block-woocommerce-cart{
        margin: 5px !important;
        padding: 5px;
    }

    .wc-block-cart__submit-container{
        display: flex !important;
        justify-content: center !important;
    }


    .wp-block-woocommerce-checkout{
        margin: 10px !important;
    }

    .wp-block-woocommerce-empty-cart-block .wc-block-grid .wc-block-grid__products{
        display: flex !important;
        flex-wrap: nowrap; /* Prevent wrapping */
        overflow-x: auto; /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory; /* Smooth snap scrolling */
        padding-bottom: 10px; /* Space for scroll shadow */
        padding-left: 1px;
        padding-bottom: 10px;
    }

    .wc-block-grid{
        margin:5px !important;
        width: 100%;
        border: none;
    }
    .wp-block-woocommerce-empty-cart-block .wc-block-grid .wc-block-grid__products li{
        max-width: 80%;
        border: 1px solid #555;
        border-radius: 10px;
        overflow: hidden;
        margin-right: 2px;
    }

    .wp-block-woocommerce-cart-cross-sells-block {
        display: flex;
        flex-direction: column; /* Keeps title on top */
        padding: 5px;
    }

    .wp-block-woocommerce-cart-cross-sells-block > div {
        overflow-x: auto; /* Enables horizontal scrolling */
        white-space: nowrap; /* Prevents wrapping */
        display: flex;
        flex-wrap: nowrap; /* Keeps products in a single row */
        gap: 10px; /* Adds spacing between products */
        padding-bottom: 10px; /* Prevents overlap with scrollbar */
    }

    .cross-sells-product {
        min-width: 200px; /* Ensures each product has enough space */
        max-width: 300px;
        flex: 0 0 auto; /* Prevents shrinking */
        padding-right: 0 !important;
        width: 80% !important;
        border: 1px solid #555;
        border-radius: 10px;
        padding: 5px;
    }

    .cross-sells-product div h3 a {
        white-space: normal; /* Allows text to wrap */
        word-wrap: break-word; /* Ensures long words break */
        overflow-wrap: break-word; /* Alternative for word breaking */
        max-width: 100%; /* Prevents text from exceeding container width */
    }
    .cross-sells-product div div a img{
        max-width: 300px;
        height: auto;
    }

    .navbar_lower{
        border-bottom: 1px solid #555;
    }

    .home-box-head-name img{
        height: 40px;
    }

    .home-box-head-button{
        padding: 5px;
        margin-left: 5px;
    }

    .home-box-items{
        padding: 10px;
    }

    .info{
        margin-top: 10px;
    }
    .product-type-simple .woocommerce-product-gallery{
        padding-left: 20px !important;
        padding-right: 20px !important;

    }

    .product-type-simple .entry-summary{
        padding-left: 20px !important;
        padding-right: 20px !important;

    }
    .woocommerce-LoopProduct-link h2{
        padding-left: 5px !important;
        padding-right: 5px !important;
    
    }

    .u-column1 .woocommerce-form {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
    
    .u-column2 .woocommerce-form{
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .lost_reset_password{
        margin: 50px 10px;
    }
    
}

/* Adjust for very small screens: 1 column */
@media only screen and (max-width: 300px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 column */
    }
    
    .wp-block-woocommerce-cart{
        margin: 5px !important;
    }

    .wp-block-woocommerce-checkout{
        margin: 5px !important;
    }
}
