

/* ---------- Cart Page -------------------------------------------------- */
.himaluxe.cart-page {
  max-width: 1280px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

/* ---------- CART ITEMS ---------- */

.himaluxe.cart-page .cart-item {
    display: grid;
    grid-template-columns: 32px 96px 1fr 32px;
    gap: 16px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 16px;
    margin-bottom: 16px;
    align-items: center;
}

.himaluxe.cart-page .cart-item.selected {
  border-color: #ddd;
}

.himaluxe.cart-page .cart-items p.price {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
}

.himaluxe.cart-page .item-image {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
}

.himaluxe.cart-page .item-info h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.himaluxe.cart-page .price {
  font-weight: 600;
}

.himaluxe.cart-page .meta {
  font-size: 13px;
  color: #777;
  display: flex;
  gap: 12px;
  margin: 6px 0;
}

.himaluxe.cart-page .color {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 4px;
  margin-left: 4px;
}

.himaluxe.cart-page .green { background: #9ccc65; }
.himaluxe.cart-page .brown { background: #a1887f; }
.himaluxe.cart-page .black { background: #000; }

.himaluxe.cart-page .qty {
  display: flex;
  gap: 12px;
  align-items: center;
}

.himaluxe.cart-page .qty button {
  font-size: 12px;
  font-weight: bold;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  color: #000;
}
.himaluxe.cart-page .delete.dbs-remove-from-cart {
	/* padding: 5px; */
	background: #fff;
	border: 1px solid #ccc;
  color: #000;
}
/* ---------- CHECKBOX ---------- */

.himaluxe.cart-page .checkbox input { display: none; }

.himaluxe.cart-page .checkbox span {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #bbb;
  display: inline-block;
}

.himaluxe.cart-page .checkbox input:checked + span {
  background: #111;
  border-color: #111;
}

/* ---------- SUMMARY ---------- */

.himaluxe.cart-page .summary {
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
}

.himaluxe.cart-page .summary h2 {
  margin-bottom: 16px;
}

.himaluxe.cart-page .summary-list div,
.himaluxe.cart-page .totals div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.himaluxe.cart-page .promo input {
    width: 95%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin: 16px 0;
}

.himaluxe.cart-page .chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px dashed #aaa;
}

.himaluxe.cart-page .grand {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin: 16px 0;
}

.himaluxe.cart-page .place-order {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: #222;
  color: #fff;
  border: none;
  font-size: 16px;
 } 


/*home css */
.category-grid-section {
  margin-bottom: 50px;
}

.category-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-item {
  border-radius: 6px;
  text-align: center;
}

.category-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}

.category-item h3 {
  margin: 10px 0 5px;
}

.hx-btn--disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}
