/* Shop Notification Styles */
.shop-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(15, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 207, 255, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    transform: translateX(200%);
    transition: transform 0.5s ease;
    max-width: 300px;
}

.shop-notification.show {
    transform: translateX(0);
}

.notification-icon {
    font-size: 1.5rem;
    color: var(--primary-color, #00cfff);
    margin-right: 15px;
}

.notification-content {
    flex-grow: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary, #ffffff);
}

.notification-text {
    font-size: 0.9rem;
    color: var(--text-secondary, #cccccc);
    margin-bottom: 10px;
}

.notification-btn {
    padding: 5px 15px;
    background: linear-gradient(135deg, #00cfff, #6a11cb);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .shop-notification {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
        width: calc(100% - 40px);
    }
}
