.bcee-product-grids-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background-color: transparent;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .bcee-product-grids-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .bcee-product-grids-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bcee-product-card {
  background-color: #121212;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  position: relative;
}

.bcee-product-card:hover {
  transform: translateY(-5px);
}

.bcee-sale-badge {
  position: absolute;
  background-color: #d91f2a;
  color: white;
  padding: 5px 12px;
  font-weight: 600;
  font-size: 12px;
  border-radius: 20px;
  top: 15px;
  left: 15px;
  z-index: 10;
  text-transform: uppercase;
}

.bcee-product-image {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
}

.bcee-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 365px;
    object-fit: cover;
}

.bcee-product-title a {
    color: #fff;
}

.bcee-product-info {
  padding: 15px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;    background: #1B1A1C;
}

.bcee-product-title {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.bcee-product-category {
  font-size: 13px;
  color: #999999;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.bcee-product-rating {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bcee-product-rating i {
  color: #ffd700;
  font-size: 14px;
}

.bcee-product-rating .far {
  color: #ccc;
}

.bcee-review-count {
  font-size: 13px;
  color: #999999;
  margin-left: 4px;
}

.bcee-product-description {
  font-size: 14px;
  color: #cccccc;
  flex-grow: 1;
  margin-bottom: 12px;
}

.bcee-product-price {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 12px;
}

.bcee-add-to-cart-btn {
    display: inline-block;
    background-color: #007cba00;
    color: #EDB986;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #EDB986;
    margin-bottom: 12px;
    transition: background-color 0.3s
ease;
	width:41%;
}

.bcee-add-to-cart-btn:hover {
  background-color: #EDB986;
	color:#333;
}

.eael-product-carousel img {
    height: 270px;
    object-fit: cover;
}

.bcee-add-to-cart-btn i {
  margin-right: 5px;
}

.bcee-old-price {
  color: #777777;
  text-decoration: line-through;
  margin-right: 8px;
}

.bcee-product-colors {
  display: flex;
  gap: 8px;
}

.bcee-color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.bcee-color-swatch:hover {
  transform: scale(1.2);
}

/* Responsive media queries for mobile devices */
@media (max-width: 767px) {
  .bcee-product-grids-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 10px;
  }

  .bcee-product-card {
    border-radius: 10px;
  }

  .bcee-product-title {
    font-size: 16px;
  }

  .bcee-product-description {
    font-size: 12px;
  }

  .bcee-product-price {
    font-size: 14px;
  }

  .bcee-color-swatch {
    width: 20px;
    height: 20px;
  }
}
