/* Shop Card Base Styling */
.shop-block-one .inner-box {
  border: 1px solid #e5e5e5;
  max-height: 600px;
  height: 100%;
  margin: 10px auto;
  min-height: 350px; /* Ensures consistent height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  background: #fff;
}

/* Optional width control for consistency */
.shop-block-one {
  width: 100%;
}

/* Image Box */
.shop-block-one .image-box {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.shop-block-one .image-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
  transition: transform 0.5s ease;
}

/* Hover Effect */
.shop-block-one .inner-box:hover .image-box img {
  transform: scale(1.05);
}

/* Category Badge */
.shop-block-one .image-box .category {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #e25712;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  border-radius: 3px;
  z-index: 1;
}

/* Lower Content */
.shop-block-one .lower-content {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.shop-block-one .lower-content h6 {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 8px;
}

.shop-block-one .lower-content .price {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
}

.shop-block-one .lower-content .price span {
  display: block;
  font-size: 16px;
  color: #e25712;
  font-weight: 600;
  margin-top: 5px;
}

/* View Button */
.shop-block-one .view-btn {
  margin-top: auto;
}

.shop-block-one .view-btn a.theme-btn {
  display: inline-block;
  background-color: #ffb700;
  color: #000;
  padding: 6px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
  text-decoration: none;
}

.shop-block-one .view-btn a.theme-btn:hover {
  background-color: #e5a700;
}
