/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 105px;
  }
  
  /* Image Section */
  .image-section {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .main-image, .secondary-image {
    width: 100%;
    height: 300px;
    background-color: white;
    position: relative;
    overflow: hidden;
  }
  
  .secondary-image-link {
    display: block;
    position: relative;
    color: black;
  }
  
  .open-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    border-radius: 50%;
  }
  
  .main-image img, .secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Wine Info */
  .wine-info {
    text-align: center;
    width: 100%;
  }
  
  .wine-info h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .wine-info h4, .wine-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
  }
  
  /* User Rating */
  .user-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
  }
  
  .star-icon {
    font-size: 32px;
    color: #ffc107;
  }
  
  /* Details Section */
  .details-section {
    margin-top: 25px;
    width: 100%;
  }
  
  .detail-row {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px; /* Add spacing between rows */
  }
  
  .icon-text {
    display: flex;
    align-items: center;
    margin-right: 15px;
  }
  
  .detail-row i {
    font-size: 24px;
    margin-right: 8px;
    color:black;
  }
  
  /* Description */
  .description {
    margin-top: 25px;
    text-align: justify; /* Align description text to the left */
    line-height: 1.5;
    width: 100%;
  }
  
  /* Search Button */
  .search-button-link {
    display: block; /* Make the link cover the whole button area */
    width: 100%;
    text-align: center; /* Center the button */
    margin-top: 30px;
  }
  
  .search-button {
    padding: 12px 24px;
    background-color: #008080;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: auto; /* Let the button size itself based on content */
  }
  
  .search-button:hover {
    background-color: #006666;
  }
  