/* ═══ Nexsel Product Tooltip Card ═══ */
#nexsel-product-tooltip {
    position: fixed;
    z-index: 99999;
    width: 300px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
    border: 1.5px solid #e8f5e9;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease, transform 0.18s ease;
    transform: translateY(6px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#nexsel-product-tooltip.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#nexsel-tooltip-image-wrap {
    width: 100%;
    height: 155px;
    background: #f1f8f1;
    overflow: hidden;
    position: relative;
}

#nexsel-tooltip-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#nexsel-tooltip-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #2e7d32;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
}

#nexsel-tooltip-body {
    padding: 12px 15px 14px;
}

#nexsel-tooltip-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    margin: 0 0 5px;
}

#nexsel-tooltip-desc {
    font-size: 11.5px;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 9px;
}

#nexsel-tooltip-meta {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 11px;
}

#nexsel-tooltip-meta span {
    font-size: 11px;
    background: #f0f8f0;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    border-radius: 6px;
    padding: 2px 8px;
    font-weight: 500;
}

#nexsel-tooltip-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

#nexsel-tooltip-price {
    font-size: 15px;
    font-weight: 700;
    color: #2e7d32;
}

#nexsel-tooltip-btn {
    display: inline-block !important;
    background: #2e7d32 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 7px 14px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    cursor: pointer;
}

#nexsel-tooltip-btn:hover {
    background: #1b5e20 !important;
}

@media (max-width: 768px) {
    #nexsel-product-tooltip {
        display: none !important;
    }
}
