/* ========================================
   LOKASI TOKO PAGE
======================================== */

.lokasi-page {
    width: 100%;
    padding: 80px 0;
    background: #f8f8f8;
}

/* HERO */
.lokasi-hero {
    width: 90%;
    max-width: 1100px;

    margin: auto;
    text-align: center;
}

.hero-logo {
    width: 140px;
    margin-bottom: 25px;
}

.subtitle {
    font-size: 22px;
    color: #ff4f93;
    margin-bottom: 10px;
}

.lokasi-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #222;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: #666;

    max-width: 800px;
    margin: auto;
}

/* SEARCH */
.lokasi-search {
    width: 90%;
    max-width: 900px;

    margin: 50px auto;
}

.lokasi-search form {
    display: flex;
    gap: 15px;
}

.lokasi-search input {
    flex: 1;

    height: 60px;

    border: none;
    border-radius: 999px;

    padding: 0 25px;

    font-size: 16px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.lokasi-search button {
    border: none;

    padding: 0 35px;

    border-radius: 999px;

    background: #ff4f93;
    color: white;

    font-size: 16px;
    cursor: pointer;

    transition: 0.3s ease;
}

.lokasi-search button:hover {
    background: #ff2f7d;
}

/* RESULT */
.lokasi-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.empty-state {
    background: white;

    padding: 60px;
    border-radius: 30px;

    text-align: center;

    font-size: 20px;
    color: #666;

    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* GRID */
.store-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;
}

/* CARD */
.store-card {
    background: white;

    border-radius: 24px;

    padding: 30px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: 0.3s ease;
}

.store-card:hover {
    transform: translateY(-5px);
}

.store-card h3 {
    color: #ff4f93;

    font-size: 24px;

    margin-bottom: 20px;
}

.store-card p {
    color: #555;

    line-height: 1.8;

    margin-bottom: 20px;
}

.store-location {
    display: inline-block;

    background: #fff0f6;

    color: #ff4f93;

    padding: 8px 16px;

    border-radius: 999px;

    font-size: 14px;

    margin-bottom: 20px;
}

.store-card a {
    display: inline-block;

    margin-top: 15px;

    text-decoration: none;

    background: #ff4f93;
    color: white;

    padding: 12px 20px;

    border-radius: 999px;

    transition: 0.3s ease;
}

.store-card a:hover {
    background: #ff2f7d;
}

.store-address{
    margin-bottom: 18px;
}

.store-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 20px;
}

.store-meta span{
    background: #f5f5f5;

    padding: 8px 14px;

    border-radius: 999px;

    font-size: 14px;

    color: #666;
}

/* MOBILE */
@media(max-width:768px){

    .lokasi-search form{
        flex-direction: column;
    }

    .lokasi-hero h1{
        font-size: 34px;
    }

}
