/*
Theme Name: E-Commerce Theme
Theme URI: http://example.com/e-commerce-theme
Author: Your Name
Author URI: http://example.com
Description: A custom e-commerce theme for WordPress.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, custom-theme
Text Domain: e-commerce-theme
*/

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

#mobile-menu-overlay {
  width: 100vw;
  height: 100vh;
}

@supports (height: 100svh) {
  #mobile-menu-overlay {
    height: 100svh;
  }
}
