.product-container {
    text-align: center;
    margin-top: 40px;
  }
  
  
  #product-box {
    width: 100%;
    height: 100px;
    margin: auto;
    background-color: white;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .color-options {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.3s ease;
  }
  
  .color-swatch.active {
    border-color: #333;
    transform: scale(1.2);
  }
  