/**
 * SCHULMANS SAFE IMPROVEMENTS
 * ===========================
 * Minimal, tested improvements that don't break existing functionality
 * 
 * @version: 1.0.0
 * @approach: One change at a time, test thoroughly
 */

/* 
 * IMPROVEMENT #1: Better page background color
 * Only changes the main page background, doesn't touch product cards
 */
body {
    background-color: #FAFAFA;
}

/* 
 * IMPROVEMENT #2: Slightly better button styling (non-breaking)
 * Only enhances existing buttons, doesn't override critical styles
 */
.action.primary {
    border-radius: 6px;
    transition: all 0.2s ease;
}

.action.primary:hover {
    transform: translateY(-1px);
}

/**
 * THAT'S IT - Just 2 minimal, safe changes
 * We'll test this first before adding anything else
 */