.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 12px;
  width: 100%;
}

.rec-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  padding: 10px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.rec-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-color: #02cb64; 
}


.rec-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

.rec-text {
  font-size: 13px;
  color: #333;
  line-height: 1.2;
  font-weight: 500;
}

.rec-text span {
  display: block; 
  color: #02cb64;
  font-size: 11px;
}

.recommend-grid a:nth-child(1) .rec-icon {
    background-color: #f3ebff;
}
.recommend-grid a:nth-child(2) .rec-icon {
    background-color: #e7f3ff;
}
.recommend-grid a:nth-child(3) .rec-icon {
    background-color: #ebf0f7;
}
.recommend-grid a:nth-child(4) .rec-icon {
    background-color: #e8f7f0;
}

.product-logo-position {
 width: 480px; 
 display: flex; 
 flex-direction: column; 
 align-items: center;
}
.product-logo {
 align-self: center;
 width: 100%;
 max-width: 350px;
 margin-bottom: 30px;
}

.new-infos {
display: inline-block;
background: #ff8c00;
color: white;
padding: 2px 10px;
border-radius: 20px;
font-size: 12px;
font-weight: bold;
margin-bottom: 5px;
vertical-align: middle;
}

@media (max-width: 991px) {

    .product_featurebox.flex-row-between {
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 20px; 
    }

    .product_featurebox > div:first-child {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .product_featurebox > div:last-child {
        width: 100% !important;
        max-width: 100%; 
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product-logo {
        max-width: 260px !important; 
        margin-bottom: 20px !important; 
        margin-top: 10px;
    }

    .recommend-grid {
        display: grid;
        grid-template-columns: 1fr; 
        gap: 12px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 40px auto;
    }

    .rec-card {
        padding: 12px 15px !important; 
        justify-content: flex-start;
    }
}
