;F9fa9#/* Base styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
}

.container {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  padding: 20px;
  box-sizing: border-box;
}

#page-title {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

/* Image container */
.product-container {
  user-select: none;
}
.product-container img {
  width: 720px; /* Adjust as per your requirement */
  height: auto; /* Maintain aspect ratio */
  cursor: pointer;
  /* I have to prevent image dragging */
  -webkit-user-drag: none; /* Safari */
  -khtml-user-drag: none; /* Konqueror HTML */
  -moz-user-drag: none; /* Old versions of Firefox */
  -o-user-drag: none; /* Old versions of Opera */
  user-drag: none; /* Non-standard syntax */
  -webkit-touch-callout: none; /* Safari */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-standard syntax */
  -webkit-tap-highlight-color: rgba(
    0,
    0,
    0,
    0
  ); /* Disable tap highlight color on mobile devices */
  /* Android  */
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
  width: 100%;
  height: 100%;
  position: relative;
}

.image-wrapper img {
  max-width: 100%;
  height: auto;
  transition: transform 0.2s ease;
  pointer-events: none;
}

/* Controls */
.controls {
  display: flex;
  flex-wrap: wrap; /* allow wrap on small screens */
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.icon-btn {
  background: #9f9fa9;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 60px;
  height: 60px;
}

.icon-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Optional: Add hover effect */
.icon-btn:hover img {
  filter: brightness(1.2);
}

/* Responsive tweak (optional) */
@media (max-width: 480px) {
  .icon-btn {
    width: 40px;
    height: 40px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  #pgae-title {
    font-size: 20px;
  }

  button {
    font-size: 14px;
    padding: 8px 12px;
  }

  .product-container {
    max-height: 60vh;
  }
}

@media (max-width: 480px) {
  ß .product-container {
    max-height: 50vh;
  }
}

@media (max-width: 465px) {
  .product-container img {
    width: 420px;
  }
}
.magnifier-lens {
  position: absolute;
  border: 2px solid #333;
  border-radius: 50%;
  cursor: none;
  width: 120px;
  height: 120px;
  overflow: hidden;
  z-index: 1000;
  pointer-events: none;
  display: none;
}

.magnifier-lens img {
  position: absolute;
  width: 200%;
  height: auto;
}

.magnifier-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: background 0.3s ease;
}

.magnifier-toggle:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
