/* Luxury Theme - Notifications Page Styles */

.notifications-page {
    background-color: #fdfdfd;
    min-height: 70vh;
    padding: 60px 0;
}

.notifications-container {
    max-width: 900px;
    margin: 0 auto;
}

.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.notifications-header h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.btn-mark-all {
    color: #d4af37;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.btn-mark-all:hover {
    color: #1a1a1a;
}

.notifications-list {
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.notification-item {
    display: flex;
    align-items: flex-start;
    padding: 25px 30px;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: #fafafa;
    transform: translateX(5px);
}

.notification-item.unread {
    background: rgba(212, 175, 55, 0.03);
}

.notification-item.unread::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #d4af37;
}

.notification-icon {
    width: 45px;
    height: 45px;
    background: #f9f9f9;
    border: 1px solid #ebebeb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: #1a1a1a;
    transition: all 0.3s;
}

.notification-item:hover .notification-icon {
    background: #1a1a1a;
    color: #d4af37;
    border-color: #1a1a1a;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.notification-message {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.notification-time {
    font-size: 0.8rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px;
}

.notification-dot {
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    margin-left: 15px;
    align-self: center;
}

.empty-notifications {
    text-align: center;
    padding: 80px 40px;
}

.empty-icon {
    font-size: 4rem;
    color: #eee;
    margin-bottom: 20px;
}

.empty-notifications h4 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.empty-notifications p {
    color: #999;
}

@media (max-width: 576px) {
    .notification-item {
        padding: 20px;
    }
    .notification-icon {
        width: 35px;
        height: 35px;
        margin-right: 15px;
    }
    .notification-title {
        font-size: 1rem;
    }
}