.price-pulse-wrap {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin: 1.5rem 0;
    font-size: 14px;
}

.price-pulse-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.price-pulse-title {
    font-weight: 600;
    font-size: 14px;
}

.price-pulse-updated {
    font-size: 12px;
    color: #888;
}

.price-pulse-table {
    width: 100%;
    border-collapse: collapse;
}

.price-pulse-table thead th {
    background: #f8f8f8;
    padding: 8px 16px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.price-pulse-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.price-pulse-table tbody tr:hover {
    background: #fafafa;
}

.price-pulse-table tbody tr:last-child {
    border-bottom: none;
}

.price-pulse-table td {
    padding: 10px 16px;
    vertical-align: middle;
}

.price-pulse-best {
    background: #f0fdf4;
}

.price-pulse-best:hover {
    background: #e8faf0 !important;
}

.price-pulse-retailer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-pulse-badge {
    background: #16a34a;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-pulse-price {
    font-weight: 600;
    color: #16a34a;
}

.price-pulse-regular {
    color: #999;
    text-decoration: line-through;
}

.price-pulse-sale {
    background: #fef2f2;
    color: #dc2626;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 4px;
}

.price-pulse-btn {
    display: inline-block;
    background: #2563eb;
    color: white !important;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 5px;
    text-decoration: none !important;
    transition: background 0.15s;
}

.price-pulse-btn:hover {
    background: #1d4ed8;
}

.price-pulse-error {
    color: #888;
    font-size: 13px;
    font-style: italic;
}