/* ===== Block 07 – Mobile Prices ===== */
.unp-mobile-prices{margin-top:40px;direction:ltr}
.unp-mobile-prices .section-inner{
  border:2px solid #e74c3c;background:#fff;border-radius:6px;padding:20px;position:relative
}
.unp-mobile-prices .section-title{
  position:absolute;top:-40px;left:50%;transform:translateX(-50%);
  background:#e74c3c;color:#fff;font-weight:700;padding:7px 50px;
  font-size:20px;line-height:1.4;white-space:nowrap;box-shadow:0 1px 2px rgba(0,0,0,.15);font-family: system-ui;width: auto;
}

/* Grid layout */
.unp-mobile-prices .mob-grid{
  display:grid;gap:16px;margin-top:16px;
  grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
}

/* Cards */
.mob-card{
  background:#fff;border:1px solid #e3e6ea;border-radius:6px;
  text-align:center;overflow:hidden;transition:transform .2s ease,box-shadow .2s ease
}
.mob-card:hover{transform:translateY(-4px);box-shadow:0 4px 8px rgba(0,0,0,.08)}
.mob-card .thumb{
  height:250px;display:flex;justify-content:center;align-items:center;padding:10px;background:#fff
}
.mob-card .thumb img{
  max-height:100%;width:auto;height:auto;object-fit:contain;display:block
}
.mob-card .title{
  font-size:1rem;margin:6px 0 4px;font-weight:700;color:#0a61b5
}
.mob-card .price{
  color:green;font-size:.9rem;margin-bottom:10px
}

/* Bottom brands */
.bottom-brands{
  text-align:center;margin-top:16px;padding-top:10px;border-top:1px solid #e6e6e6
}
.bottom-brands .brand-btn{
  display:inline-block;background:#e74c3c;color:#fff;padding:10px 14px;margin:4px; width:10%;
  border-radius:6px;font-size:.85rem;text-decoration:none;transition:background .25s ease
}
.bottom-brands .brand-btn:hover{background:#c0392b}

/* Responsive */
@media(max-width:768px){
  .mob-card .thumb{height:200px;padding:8px}
  .mob-card .title{font-size:.9rem}
	.unp-mobile-prices .mob-grid {
    display: grid;
    gap: 9px;
    margin-top: 16px;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
}