/* Outer wrapper */
.software-wrapper-container {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 15px;
  margin-bottom: 20px;
  background: #fff;
}

/* Flex container for boxes */
.software-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Link styling for each box */
.software-link {
  width: 23%;
  text-decoration: none;
  color: inherit;
  display: flex;
}

/* Box layout */
.software-box {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 15px 10px;
  box-sizing: border-box;
  background-color: #fafafa;
  transition: box-shadow 0.3s ease;
  width: 100% !important;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}

/* Image logo */
.software-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 5px;
  background: #fff;
}

/* Heading title */
.software-box h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Hover shadow effect */
.software-box:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Rating container */
.rating {
  margin-top: auto;
  font-size: 14px;
  color: #444;
}

/* Star base style */
.designer-star {
  position: relative;
  font-size: 18px;
  color: #ccc;
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  user-select: none;
}

/* Full star */
.designer-star.full {
  color: #f44336;
}

/* Empty star */
.designer-star.empty {
  color: #ccc;
}

/* Half star logic */
.designer-star.half {
  position: relative;
}

.designer-star.half::before {
  content: "★";
  color: #ccc;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  line-height: 18px;
  z-index: 1;
}

.designer-star.half::after {
  content: "★";
  color: #f44336;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 18px;
  line-height: 18px;
  overflow: hidden;
  z-index: 2;
}

/* Review count styling */
.reviews-count {
  color: blue;
  margin-left: 8px;
  font-weight: 600;
  font-size: 13px;
  vertical-align: middle;
}

/* Optional: Responsive for mobile */
@media screen and (max-width: 768px) {
  .software-link {
    width: 48%;
  }
}

@media screen and (max-width: 480px) {
  .software-link {
    width: 100%;
  }
}

#breadcrumbs {
  font-size: 14px;
  color: #666;
}

#breadcrumbs a {
  color: #007bff;
  text-decoration: none;
}

#breadcrumbs a:hover {
  text-decoration: underline;
}

.page-title-banner h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

.product-description {
  font-size: 1.05rem;
  line-height: 1.8;
}

#breadcrumbs {
  font-size: 14px;
  color: #777;
}

#breadcrumbs a {
  color: #007bff;
  text-decoration: none;
}

#breadcrumbs a:hover {
  text-decoration: underline;
}

.card h5 {
  font-size: 1.2rem;
  font-weight: 600;
}

.card {
  border-radius: 12px;
}