/* ===============================
   GLOBAL TYPOGRAPHY
================================*/
body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6,
p, span, a {
  font-family: 'Roboto', sans-serif;
}


/* ===============================
   FEATURE PRODUCT ITEM STYLING
================================*/
.mtfeature__product-item {
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  margin-bottom: 30px; /* space between rows */
  position: relative; /* for sold-out badge positioning */
}


/* ===============================
   PRODUCT IMAGE
================================*/
.mtfeature__product-img img {
  max-width: 100%;
  border-radius: 8px;
}


/* ===============================
   PRODUCT TITLE & PRICE
================================*/
.mtfeature__product-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.mtfeature__product-price {
  font-size: 18px;
  font-weight: 700;
  color: #27ae60;
}

.mtfeature__product-price .old-price {
  margin-left: 8px;
  color: #aaa;
  font-size: 14px;
}


/* ===============================
   PRODUCT ACTION BUTTONS
================================*/
.mtfeature__product-actions {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.add-to-cart-btn,
.buy-now-btn {
  padding: 10px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}


/* ----- Add to Cart Button ----- */
.add-to-cart-btn {
  background: #17af26;
  color: #fff;
  padding: 10px 18px !important;
}
.add-to-cart-btn:hover {
  background: #297c08;
}


/* ----- Buy Now Button ----- */
.buy-now-btn {
  background: #e67e22;
  color: #fff;
}
.buy-now-btn:hover {
  background: #cf711f;
}


/* ===============================
   SOLD OUT STATE
================================*/
.sold-out-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d9534f;
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
}

.sold-out img {
  opacity: 0.5;
}

.sold-out .add-to-cart-btn,
.sold-out .buy-now-btn {
  background: #ccc;
  cursor: not-allowed;
}
