/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
/* Compare Notification */
.gp-compare-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999999;
    width: min(360px, calc(100vw - 32px));
    padding: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
    direction: rtl;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all .25s ease;
}

.gp-compare-toast.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gp-compare-toast__title {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 800;
    color: #1c1c1c;
}

.gp-compare-toast__text {
    margin: 0 0 14px;
    font-size: 13px;
    line-height: 1.9;
    color: #555;
}

.gp-compare-toast__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gp-compare-toast__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    background: #2f7d32;
    color: #fff !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
}

.gp-compare-toast__btn:hover {
    background: #246327;
    color: #fff !important;
}

.gp-compare-toast__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 10px;
    background: transparent;
    color: #666;
    border: 0;
    cursor: pointer;
    font-size: 13px;
}

@media (max-width: 768px) {
    .gp-compare-toast {
        right: 16px;
        left: 16px;
        bottom: 16px;
        width: auto;
    }

    .gp-compare-toast__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gp-compare-toast__btn,
    .gp-compare-toast__close {
        width: 100%;
    }
}
