/*
 * Responsive Styles for Duplicate Child Theme
 * 
 * This file contains all mobile and responsive styles for the child theme.
 * All responsive styles should be added here to maintain separation from core styles.
 * 
 * Breakpoints:
 * - Mobile: 768px and below
 * - Tablet: 769px to 1024px
 * - Desktop: 1025px and above
 */

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    /* Add mobile-specific styles here */
}

/* Tablet Styles (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Add tablet-specific styles here */
}

/* Desktop Styles (1025px and above) */
@media (min-width: 1025px) {
    /* Add desktop-specific styles here */
}