.spt-container-1597340e {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    position: relative;
    font-family: inherit;
}

.spt-tag {
    background: #e2401c;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    top: -10px;
    right: -10px;
}

.spt-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.spt-regular-price del {
    color: #999;
    font-size: 0.9em;
}

.spt-sale-price {
    color: #e2401c;
    font-weight: bold;
}

.spt-add-to-cart {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

.spt-add-to-cart:hover {
    background: #555;
}

/* Toast Popup */
.spt-popup-1597340e {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4caf50;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 99999;
    font-size: 14px;
}

.spt-popup-1597340e.spt-show {
    transform: translateY(0);
    opacity: 1;
}