/* =========================
   Global link cleanup
========================= */
.neat-content,
.neat-content a,
.comments-area a,
.page-content a {
  text-decoration: none !important;
}

/* =========================
   Card
========================= */
.neat-card {
  display: block;
  color: #222;
}

/* =========================
   Image
========================= */
.neat-image {
  overflow: hidden;
}

.neat-image img {
  width: 100%;
  height: 450px !important;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.neat-card:hover img {
  transform: scale(1.05);
}

/* =========================
   Content
========================= */
.neat-content {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
}

.neat-title {
  font-family: "Lato", Poppins;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2em;
}

/* =========================
   Arrow
========================= */
.neat-arrow svg {
  width: 30px;
  height: 30px;
  fill: #222;
  vertical-align: middle;
  transition: transform 0.4s ease;
}

.neat-card:hover .neat-arrow svg {
  transform: translateX(14px);
}

/* =========================
   Slider wrapper
========================= */
.neat-slider-wrapper {
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.neat-slider-wrapper .neat-arrow {
  font-size: 18px;
}

/* =========================
   Swiper Navigation
========================= */
.neat-slider-wrapper .swiper-button-prev,
.neat-slider-wrapper .swiper-button-next {
  background: #222529;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.neat-slider-wrapper .swiper-button-prev::after,
.neat-slider-wrapper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.neat-slider-wrapper .swiper-button-prev {
  left: 10px;
}

.neat-slider-wrapper .swiper-button-next {
  right: 10px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
  .neat-image img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .neat-image img {
    height: 220px;
  }

  .neat-content {
    font-size: 14px;
  }
}

.neat-card:hover .neat-content {
  color: #222 !important;
}

.neat-slider-wrapper {
  opacity: 0;
  visibility: hidden;
}

.neat-slider-wrapper.swiper-initialized {
  opacity: 1;
  visibility: visible;
  transition: opacity .1s ease;
}



.product-attribute-inline {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #222;
  margin-top: 12px;
  justify-content: center;
}

.product-attribute-inline .attr-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.8rem;
}

.product-attribute-inline .attr-item img {
  width: 16px !important;
  height: 16px !important;
  margin-right: 4px !important;
  object-fit: contain !important;
  flex-shrink: 0;
  /* prevents stretching or shrinking */
}

.elementor-widget-container .product-attribute-inline{ display: none; }