/* ST Dollar Shop Core - Frontend Styling */

.st-floating-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.st-floating-whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.st-floating-whatsapp-btn .st-whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: #111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-5px);
}

.st-floating-whatsapp-btn:hover .st-whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* WhatsApp One Click Checkout Modal / Overlay */
.st-whatsapp-btn-single {
    background-color: #25D366 !important;
    color: #FFF !important;
    font-weight: bold;
    border-radius: 6px !important;
    padding: 12px 20px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    margin-top: 10px;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.st-whatsapp-btn-single:hover {
    background-color: #1eb956 !important;
}

/* Live Search Modal Results */
.st-live-search-results {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.st-live-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid #edf2f7;
    text-decoration: none;
    color: #2d3748;
    transition: background 0.15s ease;
}

.st-live-search-item:hover {
    background: #f7fafc;
}

.st-live-search-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
}

.st-live-search-info {
    flex: 1;
}

.st-live-search-title {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.st-live-search-price {
    font-size: 13px;
    color: #e53e3e;
    font-weight: bold;
}
