/********** Primary Button *************/
.primary-btn {
  background-color: #ff4400;
  color: white;
  transition: all 0.3s;
}

.primary-btn:hover {
  background-color: #e03e00;
}

/********** Secondary Button *************/
.secondary-btn {
  background-color: #ddd;
  color: #333;
  transition: all 0.3s;
}

.secondary-btn:hover {
  background-color: #ccc;
}

/********** Product Thumbnail *************/
.product-thumbnail {
  transition: all 0.3s;
}

.product-thumbnail:hover {
  opacity: 0.8;
  cursor: pointer;
}