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

body {
  font-family: Arial, sans-serif;
}
.navbar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #f9f8f6;
  border-bottom: 1px solid #ccc;
}
.menu-icon {
  font-size: 24px;
  cursor: pointer;
  margin-right: 20px;
}
.logo {
  width: 150px;
  height: auto;
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 10;
}
.close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}
.overlay-logo {
  width: 200px;
  margin-top: 20px;
}

.floating-button {
  position: fixed;
  z-index: 10;
  top: 100px;
  left: 10px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.floating-button img {
  width: 30px;
  height: 30px;
}

.info-box {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  display: none;
  z-index: 10;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.close-button img {
  width: 100%;
  height: 100%;
}

.add-to-cart {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.arrow-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 20px;
  background-color: #f9f8f6;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  align-items: center;
  justify-content: space-evenly;
}

.arrow-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-button img {
  width: 100%;
  height: auto;
}

.a-enter-vr-button {
  display: none;
}
