/* ==========================================================================
   K-Tech Product Card & Slider Component (Shared for Slider & Shop Loop)
   ========================================================================== */

/* ── WooCommerce Loop Grid Alignment ─────────────────────────────────────── */
.product-small.col {
  padding-bottom: 20px;
}

.product-small.col .col-inner {
  height: 100%;
}

/* ── Slider Wrap ─────────────────────────────────────────────────────────── */
.ktech-product-slider-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto 30px;
  box-sizing: border-box;
}

.ktech-product-slider-wrap .swiper.ktech-product-slider {
  width: 100%;
  padding: 6px 2px 14px 2px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Slide item */
.ktech-product-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}

/* ── Product Card ────────────────────────────────────────────────────────── */
.ktech-product-card {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 12px 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}

.ktech-product-card:hover {
  border-color: var(--primary-color, var(--primary-color));
  box-shadow: 0 6px 18px rgba(0, 59, 130, 0.12);
  transform: translateY(-2px);
}

/* Product Thumbnail */
.ktech-product-card__thumb-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.ktech-product-card__thumb {
  width: 100%;
  height: 200px;
  /* min-height: 180px; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}

.ktech-product-card__thumb img {
  max-width: 100%;
  /* max-height: 100%; */
  height: auto;
  width: auto;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}

.ktech-product-card:hover .ktech-product-card__thumb img {
  transform: scale(1.04);
}

/* Product Content */
.ktech-product-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  margin-top: 10px;
}

/* Product Title */
.ktech-product-card__title {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 8px 0;
  padding: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}

.ktech-product-card__title a {
  color: var(--primary-color, #004b91);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ktech-product-card__title a:hover {
  color: #00285a;
}

/* Product Price */
.ktech-product-card__price {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: auto;
}

.ktech-product-card__price-contact,
.ktech-product-card__price-amount,
.ktech-product-card__price ins,
.ktech-product-card__price .woocommerce-Price-amount {
  color: #e53935;
  font-weight: 700;
  text-decoration: none;
}

.ktech-product-card__price del {
  color: #94a3b8;
  font-size: 12px;
  font-weight: normal;
  margin-right: 6px;
}

/* ── Navigation Buttons ──────────────────────────────────────────────────── */
.ktech-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 37px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-color, var(--primary-color));
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 59, 130, 0.3);
  transition: all 0.25s ease;
  padding: 0;
}

.ktech-slider-nav:hover {
  background: #00285a;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 14px rgba(0, 59, 130, 0.4);
}

.ktech-slider-nav svg {
  display: block;
  stroke: #ffffff;
  stroke-width: 2.5;
}

.ktech-slider-nav--prev {
  left: -17px;
}

.ktech-slider-nav--next {
  right: -30px;
}

.ktech-slider-nav.swiper-button-disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
  transform: translateY(-50%) scale(1);
}

/* ── Empty state ─────────────────────────────────────────────────────────── */
.ktech-product-slider-empty {
  padding: 20px;
  text-align: center;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  color: #64748b;
  margin: 15px 0;
}

/* ── Responsive adjustments ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ktech-product-card__thumb {
    height: 160px;
  }

  .ktech-slider-nav--prev {
    left: -13px;
  }

  .ktech-slider-nav--next {
    right: -29px;
  }
}

@media (max-width: 768px) {
  .ktech-product-card {
    padding: 10px 8px 12px;
  }

  .ktech-product-card__thumb {
    height: 140px;
  }

  .ktech-product-card__title {
    font-size: 13px;
    min-height: 36px;
  }

  .ktech-product-card__price {
    font-size: 13px;
  }

  .ktech-slider-nav {
    width: 28px;
    height: 28px;
  }

  .ktech-slider-nav--prev {
    left: -8px;
  }

  .ktech-slider-nav--next {
    right: -8px;
  }
}

@media (max-width: 576px) {
  .ktech-product-card__thumb {
    height: 130px;
  }

  .ktech-slider-nav {
    display: none;
    /* Mobile swipe gesture */
  }
}