/* 
 * WD Soin Nature Common Styles
 * This file contains styles that apply to multiple components
 */

/* Common utility classes */
.wd-clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Common animations */
@keyframes wd-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive container */
.wd-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
} 