/**
Theme Name: AdevShop
Author: Adev
Author URI: https://adev.by
Description:
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adevshop
Template: astra
*/

/* change separator start */
.breadcrumb-trail .separator {
    display: none;
}

.breadcrumb-trail li:not(:last-child)::after {
    content: "/";
    /*margin: 0 8px;*/
}
/* change separator end */


/* cookie start */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #2b2b2b;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 99999 !important;
    max-width: 700px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-notice p {
    margin: 0;
    padding: 0;
}

.cookie-notice a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.cookie-notice a:hover {
    opacity: 0.7;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn-accept {
    background-color: #ffffff;
    color: #2b2b2b;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.cookie-btn-accept:hover {
    background-color: #e5e5e5;
}

.cookie-btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.cookie-btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Мобильная адаптация */
@media only screen and (max-width: 768px) {
    .cookie-notice {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn-accept, .cookie-btn-reject {
        width: 100%;
        padding: 10px;
    }
}
/* cookie end */
