/*
 Theme Name: Astra Child
 Template: astra
*/
@import url("../astra/style.css");

/* Hide Home Title */
.page-title { display: none; }

/* Shop by Category Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.category-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.category-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
}
.category-details {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(139,0,0,0.8);
  color: #fff;
  text-align: center;
  padding: 10px;
}
.category-details h3 { margin: 0; font-size: 1.2em; font-weight: bold; }
.category-details span { font-size: 0.9em; color: #FFD700; }

/* Navigation Bar Colors */
.ast-primary-header {
  background-color: #8B0000;
}
.ast-primary-header .menu-item a { color: #fff; }
.ast-primary-header .menu-item a:hover { color: #FFD700; }
