/* https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQVdwq3URcpEC12JvGamcVXo8zApmiGw2uVnA&s */
/* https://www.shutterstock.com/image-photo/proffesional-studio-microphone-isolated-on-600nw-2166848385.jpg */
/* https://static1.srcdn.com/wordpress/wp-content/uploads/2024/09/ps5-pro-close-up.jpg */
/* https://png.pngtree.com/background/20211215/original/pngtree-perfume-hand-spraying-perfume-on-black-background-picture-image_1469057.jpg */
/* 
  #new-arrival {
    max-width: 1500px;
    margin: 0 auto;
  }

  header h2 {
    color: #d9534f;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  header h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
  }

  #new-arrival {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  header {
    grid-column: span 2;
  }

  .product-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    color: #fff;
    height: 100%;
  }

  .product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-item h3,
  .product-item p,
  .product-item button {
    position: absolute;
    left: 20px;
    color: #fff;
    z-index: 2;
  }

  .product-item h3 {
    bottom: 70px;
    font-size: 18px;
    font-weight: bold;
  }

  .product-item p {
    bottom: 45px;
    font-size: 14px;
    max-width: 90%;
    color: #ccc;
  }

  .product-item button {
    bottom: 20px;
    background: none;
    border: none;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
    color: #fff;
    padding: 0;
  }


  .product-item:nth-of-type(2) {
    grid-row: 1 / 2;
    grid-column: 1;
    height: 400px;
  }

  .product-item:nth-of-type(3) {
    grid-row: 1;
    grid-column: 2;
    height: 190px;
  }

  .product-item:nth-of-type(4) {
    grid-row: 2;
    grid-column: 2;
    height: 190px;
  }

  .product-item:nth-of-type(5) {
    grid-row: 2;
    grid-column: 1;
    height: 190px;
    display: flex;
  }

  #speaker{

    width: 270px;
    height: 190px;

  }  */






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

  /* body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #000;
    padding: 40px 20px;
  } */

  #new-arrival {
    max-width: 1550px;
    margin: 0 auto;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); 
  }

  #new-arrival > div:first-child {
    margin-bottom: 30px;
  }

  #new-arrival h2 {
    color: #f33;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: -33px;
  }

  #new-arrival h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: start;
    margin-top: 10px;
    margin-left: 50px;
  }

  .productsnew-grid {
    display: grid;
    grid-template-areas: 
      "ps5 women"
      "ps5 speakers"
      "ps5 perfume";
    grid-template-columns: 2fr 1fr;
    gap: 20px;
  }

  .product-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: flex-end;
    min-height: 250px;
  }

  .product-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .product-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    width: 100%;
  }

  .product-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .product-content p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ccc;
  }

  .product-content button {
    padding: 8px 16px;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  /* Assign grid areas */
  .product-item:nth-of-type(1) { grid-area: ps5; }
  .product-item:nth-of-type(2) { grid-area: women; }
  .product-item:nth-of-type(3) { grid-area: speakers; }
  .product-item:nth-of-type(4) { grid-area: perfume; }

  #new-arrival-heading button{
    width: 20px;
    height: 30px;
    border: none;
    border-radius: 8px;
    margin-left: 50px;
  }

  @media screen and (max-width: 768px) {
    .product-grid {
      grid-template-areas: 
        "ps5"
        "women"
        "speakers"
        "perfume";
      grid-template-columns: 1fr;
    }
  }