@font-face {
    font-family: "CAPTURE IT";
    src: url("../Fonts/Captureit.ttf") format("truetype"); /* Adjust the path as needed */
  }
  
  body {
    background-image: url("../Images/Shop\ Page\ Background.png");
    background-size:1700px 1000px;
    background-repeat: no-repeat;
    background-position: center top;

  }

  .shop-container {
    display: flex;
    gap: 20px;
    margin: 20px auto;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 100px;
    max-width: 1200px;
    align-items: flex-start; /* Align items to the start */
  }
  
  .shop-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 20px;
  }
  
  .large-image img {
    width: 100%;
    height: 400px; /* Adjust height to make it more square-ish */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    border-radius: 8px;
  }

    .large-image img:hover {
        transform: scale(1.005);
        transition: transform 0.3s ease;
    }
  
  .small-images {
    display: flex;
    gap: 20px;
  }
  
  .small-images img {
    width: calc(33.333% - 13.333px); /* Adjust for gap */
    height: 100px; /* Adjust height to make it more square-ish */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    border-radius: 8px;
  }

  .small-images img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }
  
  .shop-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the start */
  }
  
  .shop-details h1 {
    font-family: "CAPTURE IT", sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .shop-details p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
  }
  .secondLevel2{
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .shop-details h2 {
    font-family: "CAPTURE IT", sans-serif;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  
  .buy-button {
    width: 150px;
    height: auto;
    margin-top: 20px;
    transition: transform 0.3s ease;
  }
  
  .buy-button:hover {
    transform: scale(1.05);
  }
  
/* Update the responsive design for mobile */
@media (max-width: 768px) {
    body {
      background-size: cover; /* Ensure background fits mobile screen */
    }
    
    .shop-container {
        
      flex-direction: column;
      align-items: center;
      padding-left: 15px;
      padding-right: 15px;
    }
  
    .shop-images {
      width: 100%;
      padding-right: 0;
    }
  
    /* Keep large image as it is */
    .large-image img {
      height: auto; /* Let height adjust automatically */
    }
  
    /* Keep small images in a row */
    .small-images {
      flex-direction: row; /* Keep images in a row */
      gap: 10px; /* Smaller gap for mobile */
    }
  
    .small-images img {
      width: calc(33.333% - 7px); /* Maintain the three-column layout */
      height: 80px; /* Slightly smaller height for mobile */
    }
  
    .shop-details {
      width: 100%;
      text-align: left; /* Align text to the left */
      padding: 15px; /* Add padding around the text */
    }
    
    /* Make titles and text more mobile-friendly */
    .shop-details h1 {
      font-size: 28px;
    }
    
    .shop-details h2 {
      font-size: 20px;
    }
    
    .buy-button {
      align-self: flex-start; /* Align button to the left */
    }
    
    /* Make sure titleBox is also left-aligned */
    .titleBox {
      text-align: left;
      padding: 15px;
    }
    
    .titleBox h2 {
      font-size: 22px;
      word-spacing: normal;
      letter-spacing: 1px;
    }
  }

  
.titleBox{
    background-color: rgba(0, 0, 0, 0); 
    text-align: center;
  }
  
  .titleBox h2{
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    word-spacing: 10px;
    letter-spacing: 2px;
  }
  .titleBox p{
  
    padding: 10px;
  }

  a {
    text-decoration: none;
  }

  .back-link {
    display: block;
    margin-bottom: 10px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
  
  .back-link:hover {
    color: #777;
  }