/* Modern Card Template */
.cnx-notification.cnx-template-1 {
    width: 350px;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #2271b1;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: fixed;
    z-index: 9999;
}

.cnx-notification.cnx-template-1.cnx-show {
    transform: translateX(0);
    opacity: 1;
}

.cnx-notification.cnx-template-1 .cnx-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cnx-notification.cnx-template-1 .cnx-image {
    flex-shrink: 0;
    position: relative;
}

.cnx-notification.cnx-template-1 .cnx-image img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.cnx-notification.cnx-template-1 .cnx-details {
    flex: 1;
}

.cnx-notification.cnx-template-1 .cnx-message {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 6px;
    font-weight: 500;
}

.cnx-notification.cnx-template-1 .cnx-time {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

.cnx-notification.cnx-template-1 .cnx-add-to-cart-container {
    margin-top: 12px;
    text-align: center;
    display: none;
}

.cnx-notification.cnx-template-1 .cnx-add-to-cart {
    background: #2271b1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    width: 100%;
}

.cnx-notification.cnx-template-1 .cnx-add-to-cart:hover {
    background: #135e96;
    transform: translateY(-1px);
}

.cnx-notification.cnx-template-1 .cnx-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #999;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cnx-notification.cnx-template-1 .cnx-close:hover {
    background: #f5f5f5;
    color: #666;
}

/* Animation */
.cnx-notification.cnx-template-1.cnx-slide {
    transform: translateX(400px);
}

.cnx-notification.cnx-template-1.cnx-slide.cnx-show {
    transform: translateX(0);
}

.cnx-notification.cnx-template-1.cnx-fade {
    transform: none;
    opacity: 0;
}

.cnx-notification.cnx-template-1.cnx-fade.cnx-show {
    opacity: 1;
}

.cnx-notification.cnx-template-1.cnx-bounce {
    transform: scale(0.7);
}

.cnx-notification.cnx-template-1.cnx-bounce.cnx-show {
    transform: scale(1);
}

.cnx-notification.cnx-template-1.cnx-zoom {
    transform: scale(0.5);
    opacity: 0;
}

.cnx-notification.cnx-template-1.cnx-zoom.cnx-show {
    transform: scale(1);
    opacity: 1;
}