/* Основное уведомление */
.pdt-notice-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pdt-notice-wrapper.active {
    opacity: 1;
}

.pdt-notice {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    border-left: 4px solid #ff0000;
}

.pdt-notice:before {
    content: "\f534";
    font-family: dashicons;
    color: #ff0000;
    font-size: 32px;
    display: block;
    margin-bottom: 15px;
}

/* Кнопки "Добавить в корзину" */
.woocommerce .pdt-disabled-btn,
.woocommerce .pdt-disabled-btn:hover,
.woocommerce .pdt-disabled-btn:disabled,
.woocommerce .pdt-disabled-btn:disabled[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #ccc !important;
    border-color: #ccc !important;
    color: #666 !important;
}

/* Адаптивность */
@media (max-width: 768px) {
    .pdt-notice {
        padding: 15px;
    }
}