.qodef-woo-results {
    display: none;
}

/* Footer */

footer a {
    color: #fff;
}

footer .textwidget p {
    color: #FFFFFF;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 16px;
    line-height: 0;
}

.single-post .qodef-blog .qodef-blog-item .qodef-e-media-image {
    display: none;
}

.wp-block-quote {
    font-family: 'Nunito';
    font-size: 20px;
    
}

.qodef-blog.qodef-m.qodef--single a {
    color: #3b2f51;
    font-weight: 600;
}

.qodef-blog.qodef-m.qodef--single a:hover {
    color: #c2b1df;
}


#qodef-page-footer-bottom-area p {
    color: #d8cfe5;
    font-size: 15px;
}

#qodef-page-footer-bottom-area {
    padding: 15px 0 10px;
}

#qodef-page-footer .widget a {
    color: #FFFFFF;
}

.subscribe-form-container .wpcf7-form-control-wrap input[type="email"]::placeholder {
    color: #3b2f5136;
}

footer .qodef-grid-item {
    margin-bottom: 0px !important;
}

#qodef-page-footer .widget ul:not(.qodef-shortcode-list) li {
    margin: 0 0 15px;
}

#qodef-page-footer-bottom-area:before {
    width: 400px;
    left: calc(50% - 200px);
    background-color: #9eadc8b6;
}

footer .menu a {
    color: #FFFFFF;
    text-transform: none;
    font-family: "Montserrat";
    font-size: 16px;
}

/* Product Category */
.product-category-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-category-row {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}

.product-category-item {
    position: relative;
    width: 100%;
    height: 475px;
    overflow: hidden;
}

/* Wrap the two images in a container to control their positioning */
.product-category-images {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Style for both images */
.product-category-image,
.product-category-hover-image {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    transition: -webkit-transform 0.95s ease, transform 0.95s ease, opacity 0.5s ease;
    transition: transform 0.95s ease, opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

/* Initially hide the hover image */
.product-category-hover-image {
    opacity: 0;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    /* Rotate the hover image */
}

/* When hovering over the item, rotate the default image and show the hover image */
.product-category-item:focus .product-category-image,
.product-category-item:active .product-category-image,
.product-category-item:hover .product-category-image {
    opacity: 0;
    /* Hide the default image */
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    /* Rotate the default image */
}

.product-category-item:focus .product-category-hover-image,
.product-category-item:active .product-category-hover-image,
.product-category-item:hover .product-category-hover-image {
    opacity: 1;
    /* Show the hover image */
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    /* Rotate the hover image back to normal */
}

@media (max-width: 768px) {
    .product-category-row {
        display: block;
    }
}

/* Theme */
/* Remove hover */

.qodef-button.qodef-layout--filled.qodef-html--link:hover .qodef-m-background,
.woocommerce-account .button:hover .qodef-m-background {
    clip-path: inset(-1px 100% 0 0);
}

.qodef-button.qodef-html--link,
.woocommerce-account .button {
    color: #fff;
    background-color: #3B2F51;
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 400;
    line-height: 34px;
    text-align: left;
    text-transform: none;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 8px 30px 8px 30px;
    border-radius: 5px;
    opacity: 0px;
}

.qodef-header-navigation>ul>li>a:hover .qodef-menu-item-text:before {
    content: none;
}

/* Custom Login Button */

.custom-login-button {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    height: 50px;
    padding: 8px 30px;
    border-radius: 5px;
    background-color: #9EADC8;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

/* Container for logged-in user */
.custom-login-button.logged-in {
    background: transparent;
    padding: 0;
}

/* User Info: Avatar + Name + Arrow */
.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Up arrow */
.arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Rotate arrow when dropdown is open */
.custom-login-button.show-dropdown .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    min-width: 200px;
    overflow: hidden;
}

/* Show dropdown when clicked */
.custom-login-button.show-dropdown .dropdown-content {
    display: block;
}

/* Menu inside dropdown */
.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.dropdown-menu li {
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #333;
    display: block;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
    background: #f7f7f7;
}

/* Register Vendor */

.wcfm-membership-wrapper {
    width: 100% !important;
    box-shadow: none !important;
    border-radius: 10px !important;
}

.wcfm_registration_form_heading {
    display: none;
}

.wcfm_registration_form_subheader {
    text-transform: none;
}


.page-id-17369 #qodef-page-wrapper {
    background-color: rgba(180, 168, 239, 0.11);
}

body .select2-container--default .select2-selection--multiple {
    background-color: #fff !important;
    border: 1px solid #D7CFE5 !important;
    font-family: "Montserrat";
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

#wcfm_membership_container input[type="text"],
#wcfm_membership_container input[type="file"],
#wcfm_membership_container input[type="password"],
#wcfm_membership_container select,
#wcfm_membership_container input[type="number"],
#wcfm_membership_container input[type="time"],
#wcfm_membership_container input[type="search"],
#wcfm_membership_container textarea {
    background-color: #fff !important;
    border: 1px solid #D7CFE5 !important;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 8px 11px;
    width: 60%;
    margin-bottom: 15px;
    font-size: 15px;
    display: inline-block;
    box-shadow: none;
    line-height: 25px;
}

#wcfm_membership_container p.wcfm_title strong,
#wcfm_membership_container span.wcfm_title strong {
    color: #000;
    font-size: 16px;
    font-weight: 300 !important;
}

.required {
    color: #000;
    font-weight: 400;
}

body .select2-container--default .select2-dropdown {
    background-color: #F3F1FC;
    border: 1px solid #D7CFE5;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

#wcfm_membership_container .select2-container {
    box-shadow: none;
}

body .select2-container--default .select2-results__option {
    font-family: "Montserrat";
}

.wcfm-membership-wrapper .img_tip.wcfmfa.fa-question {
    display: none;
}

#qodef-page-inner {
    min-height: 80vh;
}


.qodef-block .qodef-m-pagination .nav-links {
    font-family: 'Nunito';
    font-weight: 600;
    margin-top: 25px;
}

.qodef-block .qodef-m-pagination .page-numbers.current, .qodef-block .qodef-m-pagination .page-numbers:focus, .qodef-block .qodef-m-pagination .page-numbers:hover {
    color: #3b2f51;
}

.qodef-m-pagination.qodef--wp {
    display: none;
}