* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 40px;
}

.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27.6px;
  margin-bottom: 80px;
}

.section-title {
  font-size: 48px;
  font-weight: 400;
  color: #000000;
  letter-spacing: -0.32px;
  line-height: 65px;
  flex-shrink: 0;
}

.section-title span.red { color: #e02020; }

.title-line {
  flex: 1;
  height: 1px;
  background-color: #d0d0d0;
}

.equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.equipment-card {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 4px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  border-left: 4px solid #e02020;
  transition: box-shadow 0.2s ease;
}

.equipment-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  background-color: #e8e8e8;
  overflow: hidden;
  cursor: crosshair;
  border-radius: 4px 0 0 0;
}

.image-wrapper img.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}

.zoom-lens {
  display: none;
  position: absolute;
  border: 2px solid #e02020;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 10;
}

.zoom-result {
  display: none;
  position: fixed;
  width: 360px;
  height: 280px;
  border: 2px solid #e02020;
  background-color: #fff;
  background-repeat: no-repeat;
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  border-radius: 6px;
  overflow: hidden;
  pointer-events: none;
}

.equipment-card .info {
  padding: 24px 28px 28px;
  border-top: 1px solid #e2e2e2;
}

.equipment-card .info h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.5px;
  color: #1a1a1a;
  text-transform: uppercase;
}

.equipment-card .info .desc {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

@media (max-width: 1024px) {
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .zoom-result {
    display: none !important;
  }
}
