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

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header styles */
header {
  background-color: #802228;
  color: white;
  height: 60px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  min-height: 80px; /* adjust as needed */
}

.js-header {
  color: white; /* Replace with your desired color */
}


.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo.custom-font {
  font-family: "Your Custom Font", sans-serif;
  font-size: 24px; /* Adjust the font size as needed */
  font-weight: bold; /* Adjust the font weight as needed */
  color: #CBB26A; /* Adjust the font color as needed */
}
.logo.custom-font a {
  text-decoration: none; /* Remove underline */
  color: #CBB26A; /* Adjust link color */
}

.logo.custom-font a:hover {
  color: #fff; /* Adjust link color on hover */
}

.button {
  display: inline-block;
  padding: 8px 10px;
  background-color: #8d363c;
  color: #CBB26A;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.button:hover {
  background-color: #dad6d6;
  color: #802228;
  border: 2px solid #802228;
}

.button-container {
  margin-left: 8px;
}

/* Style the spacer */
.spacer {
  display: inline-block;
  width: 15px; /* Adjust the width to create space between Navigation and LogOut */
}


ul {  
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

ul.indented-list {
  list-style: disc; /* You can use 'circle' or 'square' for different bullet styles */
  padding-left: 20px; /* Add left padding to create space between bullet points and text */
}

ul.indented-list li {
  margin-bottom: 10px; /* Add margin-bottom to create space between list items */
}
nav {
  display: flex;
  align-items: center;
}

nav ul li {
  position: relative; /* Add this line */
  display: inline-block;
  margin-right: 10px;
}

nav ul li a {
  font-size: 16px;
  color: #CBB26A;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #fff;
  background-color: #802228;
}
.product-intro {
  font-size: 16px;
  color: #802228;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 5px;
}

.product-info {
  font-size: 16px;
  color: #CBB26A;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Dropdown menu styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #F5EFEF;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  font-size: 14px;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Additional styles for responsive design */
@media screen and (min-width: 768px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown-content {
    top: calc(100% + 10px);
    margin-top: -10px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.two-columns {
  display: grid;
  grid-template-columns: 30% 70%;
  grid-gap: 10px;
}

.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.column {
  padding: 10px;
}

.column-30 {
  grid-column: 1;
}

.column-70 {
  grid-column: 2;
}



/* Footer styles */
footer {
  background-color: #F5EFEF;
  color: #802228;
  padding: 20px;
}

footer p {
  margin-bottom: 10
}
