/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Manrope', sans-serif;
  background-color: #f5f5f5;
  color: #0A1F30;
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #0A1F30;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

/* Hero Section */
.hero {
  position: relative;
  background: url('images/hero-banner.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 700px;
  padding: 2rem;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.cta-button {
  background-color: #F5EBDD;
  color: #0A1F30;
  padding: 0.8rem 2rem;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1rem;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
  background-color: #e3dbc5;
  transform: scale(1.05);
}

/* Section Spacing */
.featured-products,
.product-categories {
  padding: 4rem 1rem;
  clear: both;
}

/* Featured Products */
.featured-products h2,
.product-categories h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.products-grid,
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background-color: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.product-card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.product-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.product-card .price {
  font-weight: bold;
  color: #00A8A8;
  margin-bottom: 1rem;
}
.product-card .button,
.woocommerce ul.products li.product .button {
  background-color: #0A1F30;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: auto;
  display: inline-block;
}
.product-card .button:hover,
.woocommerce ul.products li.product .button:hover {
  background-color: #333;
}

/* Category Card */
.category-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.category-card h3 {
  padding: 1rem;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
}
