/* Grid item root */
.product-card {
  list-style: none;
  background: #0b2c66;           /* navy panel */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
  clear: unset!important;
}

/* Top image */
.product-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Info panel */
.product-card__info {
  padding: 16px;
  background: #0b2c66;
}

.product-card__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  min-height: 53px;
}
.product-card__title a { color: #fff; text-decoration: none; }

/* Blue pill */
.product-card__pill {
  background: #3a5fd9;           /* blue pill */
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 0.82rem;
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 100%;
}

/* Actions row */
.product-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Read More */
.product-card__readmore {
  background: #f97f30;           /* orange */
  color: #fff;
  padding: 3px 16px;
  border-radius: 22px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-left: 0;
}

/* Qty + Add */
.product-card__cart {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
  
}

.qty-wrap {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;  
}

.qty-btn {
  background: #32b9b7!important;           
  border: 0;
  width: 34px;
  height: 34px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}

.qty-wrap .qty {
  width: 46px;
  height: 34px;
  text-align: center;
  border: 0;
  background: #fff;
  
  
}
.qty-wrap .qty::-webkit-outer-spin-button,
.qty-wrap .qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }


.product-card__add.button {
  background: #32b9b7!important;           
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px!important;           
  border: 0;
  font-weight: 700;
  font-size: 14px!important;
  margin-top: 0!important;
}


.woocommerce-result-count, .woocommerce-ordering {
 display : none;
}

/* Search bar above the grid */
.shop-search {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 18px 0 22px;
}

.shop-search__input {
  flex: 1 1 auto;
  height: 44px;
  border: 0;
  padding: 0 16px;
  border-radius: 999px 0 0 999px;      /* large rounded left */
  background: #f1f2f4;                 /* light gray like screenshot */
  color: #1b1b1b;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}

.shop-search__input::placeholder {
  color: #6f7b95;
}

.shop-search__button {
  height: 44px;
  padding: 0 16px;
  border: 0;
  cursor: pointer;
  border-radius: 0 999px 999px 0;      /* large rounded right */
  background: #4b62d6;                 /* blue/purple button */
  color: #fff;
  font-weight: 600;
  transition: transform .02s ease-in, filter .15s ease;
}

.shop-search__button:hover { filter: brightness(1.05); }
.shop-search__button:active { transform: translateY(1px); }

/* Make sure it doesn’t squash on phones */
@media (max-width: 480px) {
  .shop-search__input { height: 42px; }
  .shop-search__button { height: 42px; padding: 0 14px; }
}