/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 15 2026 | 03:24:15 */
.other-scents ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.other-scents ul li {
    text-align: center;
    padding: 10px;
}

@media (max-width: 768px) {
    .other-scents ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .other-scents ul li {
        padding: 8px;
    }
}