.elementor-360 .elementor-element.elementor-element-4a680de > .elementor-container{max-width:1400px;}.elementor-360 .elementor-element.elementor-element-4a680de{padding:40px 0px 40px 0px;}/* Start custom CSS for html, class: .elementor-element-5cab4b5 *//* Unique Featured Products Styles */
.unique-featured-wrapper {
  padding: 40px 20px;
  font-family: inherit;
}

.unique-featured-container {
  max-width: 1400px;
  margin: 0 auto;
}

.unique-featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.unique-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 0 0 5px 0;
}

.unique-title-icon {
  margin-left: 5px;
}

.unique-section-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Products Grid */
.unique-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.unique-product-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.unique-card-image-box {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unique-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unique-card-body {
  padding: 20px;
}

.unique-product-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
}

.unique-product-rating {
  margin-bottom: 15px;
}

.unique-stars {
  color: #ffc107;
  font-size: 14px;
}

.unique-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.unique-price-box {
  display: flex;
  flex-direction: column;
}

.unique-current-price {
  font-size: 16px;
  font-weight: 700;
  color: #20583B;
}

/* Updated Cart Button Style for Text */
.unique-cart-btn {
  background-color:#33601B; /* Apni theme ke mutabiq color change kar sakte hain */
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unique-cart-btn p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.unique-cart-btn:hover {
  background-color: #20583B;
}
/* Products Grid - Fully Responsive */
.unique-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; /* Mobile par gap mazeed kam kar diya hai */
}


/* Mobile screens ke liye image height aur box fix */
@media (max-width: 599px) {
  .unique-featured-wrapper {
    padding: 15px 8px;
  }
  
  .unique-card-image-box {
    height: 150px !important; /* Mobile par image box ki height kam kar di hai taake white space na aaye */
    background: #f9f9f9;
  }
  
  .unique-product-img {
    width: 100%;
    height: 200%;
    object-fit: contain; /* Isse image kate gi nahi aur box me fit ajayegi */
  }
  
  .unique-card-body {
    padding: 10px;
  }

  .unique-product-title {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .unique-stars {
    font-size: 10px;
  }

  .unique-product-rating {
    margin-bottom: 8px;
  }

  .unique-current-price {
    font-size: 11px;
  }

  .unique-cart-btn {
    padding: 5px 8px;
  }

  .unique-cart-btn p {
    font-size: 10px;
  }
}
/* Tablet screens (600px se 1023px) ke liye 3 products per row */
@media (min-width: 600px) and (max-width: 1023px) {
  .unique-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    
  }
  .unique-current-price {
  font-size: 16px;
  font-weight: 700;
  color: #20583B;
}

.unique-card-image-box {
    height: 230px !important; /* Mobile par image box ki height kam kar di hai taake white space na aaye */
    background: #f9f9f9;
  }
  
  .unique-product-img {
    width: 100%;
    height: 200%;
    object-fit: contain; /* Isse image kate gi nahi aur box me fit ajayegi */
  }


}

/* Desktop screens (1024px aur upar) ke liye 4 products per row */
@media (min-width: 1024px) {
  .unique-products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .unique-card-image-box {
    height: 300px !important; /* Mobile par image box ki height kam kar di hai taake white space na aaye */
    background: #f9f9f9;
  }
  
  .unique-product-img {
    width: 100%;
    height: 230%;
    object-fit: contain; /* Isse image kate gi nahi aur box me fit ajayegi */
  }
  
  
}/* End custom CSS */