/* Ensure the menu toggle button is visible on mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

/* Adjust padding and margins for mobile view */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    .site-title {
        font-size: 1.3rem;
    }
    .woocommerce ul.products li.product {
        min-height: 300px;
    }
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }
    .content-area,
    .widget-area {
        padding: 15px;
    }
}

/*
Theme Name: Ammo Elite
Theme URI: https://example.com/ammo-elite
Author: Custom Theme Developer
Author URI: https://example.com
Description: An enhanced WordPress theme based on Ammo Pro, designed for ammunition and gun websites with additional features, improved performance, and a modern design.
Version: 1.0.0
Requires at least: 5.6
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ammo-elite
Tags: ammo, firearms, e-commerce, responsive, dark-mode, custom-colors, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    color: #c53211;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #8c2409;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #222;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Base styling, with more in separate CSS files */
