




@font-face {
  font-family: "Space Colony";
  src: url("../webfonts/SpaceColony-UltraLight.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Colony";
  src: url("../webfonts/SpaceColony-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Colony";
  src: url("../webfonts/SpaceColony-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Colony";
  src: url("../webfonts/SpaceColony-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Colony";
  src: url("../webfonts/SpaceColony-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Colony";
  src: url("../webfonts/SpaceColony-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #050505;
  --surface: #101010;
  --accent: #ce5e2a;
  --accent-dim: rgba(206, 94, 42, 0.1);
  --text: #ededed;
  --muted: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Space Colony", sans-serif;
  background-color: var(--background);
  color: var(--text);
  overflow: hidden;
}



.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.w-full {
  width: 100%;
}
.h-screen {
  height: 100vh;
}
.overflow-hidden {
  overflow: hidden;
}

.selection-accent::selection {
  background-color: var(--accent);
  color: black;
}



.font-display {
  font-family: "Space Colony", sans-serif !important;
}

.font-body {
  font-family: "Space Colony", sans-serif !important;
}

.font-mono {
  font-family: "Space Colony", sans-serif !important;
}



.bg-background {
  background-color: var(--background);
}

.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.03;
  pointer-events: none;
  z-index: 50;
  mix-blend-mode: overlay;
}

.gradient-spot {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 50vh;
  background: rgba(206, 94, 42, 0.05);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}



.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.logo {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  position: relative;
}

.logo-hexagon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  fill: rgba(206, 94, 42, 0.2);
  stroke-width: 1.5;
}

.logo-ping {
  position: absolute;
  inset: 0;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.2;
  background-color: var(--accent);
  border-radius: 50%;
  filter: blur(8px);
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.logo-text {
  font-family: "Space Colony", sans-serif !important;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: white;
}

.menu-trigger {
  position: fixed;
  top: 120px;
  left: 30px;
  z-index: 10002;
  pointer-events: auto;
  display: flex;
  flex-direction: row; 
  align-items: center;
  gap: 0.75rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-label {
  display: block; 
  font-family: "Space Colony", sans-serif !important;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(-10px);
}

.menu-trigger:hover .menu-label {
  opacity: 1;
  transform: translateX(0);
}

.menu-icon {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.menu-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.menu-trigger:hover .menu-icon {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(220, 83, 16, 0.4);
}


@media (max-width: 768px) {
  .menu-trigger {
    top: 90px;
    left: 20px;
  }

  .menu-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .menu-icon svg {
    width: 18px;
    height: 18px;
  }

  .menu-label {
    display: none;
  }
}



.stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 768px) {
  .stage {
    align-items: flex-start;
    padding-top: 80px;
  }
}

.bg-text {
  position: absolute;
  white-space: nowrap;
  font-family: "Space Colony", sans-serif !important;
  font-weight: 700;
  font-size: 15vw;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  color: transparent;
  user-select: none;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .bg-text {
    font-size: 20vw;
  }
}

.decorative-circle {
  position: absolute;
  width: 60vh;
  height: 60vh;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(
    to top right,
    rgba(206, 94, 42, 0.05),
    transparent
  );
  filter: blur(48px);
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.product-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 42rem;
  padding: 0 1.5rem;
  perspective: 1000px;
}

.product-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 55vh;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
  opacity: 0;
}

@media (max-width: 768px) {
  .product-image {
    max-height: 35vh;
  }
}

.hotspots-container {
  position: absolute;
  inset: 0;
}

.hotspot {
  position: absolute;
  z-index: 20;
}

.hotspot-inner {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  pointer-events: auto;
}

.hotspot-ping {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(206, 94, 42, 0.8);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  position: absolute;
}

.hotspot-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: white;
  border-radius: 50%;
  position: relative;
  z-index: 10;
}

.hotspot-connector {
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
  position: absolute;
  left: 0.75rem;
  top: 0.375rem;
}

.hotspot-inner:hover .hotspot-connector {
  width: 3rem;
}

.hotspot-label {
  position: absolute;
  left: 4rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--accent);
  font-family: "Space Colony", sans-serif !important;
  white-space: nowrap;
}

.hotspot-inner:hover .hotspot-label {
  opacity: 1;
  transform: translateX(0);
}



.info-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 20;
  background: linear-gradient(
    to top,
    var(--background),
    rgba(5, 5, 5, 0.8),
    transparent
  );
}

@media (max-width: 768px) {
  .info-panel {
    bottom: 180px;
    padding: 1rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .info-panel {
    width: 450px;
    padding: 3rem;
    background: none;
  }
}

.category-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.category-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px #ce5e2a;
}

.category-text {
  color: var(--accent);
  font-family: "Space Colony", sans-serif !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .category-text {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }
}

.product-title {
  font-family: "Space Colony", sans-serif !important;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .product-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 768px) {
  .product-title {
    font-size: 3rem;
  }
}

.product-description {
  color: var(--muted);
  font-family: "Space Colony", sans-serif !important;
  line-height: 1.6;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  max-width: 24rem;
}

@media (min-width: 768px) {
  .product-description {
    font-size: 1rem;
  }
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 0.75rem;
}

.spec-value {
  color: white;
  font-family: "Space Colony", sans-serif !important;
  font-weight: 700;
  font-size: 1.125rem;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: "Space Colony", sans-serif !important;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .specs-grid {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .spec-item {
    padding-left: 0.5rem;
  }

  .spec-value {
    font-size: 0.85rem;
  }

  .spec-label {
    font-size: 0.55rem;
  }
}

.separator-line {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
  transform: scaleX(0);
  transform-origin: left;
}

.action-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.action-button:hover {
  color: var(--accent);
}

.action-icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.action-icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.action-button:hover .action-icon {
  border-color: var(--accent);
  background: rgba(206, 94, 42, 0.1);
}

.action-button:hover .action-icon svg {
  transform: rotate(45deg);
}

.action-text {
  font-family: "Space Colony", sans-serif !important;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}



.navigation {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .navigation {
    bottom: 2.5rem;
    right: 1.5rem;
    gap: 0.75rem;
  }
}

.counter {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: "Space Colony", sans-serif !important;
}

.counter-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.counter-separator {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.2);
}

.counter-total {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .counter-current {
    font-size: 1.5rem;
  }

  .counter-separator {
    font-size: 0.9rem;
  }

  .counter-total {
    font-size: 0.9rem;
  }
}

.progress-bar {
  width: 8rem;
  height: 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0%;
}

.nav-buttons {
  display: flex;
  gap: 0.5rem;
}

.nav-btn {
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-btn svg {
  width: 20px;
  height: 20px;
}

.nav-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: black;
}



.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #0a0a0a;
  z-index: 10005;
  transform: translateX(-100%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .menu-drawer {
    width: 600px;
  }
}

.drawer-header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-title {
  font-family: "Space Colony", sans-serif !important;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.close-btn {
  padding: 0.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.close-btn svg {
  width: 24px;
  height: 24px;
}

.product-list {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}


.product-list::-webkit-scrollbar {
  display: none;
}
.product-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.product-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.product-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.product-item.active {
  background: var(--accent);
  border-color: var(--accent);
}

.product-item-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-item-index {
  font-family: "Space Colony", sans-serif !important;
  font-size: 0.75rem;
  color: var(--accent);
}

.product-item.active .product-item-index {
  color: black;
}

.product-item-info {
  text-align: left;
}

.product-item-name {
  font-family: "Space Colony", sans-serif !important;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  color: white;
}

.product-item.active .product-item-name {
  color: black;
}

.product-item-category {
  font-size: 0.75rem;
  font-family: "Space Colony", sans-serif !important;
  margin-top: 0.25rem;
  color: var(--muted);
}

.product-item.active .product-item-category {
  color: rgba(0, 0, 0, 0.7);
}

.product-item-thumb {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-item:hover .product-item-thumb {
  opacity: 1;
}

.product-item.active .product-item-thumb {
  opacity: 1;
  mix-blend-mode: multiply;
}

.drawer-footer {
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  color: var(--muted);
}



.anim-text {
  opacity: 0;
  transform: translateY(30px);
}

.anim-line {
  transform: scaleX(0);
}



@media (min-width: 950px) and (max-width: 1400px) {
  
  .menu-trigger {
    top: 80px;
    left: 15px;
  }

  .menu-icon {
    width: 2rem;
    height: 2rem;
  }

  .menu-icon svg {
    width: 14px;
    height: 14px;
  }

  .menu-label {
    font-size: 0.55rem;
    padding: 5px 10px;
  }

  
  .product-container {
    max-width: 26rem;
    padding: 0 0.75rem;
  }

  .product-image {
    max-height: 35vh;
  }

  
  .bg-text {
    font-size: 8vw;
  }

  
  .decorative-circle {
    width: 38vh;
    height: 38vh;
  }

  
  .info-panel {
    width: 320px;
    padding: 1.5rem;
  }

  
  .category-tag {
    gap: 0.4rem;
    margin-bottom: 0.5rem;
  }

  .category-dot {
    width: 0.3rem;
    height: 0.3rem;
  }

  .category-text {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }

  
  .product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  
  .product-description {
    font-size: 0.65rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    max-width: 18rem;
  }

  
  .specs-grid {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .spec-item {
    padding-left: 0.4rem;
  }

  .spec-value {
    font-size: 0.7rem;
  }

  .spec-label {
    font-size: 0.45rem;
  }

  
  .separator-line {
    margin-bottom: 0.75rem;
  }

  
  .action-button {
    gap: 0.6rem;
  }

  .action-icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .action-icon svg {
    width: 12px;
    height: 12px;
  }

  .action-text {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  
  .navigation {
    bottom: 1.25rem;
    right: 1.25rem;
    gap: 0.75rem;
  }

  .counter-current {
    font-size: 1.35rem;
  }

  .counter-separator {
    font-size: 0.8rem;
  }

  .counter-total {
    font-size: 0.8rem;
  }

  .progress-bar {
    width: 5rem;
    height: 0.15rem;
  }

  .nav-btn {
    width: 2.25rem;
    height: 2.25rem;
  }

  .nav-btn svg {
    width: 13px;
    height: 13px;
  }

  
  .menu-drawer {
    width: 380px;
  }

  .drawer-header {
    padding: 1rem 1.25rem;
  }

  .drawer-title {
    font-size: 0.95rem;
  }

  .close-btn svg {
    width: 16px;
    height: 16px;
  }

  .product-list {
    padding: 1rem 1.25rem;
    gap: 0.3rem;
  }

  .product-item {
    padding: 0.6rem;
    border-radius: 3px;
  }

  .product-item-content {
    gap: 0.6rem;
  }

  .product-item-index {
    font-size: 0.55rem;
  }

  .product-item-name {
    font-size: 0.75rem;
  }

  .product-item-category {
    font-size: 0.5rem;
    margin-top: 0.1rem;
  }

  .product-item-thumb {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 2px;
  }

  .drawer-footer {
    padding: 1rem 1.25rem;
    font-size: 0.55rem;
  }

  
  .hotspot-ping,
  .hotspot-dot {
    width: 0.5rem;
    height: 0.5rem;
  }

  .hotspot-label {
    font-size: 0.55rem;
    padding: 0.15rem 0.4rem;
    left: 2.5rem;
  }
}



@media (min-width: 1400px) and (max-width: 1650px) {
  
  .menu-trigger {
    top: 95px;
    left: 22px;
  }

  .menu-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .menu-icon svg {
    width: 17px;
    height: 17px;
  }

  .menu-label {
    font-size: 0.65rem;
    padding: 6px 12px;
  }

  
  .product-container {
    max-width: 30rem;
    padding: 0 1rem;
  }

  .product-image {
    max-height: 40vh;
  }

  
  .bg-text {
    font-size: 9vw;
  }

  
  .decorative-circle {
    width: 42vh;
    height: 42vh;
  }

  
  .info-panel {
    width: 340px;
    padding: 1.75rem;
  }

  
  .category-tag {
    gap: 0.5rem;
    margin-bottom: 0.6rem;
  }

  .category-dot {
    width: 0.35rem;
    height: 0.35rem;
  }

  .category-text {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
  }

  
  .product-title {
    font-size: 1.75rem;
    margin-bottom: 0.6rem;
  }

  
  .product-description {
    font-size: 0.7rem;
    line-height: 1.45;
    margin-bottom: 1.1rem;
    max-width: 19rem;
  }

  
  .specs-grid {
    gap: 0.6rem;
    margin-bottom: 1.1rem;
  }

  .spec-item {
    padding-left: 0.45rem;
  }

  .spec-value {
    font-size: 0.8rem;
  }

  .spec-label {
    font-size: 0.5rem;
  }

  
  .separator-line {
    margin-bottom: 0.85rem;
  }

  
  .action-button {
    gap: 0.7rem;
  }

  .action-icon {
    width: 2rem;
    height: 2rem;
  }

  .action-icon svg {
    width: 13px;
    height: 13px;
  }

  .action-text {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  
  .navigation {
    bottom: 1.35rem;
    right: 1.35rem;
    gap: 0.85rem;
  }

  .counter-current {
    font-size: 1.5rem;
  }

  .counter-separator {
    font-size: 0.9rem;
  }

  .counter-total {
    font-size: 0.9rem;
  }

  .progress-bar {
    width: 5.5rem;
    height: 0.18rem;
  }

  .nav-btn {
    width: 2.5rem;
    height: 2.5rem;
  }

  .nav-btn svg {
    width: 15px;
    height: 15px;
  }

  
  .menu-drawer {
    width: 420px;
  }

  .drawer-header {
    padding: 1.1rem 1.35rem;
  }

  .drawer-title {
    font-size: 1.05rem;
  }

  .close-btn svg {
    width: 18px;
    height: 18px;
  }

  .product-list {
    padding: 1.1rem 1.35rem;
    gap: 0.35rem;
  }

  .product-item {
    padding: 0.65rem;
    border-radius: 3px;
  }

  .product-item-content {
    gap: 0.65rem;
  }

  .product-item-index {
    font-size: 0.6rem;
  }

  .product-item-name {
    font-size: 0.8rem;
  }

  .product-item-category {
    font-size: 0.55rem;
    margin-top: 0.12rem;
  }

  .product-item-thumb {
    width: 2rem;
    height: 2rem;
    border-radius: 2px;
  }

  .drawer-footer {
    padding: 1.1rem 1.35rem;
    font-size: 0.6rem;
  }

  
  .hotspot-ping,
  .hotspot-dot {
    width: 0.55rem;
    height: 0.55rem;
  }

  .hotspot-label {
    font-size: 0.6rem;
    padding: 0.18rem 0.45rem;
    left: 2.75rem;
  }
}



@media (max-width: 768px) {
  .product-list {
    padding: 1.25rem 1rem;
    gap: 0.4rem;
  }

  .product-item {
    padding: 0.75rem;
  }

  .product-item-content {
    gap: 0.75rem;
  }

  .product-item-index {
    font-size: 0.6rem;
  }

  .product-item-name {
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .product-item-category {
    font-size: 0.65rem;
    margin-top: 0.15rem;
  }

  .product-item-thumb {
    width: 2.25rem;
    height: 2.25rem;
  }
}
