/*
Theme Name: Custom Armadera
Theme URI:  https://example.com/custom-armadera
Author:     You
Author URI: https://example.com
Description: Minimal, accessible starter theme for WordPress + WooCommerce
Version:    1.0.0
License:    GNU General Public License v2 or later
Text Domain: custom-armadera
*/

/* CSS Variables */
:root {
    --max-width: 1200px;
    --content-padding: 1rem;
    --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Base Layout */
body {
    margin: 0;
    color: #222;
    background: #fff;
}

.wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--content-padding);
}

.site-header,
.site-footer {
    background: #f8f8f8;
    padding: 1rem;
}

.site-main {
    padding: 1rem;
}

.post {
    margin-bottom: 2rem;
}

/* Responsive Grid for Products */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

@media (min-width: 768px) {
    .site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
