﻿.products-sec {
  background-color: var(--surface-color);
  padding-block: var(--section-gap);
  position: relative;
}

.products-grid {
  row-gap: 30px;
}

.products-sec .product-card {
  height: 100%;
  border-radius: var(--Box-Radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.products-sec .product-card:hover {
  transform: translateY(-8px);
}

.products-sec .product-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.products-sec .products-slidecontext {
  background: #0357af;
  color: #fff;
  padding: 26px 32px;
  position: relative;
  height: 100%;
}

.products-sec .products-slidecontext::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.products-sec .products-slidecontext h4 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.products-sec .products-slidecontext p {
  color: #fff;
  line-height: 1.8;
  position: relative;
  height: 115px;
  z-index: 2;
}

.products-sec .products-slidecontext > div {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.products-sec .logo-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.products-sec .more-btn {
  width: 70px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-sec .more-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
