.hyk-products {
    padding:100px 0 67px;
    background: url(/template/23f99d91/images/product-bg.jpg) no-repeat;
    background-size: cover;
}
.hyk-products .hyk-container {
  max-width: 1480px;
    margin: 0 auto;
  padding: 0 40px;
}
.hyk-products__header {
    margin-bottom: 50px;
    text-align: center;
}

.hyk-products__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    margin-top: 8px;
}

.hyk-products__desc {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
  margin: 0 auto;
}

/* Product category block
   Figma row: h=152 = 28px label + 114px cards, bordered top */
.hyk-product-category {
    margin-bottom: 39px;
}

.hyk-product-category:last-of-type {
    margin-bottom: 0;
}

.hyk-category-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    height: 28px;
    line-height: 28px;
    margin-bottom: 10px;
}

/* Product row (horizontal flex)
   Figma: cards are 334px each, gap 21px; max 4 cards per row */
.hyk-product-row {
    display: flex;
    gap: 21px;
    min-height: 114px;
  flex-wrap: wrap;
}

/* Individual product card
   Figma: w=334, h=114, fill:#ffffff, padL=19 padR=19 padT=21 padB=21
   stroke: 1px solid #d1d1d2, cornerRadius: 8 */
.hyk-product-card {
    flex: 0 0 334px;
    height: 114px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 21px 45px 19px 19px;
    background: #ffffff;
    border: 1px solid #d1d1d2;
    border-radius: 8px;
  transition: all 0.3s ease 0s;
  position: relative;
}
.hyk-product-card:hover {
  border-color: #363E44;
    box-shadow: inset 0 0 0 1px #363E44;
  text-decoration: none;
}
span.hover-right-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  opacity: 0;
  visibility: hiden;
  transition: all 0.3s ease 0s;
}
.hyk-product-card:hover span.hover-right-arrow svg {
    transform: translateX(0px);
}
span.hover-right-arrow svg {
    transition: all ease-in-out 0.2s;
    transform: translateX(-5px);
}
.hyk-product-card:hover span.hover-right-arrow {
  opacity: 1;
  visibility: visible;
}

.hyk-product-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
      padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hyk-product-card__icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
}

.hyk-product-card__info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 4px;
    line-height: 23px;
}

.hyk-product-card__info p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.70);
    line-height: 22px;
    margin: 0;
}

/* Products action buttons */
.hyk-products__actions {
    display: flex;
    gap: 13px;
    margin-top: 54px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
  .hyk-products {
    padding: 70px 0;
  }
  .hyk-products .hyk-container {
      padding: 0 20px;
    }
  .hyk-product-row {
        flex-wrap: wrap;
        height: auto;
        gap: 16px;
    }
    .hyk-product-card {
        flex: 0 0 calc(50% - 8px);
        height: auto;
        min-height: 100px;
    }
}

@media (max-width: 767px) {
  	.hyk-products {
        padding: 60px 0;
    }
  	.hyk-products .hyk-container {
      padding: 0 15px;
    }
    .hyk-products__title {
        font-size: 32px;
    }
    .hyk-product-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        height: auto;
    }
    .hyk-product-card {
        flex: 0 0 260px;
        min-height: 100px;
        height: auto;
    }
    .hyk-product-category {
      margin-bottom: 28px;
  	}
  	.hyk-products__actions {
    	margin-top: 42px;
	}
}

@media (max-width: 480px) {
    .hyk-products__actions {
        flex-direction: column;
    }
  	a.hyk-btn {
    	width: 100%;
    	justify-content: center;
	}
}
  
