h1 {
  font-size: 24px;
  font-weight: 600;
}

h2 {
  font-size: 18px;
  font-weight: 500;
}

.price {
  font-size: 18px;
}

.btn-sm {
  font-size: 16px;
}

.card-img-top {
  height: 300px;
}

.custom-file-upload {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  height: 150px;
  border: 2px dashed #ccc;
  border-radius: 5px;
  background-color: #f8f9fa;
  text-align: center;
}

.custom-file-upload input {
  display: none;
}

.custom-file-upload label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #495057;
  text-align: center;
  cursor: pointer;
}

.upload-icon,
.hover-icon {
  margin-right: 10px;
  font-size: 35px;
}

.hover-icon,
.hover-text {
  display: none;
}

.upload-text {
  line-height: 1;
}

.custom-file-upload:hover .upload-text,
.custom-file-upload:hover .upload-icon {
  display: none;
}

.custom-file-upload:hover .hover-icon,
.custom-file-upload:hover .hover-text {
  display: block;
}

@media (max-width: 768px) {
  h2 {
    font-size: 16px;
  }
  .btn-sm {
    font-size: 12px;
  }
  .price {
    font-size: 16px;
  }
  .card-img-top {
    height: 250px;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 14px;
  }
  .price {
    font-size: 12px;
  }
  .btn-sm {
    font-size: 12px;
  }
  .card-img-top {
    height: 200px;
  }
  
}

@media (max-width: 370px) {
  h1 {
    font-size: 22px;
    font-weight: 600;
  }
  h2 {
    font-size: 12px;
  }
  .card-img-top {
    height: 140px;
  }
  .breadcrumb-item {
    font-size: 14px;
  }
}
