.wc-extra-cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999999;
    display: none;
}
.wc-extra-cookie-popup.show {
    display: block;
}
.wc-extra-cookie-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.wc-extra-cookie-popup-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}
.wc-extra-cookie-popup-buttons {
    display: flex;
    gap: 10px;
}
.wc-extra-cookie-popup-button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background 0.3s;
}
.wc-extra-cookie-popup-accept {
    background: #000;
    color: #fff;
}
.wc-extra-cookie-popup-accept:hover {
    background: #333;
}
.wc-extra-cookie-popup-decline {
    background: #f5f5f5;
    color: #333;
}
.wc-extra-cookie-popup-decline:hover {
    background: #e0e0e0;
}
@media (max-width: 768px) {
    .wc-extra-cookie-popup-content {
        flex-direction: column;
        text-align: center;
    }
    .wc-extra-cookie-popup-buttons {
        width: 100%;
        justify-content: center;
    }
}



