* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding: 2rem;
    color: #1d1d1f;
    display: flex;
    justify-content: center;
    background-color: #f5e1da;
  }

  .product-container {
    max-width: 800px;
    width: 100%;
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .product-container h1 {
    text-align: center;
      text-align: center;
      font-size: 40px;
      color: #05022d;
      text-shadow: 2px 2px 4px #000000;
      font-family: 'Cherry Swash', cursive;
  }

  .slideshow-container {
      position: relative;
      margin: auto;
      max-width: 400px;
      border-radius: 10px;
      /* overflow: hidden; REMOVE this */
      padding: 0 50px; /* add space on both sides to accommodate arrows */
    }
    

  .slide {
    display: none;
    width: 100%;
  }

  .slide img {
    width: 100%;
    border-radius: 10px;
  }

  .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: auto;
      padding: 10px 14px;
      color: white;
      font-weight: bold;
      font-size: 18px;
      border-radius: 50%;
      background-color: rgba(0, 0, 0, 0.5);
      user-select: none;
      transition: background-color 0.3s;
      z-index: 2;
    }
    
    .prev {
      left: 10px; /* inside the image with a little space */
    }
    
    .next {
      right: 10px; /* inside the image with a little space */
    }
    
    .prev:hover, .next:hover {
      background-color: rgba(0, 0, 0, 0.8);
    }
    
    

  .dot-container {
    text-align: center;
    margin-top: 10px;
  }

  .dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .active, .dot:hover {
    background-color: #717171;
  }

  .product-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
  }
  
  .product-details .specs {
    text-align: left;
    width: 100%;
    max-width: 500px;
    margin-left: 10% ;
    margin-bottom: 5%;
    line-height: 1.8; /* adds good space between lines */
  }
  
  

  .price {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #0071e3;
  }

  .colors {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
  }

  .color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
  }

  .color-option:hover {
    border: 2px solid #0071e3;
  }

  .buy-button {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    color: #fff;
    background-color: #0071e3;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s;
  }

  .buy-button:hover {
    background-color: #005bb5;
  }

  .back-button {
    display: inline-block;
    padding: 0.5rem 0.8rem;
    font-size: 15px;
    color: #000000;
    background-color: #d6b26f;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 3%;
    margin-left: 80%;
  }

  .back-button:hover {
    background-color: #eb5a31;
  }

  @media (max-width: 500px) {
    .slideshow-container {
      max-width: 100%;
    }

    .product-container h1 {
      font-size: 1.7rem;
    }
  }

  .product