.location-link {
    margin-top: 30px;
}

.location-link__title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.search-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.search-bar .input-wrap {
    position: relative;
    flex: 1;
}

.search-bar .input-wrap svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}

.search-bar .search-input {
    padding: 12px 15px 12px 40px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    width: 100%;
}

.search-bar select {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background-color: white;
    min-width: 200px;
}

.search-button {
    padding: 12px 40px;
}

.location-wrapper {
    display: flex;
    gap: 15px;
}

.stores-list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.store-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
}

.store-card .inner {
    padding: 10px;
}

.store-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.store-name {
    font-size: 20px;
    font-weight: bold;
    margin-top: 5px;
}

.store-address {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.location-icon {
    color: var(--color-3);
    margin-right: 5px;
}

.location-icon svg {
    width: 20px;
    height: 20px;
}

.store-promo li {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
}

.store-promo li:not(:last-child) {
    margin-bottom: 5px;
}

.store-promo {
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.store-status {
    color: var(--color-3);
    font-size: 18px;
    font-weight: 500;
}

.store-actions {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid #eee;
}

.btn-detail {
    flex: 1;
    padding: 10px;
    background-color: white;
    color: #dc3545;
    border: 2px solid #dc3545;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.btn-detail:hover {
    background-color: #fff5f5;
}

.btn-direction {
    flex: 1;
    padding: 10px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.btn-direction:hover {
    background-color: #c82333;
}

.map-container {
    flex: 0 0 500px;
}

.map {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.map iframe {
    width: 100%;
    height: 400px;
}

.hot-section {
    margin-top: 30px;
}

.hot-store-image {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 10px;
}


.featured-card {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 15px;
}

.featured-card .inner {
    border: 3px solid #dc3545;
    padding: 17px 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    border-radius: 8px;
}

.featured-card .store-promo li {
    font-size: 14px;
}

.featured-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
}

.featured-store-image {
    width: 100%;
    margin-top: 15px;
}

.featured-store-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.btn-applying {
    padding: 8px 30px;
    background-color: var(--color-3);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 992px) {
    .location-wrapper {
        display: block;
    }

    .stores-list {
        margin-bottom: 15px;
    }

    .featured-card {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .location-link__title {
        font-size: 26px;
    }

    .search-bar {
        display: grid;
        gap: 10px;
        margin-bottom: 25px;
    }

    .stores-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 576px) {
    .featured-card .inner {
        grid-template-columns: repeat(1, 1fr);
    }
}