img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.single-product-sec {
  padding: 80px 0;
}



.single-product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 25px;
}

.single-product-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  overflow: hidden;
}

/* LEFT SECTION */

.single-product-gallery-wrapper {
  padding: 25px;
  width: 100%;
  overflow: hidden;
}

.single-product-main-image {
  background: #f8f8f8;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.single-product-main-image a {
  display: block;
  width: 100%;
}

.single-product-main-image img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  transition: 0.4s;
}

.single-product-main-image:hover img {
  transform: scale(1.03);
}

.single-product-thumb-wrapper {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.single-product-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
  font-size: 18px;
}

.single-product-arrow:hover {
  background: #c2185b;
  color: #fff;
  border-color: #c2185b;
}

.single-product-thumbs {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  width: 100%;
  padding-bottom: 5px;
}

.single-product-thumbs::-webkit-scrollbar {
  display: none;
}

.single-product-thumb {
  width: 105px;
  min-width: 105px;
  height: 90px;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
  flex-shrink: 0;
}

.single-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-product-thumb.active {
  border-color: #d81b60;
}

/* RIGHT SECTION */

.single-product-product-info {
  padding: 25px;
}

.single-product-tag {
  color: #d81b60;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.single-product-title {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 18px;
  font-weight: 700;
}

.single-product-desc {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 15px;
}

.single-product-spec-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.single-product-spec-item {
  display: grid;
  /* grid-template-columns: 28px 140px 1fr; */
  grid-template-columns: 0fr 0.6fr 1fr;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #8e8e8e24;
}

.single-product-spec-item i {
  color: #555;
  font-size: 17px;
}

.single-product-spec-item strong {
  font-weight: 600;
}

.single-product-btn-group {
  display: flex;
  gap: 15px;
}

.single-product-btn-product {
  padding: 15px 22px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
  font-size: 15px;
  text-decoration: none;
}

.single-product-btn-primary {
  background: #d81b60;
  color: #fff;
  border-color: #d81b60;
}

.single-product-btn-primary:hover {
  background: #b51650;
}

.single-product-btn-light {
  color: #222;
  background: #fff;
}

.single-product-btn-light:hover {
  background: #f3f3f3;
}

/* BOTTOM GRID */

.single-product-bottom-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 25px;
  margin-top: 25px;
}
.single-product-bottom-grid-without-table{
  margin-top: 25px;
}
.single-product-table-card {
  padding: 25px;
  overflow: hidden;
}

.single-product-section-title {
  color: #d81b60;
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.single-product-table-responsive {
  width: 100%;
  overflow-x: auto;
}

.single-product-table-responsive table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.single-product-table-responsive table th {
  background: #f5f5f5;
  padding: 14px;
  border: 1px solid #ddd;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}

.single-product-table-responsive table td {
  padding: 14px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
  white-space: nowrap;
}

.single-product-note {
  margin-top: 14px;
  font-size: 13px;
  color: #666;
}

.single-product-right-bottom {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.single-product-info-card {
  padding: 25px;
}

.single-product-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
  margin-top: 15px;
}

.single-product-icon-grid-application {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  text-align: center;
  margin-top: 15px;
}

.single-product-icon-box {
  padding: 10px 0;
}

.single-product-icon-box i {
  font-size: 34px;
  color: #444;
  margin-bottom: 12px;
  /* display: block; */
}

.single-product-icon-box h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #222;
}

/* =========================================================
   CUSTOM SINGLE PRODUCT LIGHTBOX
========================================================= */

.single-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(8, 11, 16, 0.88);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.single-product-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.single-product-lightbox-dialog {
  width: min(1180px, 100%);
  height: min(720px, calc(100vh - 64px));
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-rows: 1fr 96px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.single-product-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: #c2185b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: 0.25s ease;
}

.single-product-lightbox-close:hover {
  background: #a8134c;
  transform: scale(1.04);
}

.single-product-lightbox-image-area {
  min-height: 0;
  background: #101418;
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
}

.single-product-lightbox-image-wrap {
  height: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #101418;
}

#single-product-lightboxImage {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.22s ease, transform 0.28s ease;
}

#single-product-lightboxImage.single-product-image-changing {
  opacity: 0;
}

.single-product-lightbox-nav {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 12px;
  background: rgba(32, 36, 40, 0.76);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  z-index: 3;
}

.single-product-lightbox-nav:hover {
  background: #c2185b;
}

.single-product-lightbox-prev {
  justify-self: start;
  margin-left: 28px;
}

.single-product-lightbox-next {
  justify-self: end;
  margin-right: 28px;
}

.single-product-lightbox-footer {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.single-product-lightbox-caption {
  color: #111827;
  font-size: 18px;
  font-weight: 700;
}

.single-product-lightbox-thumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 2px;
}

.single-product-lightbox-thumbs::-webkit-scrollbar {
  display: none;
}

.single-product-lightbox-thumb {
  width: 82px;
  min-width: 82px;
  height: 58px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  opacity: 0.65;
  transition: 0.25s ease;
}

.single-product-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-product-lightbox-thumb.active {
  opacity: 1;
  border: 3px solid #c2185b;
}

body.single-product-lightbox-open {
  overflow: hidden;
}

.single-product-lightbox button:focus-visible,
.single-product-lightbox-thumb:focus-visible {
  outline: 2px solid #c2185b;
  outline-offset: 3px;
}

.single-product-magnify-box {
  position: relative;
  overflow: hidden;
}

.single-product-popup-image {
  display: block;
}

.single-product-popup-image img {
  width: 100%;
  display: block;
}

.single-product-magnify-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  font-size: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.single-product-magnify-toggle.active {
  background: #111111;
  color: #ffffff;
}

.single-product-magnify-lens {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-color: #ffffff;
  display: none;
  pointer-events: none;
  z-index: 4;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.single-product-magnify-box.is-magnify-active {
  cursor: zoom-in;
}
/* welding table */
/* Section */
.weld-table-section {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 25px;
}

.weld-table-title {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Table Wrapper */
.weld-table-wrapper {
  overflow-x: auto;
}

/* Table */
.weld-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

/* Header */
.weld-table-th {
  background: #8b1c5a;
  color: #fff;
  padding: 16px;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #ffffff33;
}

/* Body */
.weld-table-td {
  padding: 16px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #333;
}

.weld-table-row:nth-child(even) {
  background: #fafafa;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .weld-table {
    border: 0;
  }

  .weld-table thead {
    display: none;
  }

  .weld-table-row {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    background: #fff;
  }

  .weld-table-td {
    display: block;
    text-align: left;
    padding: 12px 15px;
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
  font-weight: 600;

  }

  .weld-table-td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: #8b1c5a;
    font-size: 13px;
  }

  .weld-table-td:last-child {
    border-bottom: none;
  }
}
/* end welding table */
.measurement-image-popup-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: zoom-in;
}

.measurement-image-popup-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
}

.measurement-image-zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  pointer-events: none;
}

.measurement-image-popup-wrap:hover .measurement-image-zoom-icon {
  background: #111111;
  color: #ffffff;
}

.measurement-image-popup-wrap:hover img {
  transform: scale(1.03);
}

.measurement-image-popup-wrap img {
  transition: transform 0.3s ease;
}

@media (max-width: 767px) {
  .measurement-image-zoom-icon {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .single-product-magnify-toggle {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
    font-size: 17px;
  }

  .single-product-magnify-lens {
    width: 130px;
    height: 130px;
  }
}

/* RESPONSIVE */

@media(max-width:991px) {

  .single-product-lightbox {
    padding: 20px;
  }

  .single-product-lightbox-dialog {
    height: min(680px, calc(100vh - 40px));
    grid-template-rows: 1fr auto;
  }

  .single-product-lightbox-image-area {
    grid-template-columns: 80px 1fr 80px;
  }

  .single-product-lightbox-prev {
    margin-left: 16px;
  }

  .single-product-lightbox-next {
    margin-right: 16px;
  }

  .single-product-lightbox-footer {
    grid-template-columns: 1fr;
  }

  .single-product-lightbox-thumbs {
    max-width: 100%;
  }

}

@media(max-width:576px) {

  .single-product-lightbox {
    padding: 12px;
  }

  .single-product-lightbox-dialog {
    width: 100%;
    height: calc(100vh - 24px);
    border-radius: 14px;
  }

  .single-product-lightbox-close {
    width: 42px;
    height: 42px;
    top: 12px;
    right: 12px;
    font-size: 18px;
  }

  .single-product-lightbox-image-area {
    grid-template-columns: 52px 1fr 52px;
  }

  .single-product-lightbox-nav {
    width: 40px;
    height: 44px;
    border-radius: 10px;
    font-size: 22px;
  }

  .single-product-lightbox-prev {
    margin-left: 8px;
  }

  .single-product-lightbox-next {
    margin-right: 8px;
  }

  .single-product-lightbox-footer {
    padding: 12px;
    gap: 12px;
  }

  .single-product-lightbox-caption {
    font-size: 15px;
  }

  .single-product-lightbox-thumb {
    width: 66px;
    min-width: 66px;
    height: 48px;
  }
.single-product-btn-group{
  flex-direction: column;
}
}


@media(max-width:1200px) {

  .single-product-sec {
    padding: 40px 8px;
  }

  .single-product-layout,
  .single-product-bottom-grid {
    grid-template-columns: 1fr;
  }

  .single-product-title {
    font-size: 30px;
  }

  .single-product-icon-grid,
  .single-product-icon-grid-application {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media(max-width:768px) {

  .single-product-gallery-wrapper,
  .single-product-product-info,
  .single-product-table-card,
  .single-product-info-card {
    padding: 18px;
  }

  .single-product-main-image img {
    height: 260px;
  }

  .single-product-title {
    font-size: 28px;
  }

  .single-product-desc {
    font-size: 14px;
  }

  .single-product-spec-item {
    /* grid-template-columns: 24px 95px 1fr; */
    grid-template-columns: 0fr 0.4fr 1fr;
    font-size: 13px;
    gap: 10px;
  }

  .single-product-btn-product {
    width: 100%;
  }

  .single-product-thumb {
    width: 78px;
    min-width: 78px;
    height: 68px;
  }

  .single-product-arrow {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .single-product-icon-grid,
  .single-product-icon-grid-application {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .single-product-icon-box {
    padding: 5px;
  }

  .single-product-icon-box i {
    font-size: 28px;
  }

  .single-product-section-title {
    font-size: 24px;
  }

}

@media(max-width:576px) {


  .single-product-btn-product {
    padding: 10px;
    font-size: 12px;
  }

}

@media(max-width:480px) {

  .single-product-title {
    font-size: 24px;
  }

  .single-product-spec-item {
    grid-template-columns: 22px 0.7fr 1fr;
    font-size: 12px;
  }

  .single-product-main-image img {
    height: 250px;
  }

  .single-product-thumb-wrapper {
    gap: 8px;
  }

  .single-product-thumb {
    width: 68px;
    min-width: 68px;
    height: 60px;
  }

  .single-product-icon-grid,
  .single-product-icon-grid-application {
    grid-template-columns: 1fr 1fr;
  }

  .single-product-icon-box h4 {
    font-size: 13px;
  }

}

@media(max-width:375px) {

  .single-product-btn-group {
    flex-direction: column;
    flex-wrap: wrap;
  }

}