/* PRODUCTS SECTION */
.bm-products{
  padding: 80px 0;
  background: #fff;
}

.bm-products__wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.bm-products__title{
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 40px 0;
  color: #0b0f14;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  animation: bm-prod-fade-in 0.6s ease-out;
}

@keyframes bm-prod-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bm-products__grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.bm-products__item{
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 5px;
  padding: 20px;
  text-decoration: none;
  transition: all .2s ease;
  opacity: 0;
  animation: bm-prod-item-fade-in 0.5s ease-out forwards;
  position: relative;
}

.bm-products__badge{
  position: absolute;
  top: 12px;
  right: 12px;
  background: #6F7FEA;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

@keyframes bm-prod-item-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bm-products__item:nth-child(1) { animation-delay: 0.1s; }
.bm-products__item:nth-child(2) { animation-delay: 0.15s; }
.bm-products__item:nth-child(3) { animation-delay: 0.2s; }
.bm-products__item:nth-child(4) { animation-delay: 0.25s; }
.bm-products__item:nth-child(5) { animation-delay: 0.3s; }
.bm-products__item:nth-child(6) { animation-delay: 0.35s; }
.bm-products__item:nth-child(7) { animation-delay: 0.4s; }
.bm-products__item:nth-child(8) { animation-delay: 0.45s; }
.bm-products__item:nth-child(9) { animation-delay: 0.5s; }
.bm-products__item:nth-child(10) { animation-delay: 0.55s; }

.bm-products__item:hover{
  border-color: #6F7FEA;
  box-shadow: 0 8px 24px rgba(111,127,234,.15);
  transform: translateY(-4px);
}

.bm-products__image{
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 5px;
  background: #f8f9fa;
  margin-bottom: 12px;
}

.bm-products__brand{
  font-size: 11px;
  font-weight: 600;
  color: rgba(11,15,20,.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.bm-products__name{
  font-size: 14px;
  font-weight: 700;
  color: #0b0f14;
  line-height: 1.3;
  margin: 0 0 8px 0;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bm-products__sku{
  font-size: 12px;
  color: rgba(11,15,20,.6);
  margin-bottom: 12px;
}

.bm-products__price{
  font-size: 16px;
  font-weight: 900;
  color: #6F7FEA;
  margin-top: auto;
}

/* RESPONSIVE */
@media (max-width: 1200px){
  .bm-products__grid{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 968px){
  .bm-products__grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px){
  .bm-products{
    padding: 60px 0;
  }
  
  .bm-products__title{
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .bm-products__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .bm-products__item{
    padding: 16px;
  }
}

@media (max-width: 480px){
  .bm-products{
    padding: 40px 0;
  }
  
  .bm-products__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .bm-products__item{
    padding: 12px;
  }
  
  .bm-products__name{
    font-size: 13px;
    min-height: 32px;
  }
  
  .bm-products__brand{
    font-size: 10px;
  }
  
  .bm-products__sku{
    font-size: 11px;
  }
  
  .bm-products__price{
    font-size: 14px;
  }
}


.bm-products__shipping {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 400;
  text-transform: lowercase;
}
