/* Background Remover Styles */
.bg-remove-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .bg-remove-compare {
        grid-template-columns: 1fr;
    }
}
.bg-remove-compare .compare-panel {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.bg-remove-compare .compare-panel h4 {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 12px;
}
.bg-remove-compare .compare-panel img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
}
.bg-remove-compare .compare-panel .checker-bg {
    background-image: 
        linear-gradient(45deg, #e5e7eb 25%, transparent 25%),
        linear-gradient(-45deg, #e5e7eb 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #e5e7eb 75%),
        linear-gradient(-45deg, transparent 75%, #e5e7eb 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    border-radius: 8px;
    display: inline-block;
}
