/* PRODUCTS SECTION — ROSY STORE */
.products { padding: 24px 0; }
.products .grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 640px) { .products .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 992px) { .products .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.products .box_main {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  padding: 16px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.products .box_main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.09);
}
.products .title{
  text-align: center;
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
}
.products .price_text { 
  text-align: center;
  margin: 10px 0 10px; 
  color: #333; 
  font-weight: 600; 
}
.products .price_text span { 
  color: #262626; 
}

.products .rosa_img {
  display: flex; 
  justify-content: center; 
  align-items: center;
  margin: 10px 10px 16px;
}
.products .rosa_img img {
  max-width: 100%; 
  height: auto; 
  border-radius: 8px; 
  display: block;
}

.products .btn_main { 
  margin-top: auto; 
  display: flex; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  align-items: center; }

.products .buy_bt a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px; background: #25d366; color:#fff;
  text-decoration: none; font-weight: 600; line-height: 1;
  transition: transform .05s ease, opacity .15s ease;
}
.products .buy_bt a:active { transform: scale(.98); }
.products .buy_bt img { width: 26px; height: auto; display: inline-block; }

.products .pay_button img { display:block; width: 120px; height: auto; }

.products .box_main h4 + center h4 { font-weight: 800; }
.products .muted { color: #666; }
