/* ========================================
   LUXURY NOTIFICATION SYSTEM
   ======================================== */

.luxury-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    min-width: 320px;
    max-width: 400px;
    background: white;
    border: 2px solid #d4af37;
    border-radius: 0;
    padding: 20px 25px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: #333;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.luxury-notification.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.luxury-notification.hide {
    opacity: 0;
    transform: translateX(100%) scale(0.9);
}

/* Notification Header */
.luxury-notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.luxury-notification-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.luxury-notification-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.luxury-notification-close {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.luxury-notification-close:hover {
    color: #333;
}

/* Notification Content */
.luxury-notification-content {
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Notification Types */
.luxury-notification.success {
    border-color: #28a745;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
}

.luxury-notification.success .luxury-notification-icon {
    background: #28a745;
    color: white;
}

.luxury-notification.success .luxury-notification-title {
    color: #155724;
}

.luxury-notification.error {
    border-color: #7C0A02;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
}

.luxury-notification.error .luxury-notification-icon {
    background: #7C0A02;
    color: white;
}

.luxury-notification.error .luxury-notification-title {
    color: #7C0A02;
}

.luxury-notification.info {
    border-color: #d4af37;
    background: linear-gradient(135deg, #ffffff 0%, #fffdf5 100%);
}

.luxury-notification.info .luxury-notification-icon {
    background: #d4af37;
    color: white;
}

.luxury-notification.info .luxury-notification-title {
    color: #856404;
}

/* Progress bar */
.luxury-notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: currentColor;
    opacity: 0.3;
    animation: progressBar 4s linear forwards;
}

@keyframes progressBar {
    from { width: 100%; }
    to { width: 0%; }
}

/* Product info in notification */
.luxury-notification-product {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 10px;
}

.luxury-notification-product-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 12px;
    border: 1px solid #f0f0f0;
}

.luxury-notification-product-details {
    flex: 1;
}

.luxury-notification-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.luxury-notification-product-price {
    font-size: 0.85rem;
    color: #d4af37;
    font-weight: 600;
}

.luxury-notification-product-price .sale-price {
    color: #d4af37;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 8px;
}

.luxury-notification-product-price .original-price {
    color: #999;
    font-size: 0.7rem;
    text-decoration: line-through;
    font-weight: 400;
}

/* Action buttons in notification */
.luxury-notification-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.luxury-notification-btn {
    padding: 8px 16px;
    border: 1px solid #d4af37;
    background: transparent;
    color: #d4af37;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.luxury-notification-btn:hover {
    background: #d4af37;
    color: white;
}

.luxury-notification-btn.primary {
    background: #d4af37;
    color: white;
}

.luxury-notification-btn.primary:hover {
    background: #7C0A02;
    border-color: #7C0A02;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .luxury-notification {
        top: 80px;
        right: 15px;
        left: 15px;
        min-width: auto;
        max-width: none;
    }
    
    /* Hide product display on mobile */
    .luxury-notification-product {
        display: none !important;
    }
}

/* Animation for multiple notifications */
.luxury-notification:nth-child(2) {
    top: 180px;
}

.luxury-notification:nth-child(3) {
    top: 260px;
}

.luxury-notification:nth-child(4) {
    top: 340px;
}

/* Hide old notification styles */
.shop-notification {
    display: none !important;
}

.cart-notification {
    display: none !important;
}

.notification {
    display: none !important;
} 