/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
.product-buttons {
  display: flex;
  justify-content: center;   /* căn giữa các nút */
  align-items: center;
  gap: 10px;                 /* khoảng cách giữa 2 nút */
  margin-top: 10px;
  flex-wrap: nowrap;         /* không cho xuống dòng */
}

.product-buttons .purple-btn {
  background-color: #800080; /* bạn có thể đổi thành #800080 nếu muốn màu tím */
  color: #fff;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  white-space: nowrap;       /* không cho chữ xuống dòng */
  transition: all 0.3s ease;
}

.product-buttons .purple-btn:hover {
  background-color: #1a252f;
}
.custom-product-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.custom-product-box:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.custom-product-box img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
  color: #333;
}

.product-price {
  color: #e74c3c;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Hai nút ngang hàng */
.product-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.purple-btn {
  background-color: #2c3e50;
  color: #fff;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
}

.purple-btn:hover {
  background-color: #1a252f;
}
