html,
body {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

@font-face {
  font-family: Font-Title;
  src: url('../assets/font-title.ttf') format('truetype');
}

@font-face {
  font-family: Font-Body;
  src: url(../assets/font-body.ttf) format("truetype");
}

body {
  background: url(../assets/Background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  isolation: isolate;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000000;
  font-size: 40px;
  border-radius: 50%;
  padding: 10px;
}

.item-header {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: auto;
}

.main-logo {
  width: 200px;
  height: auto;
  padding: 50px 0px 15px 0px;
  /*paddi: top right bottom left;*/
  pointer-events: none;
}


.item-logo {
  width: 90%;
  height: auto;
  padding: 25px 0px 15px 0px;
  /*paddi: top right bottom left;*/
  z-index: 499;

}

.item-name {
  color: #ffffff;
  font-family: Arial;
  font-size: 20px;
  font-weight: 700;
  padding: 0px 0px 25px 0px;
  /*paddi: top right bottom left;*/
  text-align: center;
}

model-viewer {
  position: relative;
  z-index: 1;
}

model-viewer>.ar-button {
  position: absolute;
  bottom: 25px;
  width: 120px;
  height: 50px;
  background-color: #000000;
  color: #fff;
  border: 0px solid #1a1a17;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: normal;
  font-family: Font-Body, sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
}


model-viewer>.ar-button:focus {
  outline: none;
  box-shadow: 0 0 0 0px rgba(0, 0, 0, 0);
}

#ar-button {
  left: calc(50% - 130px);
  text-align: center;
  display: inline-block;
  padding: 0px 0px;
  line-height: 15px;
  /* Remove unnecessary line-height */
  height: 40px;
  /* Set a fixed height for the button */
  display: flex;
  justify-content: center;
  align-items: center;
  /* This centers the text vertically and horizontally */
}

#shop-button {
  background-color: #ff0000 !important;
  left: calc(50% + 10px);
  text-align: center;
  display: inline-block;
  padding: 0px 0px;
  line-height: 17px;
  height: 40px;
  /* Ensure the same height for consistency */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Centers the text inside the button */
}

.swiper-pagination {
  bottom: 100px !important
}

.swiper-pagination-bullet {
  background-color: #000000;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.25;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: #000000;
  opacity: 1;
  transform: scale(1.2);
}

.hotspot {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: none;
  background: url(../assets/information.svg);
  box-sizing: border-box;
  cursor: pointer
}

.product-details-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../assets/Background-poppup.jpg);
  background-size: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px #0000001a;
  padding: 24px;
  margin: 10px;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: opacity .3s, visibility .3s;
  display: flex;
  flex-direction: column;
}

.product-details-popup.show {
  opacity: 1;
  visibility: visible;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Font-Title;
}

.product-name {
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 0px;
  color: #000000;
  font-family: Font-Title;
  src: url('../assets/font-title.ttf') format('truetype');
}

.close-btn {
  background-color: transparent;
  border: none;
  font-size: 12px;
  cursor: pointer;
  width: 45px;
  height: auto;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 500;
}

.product-info {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
  font-family: Font-Body;
  flex-grow: 1;
  overflow-y: scroll;

}

.popup-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.popup-button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
}

.popup-button:active {
  background-color: #ff0000;
  color: #ffffff;
}


.show-ar-btn,
.shop-btn {
  color: #ff000;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  /* Ensures the button behaves like an inline element */
}