:root { --blue: #0056b3; --yellow: #ffca28; }
body { background-color: #f8f9fa; }
.hero { background: var(--blue); color: white; padding: 30px; border-bottom: 5px solid var(--yellow); }
.card { border: none; border-radius: 12px; }
.badge-loc { background: #eee; color: #333; font-size: 0.85rem; border: 1px solid #ccc; }
.stock-low { color: #dc3545; font-weight: bold; }
.video-thumb {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
}
.video-thumb:hover {
    transform: scale(1.05);
}
.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0.375rem;
}
.video-thumb:hover .video-overlay {
    opacity: 1;
}
.btn-social {
    transition: all 0.3s;
}
.btn-social:hover {
    transform: scale(1.1);
    background-color: #ffca28 !important;
    color: #0056b3 !important;
    border-color: #ffca28 !important;
}