/* 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;
    }

}
@media (max-width: 768px) {
    body.woocommerce.archive ul.products {
        margin-top: 0 !important;
    }
}
/* Shoptimizer mobile menu - active/open item green */
@media (max-width: 1024px) {

    .main-navigation ul.menu li.current-menu-item > a,
    .main-navigation ul.menu li.current-menu-ancestor > a,
    .main-navigation ul.menu li.dropdown-open > a,
    .main-navigation ul.menu li:has(> [aria-expanded="true"]) > a,
    .main-navigation ul.menu li > a:active,
    .main-navigation ul.menu li > a:focus {
        color: #05E87B !important;
    }

    /* Keep SVG/icon colour consistent where applicable */
    .main-navigation ul.menu li.current-menu-item > a svg,
    .main-navigation ul.menu li.current-menu-ancestor > a svg,
    .main-navigation ul.menu li.dropdown-open > a svg,
    .main-navigation ul.menu li:has(> [aria-expanded="true"]) > a svg {
        fill: #05E87B !important;
        stroke: #05E87B !important;
    }
}
/* EKD - Collapsible product specification tables */
.single-product .ekd-specifications-wrapper {
    position: relative;
    max-height: 560px;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

/* Fade at bottom while collapsed */
.single-product .ekd-specifications-wrapper:not(.ekd-specifications-expanded)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        #ffffff 90%
    );
}

/* Expanded table */
.single-product .ekd-specifications-wrapper.ekd-specifications-expanded {
    max-height: none;
}

/* Show / Hide button */
.single-product .ekd-specifications-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 25px;
    padding: 12px 18px;
    background: #ffffff;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    color: #222222;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.single-product .ekd-specifications-toggle:hover {
    color: #05E87B;
    border-color: #05E87B;
}

/* Arrow */
.single-product .ekd-specifications-toggle::after {
    content: "↓";
    font-size: 15px;
}

.single-product .ekd-specifications-toggle.is-expanded::after {
    content: "↑";
}

/* Mobile */
@media (max-width: 768px) {

    .single-product .ekd-specifications-wrapper {
        max-height: 430px;
    }

    .single-product .ekd-specifications-toggle {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 20px;
        padding: 13px 15px;
        box-sizing: border-box;
    }
}