/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* Import parent theme styles */
@import url("../woodmart/style.css");

/* WoodMart Child Theme Custom Styles */

/* Security and compatibility enhancements */
.woodmart-child-header {
    /* Custom header styles - add your custom styles here */
    position: relative;
}

.woodmart-child-footer {
    /* Custom footer styles - add your custom styles here */
    position: relative;
}

.woodmart-child-after-header {
    /* Styles for after header content */
    margin: 0;
    padding: 0;
}

.woodmart-child-before-footer {
    /* Styles for before footer content */
    margin: 0;
    padding: 0;
}

/* WooCommerce compatibility styles */
.woodmart-child-product-wrapper {
    /* Product wrapper styles */
    position: relative;
}

/* Responsive design compatibility */
@media (max-width: 768px) {
    .woodmart-child-after-header,
    .woodmart-child-before-footer {
        padding: 10px;
    }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
    .woodmart-child-header,
    .woodmart-child-footer {
        /* Dark mode styles - add your dark mode styles here */
        opacity: 0.95;
    }
}

/* High contrast mode compatibility */
@media (prefers-contrast: high) {
    .woodmart-child-header,
    .woodmart-child-footer {
        border: 2px solid;
    }
}

/* Reduced motion compatibility */
@media (prefers-reduced-motion: reduce) {
    .woodmart-child-header,
    .woodmart-child-footer {
        transition: none;
    }
}
