/*
Theme Name: CraftForge
Theme URI: https://yourwebsite.com
Author: You
Author URI: https://yourwebsite.com
Description: A WooCommerce-ready theme for 3D printing and engraving shops.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: craftforge
Tags: e-commerce, shop, woocommerce, clean, responsive
*/

/* ===== Base Styles ===== */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #333;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}
a {
  color: #00AEEF;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
header {
  background: #ffffff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
}
nav li {
  display: inline;
}
.hero-slider {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
}
.hero-slide {
  display: none;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  display: block;
}
.featured-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
}
.call-to-action {
  text-align: center;
  margin: 2rem 0;
}
.call-to-action a {
  background: #00AEEF;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 4px;
}
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }
}