/* ===== PRODUCTS PAGE ===== */

.product-page{
  padding:50px 0;
  background:#fff;
}

/* ===== Category Title ===== */
.product-page .product-category a{
  color:#1f2937;
  text-decoration:none;
  font-weight:800;
}

.product-page .product-category::after{
  content:"";
  display:block;
  width:52px;
  height:3px;
  background:var(--copper);
  margin-top:10px;
}

/* ===== Product Grid ===== */
.product-page .product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:36px;
  margin-bottom:90px;
}

/* ===== Product Card ===== */
.product-page .product-card{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:18px;
  overflow:hidden;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration:none;
}

.product-page .product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

/* ===== Image Area ===== */
.product-page .product-image{
  height:240px;
  background:#f9fafb;
  overflow:hidden;
}

.product-page .product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.35s ease;
}

.product-page .product-card:hover .product-image img{
  transform:scale(1.05);
}

/* ===== Product Text ===== */
.product-page .product-body{
  padding:22px;
}

.product-page .product-body h3{
  margin:0 0 6px;
  font-size:18px;
  font-weight:700;
  color:#111827;
}

.product-page .product-body p{
  margin:0;
  font-size:14px;
  line-height:1.5;
  color:#6b7280;
  text-decoration: none;
}

.product-page .product-body a{
  color:inherit;
  text-decoration:none;
}

/* ===== Top Category Navigation (Premium, Centered) ===== */
/* ===============================
   CATEGORY PILL – FINAL OVERRIDE
   =============================== */

.category-menu-wrapper{
  position:sticky;
  top:78px;
  z-index:900;
  background:#ffffff;
  padding:10px 0;
  margin-top:14px;
  margin-bottom:20px;
}

.category-menu{
  display:flex !important;
  align-items:center;
  justify-content:center;
  gap:36px;
  padding:10px 26px;
  border-radius:28px;
  background:#f8fafc;
  box-shadow:0 6px 16px rgba(0,0,0,0.05);
  white-space:nowrap;
  max-width:fit-content;
  margin:0 auto;
  cursor:pointer;
  pointer-events:auto;
}

.category-menu a{
  display:inline-flex !important;
  align-items:center;
  font-size:15px;
  font-weight:600;
  color:#374151;
  text-decoration:none;
  padding:6px 4px;
  position:relative;
  pointer-events:auto;
}

.category-menu a:hover,
.category-menu a.active{
  color:#b87333;
}

.category-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#b87333;
  transition:width 0.3s ease;
}

.category-menu a:hover::after,
.category-menu a.active::after{
  width:100%;
}


/* Offset anchor scroll for sticky header */
.product-category{
  margin:60px 0 24px;   /* was too loose */
}
.category-dropdown{
  display:none;
}
