.sale-type-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.sale-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.sale-badge-wholesale {
    background-color: #fed7aa;
    color: #ea580c;
}

.sale-badge-retail {
    background-color: #dbeafe;
    color: #2563eb;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .sale-badge-wholesale {
        background-color: rgba(234, 88, 12, 0.3);
        color: #fb923c;
    }
    
    .sale-badge-retail {
        background-color: rgba(37, 99, 235, 0.3);
        color: #60a5fa;
    }
}
.specs-desktop {
    display: none;
}

.specs-mobile {
    display: block;
}

@media (min-width: 768px) {
    .specs-desktop {
        display: block;
    }

    .specs-mobile {
        display: none;
    }
}

