html {
  font-family: 'Montserrat';
  background: #eee;
}


body {
  height: 100%;
  margin: 0 auto;
  background: white;
  font-family: 'Montserrat';
}

.content {
  padding: 20px;
  display: flex;
  justify-content: center;
  /* Centers the content horizontally */
  align-items: center;
  /* Centers the content vertically */
  min-height: 100vh;
  /* Ensures the body takes the full height of the viewport */
}

.item-page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  /* Ensures the content is centered vertically */
  text-align: center;
  /* Centers the text within the divs */
}

.item-page-content>div {
  margin-bottom: 20px;
  /* Adds space between the divs */
}

.logo {
  text-align: center;
  /* Centers the image horizontally */
  padding: 20px;
  /* Adds padding around the image */
}

.logo img {
  max-width: 100%;/* 700px;*/
  /* Ensures the image scales properly */
  height: auto;
  /* Maintains the aspect ratio */
}

.row {
  display: -webkit-flex;
  display: flex;
}

.column {
  padding: 10px;
}

.column.left {
  /* -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-image {
  max-width: 100%;
  max-height: 300px;
  /* Adjust this value as needed */
  width: auto;
  height: auto;
  border: 2px solid #ddd;
  /* Light gray border */
  border-radius: 8px;
  /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  padding: 10px;
  /* Space around the image */
  background-color: #fff;
  /* White background */
}

.column.right {
  /* -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2; */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #007FC5;
  overflow: auto;
  max-height: 100vh;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat';
  color: white;
  margin: 1rem 0;
  font-weight: 300;
  /* Lighter font weight for elegance */
  letter-spacing: 0.05em;
  /* Adds a bit of spacing between letters */
}

.item-page-h1 {
  color: #007FC5;
}

.go-back-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #007FC5;
  /* Blue background */
  border: none;
  border-radius: 5px;
  /* Rounded corners */
  text-decoration: none;
  /* Remove underline */
  text-align: center;
  transition: background-color 0.3s ease;
  /* Smooth transition */
}

.go-back-button:hover {
  background-color: #007FC5;
  /* Darker blue on hover */
}



a {
  color: #377ba8;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
  color: #1E90FF;
  transform: scale(1.1);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #f1f1f1;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  max-width: 600px;
  /* Set a maximum width */
  margin: 0 auto;
  /* Center the element */
  word-wrap: break-word;
  /* Ensure long words break to the next line */
}

li:hover {
  background-color: #ddd;
}

.footer {
  width: 100%;
  background-color: #007FC5;
  color: #377ba8;
  text-align: center;
  padding: 10px 0;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer p {
  font-size: 16px;
  color: white;
}

.footer a:hover {
  color: #1E90FF;
  transform: scale(1.1);
}

.cookie {
  position: sticky;
  bottom: 0;
}


hr {
  border: none;
  border-top: 1px solid lightgray;
}

nav {
  background: #007FC5;
  display: flex;
  justify-content: center;
  /* Centers the content horizontally */
  align-items: center;
  padding: 0 0.5rem;
}

nav h1 {
  margin: 0;
  padding: 10px;
}

nav h1 a {
  text-decoration: none;
  font-family: 'Montserrat';
  padding: 0.25rem 0.5rem;
}

.item {
  display: flex;
  align-items: center;
  margin: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  max-width: 600px;
}

.item:hover {
  transform: scale(1.05);
}

.item-image {
  text-align: center;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.item-info {
  text-align: center;
  padding: 20px;
  flex: 1;
  background-color: #f5f5f5;
  border-radius: 0 10px 10px 0;
  max-width: 600px;
  /* Set a maximum width */
  margin: 0 auto;
  /* Center the element */
  word-wrap: break-word;
  /* Ensure long words break to the next line */
}

.item-name {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.item-price {
  color: green;
  font-size: 18px;
  margin-bottom: 10px;
}

.item-description {
  font-size: 16px;
  margin-bottom: 10px;
  color: #666;
}

.item-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f0c14b;
  border: 1px solid #a88734;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.item-button:hover {
  background-color: #a88734;
}

.item-image {
  width: 300px;
  height: auto;
}
