
.ept-locator{max-width:1200px;margin:20px auto;padding:0 10px}

.ept-locator select{
  padding:10px 12px;
  border:1px solid #ddd;
  border-radius:8px;
  margin:0 10px 10px 0;
  min-width:200px;
}

#stores{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:10px}

@media (max-width: 992px){
  #stores{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 576px){
  #stores{grid-template-columns:repeat(1,minmax(0,1fr))}
  .ept-locator select{min-width:100%;margin-right:0}
}

.store-card{border:1px solid #e6e6e6;padding:15px;border-radius:12px;background:#fff;overflow:hidden}
.store-card img{width:100%;height:160px;object-fit:cover;border-radius:10px}
.store-title{margin:10px 0 6px;font-size:18px}

.ept-icon{display:inline-flex;align-items:center;justify-content:center;width:16px;height:16px;margin-right:6px;vertical-align:middle}
.ept-icon svg{width:16px;height:16px;fill:currentColor}

.status{margin:6px 0;font-weight:600;display:flex;align-items:center;gap:6px}
.status.open{color:#1b7f3a}
.status.closed{color:#b42318}
.status.unknown{color:#555}
.hours{margin:0 0 6px;color:#666;font-size:13px}
.address{margin:0 0 12px;color:#333;display:flex;align-items:flex-start;gap:6px}
.address .ept-icon{margin-top:2px}

.actions{display:flex;gap:10px;flex-wrap:wrap}
.btn{display:inline-block;padding:10px 14px;background:#0a7cff;color:#fff;border-radius:8px;text-decoration:none;font-weight:600;font-size:14px}
.btn:hover{opacity:0.92}
.btn.call{background:#17a34a}
.btn.dir{background:#0a7cff}

.ept-loading, .ept-no-results{padding:14px;border:1px dashed #ddd;border-radius:10px;color:#666;grid-column:1/-1}
