/*
* 1 design shop page 
* 2 design blog custom widget
* 3 single product page 
*/



/*1 this one for product/shop page */



.product-box {
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px 20px 0 0;
}

.hover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filter-btn {
  background: #fff;
  border: 1px solid #ddd;
  padding: 6px 14px;
  border-radius: 20px;
  margin: 5px;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

/*.product-info {*/
/*  background: #9fc27c;*/
/*  padding: 12px;*/
/*}*/

/*.product-info .button {*/
/*  background: #f4c76f;*/
/*  border-radius: 20px;*/
/*}*/
/*.product-img {*/
/*  max-height: 180px;*/
/*  object-fit: contain;*/
/*}*/

.add-btn,
.product-info .button {
  background: #f4c76f;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
}
.swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}

/* 2. this one for elementor blog card widget*/

.custom-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-6px);
}

.card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  position: relative;
}

.category {
  font-size: 12px;
  text-transform: uppercase;
  color: #7c8b6f;
}

.card-body h5 {
  font-size: 16px;
  margin: 8px 0 40px;
}

.arrow-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #f0b35a;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  text-decoration: none;
}

/*single product page*/



