/* Change the text color of the secondary menu to white */
#menu-secondary-menu li a {
    color: #ffffff; /* White text color */
}

/* Change icon colors inside the secondary menu to white */
#menu-secondary-menu .svg-icon {
    fill: #ffffff; /* White color for SVG icons */
}

/* Optional: Change hover state for links */
#menu-secondary-menu li a:hover {
    color: #05E87B; /* Custom green on hover */
}
/* Stack the prices vertically on mobile devices except for single product pages */
@media (max-width: 768px) {
    body:not(.single-product) .price {
        display: flex;
        flex-direction: column;
    }

    /* Add spacing between the original and current prices */
    body:not(.single-product) .price del,
    body:not(.single-product) .price ins {
        display: block;
        margin-bottom: 5px; /* Adjust the spacing as needed */
    }
}

/* Optionally, keep the original and current price styling */
.price del {
    color: #999; /* Gray color for the original price */
    text-decoration: line-through;
}

.price ins {
    color: #05E87BB8; /* Your preferred color for the current price */
    font-weight: bold;
}
/* Desktop only */
@media (min-width: 1025px) {
    .col-full-nav {
        display: flex;
        justify-content: center;
    }
}

/* Mobile only (and tablet) */
@media (max-width: 1024px) {
    .col-full-nav {
        padding-top: 20px;
    }
}
.site-header-cart.menu {
    margin-left: 20px; /* Adjust this value to increase or decrease the spacing */
}
.sharedaddy.sd-block.sd-like.jetpack-likes-widget-wrapper.jetpack-likes-widget-loaded {
    display: none;
}
.sharedaddy.sd-sharing-enabled {
    display: none;
}
/* Homepage top spacing - Shoptimizer 2.9.6 */
body.home #content.site-content {
    padding-top: 12px !important;
}

/* Mobile */
@media (max-width: 768px) {
    body.home #content.site-content {
        padding-top: 0 !important;
    }
}


/* Mobile product archive/card spacing + alignment - Shoptimizer 2.9.6 */
@media (max-width: 768px) {

    body.woocommerce.archive ul.products {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 12px !important;
        row-gap: 14px !important;

        width: 100% !important;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
    }

    body.woocommerce.archive ul.products li.product {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
}
/* Single product meta - reduce ALL text on desktop */
@media (min-width: 769px) {

    body.single-product .product_meta,
    body.single-product .product_meta *,
    body.single-product .product_meta a,
    body.single-product .product_meta span,
    body.single-product .product_meta strong {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

}