.size-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* ===== Color Box Styles ===== */
.color-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect */
.color-box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 6px rgba(88, 133, 64, 0.4);
}

/* ✅ Active (selected) with gradient border */
.color-box.active {
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: content-box, border-box;
  background-image: linear-gradient(white, white),
    linear-gradient(90deg, #588540 0%, #7fae65 50%, #adcb89 100%);
  box-shadow: 0 0 6px rgba(25, 135, 84, 0.5);
}

/* ✅ Tick mark overlay */
.color-box.active::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

/* ===== Specific Colors ===== */
.color-wooden {
  background-color: #a67c52;
}
.color-white {
  background-color: #fff;
  border: 1px solid #ccc;
}
.color-green {
  background: linear-gradient(90deg, #588540 0%, #7fae65 50%, #adcb89 100%);
}

/* ===== Size Box Styles ===== */
.size-box {
  border: 1px dashed #ccc;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  transition: all 0.25s ease;
}

.size-box:hover {
  border-color: #7fae65;
  color: #588540;
}

/* ✅ Active size box */
.size-box.active {
  background: linear-gradient(90deg, #588540 0%, #7fae65 50%, #adcb89 100%);
  color: #fff;
  border: 1px solid #7fae65;
  box-shadow: 0 0 6px rgba(25, 135, 84, 0.4);
}

.hero-bg-container {
     background: linear-gradient(to bottom, #27262678, #27262678);
    padding: 10px;
    border: 1px solid #000;
}

.counter-section {
  padding: 50px 0;
}

.counter-box {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.about-img-box {
  width: 100%;
  height: 300px;
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.choose-us-inside-container {
  background: linear-gradient(to bottom, #f8f5e9, #f8f5e9);
  padding: 50px;
  border-radius: 10px;
}

.how-it-works {
  background: #f3f3ef;
}

.work-item {
  position: relative;
}

/* how it work */
