/*--------------------------------------------------------------
## Product Detailed Styling
--------------------------------------------------------------*/

.color-option {
  cursor: pointer;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  display: flex;
  height: 50px;
  flex: 1; 
  &:hover, &.active {
    border-color: #000;
  }
}


.size-option {
  padding: 15px 25px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  flex: 1;
  &:hover {
    border-color: #000;
  }
  &.active {
    border-color: #000;
    background: #000;
    color: #fff;
  }
}

.product-description {
  max-height: 90px;
  overflow: hidden;
}