/* ================================
   NOTIFICATION WRAPPER (TIGHT)
================================ */
.rsn-notification {
    position: fixed;
    bottom: 16px;
    z-index: 9999;
    background: #fff;
    border: 2px solid #000;
    padding: 8px 10px;
    max-width: 360px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    box-sizing: border-box;
    font-size: 12px;
    line-height: 1.2;
    border-radius: 3px;
}

/* LEFT / RIGHT */
.rsn-notification.left { left: 16px; }
.rsn-notification.right { right: 16px; }

/* ================================
   PRODUCT IMAGE
================================ */
.product-image {
    width: 68px;
    height: auto;
    flex-shrink: 0;
    display: block;
}

/* ================================
   CONTENT
================================ */
.notification-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

/* ================================
   MESSAGE + ICON
================================ */
.notification-message {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.15;
}

/* ICON IMAGE */
.rsn-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
}

/* ================================
   DETAILS
================================ */
.notification-details {
    margin: 0;
    padding: 0;
    font-size: 11px;
    color: #333;
}

/* ================================
   PRODUCT LINK
================================ */
.notification-content a {
    font-size: 11px;
    color: #1a73e8;
    text-decoration: none;
}

.notification-content a:hover {
    text-decoration: underline;
}

/* ================================
   PRICE
================================ */
.product-price {
    margin: 2px 0 0;
    padding: 0;
    font-size: 12px;
    font-weight: bold;
}

/* ================================
   CLOSE BUTTON
================================ */
.close-btn {
    position: absolute;
    top: 5px;
    right: 6px;
    border: none;
    background: none;
    font-size: 13px;
    cursor: pointer;
    opacity: 0.6;
}

.close-btn:hover {
    opacity: 1;
}

/* ================================
   BORDER ANIMATION
================================ */
.rsn-notification.color-changing {
    transition: border-color 1s linear;
}

/* ================================
   MOBILE
================================ */
@media (max-width: 600px) {
    .rsn-notification {
        max-width: calc(100% - 20px);
        padding: 6px 8px;
        font-size: 11px;
    }

    .product-image {
        width: 56px;
    }

    .rsn-icon {
        width: 12px;
        height: 12px;
    }
}
