/* Montserrat Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* Ürün Bildirimi Popup */
.hp-product-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999999;
    max-width: 340px;
    width: calc(100% - 40px);
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    visibility: hidden;
}

.hp-product-notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
}

/* Ana link container */
.hp-notification-link {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    overflow: hidden;
    padding: 12px;
    gap: 12px;
    align-items: flex-start;
}

.hp-notification-link:hover {
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* Ürün görseli */
.hp-notification-image {
    width: 65px;
    height: 65px;
    min-width: 65px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.hp-notification-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Metin alanı */
.hp-notification-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 2px;
}

/* Bir müşterimiz daha bizi tercih etti! */
.hp-notification-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: #000000;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* x dakika önce - Şehir, Türkiye */
.hp-notification-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

/* Fiyat */
.hp-notification-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: #000000;
    margin: 0;
    margin-top: 4px;
    line-height: 1.3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hp-product-notification {
        bottom: 80px;
        left: 12px;
        max-width: calc(100% - 24px);
        width: auto;
        min-width: 280px;
    }
    
    .hp-notification-link {
        padding: 10px;
        gap: 10px;
        border-radius: 10px;
    }
    
    .hp-notification-image {
        width: 55px;
        height: 55px;
        min-width: 55px;
        border-radius: 6px;
    }
    
    .hp-notification-message {
        font-size: 12px;
    }
    
    .hp-notification-location {
        font-size: 11px;
    }
    
    .hp-notification-price {
        font-size: 13px;
    }
}
