/* Color Range Section */
.color-section {
  display: flex;
  border-radius: 30px;
  background-color: #ebebee;
  margin-top: 30px;
  gap: 10px;
}
.color-grid {
  display: grid;
  gap: 12px 14px;
}
.color-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.color-preview {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.color-preview img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.color-options {
  flex: 0 0 58%;
}
.color-btn img {
  width: 100%;
  aspect-ratio: 1;
  border: 2px solid #5b5b5b00;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.color-btn.active img {
  border-color: #00a7b5;
}
.color-btn.active::after {
  content: attr(data-label);
  font-weight: 600;
  color: #00a7b5;
}
.color-options h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 500;
}
.color-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 50px;
}
.color-btn::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%);
  white-space: normal;
  text-align: center;
  width: 55px;
  min-height: 24px;
  height: 20px;
  font-size: 11px;
  color: #333f48;
  line-height: 1.2;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.color-btn:hover {
  transform: scale(1.1);
}
.color-btn.active::after {
  content: attr(data-label);
  opacity: 1;
  font-weight: 600;
  background-color: transparent;
}
img.colorimage {
  transform: scale(1.6);
}
span.colour-range-caption {
  font-size: 13px;
  width: 370px;
  font-style: italic;
}
.color-grid h5 {
  grid-column: 1 / -1;
  margin-top: 10px;
  margin-bottom: -8px;
  font-size: 14px;
  color: #00a7b5;
  font-weight: 600;
}
@media screen and (min-width: 2561px) {
  .color-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px;
  }
  .color-grid {
    grid-template-columns: repeat(12, 1fr);
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 1441px) and (max-width: 2560px) {
  .color-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px;
  }
  .color-grid {
    grid-template-columns: repeat(12, 1fr);
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .color-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 30px;
  }
  .color-grid {
    grid-template-columns: repeat(8, 1fr);
    padding-bottom: 5px;
  }
  span.colour-range-caption {
    width: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .color-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .color-grid {
    grid-template-columns: repeat(12, 1fr);
    padding-bottom: 5px;
  }
  span.colour-range-caption {
    width: 100% !important;
    margin: auto !important;
    text-align: center !important;
    padding-bottom: 30px !important;
    text-wrap-style: balance !important;
  }
  img.colorimage {
    transform: scale(1.4);
  }
}
@media screen and (min-width: 426px) and (max-width: 767px) {
  .color-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }
  .color-grid {
    grid-template-columns: repeat(6, 1fr);
    padding-bottom: 5px;
  }
  span.colour-range-caption {
    width: 100% !important;
    margin: auto !important;
    text-align: center !important;
    padding-bottom: 30px !important;
    text-wrap-style: balance !important;
  }
  img.colorimage {
    transform: scale(1.3);
  }
}
@media screen and (min-width: 376px) and (max-width: 425px) {
  .color-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .color-grid {
    grid-template-columns: repeat(5, 1fr);
    padding-bottom: 5px;
  }
  span.colour-range-caption {
    width: 100% !important;
    margin: auto !important;
    text-align: center !important;
    padding-bottom: 30px !important;
    text-wrap-style: balance !important;
  }
  img.colorimage {
    transform: scale(1.3);
  }
}
@media screen and (min-width: 321px) and (max-width: 375px) {
  .color-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
  }
  .color-grid {
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 5px;
  }
  span.colour-range-caption {
    width: 100% !important;
    margin: auto !important;
    text-align: center !important;
    padding-bottom: 30px !important;
    text-wrap-style: balance !important;
  }
  img.colorimage {
    transform: scale(1.3);
  }
}
@media screen and (min-width: 1px) and (max-width: 320px) {
  .color-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
  }
  .color-grid {
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 5px;
  }
  span.colour-range-caption {
    width: 100% !important;
    margin: auto !important;
    text-align: center !important;
    padding-bottom: 30px !important;
    text-wrap-style: balance !important;
  }
  img.colorimage {
    transform: scale(1.3);
  }
}