body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: pink;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .product-details {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  .product-image {
    flex: 1 1 40%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
  }
  
  .product-image img {
    max-width: 100%;
    border-radius: 1rem;
    transition: transform 0.3s;
  }
  
  .product-image img:hover {
    transform: scale(1.1);
  }
  
  .product-info {
    flex: 1 1 60%;
    padding: 1.5rem;
  }
  
  .product-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .product-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
  }
  
  .product-price {
    font-size: 2.5rem;
    color: #ee83e5;
    font-weight: bold;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .stock-status {
    color: #ff4edb;
    font-size: 1.3rem;
  }
  
  .buy-button-container {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .buy-button {
    background-color: #ff73f3;
    color: #fff;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 2rem;
    box-shadow: 0 6px 12px rgba(255, 115, 243, 0.3);
    transition: background-color 0.3s, box-shadow 0.3s;
    display: inline-block;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .buy-button:hover {
    background-color: #ff4edb;
    box-shadow: 0 8px 16px rgba(255, 115, 243, 0.4);
  }
  
  .add-to-cart-button {
    background-color: #3ac5c9;
    color: #fff;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border: none;
    border-radius: 2rem;
    box-shadow: 0 6px 12px rgba(58, 197, 201, 0.3);
    transition: background-color 0.3s, box-shadow 0.3s;
    display: inline-block;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
  }
  
  .add-to-cart-button:hover {
    background-color: #25a2a6;
    box-shadow: 0 8px 16px rgba(58, 197, 201, 0.4);
  }
  
  .additional-info {
    margin-top: 3rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  .additional-info h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .additional-info ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 2rem;
    color: #555;
  }
  
  .additional-info ul li {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .reviews {
    margin-top: 2rem;
  }
  
  .reviews p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .reviews strong {
    color: #000;
  }
  
  .product-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .product-images img {
    max-width: 30%;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .product-images img:hover {
    transform: scale(1.1);
  }
  