@charset "UTF-8";
#productPage {
  margin-left: calc(10vw + 250px + 1rem);
  margin-top: 1rem;
  width: calc(80vw - 250px - 1rem);
  max-width: 1400px;
  border-radius: 10px;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: block;
}
#productPage.hidden {
  display: none;
}
#productPage .prodTop {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
#productPage .prodName {
  font-size: 30px;
  font-weight: 600;
  color: #222;
  line-height: 1.25;
  margin-bottom: 1.4rem;
  letter-spacing: -0.2px;
}
#productPage .prodImg {
  flex: 0 0 420px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fafafa;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#productPage .prodImg:hover img.mainImage {
  transform: scale(1.02);
}
#productPage .prodImg img.mainImage {
  max-width: 100%;
  max-height: 380px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.25s ease;
  border-radius: 6px;
}
#productPage .prodImg .thumbContainer {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
#productPage .prodImg .thumbContainer img.thumbImage {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
#productPage .prodImg .thumbContainer img.thumbImage:hover {
  border-color: #0099ff;
  transform: scale(1.05);
}
#productPage .prodImg .thumbContainer img.thumbImage.active {
  border-color: #0099ff;
}
#productPage .prodSummary {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: 0.5rem;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}
#productPage .prodSummary span {
  font-weight: 600;
  color: #000;
}
#productPage .prodSummary #productCode,
#productPage .prodSummary #internalCode {
  opacity: 0.9;
}
#productPage .prodSummary #contactSales,
#productPage .prodSummary #contactSEAP {
  margin-top: 0.6rem;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  background: rgba(0, 153, 255, 0.08);
  color: rgba(0, 153, 255, 0.9);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
#productPage .prodSummary #contactSales:hover,
#productPage .prodSummary #contactSEAP:hover {
  background: rgba(0, 153, 255, 0.15);
  transform: translateX(2px);
}
#productPage .prodPrice {
  flex: 0 0 260px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.5rem;
}
#productPage .prodPrice #productPrice {
  font-size: 13px;
  font-weight: 500;
  margin-left: 0.4rem;
  color: rgba(0, 0, 0, 0.6);
}
#productPage .prodPrice #productPrice .price {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-right: 2px;
}
#productPage .prodPrice #productPrice .decimal {
  font-size: 16px;
  font-weight: 600;
  vertical-align: top;
  position: relative;
  top: 2px;
  letter-spacing: -0.5px;
}
#productPage .prodPrice #prodAvailable {
  font-size: 14px;
  font-weight: 600;
}
#productPage .prodPrice #prodAvailable::before {
  content: "● ";
  font-size: 10px;
  vertical-align: middle;
}
#productPage .prodPrice #prodAvailable.inStoc {
  color: #1a7f37;
}
#productPage .prodPrice #prodAvailable.limitedStock {
  color: #d97706;
}
#productPage .prodPrice #prodAvailable.outOfStock {
  color: #d11a2a;
}
#productPage .prodPrice #prodQty {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.4;
}
#productPage .prodPrice #prodQty span {
  font-weight: 700;
  color: #000;
}
#productPage .prodPrice #store {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
}
#productPage .prodPrice #prodWarranty {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
  margin-top: 0.4rem;
}
#productPage .prodPrice button {
  margin-top: 1rem;
  padding: 0.9rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  background: rgba(0, 153, 255, 0.829);
  color: white;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}
#productPage .prodPrice button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
#productPage .prodPrice button:active {
  transform: scale(0.96);
}

@media (max-width: 1200px) {
  #productPage {
    margin-left: calc(5vw + 200px + 1rem);
    width: calc(90vw - 200px - 1rem);
  }
}
@media (max-width: 1100px) {
  #productPage .prodTop {
    flex-direction: column;
  }
  #productPage .prodImg {
    flex: none;
    width: 100%;
  }
  #productPage .prodPrice {
    flex: none;
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-left: 0;
    padding-top: 1rem;
  }
}
@media (max-width: 768px) {
  #productPage {
    margin-left: 1rem;
    margin-right: 1rem;
    width: calc(100% - 2rem);
    padding: 1rem;
  }
  #productPage .prodName {
    font-size: 22px;
  }
  #productPage .prodImg img.mainImage {
    max-height: 280px;
  }
}
@media (max-width: 480px) {
  #productPage {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    width: calc(100% - 1rem);
    padding: 0.8rem;
    border-radius: 6px;
  }
  #productPage .prodName {
    font-size: 18px;
    margin-bottom: 1rem;
  }
  #productPage .prodImg {
    padding: 0.6rem;
  }
  #productPage .prodImg img.mainImage {
    max-height: 220px;
  }
  #productPage .prodImg .thumbContainer img.thumbImage {
    width: 48px;
    height: 48px;
  }
  #productPage .prodPrice #productPrice .price {
    font-size: 26px;
  }
  #productPage .prodPrice button {
    padding: 0.75rem;
    font-size: 14px;
  }
}/*# sourceMappingURL=productPage.css.map */