@font-face {
  font-family: Cooper;
  src: url(fonts/cooper.woff);
  src: url(fonts/cooper.woff2);
}
@font-face {
  font-family: Arial Black;
  src: url(fonts/arial-black.woff);
  src: url(fonts/arial-black.woff2);
}


body {
    margin: 0px;
}

header {
  font-family: Cooper;
  text-align: center;
  font-size: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
  margin-top: 1vh;
}
header a {
    text-decoration: none;
    color: black;
    transition: all 0.5s ease;
    margin-top: -95px;
}
header a:hover {
    color: rgb(51, 51, 51);
}
body {
    font-family: Arial, sans-serif;
    padding: 5vh;
    background-color: #ffffff;

  }

  .product-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .product-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .main-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .thumbnails {
    display: flex;
    gap: 15px;
  }

  .thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .thumbnails img:hover {
    transform: scale(1.05);
  }

  .product-info {
    flex: 1;
  }

  .product-info h1 {
    font-family: Cooper;
    font-size: 40px;
    margin-bottom: 10px;
  }

  .product-info p {
    margin-bottom: 20px;
  }

  .price {
    font-family: Cooper;
    font-size: 30px;
    color: rgb(185, 68, 68);
    margin-bottom: 20px;
  }

  .buy-button {
    background-color: black;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    font-family: Arial Black;
  }

  .buy-button:hover {
    background-color: rgb(185, 68, 68);
  }
  h2 {
    margin-top: -10px;
    font-family: Cooper;
    font-size: 20px;
    color: #949494;
  }